1 /* Process declarations and variables for C compiler.
2 Copyright (C) 1988-2014 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 "print-tree.h"
35 #include "stor-layout.h"
38 #include "stringpool.h"
39 #include "tree-inline.h"
50 #include "c-family/c-common.h"
51 #include "c-family/c-objc.h"
52 #include "c-family/c-upc.h"
53 #include "c-family/c-pragma.h"
54 #include "c-family/c-ubsan.h"
56 #include "langhooks.h"
57 #include "tree-iterator.h"
58 #include "diagnostic-core.h"
61 #include "hash-table.h"
62 #include "langhooks-def.h"
63 #include "pointer-set.h"
65 #include "c-family/c-ada-spec.h"
68 /* In grokdeclarator, distinguish syntactic contexts of declarators. */
70 { NORMAL
, /* Ordinary declaration */
71 FUNCDEF
, /* Function definition */
72 PARM
, /* Declaration of parm before function body */
73 FIELD
, /* Declaration inside struct or union */
74 TYPENAME
}; /* Typename (inside cast or sizeof) */
76 /* States indicating how grokdeclarator() should handle declspecs marked
77 with __attribute__((deprecated)). An object declared as
78 __attribute__((deprecated)) suppresses warnings of uses of other
81 enum deprecated_states
{
87 /* Nonzero if we have seen an invalid cross reference
88 to a struct, union, or enum, but not yet printed the message. */
89 tree pending_invalid_xref
;
91 /* File and line to appear in the eventual error message. */
92 location_t pending_invalid_xref_location
;
94 /* The file and line that the prototype came from if this is an
95 old-style definition; used for diagnostics in
96 store_parm_decls_oldstyle. */
98 static location_t current_function_prototype_locus
;
100 /* Whether this prototype was built-in. */
102 static bool current_function_prototype_built_in
;
104 /* The argument type information of this prototype. */
106 static tree current_function_prototype_arg_types
;
108 /* The argument information structure for the function currently being
111 static struct c_arg_info
*current_function_arg_info
;
113 /* The obstack on which parser and related data structures, which are
114 not live beyond their top-level declaration or definition, are
116 struct obstack parser_obstack
;
118 /* The current statement tree. */
120 static GTY(()) struct stmt_tree_s c_stmt_tree
;
122 /* State saving variables. */
126 /* A list of decls to be made automatically visible in each file scope. */
127 static GTY(()) tree visible_builtins
;
129 /* Set to 0 at beginning of a function definition, set to 1 if
130 a return statement that specifies a return value is seen. */
132 int current_function_returns_value
;
134 /* Set to 0 at beginning of a function definition, set to 1 if
135 a return statement with no argument is seen. */
137 int current_function_returns_null
;
139 /* Set to 0 at beginning of a function definition, set to 1 if
140 a call to a noreturn function is seen. */
142 int current_function_returns_abnormally
;
144 /* Set to nonzero by `grokdeclarator' for a function
145 whose return type is defaulted, if warnings for this are desired. */
147 static int warn_about_return_type
;
149 /* Nonzero when the current toplevel function contains a declaration
150 of a nested function which is never defined. */
152 static bool undef_nested_function
;
154 /* Mode used to build pointers (VOIDmode means ptr_mode). */
156 enum machine_mode c_default_pointer_mode
= VOIDmode
;
158 /* If non-zero, implicit "omp declare target" attribute is added into the
160 int current_omp_declare_target_attribute
;
162 /* Each c_binding structure describes one binding of an identifier to
163 a decl. All the decls in a scope - irrespective of namespace - are
164 chained together by the ->prev field, which (as the name implies)
165 runs in reverse order. All the decls in a given namespace bound to
166 a given identifier are chained by the ->shadowed field, which runs
167 from inner to outer scopes.
169 The ->decl field usually points to a DECL node, but there are two
170 exceptions. In the namespace of type tags, the bound entity is a
171 RECORD_TYPE, UNION_TYPE, or ENUMERAL_TYPE node. If an undeclared
172 identifier is encountered, it is bound to error_mark_node to
173 suppress further errors about that identifier in the current
176 The ->u.type field stores the type of the declaration in this scope;
177 if NULL, the type is the type of the ->decl field. This is only of
178 relevance for objects with external or internal linkage which may
179 be redeclared in inner scopes, forming composite types that only
180 persist for the duration of those scopes. In the external scope,
181 this stores the composite of all the types declared for this
182 object, visible or not. The ->inner_comp field (used only at file
183 scope) stores whether an incomplete array type at file scope was
184 completed at an inner scope to an array size other than 1.
186 The ->u.label field is used for labels. It points to a structure
187 which stores additional information used for warnings.
189 The depth field is copied from the scope structure that holds this
190 decl. It is used to preserve the proper ordering of the ->shadowed
191 field (see bind()) and also for a handful of special-case checks.
192 Finally, the invisible bit is true for a decl which should be
193 ignored for purposes of normal name lookup, and the nested bit is
194 true for a decl that's been bound a second time in an inner scope;
195 in all such cases, the binding in the outer scope will have its
196 invisible bit true. */
198 struct GTY((chain_next ("%h.prev"))) c_binding
{
199 union GTY(()) { /* first so GTY desc can use decl */
200 tree
GTY((tag ("0"))) type
; /* the type in this scope */
201 struct c_label_vars
* GTY((tag ("1"))) label
; /* for warnings */
202 } GTY((desc ("TREE_CODE (%0.decl) == LABEL_DECL"))) u
;
203 tree decl
; /* the decl bound */
204 tree id
; /* the identifier it's bound to */
205 struct c_binding
*prev
; /* the previous decl in this scope */
206 struct c_binding
*shadowed
; /* the innermost decl shadowed by this one */
207 unsigned int depth
: 28; /* depth of this scope */
208 BOOL_BITFIELD invisible
: 1; /* normal lookup should ignore this binding */
209 BOOL_BITFIELD nested
: 1; /* do not set DECL_CONTEXT when popping */
210 BOOL_BITFIELD inner_comp
: 1; /* incomplete array completed in inner scope */
211 BOOL_BITFIELD in_struct
: 1; /* currently defined as struct field */
212 location_t locus
; /* location for nested bindings */
214 #define B_IN_SCOPE(b1, b2) ((b1)->depth == (b2)->depth)
215 #define B_IN_CURRENT_SCOPE(b) ((b)->depth == current_scope->depth)
216 #define B_IN_FILE_SCOPE(b) ((b)->depth == 1 /*file_scope->depth*/)
217 #define B_IN_EXTERNAL_SCOPE(b) ((b)->depth == 0 /*external_scope->depth*/)
219 #define I_SYMBOL_BINDING(node) \
220 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->symbol_binding)
221 #define I_SYMBOL_DECL(node) \
222 (I_SYMBOL_BINDING(node) ? I_SYMBOL_BINDING(node)->decl : 0)
224 #define I_TAG_BINDING(node) \
225 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->tag_binding)
226 #define I_TAG_DECL(node) \
227 (I_TAG_BINDING(node) ? I_TAG_BINDING(node)->decl : 0)
229 #define I_LABEL_BINDING(node) \
230 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->label_binding)
231 #define I_LABEL_DECL(node) \
232 (I_LABEL_BINDING(node) ? I_LABEL_BINDING(node)->decl : 0)
234 /* Each C symbol points to three linked lists of c_binding structures.
235 These describe the values of the identifier in the three different
236 namespaces defined by the language. */
238 struct GTY(()) lang_identifier
{
239 struct c_common_identifier common_id
;
240 struct c_binding
*symbol_binding
; /* vars, funcs, constants, typedefs */
241 struct c_binding
*tag_binding
; /* struct/union/enum tags */
242 struct c_binding
*label_binding
; /* labels */
245 /* Validate c-lang.c's assumptions. */
246 extern char C_SIZEOF_STRUCT_LANG_IDENTIFIER_isnt_accurate
247 [(sizeof(struct lang_identifier
) == C_SIZEOF_STRUCT_LANG_IDENTIFIER
) ? 1 : -1];
249 /* The resulting tree type. */
251 union GTY((desc ("TREE_CODE (&%h.generic) == IDENTIFIER_NODE"),
252 chain_next ("(union lang_tree_node *) c_tree_chain_next (&%h.generic)"))) lang_tree_node
254 union tree_node
GTY ((tag ("0"),
255 desc ("tree_node_structure (&%h)")))
257 struct lang_identifier
GTY ((tag ("1"))) identifier
;
260 /* Track bindings and other things that matter for goto warnings. For
261 efficiency, we do not gather all the decls at the point of
262 definition. Instead, we point into the bindings structure. As
263 scopes are popped, we update these structures and gather the decls
264 that matter at that time. */
266 struct GTY(()) c_spot_bindings
{
267 /* The currently open scope which holds bindings defined when the
268 label was defined or the goto statement was found. */
269 struct c_scope
*scope
;
270 /* The bindings in the scope field which were defined at the point
271 of the label or goto. This lets us look at older or newer
272 bindings in the scope, as appropriate. */
273 struct c_binding
*bindings_in_scope
;
274 /* The number of statement expressions that have started since this
275 label or goto statement was defined. This is zero if we are at
276 the same statement expression level. It is positive if we are in
277 a statement expression started since this spot. It is negative
278 if this spot was in a statement expression and we have left
281 /* Whether we started in a statement expression but are no longer in
282 it. This is set to true if stmt_exprs ever goes negative. */
286 /* This structure is used to keep track of bindings seen when a goto
287 statement is defined. This is only used if we see the goto
288 statement before we see the label. */
290 struct GTY(()) c_goto_bindings
{
291 /* The location of the goto statement. */
293 /* The bindings of the goto statement. */
294 struct c_spot_bindings goto_bindings
;
297 typedef struct c_goto_bindings
*c_goto_bindings_p
;
299 /* The additional information we keep track of for a label binding.
300 These fields are updated as scopes are popped. */
302 struct GTY(()) c_label_vars
{
303 /* The shadowed c_label_vars, when one label shadows another (which
304 can only happen using a __label__ declaration). */
305 struct c_label_vars
*shadowed
;
306 /* The bindings when the label was defined. */
307 struct c_spot_bindings label_bindings
;
308 /* A list of decls that we care about: decls about which we should
309 warn if a goto branches to this label from later in the function.
310 Decls are added to this list as scopes are popped. We only add
311 the decls that matter. */
312 vec
<tree
, va_gc
> *decls_in_scope
;
313 /* A list of goto statements to this label. This is only used for
314 goto statements seen before the label was defined, so that we can
315 issue appropriate warnings for them. */
316 vec
<c_goto_bindings_p
, va_gc
> *gotos
;
319 /* Each c_scope structure describes the complete contents of one
320 scope. Four scopes are distinguished specially: the innermost or
321 current scope, the innermost function scope, the file scope (always
322 the second to outermost) and the outermost or external scope.
324 Most declarations are recorded in the current scope.
326 All normal label declarations are recorded in the innermost
327 function scope, as are bindings of undeclared identifiers to
328 error_mark_node. (GCC permits nested functions as an extension,
329 hence the 'innermost' qualifier.) Explicitly declared labels
330 (using the __label__ extension) appear in the current scope.
332 Being in the file scope (current_scope == file_scope) causes
333 special behavior in several places below. Also, under some
334 conditions the Objective-C front end records declarations in the
335 file scope even though that isn't the current scope.
337 All declarations with external linkage are recorded in the external
338 scope, even if they aren't visible there; this models the fact that
339 such declarations are visible to the entire program, and (with a
340 bit of cleverness, see pushdecl) allows diagnosis of some violations
341 of C99 6.2.2p7 and 6.2.7p2:
343 If, within the same translation unit, the same identifier appears
344 with both internal and external linkage, the behavior is
347 All declarations that refer to the same object or function shall
348 have compatible type; otherwise, the behavior is undefined.
350 Initially only the built-in declarations, which describe compiler
351 intrinsic functions plus a subset of the standard library, are in
354 The order of the blocks list matters, and it is frequently appended
355 to. To avoid having to walk all the way to the end of the list on
356 each insertion, or reverse the list later, we maintain a pointer to
357 the last list entry. (FIXME: It should be feasible to use a reversed
360 The bindings list is strictly in reverse order of declarations;
361 pop_scope relies on this. */
364 struct GTY((chain_next ("%h.outer"))) c_scope
{
365 /* The scope containing this one. */
366 struct c_scope
*outer
;
368 /* The next outermost function scope. */
369 struct c_scope
*outer_function
;
371 /* All bindings in this scope. */
372 struct c_binding
*bindings
;
374 /* For each scope (except the global one), a chain of BLOCK nodes
375 for all the scopes that were entered and exited one level down. */
379 /* The depth of this scope. Used to keep the ->shadowed chain of
380 bindings sorted innermost to outermost. */
381 unsigned int depth
: 28;
383 /* True if we are currently filling this scope with parameter
385 BOOL_BITFIELD parm_flag
: 1;
387 /* True if we saw [*] in this scope. Used to give an error messages
388 if these appears in a function definition. */
389 BOOL_BITFIELD had_vla_unspec
: 1;
391 /* True if we already complained about forward parameter decls
392 in this scope. This prevents double warnings on
393 foo (int a; int b; ...) */
394 BOOL_BITFIELD warned_forward_parm_decls
: 1;
396 /* True if this is the outermost block scope of a function body.
397 This scope contains the parameters, the local variables declared
398 in the outermost block, and all the labels (except those in
399 nested functions, or declared at block scope with __label__). */
400 BOOL_BITFIELD function_body
: 1;
402 /* True means make a BLOCK for this scope no matter what. */
403 BOOL_BITFIELD keep
: 1;
405 /* True means that an unsuffixed float constant is _Decimal64. */
406 BOOL_BITFIELD float_const_decimal64
: 1;
408 /* True if this scope has any label bindings. This is used to speed
409 up searching for labels when popping scopes, particularly since
410 labels are normally only found at function scope. */
411 BOOL_BITFIELD has_label_bindings
: 1;
413 /* True if we should issue a warning if a goto statement crosses any
414 of the bindings. We still need to check the list of bindings to
415 find the specific ones we need to warn about. This is true if
416 decl_jump_unsafe would return true for any of the bindings. This
417 is used to avoid looping over all the bindings unnecessarily. */
418 BOOL_BITFIELD has_jump_unsafe_decl
: 1;
421 /* The scope currently in effect. */
423 static GTY(()) struct c_scope
*current_scope
;
425 /* The innermost function scope. Ordinary (not explicitly declared)
426 labels, bindings to error_mark_node, and the lazily-created
427 bindings of __func__ and its friends get this scope. */
429 static GTY(()) struct c_scope
*current_function_scope
;
431 /* The C file scope. This is reset for each input translation unit. */
433 static GTY(()) struct c_scope
*file_scope
;
435 /* The outermost scope. This is used for all declarations with
436 external linkage, and only these, hence the name. */
438 static GTY(()) struct c_scope
*external_scope
;
440 /* A chain of c_scope structures awaiting reuse. */
442 static GTY((deletable
)) struct c_scope
*scope_freelist
;
444 /* A chain of c_binding structures awaiting reuse. */
446 static GTY((deletable
)) struct c_binding
*binding_freelist
;
448 /* Append VAR to LIST in scope SCOPE. */
449 #define SCOPE_LIST_APPEND(scope, list, decl) do { \
450 struct c_scope *s_ = (scope); \
452 if (s_->list##_last) \
453 BLOCK_CHAIN (s_->list##_last) = d_; \
456 s_->list##_last = d_; \
459 /* Concatenate FROM in scope FSCOPE onto TO in scope TSCOPE. */
460 #define SCOPE_LIST_CONCAT(tscope, to, fscope, from) do { \
461 struct c_scope *t_ = (tscope); \
462 struct c_scope *f_ = (fscope); \
464 BLOCK_CHAIN (t_->to##_last) = f_->from; \
467 t_->to##_last = f_->from##_last; \
470 /* A c_inline_static structure stores details of a static identifier
471 referenced in a definition of a function that may be an inline
472 definition if no subsequent declaration of that function uses
473 "extern" or does not use "inline". */
475 struct GTY((chain_next ("%h.next"))) c_inline_static
{
476 /* The location for a diagnostic. */
479 /* The function that may be an inline definition. */
482 /* The object or function referenced. */
485 /* What sort of reference this is. */
486 enum c_inline_static_type type
;
488 /* The next such structure or NULL. */
489 struct c_inline_static
*next
;
492 /* List of static identifiers used or referenced in functions that may
493 be inline definitions. */
494 static GTY(()) struct c_inline_static
*c_inline_statics
;
496 /* True means unconditionally make a BLOCK for the next scope pushed. */
498 static bool keep_next_level_flag
;
500 /* True means the next call to push_scope will be the outermost scope
501 of a function body, so do not push a new scope, merely cease
502 expecting parameter decls. */
504 static bool next_is_function_body
;
506 /* A vector of pointers to c_binding structures. */
508 typedef struct c_binding
*c_binding_ptr
;
510 /* Information that we keep for a struct or union while it is being
513 struct c_struct_parse_info
515 /* If warn_cxx_compat, a list of types defined within this
517 vec
<tree
> struct_types
;
518 /* If warn_cxx_compat, a list of field names which have bindings,
519 and which are defined in this struct, but which are not defined
520 in any enclosing struct. This is used to clear the in_struct
521 field of the c_bindings structure. */
522 vec
<c_binding_ptr
> fields
;
523 /* If warn_cxx_compat, a list of typedef names used when defining
524 fields in this struct. */
525 vec
<tree
> typedefs_seen
;
528 /* Information for the struct or union currently being parsed, or
529 NULL if not parsing a struct or union. */
530 static struct c_struct_parse_info
*struct_parse_info
;
532 /* Forward declarations. */
533 static tree
lookup_name_in_scope (tree
, struct c_scope
*);
534 static tree
c_make_fname_decl (location_t
, tree
, int);
535 static tree
grokdeclarator (const struct c_declarator
*,
536 struct c_declspecs
*,
537 enum decl_context
, bool, tree
*, tree
*, tree
*,
538 bool *, enum deprecated_states
);
539 static tree
grokparms (struct c_arg_info
*, bool);
540 static void layout_array_type (tree
);
542 /* T is a statement. Add it to the statement-tree. This is the
543 C/ObjC version--C++ has a slightly different version of this
549 enum tree_code code
= TREE_CODE (t
);
551 if (CAN_HAVE_LOCATION_P (t
) && code
!= LABEL_EXPR
)
553 if (!EXPR_HAS_LOCATION (t
))
554 SET_EXPR_LOCATION (t
, input_location
);
557 if (code
== LABEL_EXPR
|| code
== CASE_LABEL_EXPR
)
558 STATEMENT_LIST_HAS_LABEL (cur_stmt_list
) = 1;
560 /* Add T to the statement-tree. Non-side-effect statements need to be
561 recorded during statement expressions. */
562 if (!building_stmt_list_p ())
564 append_to_statement_list_force (t
, &cur_stmt_list
);
569 /* Build a pointer type using the default pointer mode. */
572 c_build_pointer_type (tree to_type
)
574 addr_space_t as
= to_type
== error_mark_node
? ADDR_SPACE_GENERIC
575 : TYPE_ADDR_SPACE (to_type
);
576 enum machine_mode pointer_mode
;
578 if (upc_shared_type_p (to_type
))
579 return build_pointer_type (to_type
);
580 if (as
!= ADDR_SPACE_GENERIC
|| c_default_pointer_mode
== VOIDmode
)
581 pointer_mode
= targetm
.addr_space
.pointer_mode (as
);
583 pointer_mode
= c_default_pointer_mode
;
584 return build_pointer_type_for_mode (to_type
, pointer_mode
, false);
588 /* Return true if we will want to say something if a goto statement
592 decl_jump_unsafe (tree decl
)
594 if (error_operand_p (decl
))
597 /* Always warn about crossing variably modified types. */
598 if ((TREE_CODE (decl
) == VAR_DECL
|| TREE_CODE (decl
) == TYPE_DECL
)
599 && variably_modified_type_p (TREE_TYPE (decl
), NULL_TREE
))
602 /* Otherwise, only warn if -Wgoto-misses-init and this is an
603 initialized automatic decl. */
604 if (warn_jump_misses_init
605 && TREE_CODE (decl
) == VAR_DECL
606 && !TREE_STATIC (decl
)
607 && DECL_INITIAL (decl
) != NULL_TREE
)
615 c_print_identifier (FILE *file
, tree node
, int indent
)
617 print_node (file
, "symbol", I_SYMBOL_DECL (node
), indent
+ 4);
618 print_node (file
, "tag", I_TAG_DECL (node
), indent
+ 4);
619 print_node (file
, "label", I_LABEL_DECL (node
), indent
+ 4);
620 if (C_IS_RESERVED_WORD (node
) && C_RID_CODE (node
) != RID_CXX_COMPAT_WARN
)
622 tree rid
= ridpointers
[C_RID_CODE (node
)];
623 indent_to (file
, indent
+ 4);
624 fprintf (file
, "rid " HOST_PTR_PRINTF
" \"%s\"",
625 (void *) rid
, IDENTIFIER_POINTER (rid
));
629 /* Establish a binding between NAME, an IDENTIFIER_NODE, and DECL,
630 which may be any of several kinds of DECL or TYPE or error_mark_node,
631 in the scope SCOPE. */
633 bind (tree name
, tree decl
, struct c_scope
*scope
, bool invisible
,
634 bool nested
, location_t locus
)
636 struct c_binding
*b
, **here
;
638 if (binding_freelist
)
640 b
= binding_freelist
;
641 binding_freelist
= b
->prev
;
644 b
= ggc_alloc_c_binding ();
649 b
->depth
= scope
->depth
;
650 b
->invisible
= invisible
;
658 b
->prev
= scope
->bindings
;
661 if (decl_jump_unsafe (decl
))
662 scope
->has_jump_unsafe_decl
= 1;
667 switch (TREE_CODE (decl
))
669 case LABEL_DECL
: here
= &I_LABEL_BINDING (name
); break;
672 case RECORD_TYPE
: here
= &I_TAG_BINDING (name
); break;
678 case ERROR_MARK
: here
= &I_SYMBOL_BINDING (name
); break;
684 /* Locate the appropriate place in the chain of shadowed decls
685 to insert this binding. Normally, scope == current_scope and
686 this does nothing. */
687 while (*here
&& (*here
)->depth
> scope
->depth
)
688 here
= &(*here
)->shadowed
;
694 /* Clear the binding structure B, stick it on the binding_freelist,
695 and return the former value of b->prev. This is used by pop_scope
696 and get_parm_info to iterate destructively over all the bindings
697 from a given scope. */
698 static struct c_binding
*
699 free_binding_and_advance (struct c_binding
*b
)
701 struct c_binding
*prev
= b
->prev
;
703 memset (b
, 0, sizeof (struct c_binding
));
704 b
->prev
= binding_freelist
;
705 binding_freelist
= b
;
710 /* Bind a label. Like bind, but skip fields which aren't used for
711 labels, and add the LABEL_VARS value. */
713 bind_label (tree name
, tree label
, struct c_scope
*scope
,
714 struct c_label_vars
*label_vars
)
718 bind (name
, label
, scope
, /*invisible=*/false, /*nested=*/false,
721 scope
->has_label_bindings
= true;
724 gcc_assert (b
->decl
== label
);
725 label_vars
->shadowed
= b
->u
.label
;
726 b
->u
.label
= label_vars
;
729 /* Hook called at end of compilation to assume 1 elt
730 for a file-scope tentative array defn that wasn't complete before. */
733 c_finish_incomplete_decl (tree decl
)
735 if (TREE_CODE (decl
) == VAR_DECL
)
737 tree type
= TREE_TYPE (decl
);
738 if (type
!= error_mark_node
739 && TREE_CODE (type
) == ARRAY_TYPE
740 && !DECL_EXTERNAL (decl
)
741 && TYPE_DOMAIN (type
) == 0)
743 warning_at (DECL_SOURCE_LOCATION (decl
),
744 0, "array %q+D assumed to have one element", decl
);
746 complete_array_type (&TREE_TYPE (decl
), NULL_TREE
, true);
748 relayout_decl (decl
);
753 /* Record that inline function FUNC contains a reference (location
754 LOC) to static DECL (file-scope or function-local according to
758 record_inline_static (location_t loc
, tree func
, tree decl
,
759 enum c_inline_static_type type
)
761 struct c_inline_static
*csi
= ggc_alloc_c_inline_static ();
763 csi
->function
= func
;
764 csi
->static_decl
= decl
;
766 csi
->next
= c_inline_statics
;
767 c_inline_statics
= csi
;
770 /* Check for references to static declarations in inline functions at
771 the end of the translation unit and diagnose them if the functions
772 are still inline definitions. */
775 check_inline_statics (void)
777 struct c_inline_static
*csi
;
778 for (csi
= c_inline_statics
; csi
; csi
= csi
->next
)
780 if (DECL_EXTERNAL (csi
->function
))
784 pedwarn (csi
->location
, 0,
785 "%qD is static but used in inline function %qD "
786 "which is not static", csi
->static_decl
, csi
->function
);
789 pedwarn (csi
->location
, 0,
790 "%q+D is static but declared in inline function %qD "
791 "which is not static", csi
->static_decl
, csi
->function
);
797 c_inline_statics
= NULL
;
800 /* Fill in a c_spot_bindings structure. If DEFINING is true, set it
801 for the current state, otherwise set it to uninitialized. */
804 set_spot_bindings (struct c_spot_bindings
*p
, bool defining
)
808 p
->scope
= current_scope
;
809 p
->bindings_in_scope
= current_scope
->bindings
;
814 p
->bindings_in_scope
= NULL
;
817 p
->left_stmt_expr
= false;
820 /* Update spot bindings P as we pop out of SCOPE. Return true if we
821 should push decls for a label. */
824 update_spot_bindings (struct c_scope
*scope
, struct c_spot_bindings
*p
)
826 if (p
->scope
!= scope
)
828 /* This label or goto is defined in some other scope, or it is a
829 label which is not yet defined. There is nothing to
834 /* Adjust the spot bindings to refer to the bindings already defined
835 in the enclosing scope. */
836 p
->scope
= scope
->outer
;
837 p
->bindings_in_scope
= p
->scope
->bindings
;
842 /* The Objective-C front-end often needs to determine the current scope. */
845 objc_get_current_scope (void)
847 return current_scope
;
850 /* The following function is used only by Objective-C. It needs to live here
851 because it accesses the innards of c_scope. */
854 objc_mark_locals_volatile (void *enclosing_blk
)
856 struct c_scope
*scope
;
859 for (scope
= current_scope
;
860 scope
&& scope
!= enclosing_blk
;
861 scope
= scope
->outer
)
863 for (b
= scope
->bindings
; b
; b
= b
->prev
)
864 objc_volatilize_decl (b
->decl
);
866 /* Do not climb up past the current function. */
867 if (scope
->function_body
)
872 /* Return true if we are in the global binding level. */
875 global_bindings_p (void)
877 return current_scope
== file_scope
;
881 keep_next_level (void)
883 keep_next_level_flag
= true;
886 /* Set the flag for the FLOAT_CONST_DECIMAL64 pragma being ON. */
889 set_float_const_decimal64 (void)
891 current_scope
->float_const_decimal64
= true;
894 /* Clear the flag for the FLOAT_CONST_DECIMAL64 pragma. */
897 clear_float_const_decimal64 (void)
899 current_scope
->float_const_decimal64
= false;
902 /* Return nonzero if an unsuffixed float constant is _Decimal64. */
905 float_const_decimal64_p (void)
907 return current_scope
->float_const_decimal64
;
910 /* Identify this scope as currently being filled with parameters. */
913 declare_parm_level (void)
915 current_scope
->parm_flag
= true;
921 if (next_is_function_body
)
923 /* This is the transition from the parameters to the top level
924 of the function body. These are the same scope
925 (C99 6.2.1p4,6) so we do not push another scope structure.
926 next_is_function_body is set only by store_parm_decls, which
927 in turn is called when and only when we are about to
928 encounter the opening curly brace for the function body.
930 The outermost block of a function always gets a BLOCK node,
931 because the debugging output routines expect that each
932 function has at least one BLOCK. */
933 current_scope
->parm_flag
= false;
934 current_scope
->function_body
= true;
935 current_scope
->keep
= true;
936 current_scope
->outer_function
= current_function_scope
;
937 current_function_scope
= current_scope
;
939 keep_next_level_flag
= false;
940 next_is_function_body
= false;
942 /* The FLOAT_CONST_DECIMAL64 pragma applies to nested scopes. */
943 if (current_scope
->outer
)
944 current_scope
->float_const_decimal64
945 = current_scope
->outer
->float_const_decimal64
;
947 current_scope
->float_const_decimal64
= false;
951 struct c_scope
*scope
;
954 scope
= scope_freelist
;
955 scope_freelist
= scope
->outer
;
958 scope
= ggc_alloc_cleared_c_scope ();
960 /* The FLOAT_CONST_DECIMAL64 pragma applies to nested scopes. */
962 scope
->float_const_decimal64
= current_scope
->float_const_decimal64
;
964 scope
->float_const_decimal64
= false;
966 scope
->keep
= keep_next_level_flag
;
967 scope
->outer
= current_scope
;
968 scope
->depth
= current_scope
? (current_scope
->depth
+ 1) : 0;
970 /* Check for scope depth overflow. Unlikely (2^28 == 268,435,456) but
972 if (current_scope
&& scope
->depth
== 0)
975 sorry ("GCC supports only %u nested scopes", scope
->depth
);
978 current_scope
= scope
;
979 keep_next_level_flag
= false;
983 /* This is called when we are leaving SCOPE. For each label defined
984 in SCOPE, add any appropriate decls to its decls_in_scope fields.
985 These are the decls whose initialization will be skipped by a goto
986 later in the function. */
989 update_label_decls (struct c_scope
*scope
)
996 if (s
->has_label_bindings
)
1000 for (b
= s
->bindings
; b
!= NULL
; b
= b
->prev
)
1002 struct c_label_vars
*label_vars
;
1003 struct c_binding
*b1
;
1006 struct c_goto_bindings
*g
;
1008 if (TREE_CODE (b
->decl
) != LABEL_DECL
)
1010 label_vars
= b
->u
.label
;
1012 b1
= label_vars
->label_bindings
.bindings_in_scope
;
1013 if (label_vars
->label_bindings
.scope
== NULL
)
1016 hjud
= label_vars
->label_bindings
.scope
->has_jump_unsafe_decl
;
1017 if (update_spot_bindings (scope
, &label_vars
->label_bindings
))
1019 /* This label is defined in this scope. */
1022 for (; b1
!= NULL
; b1
= b1
->prev
)
1024 /* A goto from later in the function to this
1025 label will never see the initialization
1026 of B1, if any. Save it to issue a
1027 warning if needed. */
1028 if (decl_jump_unsafe (b1
->decl
))
1029 vec_safe_push(label_vars
->decls_in_scope
, b1
->decl
);
1034 /* Update the bindings of any goto statements associated
1036 FOR_EACH_VEC_SAFE_ELT (label_vars
->gotos
, ix
, g
)
1037 update_spot_bindings (scope
, &g
->goto_bindings
);
1041 /* Don't search beyond the current function. */
1042 if (s
== current_function_scope
)
1049 /* Set the TYPE_CONTEXT of all of TYPE's variants to CONTEXT. */
1052 set_type_context (tree type
, tree context
)
1054 for (type
= TYPE_MAIN_VARIANT (type
); type
;
1055 type
= TYPE_NEXT_VARIANT (type
))
1056 TYPE_CONTEXT (type
) = context
;
1059 /* Exit a scope. Restore the state of the identifier-decl mappings
1060 that were in effect when this scope was entered. Return a BLOCK
1061 node containing all the DECLs in this scope that are of interest
1062 to debug info generation. */
1067 struct c_scope
*scope
= current_scope
;
1068 tree block
, context
, p
;
1069 struct c_binding
*b
;
1071 bool functionbody
= scope
->function_body
;
1072 bool keep
= functionbody
|| scope
->keep
|| scope
->bindings
;
1074 update_label_decls (scope
);
1076 /* If appropriate, create a BLOCK to record the decls for the life
1077 of this function. */
1081 block
= make_node (BLOCK
);
1082 BLOCK_SUBBLOCKS (block
) = scope
->blocks
;
1083 TREE_USED (block
) = 1;
1085 /* In each subblock, record that this is its superior. */
1086 for (p
= scope
->blocks
; p
; p
= BLOCK_CHAIN (p
))
1087 BLOCK_SUPERCONTEXT (p
) = block
;
1089 BLOCK_VARS (block
) = 0;
1092 /* The TYPE_CONTEXTs for all of the tagged types belonging to this
1093 scope must be set so that they point to the appropriate
1094 construct, i.e. either to the current FUNCTION_DECL node, or
1095 else to the BLOCK node we just constructed.
1097 Note that for tagged types whose scope is just the formal
1098 parameter list for some function type specification, we can't
1099 properly set their TYPE_CONTEXTs here, because we don't have a
1100 pointer to the appropriate FUNCTION_TYPE node readily available
1101 to us. For those cases, the TYPE_CONTEXTs of the relevant tagged
1102 type nodes get set in `grokdeclarator' as soon as we have created
1103 the FUNCTION_TYPE node which will represent the "scope" for these
1104 "parameter list local" tagged types. */
1105 if (scope
->function_body
)
1106 context
= current_function_decl
;
1107 else if (scope
== file_scope
)
1109 tree file_decl
= build_translation_unit_decl (NULL_TREE
);
1110 context
= file_decl
;
1115 /* Clear all bindings in this scope. */
1116 for (b
= scope
->bindings
; b
; b
= free_binding_and_advance (b
))
1119 switch (TREE_CODE (p
))
1122 /* Warnings for unused labels, errors for undefined labels. */
1123 if (TREE_USED (p
) && !DECL_INITIAL (p
))
1125 error ("label %q+D used but not defined", p
);
1126 DECL_INITIAL (p
) = error_mark_node
;
1129 warn_for_unused_label (p
);
1131 /* Labels go in BLOCK_VARS. */
1132 DECL_CHAIN (p
) = BLOCK_VARS (block
);
1133 BLOCK_VARS (block
) = p
;
1134 gcc_assert (I_LABEL_BINDING (b
->id
) == b
);
1135 I_LABEL_BINDING (b
->id
) = b
->shadowed
;
1137 /* Also pop back to the shadowed label_vars. */
1138 release_tree_vector (b
->u
.label
->decls_in_scope
);
1139 b
->u
.label
= b
->u
.label
->shadowed
;
1145 set_type_context (p
, context
);
1147 /* Types may not have tag-names, in which case the type
1148 appears in the bindings list with b->id NULL. */
1151 gcc_assert (I_TAG_BINDING (b
->id
) == b
);
1152 I_TAG_BINDING (b
->id
) = b
->shadowed
;
1157 /* Propagate TREE_ADDRESSABLE from nested functions to their
1158 containing functions. */
1159 if (!TREE_ASM_WRITTEN (p
)
1160 && DECL_INITIAL (p
) != 0
1161 && TREE_ADDRESSABLE (p
)
1162 && DECL_ABSTRACT_ORIGIN (p
) != 0
1163 && DECL_ABSTRACT_ORIGIN (p
) != p
)
1164 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (p
)) = 1;
1165 if (!DECL_EXTERNAL (p
)
1166 && !DECL_INITIAL (p
)
1167 && scope
!= file_scope
1168 && scope
!= external_scope
)
1170 error ("nested function %q+D declared but never defined", p
);
1171 undef_nested_function
= true;
1173 else if (DECL_DECLARED_INLINE_P (p
)
1175 && !DECL_INITIAL (p
))
1177 /* C99 6.7.4p6: "a function with external linkage... declared
1178 with an inline function specifier ... shall also be defined
1179 in the same translation unit." */
1180 if (!flag_gnu89_inline
)
1181 pedwarn (input_location
, 0,
1182 "inline function %q+D declared but never defined", p
);
1183 DECL_EXTERNAL (p
) = 1;
1189 /* Warnings for unused variables. */
1190 if ((!TREE_USED (p
) || !DECL_READ_P (p
))
1191 && !TREE_NO_WARNING (p
)
1192 && !DECL_IN_SYSTEM_HEADER (p
)
1194 && !DECL_ARTIFICIAL (p
)
1195 && scope
!= file_scope
1196 && scope
!= external_scope
)
1199 warning (OPT_Wunused_variable
, "unused variable %q+D", p
);
1200 else if (DECL_CONTEXT (p
) == current_function_decl
)
1201 warning_at (DECL_SOURCE_LOCATION (p
),
1202 OPT_Wunused_but_set_variable
,
1203 "variable %qD set but not used", p
);
1208 error ("type of array %q+D completed incompatibly with"
1209 " implicit initialization", p
);
1216 /* All of these go in BLOCK_VARS, but only if this is the
1217 binding in the home scope. */
1220 DECL_CHAIN (p
) = BLOCK_VARS (block
);
1221 BLOCK_VARS (block
) = p
;
1223 else if (VAR_OR_FUNCTION_DECL_P (p
) && scope
!= file_scope
)
1225 /* For block local externs add a special
1226 DECL_EXTERNAL decl for debug info generation. */
1227 tree extp
= copy_node (p
);
1229 DECL_EXTERNAL (extp
) = 1;
1230 TREE_STATIC (extp
) = 0;
1231 TREE_PUBLIC (extp
) = 1;
1232 DECL_INITIAL (extp
) = NULL_TREE
;
1233 DECL_LANG_SPECIFIC (extp
) = NULL
;
1234 DECL_CONTEXT (extp
) = current_function_decl
;
1235 if (TREE_CODE (p
) == FUNCTION_DECL
)
1237 DECL_RESULT (extp
) = NULL_TREE
;
1238 DECL_SAVED_TREE (extp
) = NULL_TREE
;
1239 DECL_STRUCT_FUNCTION (extp
) = NULL
;
1241 if (b
->locus
!= UNKNOWN_LOCATION
)
1242 DECL_SOURCE_LOCATION (extp
) = b
->locus
;
1243 DECL_CHAIN (extp
) = BLOCK_VARS (block
);
1244 BLOCK_VARS (block
) = extp
;
1246 /* If this is the file scope set DECL_CONTEXT of each decl to
1247 the TRANSLATION_UNIT_DECL. This makes same_translation_unit_p
1249 if (scope
== file_scope
)
1251 DECL_CONTEXT (p
) = context
;
1252 if (TREE_CODE (p
) == TYPE_DECL
1253 && TREE_TYPE (p
) != error_mark_node
)
1254 set_type_context (TREE_TYPE (p
), context
);
1258 /* Parameters go in DECL_ARGUMENTS, not BLOCK_VARS, and have
1259 already been put there by store_parm_decls. Unused-
1260 parameter warnings are handled by function.c.
1261 error_mark_node obviously does not go in BLOCK_VARS and
1262 does not get unused-variable warnings. */
1265 /* It is possible for a decl not to have a name. We get
1266 here with b->id NULL in this case. */
1269 gcc_assert (I_SYMBOL_BINDING (b
->id
) == b
);
1270 I_SYMBOL_BINDING (b
->id
) = b
->shadowed
;
1271 if (b
->shadowed
&& b
->shadowed
->u
.type
)
1272 TREE_TYPE (b
->shadowed
->decl
) = b
->shadowed
->u
.type
;
1282 /* Dispose of the block that we just made inside some higher level. */
1283 if ((scope
->function_body
|| scope
== file_scope
) && context
)
1285 DECL_INITIAL (context
) = block
;
1286 BLOCK_SUPERCONTEXT (block
) = context
;
1288 else if (scope
->outer
)
1291 SCOPE_LIST_APPEND (scope
->outer
, blocks
, block
);
1292 /* If we did not make a block for the scope just exited, any
1293 blocks made for inner scopes must be carried forward so they
1294 will later become subblocks of something else. */
1295 else if (scope
->blocks
)
1296 SCOPE_LIST_CONCAT (scope
->outer
, blocks
, scope
, blocks
);
1299 /* Pop the current scope, and free the structure for reuse. */
1300 current_scope
= scope
->outer
;
1301 if (scope
->function_body
)
1302 current_function_scope
= scope
->outer_function
;
1304 memset (scope
, 0, sizeof (struct c_scope
));
1305 scope
->outer
= scope_freelist
;
1306 scope_freelist
= scope
;
1312 push_file_scope (void)
1320 file_scope
= current_scope
;
1322 start_fname_decls ();
1324 for (decl
= visible_builtins
; decl
; decl
= DECL_CHAIN (decl
))
1325 bind (DECL_NAME (decl
), decl
, file_scope
,
1326 /*invisible=*/false, /*nested=*/true, DECL_SOURCE_LOCATION (decl
));
1330 pop_file_scope (void)
1332 /* In case there were missing closebraces, get us back to the global
1334 while (current_scope
!= file_scope
)
1337 /* __FUNCTION__ is defined at file scope (""). This
1338 call may not be necessary as my tests indicate it
1339 still works without it. */
1340 finish_fname_decls ();
1342 check_inline_statics ();
1344 /* This is the point to write out a PCH if we're doing that.
1345 In that case we do not want to do anything else. */
1348 c_common_write_pch ();
1352 /* Pop off the file scope and close this translation unit. */
1356 maybe_apply_pending_pragma_weaks ();
1359 /* Adjust the bindings for the start of a statement expression. */
1362 c_bindings_start_stmt_expr (struct c_spot_bindings
* switch_bindings
)
1364 struct c_scope
*scope
;
1366 for (scope
= current_scope
; scope
!= NULL
; scope
= scope
->outer
)
1368 struct c_binding
*b
;
1370 if (!scope
->has_label_bindings
)
1373 for (b
= scope
->bindings
; b
!= NULL
; b
= b
->prev
)
1375 struct c_label_vars
*label_vars
;
1377 struct c_goto_bindings
*g
;
1379 if (TREE_CODE (b
->decl
) != LABEL_DECL
)
1381 label_vars
= b
->u
.label
;
1382 ++label_vars
->label_bindings
.stmt_exprs
;
1383 FOR_EACH_VEC_SAFE_ELT (label_vars
->gotos
, ix
, g
)
1384 ++g
->goto_bindings
.stmt_exprs
;
1388 if (switch_bindings
!= NULL
)
1389 ++switch_bindings
->stmt_exprs
;
1392 /* Adjust the bindings for the end of a statement expression. */
1395 c_bindings_end_stmt_expr (struct c_spot_bindings
*switch_bindings
)
1397 struct c_scope
*scope
;
1399 for (scope
= current_scope
; scope
!= NULL
; scope
= scope
->outer
)
1401 struct c_binding
*b
;
1403 if (!scope
->has_label_bindings
)
1406 for (b
= scope
->bindings
; b
!= NULL
; b
= b
->prev
)
1408 struct c_label_vars
*label_vars
;
1410 struct c_goto_bindings
*g
;
1412 if (TREE_CODE (b
->decl
) != LABEL_DECL
)
1414 label_vars
= b
->u
.label
;
1415 --label_vars
->label_bindings
.stmt_exprs
;
1416 if (label_vars
->label_bindings
.stmt_exprs
< 0)
1418 label_vars
->label_bindings
.left_stmt_expr
= true;
1419 label_vars
->label_bindings
.stmt_exprs
= 0;
1421 FOR_EACH_VEC_SAFE_ELT (label_vars
->gotos
, ix
, g
)
1423 --g
->goto_bindings
.stmt_exprs
;
1424 if (g
->goto_bindings
.stmt_exprs
< 0)
1426 g
->goto_bindings
.left_stmt_expr
= true;
1427 g
->goto_bindings
.stmt_exprs
= 0;
1433 if (switch_bindings
!= NULL
)
1435 --switch_bindings
->stmt_exprs
;
1436 gcc_assert (switch_bindings
->stmt_exprs
>= 0);
1440 /* Push a definition or a declaration of struct, union or enum tag "name".
1441 "type" should be the type node.
1442 We assume that the tag "name" is not already defined, and has a location
1445 Note that the definition may really be just a forward reference.
1446 In that case, the TYPE_SIZE will be zero. */
1449 pushtag (location_t loc
, tree name
, tree type
)
1451 /* Record the identifier as the type's name if it has none. */
1452 if (name
&& !TYPE_NAME (type
))
1453 TYPE_NAME (type
) = name
;
1454 bind (name
, type
, current_scope
, /*invisible=*/false, /*nested=*/false, loc
);
1456 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
1457 tagged type we just added to the current scope. This fake
1458 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
1459 to output a representation of a tagged type, and it also gives
1460 us a convenient place to record the "scope start" address for the
1463 TYPE_STUB_DECL (type
) = pushdecl (build_decl (loc
,
1464 TYPE_DECL
, NULL_TREE
, type
));
1466 /* An approximation for now, so we can tell this is a function-scope tag.
1467 This will be updated in pop_scope. */
1468 TYPE_CONTEXT (type
) = DECL_CONTEXT (TYPE_STUB_DECL (type
));
1470 if (warn_cxx_compat
&& name
!= NULL_TREE
)
1472 struct c_binding
*b
= I_SYMBOL_BINDING (name
);
1475 && b
->decl
!= NULL_TREE
1476 && TREE_CODE (b
->decl
) == TYPE_DECL
1477 && (B_IN_CURRENT_SCOPE (b
)
1478 || (current_scope
== file_scope
&& B_IN_EXTERNAL_SCOPE (b
)))
1479 && (TYPE_MAIN_VARIANT (TREE_TYPE (b
->decl
))
1480 != TYPE_MAIN_VARIANT (type
)))
1482 warning_at (loc
, OPT_Wc___compat
,
1483 ("using %qD as both a typedef and a tag is "
1486 if (b
->locus
!= UNKNOWN_LOCATION
)
1487 inform (b
->locus
, "originally defined here");
1492 /* Subroutine of compare_decls. Allow harmless mismatches in return
1493 and argument types provided that the type modes match. This function
1494 return a unified type given a suitable match, and 0 otherwise. */
1497 match_builtin_function_types (tree newtype
, tree oldtype
)
1499 tree newrettype
, oldrettype
;
1500 tree newargs
, oldargs
;
1501 tree trytype
, tryargs
;
1503 /* Accept the return type of the new declaration if same modes. */
1504 oldrettype
= TREE_TYPE (oldtype
);
1505 newrettype
= TREE_TYPE (newtype
);
1507 if (TYPE_MODE (oldrettype
) != TYPE_MODE (newrettype
))
1510 oldargs
= TYPE_ARG_TYPES (oldtype
);
1511 newargs
= TYPE_ARG_TYPES (newtype
);
1514 while (oldargs
|| newargs
)
1518 || !TREE_VALUE (oldargs
)
1519 || !TREE_VALUE (newargs
)
1520 || TYPE_MODE (TREE_VALUE (oldargs
))
1521 != TYPE_MODE (TREE_VALUE (newargs
)))
1524 oldargs
= TREE_CHAIN (oldargs
);
1525 newargs
= TREE_CHAIN (newargs
);
1528 trytype
= build_function_type (newrettype
, tryargs
);
1529 return build_type_attribute_variant (trytype
, TYPE_ATTRIBUTES (oldtype
));
1532 /* Subroutine of diagnose_mismatched_decls. Check for function type
1533 mismatch involving an empty arglist vs a nonempty one and give clearer
1536 diagnose_arglist_conflict (tree newdecl
, tree olddecl
,
1537 tree newtype
, tree oldtype
)
1541 if (TREE_CODE (olddecl
) != FUNCTION_DECL
1542 || !comptypes (TREE_TYPE (oldtype
), TREE_TYPE (newtype
))
1543 || !((!prototype_p (oldtype
) && DECL_INITIAL (olddecl
) == 0)
1544 || (!prototype_p (newtype
) && DECL_INITIAL (newdecl
) == 0)))
1547 t
= TYPE_ARG_TYPES (oldtype
);
1549 t
= TYPE_ARG_TYPES (newtype
);
1550 for (; t
; t
= TREE_CHAIN (t
))
1552 tree type
= TREE_VALUE (t
);
1554 if (TREE_CHAIN (t
) == 0
1555 && TYPE_MAIN_VARIANT (type
) != void_type_node
)
1557 inform (input_location
, "a parameter list with an ellipsis can%'t match "
1558 "an empty parameter name list declaration");
1562 if (c_type_promotes_to (type
) != type
)
1564 inform (input_location
, "an argument type that has a default promotion can%'t match "
1565 "an empty parameter name list declaration");
1571 /* Another subroutine of diagnose_mismatched_decls. OLDDECL is an
1572 old-style function definition, NEWDECL is a prototype declaration.
1573 Diagnose inconsistencies in the argument list. Returns TRUE if
1574 the prototype is compatible, FALSE if not. */
1576 validate_proto_after_old_defn (tree newdecl
, tree newtype
, tree oldtype
)
1578 tree newargs
, oldargs
;
1581 #define END_OF_ARGLIST(t) ((t) == void_type_node)
1583 oldargs
= TYPE_ACTUAL_ARG_TYPES (oldtype
);
1584 newargs
= TYPE_ARG_TYPES (newtype
);
1589 tree oldargtype
= TREE_VALUE (oldargs
);
1590 tree newargtype
= TREE_VALUE (newargs
);
1592 if (oldargtype
== error_mark_node
|| newargtype
== error_mark_node
)
1595 oldargtype
= (TYPE_ATOMIC (oldargtype
)
1596 ? c_build_qualified_type (TYPE_MAIN_VARIANT (oldargtype
),
1598 : TYPE_MAIN_VARIANT (oldargtype
));
1599 newargtype
= (TYPE_ATOMIC (newargtype
)
1600 ? c_build_qualified_type (TYPE_MAIN_VARIANT (newargtype
),
1602 : TYPE_MAIN_VARIANT (newargtype
));
1604 if (END_OF_ARGLIST (oldargtype
) && END_OF_ARGLIST (newargtype
))
1607 /* Reaching the end of just one list means the two decls don't
1608 agree on the number of arguments. */
1609 if (END_OF_ARGLIST (oldargtype
))
1611 error ("prototype for %q+D declares more arguments "
1612 "than previous old-style definition", newdecl
);
1615 else if (END_OF_ARGLIST (newargtype
))
1617 error ("prototype for %q+D declares fewer arguments "
1618 "than previous old-style definition", newdecl
);
1622 /* Type for passing arg must be consistent with that declared
1624 else if (!comptypes (oldargtype
, newargtype
))
1626 error ("prototype for %q+D declares argument %d"
1627 " with incompatible type",
1632 oldargs
= TREE_CHAIN (oldargs
);
1633 newargs
= TREE_CHAIN (newargs
);
1637 /* If we get here, no errors were found, but do issue a warning
1638 for this poor-style construct. */
1639 warning (0, "prototype for %q+D follows non-prototype definition",
1642 #undef END_OF_ARGLIST
1645 /* Subroutine of diagnose_mismatched_decls. Report the location of DECL,
1646 first in a pair of mismatched declarations, using the diagnostic
1649 locate_old_decl (tree decl
)
1651 if (TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_BUILT_IN (decl
)
1652 && !C_DECL_DECLARED_BUILTIN (decl
))
1654 else if (DECL_INITIAL (decl
))
1655 inform (input_location
, "previous definition of %q+D was here", decl
);
1656 else if (C_DECL_IMPLICIT (decl
))
1657 inform (input_location
, "previous implicit declaration of %q+D was here", decl
);
1659 inform (input_location
, "previous declaration of %q+D was here", decl
);
1662 /* Subroutine of duplicate_decls. Compare NEWDECL to OLDDECL.
1663 Returns true if the caller should proceed to merge the two, false
1664 if OLDDECL should simply be discarded. As a side effect, issues
1665 all necessary diagnostics for invalid or poor-style combinations.
1666 If it returns true, writes the types of NEWDECL and OLDDECL to
1667 *NEWTYPEP and *OLDTYPEP - these may have been adjusted from
1668 TREE_TYPE (NEWDECL, OLDDECL) respectively. */
1671 diagnose_mismatched_decls (tree newdecl
, tree olddecl
,
1672 tree
*newtypep
, tree
*oldtypep
)
1674 tree newtype
, oldtype
;
1675 bool pedwarned
= false;
1676 bool warned
= false;
1679 #define DECL_EXTERN_INLINE(DECL) (DECL_DECLARED_INLINE_P (DECL) \
1680 && DECL_EXTERNAL (DECL))
1682 /* If we have error_mark_node for either decl or type, just discard
1683 the previous decl - we're in an error cascade already. */
1684 if (olddecl
== error_mark_node
|| newdecl
== error_mark_node
)
1686 *oldtypep
= oldtype
= TREE_TYPE (olddecl
);
1687 *newtypep
= newtype
= TREE_TYPE (newdecl
);
1688 if (oldtype
== error_mark_node
|| newtype
== error_mark_node
)
1691 /* Two different categories of symbol altogether. This is an error
1692 unless OLDDECL is a builtin. OLDDECL will be discarded in any case. */
1693 if (TREE_CODE (olddecl
) != TREE_CODE (newdecl
))
1695 if (!(TREE_CODE (olddecl
) == FUNCTION_DECL
1696 && DECL_BUILT_IN (olddecl
)
1697 && !C_DECL_DECLARED_BUILTIN (olddecl
)))
1699 error ("%q+D redeclared as different kind of symbol", newdecl
);
1700 locate_old_decl (olddecl
);
1702 else if (TREE_PUBLIC (newdecl
))
1703 warning (0, "built-in function %q+D declared as non-function",
1706 warning (OPT_Wshadow
, "declaration of %q+D shadows "
1707 "a built-in function", newdecl
);
1711 /* Enumerators have no linkage, so may only be declared once in a
1713 if (TREE_CODE (olddecl
) == CONST_DECL
)
1715 error ("redeclaration of enumerator %q+D", newdecl
);
1716 locate_old_decl (olddecl
);
1720 if (!comptypes (oldtype
, newtype
))
1722 if (TREE_CODE (olddecl
) == FUNCTION_DECL
1723 && DECL_BUILT_IN (olddecl
) && !C_DECL_DECLARED_BUILTIN (olddecl
))
1725 /* Accept harmless mismatch in function types.
1726 This is for the ffs and fprintf builtins. */
1727 tree trytype
= match_builtin_function_types (newtype
, oldtype
);
1729 if (trytype
&& comptypes (newtype
, trytype
))
1730 *oldtypep
= oldtype
= trytype
;
1733 /* If types don't match for a built-in, throw away the
1734 built-in. No point in calling locate_old_decl here, it
1735 won't print anything. */
1736 warning (0, "conflicting types for built-in function %q+D",
1741 else if (TREE_CODE (olddecl
) == FUNCTION_DECL
1742 && DECL_IS_BUILTIN (olddecl
))
1744 /* A conflicting function declaration for a predeclared
1745 function that isn't actually built in. Objective C uses
1746 these. The new declaration silently overrides everything
1747 but the volatility (i.e. noreturn) indication. See also
1748 below. FIXME: Make Objective C use normal builtins. */
1749 TREE_THIS_VOLATILE (newdecl
) |= TREE_THIS_VOLATILE (olddecl
);
1752 /* Permit void foo (...) to match int foo (...) if the latter is
1753 the definition and implicit int was used. See
1754 c-torture/compile/920625-2.c. */
1755 else if (TREE_CODE (newdecl
) == FUNCTION_DECL
&& DECL_INITIAL (newdecl
)
1756 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype
)) == void_type_node
1757 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype
)) == integer_type_node
1758 && C_FUNCTION_IMPLICIT_INT (newdecl
) && !DECL_INITIAL (olddecl
))
1760 pedwarned
= pedwarn (input_location
, 0,
1761 "conflicting types for %q+D", newdecl
);
1762 /* Make sure we keep void as the return type. */
1763 TREE_TYPE (newdecl
) = *newtypep
= newtype
= oldtype
;
1764 C_FUNCTION_IMPLICIT_INT (newdecl
) = 0;
1766 /* Permit void foo (...) to match an earlier call to foo (...) with
1767 no declared type (thus, implicitly int). */
1768 else if (TREE_CODE (newdecl
) == FUNCTION_DECL
1769 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype
)) == void_type_node
1770 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype
)) == integer_type_node
1771 && C_DECL_IMPLICIT (olddecl
) && !DECL_INITIAL (olddecl
))
1773 pedwarned
= pedwarn (input_location
, 0,
1774 "conflicting types for %q+D", newdecl
);
1775 /* Make sure we keep void as the return type. */
1776 TREE_TYPE (olddecl
) = *oldtypep
= oldtype
= newtype
;
1780 int new_quals
= TYPE_QUALS (newtype
);
1781 int old_quals
= TYPE_QUALS (oldtype
);
1783 if (new_quals
!= old_quals
)
1785 addr_space_t new_addr
= DECODE_QUAL_ADDR_SPACE (new_quals
);
1786 addr_space_t old_addr
= DECODE_QUAL_ADDR_SPACE (old_quals
);
1787 if (new_addr
!= old_addr
)
1789 if (ADDR_SPACE_GENERIC_P (new_addr
))
1790 error ("conflicting named address spaces (generic vs %s) "
1792 c_addr_space_name (old_addr
), newdecl
);
1793 else if (ADDR_SPACE_GENERIC_P (old_addr
))
1794 error ("conflicting named address spaces (%s vs generic) "
1796 c_addr_space_name (new_addr
), newdecl
);
1798 error ("conflicting named address spaces (%s vs %s) "
1800 c_addr_space_name (new_addr
),
1801 c_addr_space_name (old_addr
),
1805 if (CLEAR_QUAL_ADDR_SPACE (new_quals
)
1806 != CLEAR_QUAL_ADDR_SPACE (old_quals
))
1807 error ("conflicting type qualifiers for %q+D", newdecl
);
1810 error ("conflicting types for %q+D", newdecl
);
1811 diagnose_arglist_conflict (newdecl
, olddecl
, newtype
, oldtype
);
1812 locate_old_decl (olddecl
);
1817 /* Redeclaration of a type is a constraint violation (6.7.2.3p1),
1818 but silently ignore the redeclaration if either is in a system
1819 header. (Conflicting redeclarations were handled above.) This
1820 is allowed for C11 if the types are the same, not just
1822 if (TREE_CODE (newdecl
) == TYPE_DECL
)
1824 bool types_different
= false;
1825 int comptypes_result
;
1828 = comptypes_check_different_types (oldtype
, newtype
, &types_different
);
1830 if (comptypes_result
!= 1 || types_different
)
1832 error ("redefinition of typedef %q+D with different type", newdecl
);
1833 locate_old_decl (olddecl
);
1837 if (DECL_IN_SYSTEM_HEADER (newdecl
)
1838 || DECL_IN_SYSTEM_HEADER (olddecl
)
1839 || TREE_NO_WARNING (newdecl
)
1840 || TREE_NO_WARNING (olddecl
))
1841 return true; /* Allow OLDDECL to continue in use. */
1843 if (variably_modified_type_p (newtype
, NULL
))
1845 error ("redefinition of typedef %q+D with variably modified type",
1847 locate_old_decl (olddecl
);
1849 else if (pedantic
&& !flag_isoc11
)
1851 pedwarn (input_location
, OPT_Wpedantic
,
1852 "redefinition of typedef %q+D", newdecl
);
1853 locate_old_decl (olddecl
);
1859 /* Function declarations can either be 'static' or 'extern' (no
1860 qualifier is equivalent to 'extern' - C99 6.2.2p5) and therefore
1861 can never conflict with each other on account of linkage
1862 (6.2.2p4). Multiple definitions are not allowed (6.9p3,5) but
1863 gnu89 mode permits two definitions if one is 'extern inline' and
1864 one is not. The non- extern-inline definition supersedes the
1865 extern-inline definition. */
1867 else if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
1869 /* If you declare a built-in function name as static, or
1870 define the built-in with an old-style definition (so we
1871 can't validate the argument list) the built-in definition is
1872 overridden, but optionally warn this was a bad choice of name. */
1873 if (DECL_BUILT_IN (olddecl
)
1874 && !C_DECL_DECLARED_BUILTIN (olddecl
)
1875 && (!TREE_PUBLIC (newdecl
)
1876 || (DECL_INITIAL (newdecl
)
1877 && !prototype_p (TREE_TYPE (newdecl
)))))
1879 warning (OPT_Wshadow
, "declaration of %q+D shadows "
1880 "a built-in function", newdecl
);
1881 /* Discard the old built-in function. */
1885 if (DECL_INITIAL (newdecl
))
1887 if (DECL_INITIAL (olddecl
))
1889 /* If both decls are in the same TU and the new declaration
1890 isn't overriding an extern inline reject the new decl.
1891 In c99, no overriding is allowed in the same translation
1893 if ((!DECL_EXTERN_INLINE (olddecl
)
1894 || DECL_EXTERN_INLINE (newdecl
)
1895 || (!flag_gnu89_inline
1896 && (!DECL_DECLARED_INLINE_P (olddecl
)
1897 || !lookup_attribute ("gnu_inline",
1898 DECL_ATTRIBUTES (olddecl
)))
1899 && (!DECL_DECLARED_INLINE_P (newdecl
)
1900 || !lookup_attribute ("gnu_inline",
1901 DECL_ATTRIBUTES (newdecl
))))
1903 && same_translation_unit_p (newdecl
, olddecl
))
1905 error ("redefinition of %q+D", newdecl
);
1906 locate_old_decl (olddecl
);
1911 /* If we have a prototype after an old-style function definition,
1912 the argument types must be checked specially. */
1913 else if (DECL_INITIAL (olddecl
)
1914 && !prototype_p (oldtype
) && prototype_p (newtype
)
1915 && TYPE_ACTUAL_ARG_TYPES (oldtype
)
1916 && !validate_proto_after_old_defn (newdecl
, newtype
, oldtype
))
1918 locate_old_decl (olddecl
);
1921 /* A non-static declaration (even an "extern") followed by a
1922 static declaration is undefined behavior per C99 6.2.2p3-5,7.
1923 The same is true for a static forward declaration at block
1924 scope followed by a non-static declaration/definition at file
1925 scope. Static followed by non-static at the same scope is
1926 not undefined behavior, and is the most convenient way to get
1927 some effects (see e.g. what unwind-dw2-fde-glibc.c does to
1928 the definition of _Unwind_Find_FDE in unwind-dw2-fde.c), but
1929 we do diagnose it if -Wtraditional. */
1930 if (TREE_PUBLIC (olddecl
) && !TREE_PUBLIC (newdecl
))
1932 /* Two exceptions to the rule. If olddecl is an extern
1933 inline, or a predeclared function that isn't actually
1934 built in, newdecl silently overrides olddecl. The latter
1935 occur only in Objective C; see also above. (FIXME: Make
1936 Objective C use normal builtins.) */
1937 if (!DECL_IS_BUILTIN (olddecl
)
1938 && !DECL_EXTERN_INLINE (olddecl
))
1940 error ("static declaration of %q+D follows "
1941 "non-static declaration", newdecl
);
1942 locate_old_decl (olddecl
);
1946 else if (TREE_PUBLIC (newdecl
) && !TREE_PUBLIC (olddecl
))
1948 if (DECL_CONTEXT (olddecl
))
1950 error ("non-static declaration of %q+D follows "
1951 "static declaration", newdecl
);
1952 locate_old_decl (olddecl
);
1955 else if (warn_traditional
)
1957 warned
|= warning (OPT_Wtraditional
,
1958 "non-static declaration of %q+D "
1959 "follows static declaration", newdecl
);
1963 /* Make sure gnu_inline attribute is either not present, or
1964 present on all inline decls. */
1965 if (DECL_DECLARED_INLINE_P (olddecl
)
1966 && DECL_DECLARED_INLINE_P (newdecl
))
1968 bool newa
= lookup_attribute ("gnu_inline",
1969 DECL_ATTRIBUTES (newdecl
)) != NULL
;
1970 bool olda
= lookup_attribute ("gnu_inline",
1971 DECL_ATTRIBUTES (olddecl
)) != NULL
;
1974 error_at (input_location
, "%<gnu_inline%> attribute present on %q+D",
1975 newa
? newdecl
: olddecl
);
1976 error_at (DECL_SOURCE_LOCATION (newa
? olddecl
: newdecl
),
1981 else if (TREE_CODE (newdecl
) == VAR_DECL
)
1983 /* Only variables can be thread-local, and all declarations must
1984 agree on this property. */
1985 if (C_DECL_THREADPRIVATE_P (olddecl
) && !DECL_THREAD_LOCAL_P (newdecl
))
1987 /* Nothing to check. Since OLDDECL is marked threadprivate
1988 and NEWDECL does not have a thread-local attribute, we
1989 will merge the threadprivate attribute into NEWDECL. */
1992 else if (DECL_THREAD_LOCAL_P (newdecl
) != DECL_THREAD_LOCAL_P (olddecl
))
1994 if (DECL_THREAD_LOCAL_P (newdecl
))
1995 error ("thread-local declaration of %q+D follows "
1996 "non-thread-local declaration", newdecl
);
1998 error ("non-thread-local declaration of %q+D follows "
1999 "thread-local declaration", newdecl
);
2001 locate_old_decl (olddecl
);
2005 /* Multiple initialized definitions are not allowed (6.9p3,5). */
2006 if (DECL_INITIAL (newdecl
) && DECL_INITIAL (olddecl
))
2008 error ("redefinition of %q+D", newdecl
);
2009 locate_old_decl (olddecl
);
2013 /* Objects declared at file scope: if the first declaration had
2014 external linkage (even if it was an external reference) the
2015 second must have external linkage as well, or the behavior is
2016 undefined. If the first declaration had internal linkage, then
2017 the second must too, or else be an external reference (in which
2018 case the composite declaration still has internal linkage).
2019 As for function declarations, we warn about the static-then-
2020 extern case only for -Wtraditional. See generally 6.2.2p3-5,7. */
2021 if (DECL_FILE_SCOPE_P (newdecl
)
2022 && TREE_PUBLIC (newdecl
) != TREE_PUBLIC (olddecl
))
2024 if (DECL_EXTERNAL (newdecl
))
2026 if (!DECL_FILE_SCOPE_P (olddecl
))
2028 error ("extern declaration of %q+D follows "
2029 "declaration with no linkage", newdecl
);
2030 locate_old_decl (olddecl
);
2033 else if (warn_traditional
)
2035 warned
|= warning (OPT_Wtraditional
,
2036 "non-static declaration of %q+D "
2037 "follows static declaration", newdecl
);
2042 if (TREE_PUBLIC (newdecl
))
2043 error ("non-static declaration of %q+D follows "
2044 "static declaration", newdecl
);
2046 error ("static declaration of %q+D follows "
2047 "non-static declaration", newdecl
);
2049 locate_old_decl (olddecl
);
2053 /* Two objects with the same name declared at the same block
2054 scope must both be external references (6.7p3). */
2055 else if (!DECL_FILE_SCOPE_P (newdecl
))
2057 if (DECL_EXTERNAL (newdecl
))
2059 /* Extern with initializer at block scope, which will
2060 already have received an error. */
2062 else if (DECL_EXTERNAL (olddecl
))
2064 error ("declaration of %q+D with no linkage follows "
2065 "extern declaration", newdecl
);
2066 locate_old_decl (olddecl
);
2070 error ("redeclaration of %q+D with no linkage", newdecl
);
2071 locate_old_decl (olddecl
);
2077 /* C++ does not permit a decl to appear multiple times at file
2080 && DECL_FILE_SCOPE_P (newdecl
)
2081 && !DECL_EXTERNAL (newdecl
)
2082 && !DECL_EXTERNAL (olddecl
))
2083 warned
|= warning_at (DECL_SOURCE_LOCATION (newdecl
),
2085 ("duplicate declaration of %qD is "
2091 /* All decls must agree on a visibility. */
2092 if (CODE_CONTAINS_STRUCT (TREE_CODE (newdecl
), TS_DECL_WITH_VIS
)
2093 && DECL_VISIBILITY_SPECIFIED (newdecl
) && DECL_VISIBILITY_SPECIFIED (olddecl
)
2094 && DECL_VISIBILITY (newdecl
) != DECL_VISIBILITY (olddecl
))
2096 warned
|= warning (0, "redeclaration of %q+D with different visibility "
2097 "(old visibility preserved)", newdecl
);
2100 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2102 /* Diagnose inline __attribute__ ((noinline)) which is silly. */
2103 if (DECL_DECLARED_INLINE_P (newdecl
)
2104 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl
)))
2106 warned
|= warning (OPT_Wattributes
,
2107 "inline declaration of %qD follows "
2108 "declaration with attribute noinline", newdecl
);
2110 else if (DECL_DECLARED_INLINE_P (olddecl
)
2111 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl
)))
2113 warned
|= warning (OPT_Wattributes
,
2114 "declaration of %q+D with attribute "
2115 "noinline follows inline declaration ", newdecl
);
2118 else /* PARM_DECL, VAR_DECL */
2120 /* Redeclaration of a parameter is a constraint violation (this is
2121 not explicitly stated, but follows from C99 6.7p3 [no more than
2122 one declaration of the same identifier with no linkage in the
2123 same scope, except type tags] and 6.2.2p6 [parameters have no
2124 linkage]). We must check for a forward parameter declaration,
2125 indicated by TREE_ASM_WRITTEN on the old declaration - this is
2126 an extension, the mandatory diagnostic for which is handled by
2127 mark_forward_parm_decls. */
2129 if (TREE_CODE (newdecl
) == PARM_DECL
2130 && (!TREE_ASM_WRITTEN (olddecl
) || TREE_ASM_WRITTEN (newdecl
)))
2132 error ("redefinition of parameter %q+D", newdecl
);
2133 locate_old_decl (olddecl
);
2138 /* Optional warning for completely redundant decls. */
2139 if (!warned
&& !pedwarned
2140 && warn_redundant_decls
2141 /* Don't warn about a function declaration followed by a
2143 && !(TREE_CODE (newdecl
) == FUNCTION_DECL
2144 && DECL_INITIAL (newdecl
) && !DECL_INITIAL (olddecl
))
2145 /* Don't warn about redundant redeclarations of builtins. */
2146 && !(TREE_CODE (newdecl
) == FUNCTION_DECL
2147 && !DECL_BUILT_IN (newdecl
)
2148 && DECL_BUILT_IN (olddecl
)
2149 && !C_DECL_DECLARED_BUILTIN (olddecl
))
2150 /* Don't warn about an extern followed by a definition. */
2151 && !(DECL_EXTERNAL (olddecl
) && !DECL_EXTERNAL (newdecl
))
2152 /* Don't warn about forward parameter decls. */
2153 && !(TREE_CODE (newdecl
) == PARM_DECL
2154 && TREE_ASM_WRITTEN (olddecl
) && !TREE_ASM_WRITTEN (newdecl
))
2155 /* Don't warn about a variable definition following a declaration. */
2156 && !(TREE_CODE (newdecl
) == VAR_DECL
2157 && DECL_INITIAL (newdecl
) && !DECL_INITIAL (olddecl
)))
2159 warned
= warning (OPT_Wredundant_decls
, "redundant redeclaration of %q+D",
2163 /* Report location of previous decl/defn. */
2164 if (warned
|| pedwarned
)
2165 locate_old_decl (olddecl
);
2167 #undef DECL_EXTERN_INLINE
2172 /* Subroutine of duplicate_decls. NEWDECL has been found to be
2173 consistent with OLDDECL, but carries new information. Merge the
2174 new information into OLDDECL. This function issues no
2178 merge_decls (tree newdecl
, tree olddecl
, tree newtype
, tree oldtype
)
2180 bool new_is_definition
= (TREE_CODE (newdecl
) == FUNCTION_DECL
2181 && DECL_INITIAL (newdecl
) != 0);
2182 bool new_is_prototype
= (TREE_CODE (newdecl
) == FUNCTION_DECL
2183 && prototype_p (TREE_TYPE (newdecl
)));
2184 bool old_is_prototype
= (TREE_CODE (olddecl
) == FUNCTION_DECL
2185 && prototype_p (TREE_TYPE (olddecl
)));
2187 /* For real parm decl following a forward decl, rechain the old decl
2188 in its new location and clear TREE_ASM_WRITTEN (it's not a
2189 forward decl anymore). */
2190 if (TREE_CODE (newdecl
) == PARM_DECL
2191 && TREE_ASM_WRITTEN (olddecl
) && !TREE_ASM_WRITTEN (newdecl
))
2193 struct c_binding
*b
, **here
;
2195 for (here
= ¤t_scope
->bindings
; *here
; here
= &(*here
)->prev
)
2196 if ((*here
)->decl
== olddecl
)
2203 b
->prev
= current_scope
->bindings
;
2204 current_scope
->bindings
= b
;
2206 TREE_ASM_WRITTEN (olddecl
) = 0;
2209 DECL_ATTRIBUTES (newdecl
)
2210 = targetm
.merge_decl_attributes (olddecl
, newdecl
);
2212 /* Merge the data types specified in the two decls. */
2214 = TREE_TYPE (olddecl
)
2215 = composite_type (newtype
, oldtype
);
2217 /* Lay the type out, unless already done. */
2218 if (!comptypes (oldtype
, TREE_TYPE (newdecl
)))
2220 if (TREE_TYPE (newdecl
) != error_mark_node
)
2221 layout_type (TREE_TYPE (newdecl
));
2222 if (TREE_CODE (newdecl
) != FUNCTION_DECL
2223 && TREE_CODE (newdecl
) != TYPE_DECL
2224 && TREE_CODE (newdecl
) != CONST_DECL
)
2225 layout_decl (newdecl
, 0);
2229 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
2230 DECL_SIZE (newdecl
) = DECL_SIZE (olddecl
);
2231 DECL_SIZE_UNIT (newdecl
) = DECL_SIZE_UNIT (olddecl
);
2232 DECL_MODE (newdecl
) = DECL_MODE (olddecl
);
2233 if (DECL_ALIGN (olddecl
) > DECL_ALIGN (newdecl
))
2235 DECL_ALIGN (newdecl
) = DECL_ALIGN (olddecl
);
2236 DECL_USER_ALIGN (newdecl
) |= DECL_USER_ALIGN (olddecl
);
2240 /* Keep the old rtl since we can safely use it. */
2241 if (HAS_RTL_P (olddecl
))
2242 COPY_DECL_RTL (olddecl
, newdecl
);
2244 /* Merge the type qualifiers. */
2245 if (TREE_READONLY (newdecl
))
2246 TREE_READONLY (olddecl
) = 1;
2248 if (TREE_THIS_VOLATILE (newdecl
))
2249 TREE_THIS_VOLATILE (olddecl
) = 1;
2251 if (TREE_SHARED (newdecl
))
2253 TREE_SHARED (olddecl
) = 1;
2254 if (TREE_CODE (newdecl
) == VAR_DECL
)
2255 TREE_THIS_VOLATILE (newdecl
) = 1;
2258 /* Merge deprecatedness. */
2259 if (TREE_DEPRECATED (newdecl
))
2260 TREE_DEPRECATED (olddecl
) = 1;
2262 /* If a decl is in a system header and the other isn't, keep the one on the
2263 system header. Otherwise, keep source location of definition rather than
2264 declaration and of prototype rather than non-prototype unless that
2265 prototype is built-in. */
2266 if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl
), TS_DECL_WITH_VIS
)
2267 && DECL_IN_SYSTEM_HEADER (olddecl
)
2268 && !DECL_IN_SYSTEM_HEADER (newdecl
) )
2269 DECL_SOURCE_LOCATION (newdecl
) = DECL_SOURCE_LOCATION (olddecl
);
2270 else if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl
), TS_DECL_WITH_VIS
)
2271 && DECL_IN_SYSTEM_HEADER (newdecl
)
2272 && !DECL_IN_SYSTEM_HEADER (olddecl
))
2273 DECL_SOURCE_LOCATION (olddecl
) = DECL_SOURCE_LOCATION (newdecl
);
2274 else if ((DECL_INITIAL (newdecl
) == 0 && DECL_INITIAL (olddecl
) != 0)
2275 || (old_is_prototype
&& !new_is_prototype
2276 && !C_DECL_BUILTIN_PROTOTYPE (olddecl
)))
2277 DECL_SOURCE_LOCATION (newdecl
) = DECL_SOURCE_LOCATION (olddecl
);
2279 /* Merge the initialization information. */
2280 if (DECL_INITIAL (newdecl
) == 0)
2281 DECL_INITIAL (newdecl
) = DECL_INITIAL (olddecl
);
2283 /* Merge the threadprivate attribute. */
2284 if (TREE_CODE (olddecl
) == VAR_DECL
&& C_DECL_THREADPRIVATE_P (olddecl
))
2286 DECL_TLS_MODEL (newdecl
) = DECL_TLS_MODEL (olddecl
);
2287 C_DECL_THREADPRIVATE_P (newdecl
) = 1;
2290 if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl
), TS_DECL_WITH_VIS
))
2292 /* Merge the section attribute.
2293 We want to issue an error if the sections conflict but that
2294 must be done later in decl_attributes since we are called
2295 before attributes are assigned. */
2296 if (DECL_SECTION_NAME (newdecl
) == NULL_TREE
)
2297 DECL_SECTION_NAME (newdecl
) = DECL_SECTION_NAME (olddecl
);
2299 /* Copy the assembler name.
2300 Currently, it can only be defined in the prototype. */
2301 COPY_DECL_ASSEMBLER_NAME (olddecl
, newdecl
);
2303 /* Use visibility of whichever declaration had it specified */
2304 if (DECL_VISIBILITY_SPECIFIED (olddecl
))
2306 DECL_VISIBILITY (newdecl
) = DECL_VISIBILITY (olddecl
);
2307 DECL_VISIBILITY_SPECIFIED (newdecl
) = 1;
2310 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2312 DECL_STATIC_CONSTRUCTOR(newdecl
) |= DECL_STATIC_CONSTRUCTOR(olddecl
);
2313 DECL_STATIC_DESTRUCTOR (newdecl
) |= DECL_STATIC_DESTRUCTOR (olddecl
);
2314 DECL_NO_LIMIT_STACK (newdecl
) |= DECL_NO_LIMIT_STACK (olddecl
);
2315 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl
)
2316 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl
);
2317 TREE_THIS_VOLATILE (newdecl
) |= TREE_THIS_VOLATILE (olddecl
);
2318 DECL_IS_MALLOC (newdecl
) |= DECL_IS_MALLOC (olddecl
);
2319 DECL_IS_OPERATOR_NEW (newdecl
) |= DECL_IS_OPERATOR_NEW (olddecl
);
2320 TREE_READONLY (newdecl
) |= TREE_READONLY (olddecl
);
2321 DECL_PURE_P (newdecl
) |= DECL_PURE_P (olddecl
);
2322 DECL_IS_NOVOPS (newdecl
) |= DECL_IS_NOVOPS (olddecl
);
2325 /* Merge the storage class information. */
2326 merge_weak (newdecl
, olddecl
);
2328 /* For functions, static overrides non-static. */
2329 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2331 TREE_PUBLIC (newdecl
) &= TREE_PUBLIC (olddecl
);
2332 /* This is since we don't automatically
2333 copy the attributes of NEWDECL into OLDDECL. */
2334 TREE_PUBLIC (olddecl
) = TREE_PUBLIC (newdecl
);
2335 /* If this clears `static', clear it in the identifier too. */
2336 if (!TREE_PUBLIC (olddecl
))
2337 TREE_PUBLIC (DECL_NAME (olddecl
)) = 0;
2341 /* In c99, 'extern' declaration before (or after) 'inline' means this
2342 function is not DECL_EXTERNAL, unless 'gnu_inline' attribute
2344 if (TREE_CODE (newdecl
) == FUNCTION_DECL
2345 && !flag_gnu89_inline
2346 && (DECL_DECLARED_INLINE_P (newdecl
)
2347 || DECL_DECLARED_INLINE_P (olddecl
))
2348 && (!DECL_DECLARED_INLINE_P (newdecl
)
2349 || !DECL_DECLARED_INLINE_P (olddecl
)
2350 || !DECL_EXTERNAL (olddecl
))
2351 && DECL_EXTERNAL (newdecl
)
2352 && !lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (newdecl
))
2353 && !current_function_decl
)
2354 DECL_EXTERNAL (newdecl
) = 0;
2356 /* An inline definition following a static declaration is not
2358 if (new_is_definition
2359 && (DECL_DECLARED_INLINE_P (newdecl
)
2360 || DECL_DECLARED_INLINE_P (olddecl
))
2361 && !TREE_PUBLIC (olddecl
))
2362 DECL_EXTERNAL (newdecl
) = 0;
2364 if (DECL_EXTERNAL (newdecl
))
2366 TREE_STATIC (newdecl
) = TREE_STATIC (olddecl
);
2367 DECL_EXTERNAL (newdecl
) = DECL_EXTERNAL (olddecl
);
2369 /* An extern decl does not override previous storage class. */
2370 TREE_PUBLIC (newdecl
) = TREE_PUBLIC (olddecl
);
2371 if (!DECL_EXTERNAL (newdecl
))
2373 DECL_CONTEXT (newdecl
) = DECL_CONTEXT (olddecl
);
2374 DECL_COMMON (newdecl
) = DECL_COMMON (olddecl
);
2379 TREE_STATIC (olddecl
) = TREE_STATIC (newdecl
);
2380 TREE_PUBLIC (olddecl
) = TREE_PUBLIC (newdecl
);
2383 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2385 /* If we're redefining a function previously defined as extern
2386 inline, make sure we emit debug info for the inline before we
2387 throw it away, in case it was inlined into a function that
2388 hasn't been written out yet. */
2389 if (new_is_definition
&& DECL_INITIAL (olddecl
))
2390 /* The new defn must not be inline. */
2391 DECL_UNINLINABLE (newdecl
) = 1;
2394 /* If either decl says `inline', this fn is inline, unless
2395 its definition was passed already. */
2396 if (DECL_DECLARED_INLINE_P (newdecl
)
2397 || DECL_DECLARED_INLINE_P (olddecl
))
2398 DECL_DECLARED_INLINE_P (newdecl
) = 1;
2400 DECL_UNINLINABLE (newdecl
) = DECL_UNINLINABLE (olddecl
)
2401 = (DECL_UNINLINABLE (newdecl
) || DECL_UNINLINABLE (olddecl
));
2403 DECL_DISREGARD_INLINE_LIMITS (newdecl
)
2404 = DECL_DISREGARD_INLINE_LIMITS (olddecl
)
2405 = (DECL_DISREGARD_INLINE_LIMITS (newdecl
)
2406 || DECL_DISREGARD_INLINE_LIMITS (olddecl
));
2409 if (DECL_BUILT_IN (olddecl
))
2411 /* If redeclaring a builtin function, it stays built in.
2412 But it gets tagged as having been declared. */
2413 DECL_BUILT_IN_CLASS (newdecl
) = DECL_BUILT_IN_CLASS (olddecl
);
2414 DECL_FUNCTION_CODE (newdecl
) = DECL_FUNCTION_CODE (olddecl
);
2415 C_DECL_DECLARED_BUILTIN (newdecl
) = 1;
2416 if (new_is_prototype
)
2418 C_DECL_BUILTIN_PROTOTYPE (newdecl
) = 0;
2419 if (DECL_BUILT_IN_CLASS (newdecl
) == BUILT_IN_NORMAL
)
2421 enum built_in_function fncode
= DECL_FUNCTION_CODE (newdecl
);
2424 /* If a compatible prototype of these builtin functions
2425 is seen, assume the runtime implements it with the
2426 expected semantics. */
2427 case BUILT_IN_STPCPY
:
2428 if (builtin_decl_explicit_p (fncode
))
2429 set_builtin_decl_implicit_p (fncode
, true);
2437 C_DECL_BUILTIN_PROTOTYPE (newdecl
)
2438 = C_DECL_BUILTIN_PROTOTYPE (olddecl
);
2441 /* Preserve function specific target and optimization options */
2442 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl
)
2443 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl
))
2444 DECL_FUNCTION_SPECIFIC_TARGET (newdecl
)
2445 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl
);
2447 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl
)
2448 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl
))
2449 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl
)
2450 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl
);
2452 /* Also preserve various other info from the definition. */
2453 if (!new_is_definition
)
2456 DECL_RESULT (newdecl
) = DECL_RESULT (olddecl
);
2457 DECL_INITIAL (newdecl
) = DECL_INITIAL (olddecl
);
2458 DECL_STRUCT_FUNCTION (newdecl
) = DECL_STRUCT_FUNCTION (olddecl
);
2459 DECL_SAVED_TREE (newdecl
) = DECL_SAVED_TREE (olddecl
);
2460 DECL_ARGUMENTS (newdecl
) = copy_list (DECL_ARGUMENTS (olddecl
));
2461 for (t
= DECL_ARGUMENTS (newdecl
); t
; t
= DECL_CHAIN (t
))
2462 DECL_CONTEXT (t
) = newdecl
;
2464 /* See if we've got a function to instantiate from. */
2465 if (DECL_SAVED_TREE (olddecl
))
2466 DECL_ABSTRACT_ORIGIN (newdecl
)
2467 = DECL_ABSTRACT_ORIGIN (olddecl
);
2471 /* Merge the USED information. */
2472 if (TREE_USED (olddecl
))
2473 TREE_USED (newdecl
) = 1;
2474 else if (TREE_USED (newdecl
))
2475 TREE_USED (olddecl
) = 1;
2476 if (TREE_CODE (olddecl
) == VAR_DECL
|| TREE_CODE (olddecl
) == PARM_DECL
)
2477 DECL_READ_P (newdecl
) |= DECL_READ_P (olddecl
);
2478 if (DECL_PRESERVE_P (olddecl
))
2479 DECL_PRESERVE_P (newdecl
) = 1;
2480 else if (DECL_PRESERVE_P (newdecl
))
2481 DECL_PRESERVE_P (olddecl
) = 1;
2483 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
2484 But preserve OLDDECL's DECL_UID, DECL_CONTEXT and
2485 DECL_ARGUMENTS (if appropriate). */
2487 unsigned olddecl_uid
= DECL_UID (olddecl
);
2488 tree olddecl_context
= DECL_CONTEXT (olddecl
);
2489 tree olddecl_arguments
= NULL
;
2490 if (TREE_CODE (olddecl
) == FUNCTION_DECL
)
2491 olddecl_arguments
= DECL_ARGUMENTS (olddecl
);
2493 memcpy ((char *) olddecl
+ sizeof (struct tree_common
),
2494 (char *) newdecl
+ sizeof (struct tree_common
),
2495 sizeof (struct tree_decl_common
) - sizeof (struct tree_common
));
2496 DECL_USER_ALIGN (olddecl
) = DECL_USER_ALIGN (newdecl
);
2497 switch (TREE_CODE (olddecl
))
2507 memcpy ((char *) olddecl
+ sizeof (struct tree_decl_common
),
2508 (char *) newdecl
+ sizeof (struct tree_decl_common
),
2509 tree_code_size (TREE_CODE (olddecl
)) - sizeof (struct tree_decl_common
));
2514 memcpy ((char *) olddecl
+ sizeof (struct tree_decl_common
),
2515 (char *) newdecl
+ sizeof (struct tree_decl_common
),
2516 sizeof (struct tree_decl_non_common
) - sizeof (struct tree_decl_common
));
2518 DECL_UID (olddecl
) = olddecl_uid
;
2519 DECL_CONTEXT (olddecl
) = olddecl_context
;
2520 if (TREE_CODE (olddecl
) == FUNCTION_DECL
)
2521 DECL_ARGUMENTS (olddecl
) = olddecl_arguments
;
2524 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
2525 so that encode_section_info has a chance to look at the new decl
2526 flags and attributes. */
2527 if (DECL_RTL_SET_P (olddecl
)
2528 && (TREE_CODE (olddecl
) == FUNCTION_DECL
2529 || (TREE_CODE (olddecl
) == VAR_DECL
2530 && TREE_STATIC (olddecl
))))
2531 make_decl_rtl (olddecl
);
2534 /* Handle when a new declaration NEWDECL has the same name as an old
2535 one OLDDECL in the same binding contour. Prints an error message
2538 If safely possible, alter OLDDECL to look like NEWDECL, and return
2539 true. Otherwise, return false. */
2542 duplicate_decls (tree newdecl
, tree olddecl
)
2544 tree newtype
= NULL
, oldtype
= NULL
;
2546 if (!diagnose_mismatched_decls (newdecl
, olddecl
, &newtype
, &oldtype
))
2548 /* Avoid `unused variable' and other warnings for OLDDECL. */
2549 TREE_NO_WARNING (olddecl
) = 1;
2553 merge_decls (newdecl
, olddecl
, newtype
, oldtype
);
2558 /* Check whether decl-node NEW_DECL shadows an existing declaration. */
2560 warn_if_shadowing (tree new_decl
)
2562 struct c_binding
*b
;
2564 /* Shadow warnings wanted? */
2566 /* No shadow warnings for internally generated vars. */
2567 || DECL_IS_BUILTIN (new_decl
)
2568 /* No shadow warnings for vars made for inlining. */
2569 || DECL_FROM_INLINE (new_decl
))
2572 /* Is anything being shadowed? Invisible decls do not count. */
2573 for (b
= I_SYMBOL_BINDING (DECL_NAME (new_decl
)); b
; b
= b
->shadowed
)
2574 if (b
->decl
&& b
->decl
!= new_decl
&& !b
->invisible
2575 && (b
->decl
== error_mark_node
2576 || diagnostic_report_warnings_p (global_dc
,
2577 DECL_SOURCE_LOCATION (b
->decl
))))
2579 tree old_decl
= b
->decl
;
2581 if (old_decl
== error_mark_node
)
2583 warning (OPT_Wshadow
, "declaration of %q+D shadows previous "
2584 "non-variable", new_decl
);
2587 else if (TREE_CODE (old_decl
) == PARM_DECL
)
2588 warning (OPT_Wshadow
, "declaration of %q+D shadows a parameter",
2590 else if (DECL_FILE_SCOPE_P (old_decl
))
2592 /* Do not warn if a variable shadows a function, unless
2593 the variable is a function or a pointer-to-function. */
2594 if (TREE_CODE (old_decl
) == FUNCTION_DECL
2595 && TREE_CODE (new_decl
) != FUNCTION_DECL
2596 && !FUNCTION_POINTER_TYPE_P (TREE_TYPE (new_decl
)))
2599 warning_at (DECL_SOURCE_LOCATION (new_decl
), OPT_Wshadow
,
2600 "declaration of %qD shadows a global declaration",
2603 else if (TREE_CODE (old_decl
) == FUNCTION_DECL
2604 && DECL_BUILT_IN (old_decl
))
2606 warning (OPT_Wshadow
, "declaration of %q+D shadows "
2607 "a built-in function", new_decl
);
2611 warning (OPT_Wshadow
, "declaration of %q+D shadows a previous local",
2614 warning_at (DECL_SOURCE_LOCATION (old_decl
), OPT_Wshadow
,
2615 "shadowed declaration is here");
2621 /* Record a decl-node X as belonging to the current lexical scope.
2622 Check for errors (such as an incompatible declaration for the same
2623 name already seen in the same scope).
2625 Returns either X or an old decl for the same name.
2626 If an old decl is returned, it may have been smashed
2627 to agree with what X says. */
2632 tree name
= DECL_NAME (x
);
2633 struct c_scope
*scope
= current_scope
;
2634 struct c_binding
*b
;
2635 bool nested
= false;
2636 location_t locus
= DECL_SOURCE_LOCATION (x
);
2638 /* Must set DECL_CONTEXT for everything not at file scope or
2639 DECL_FILE_SCOPE_P won't work. Local externs don't count
2640 unless they have initializers (which generate code). */
2641 if (current_function_decl
2642 && ((TREE_CODE (x
) != FUNCTION_DECL
&& TREE_CODE (x
) != VAR_DECL
)
2643 || DECL_INITIAL (x
) || !DECL_EXTERNAL (x
)))
2644 DECL_CONTEXT (x
) = current_function_decl
;
2646 /* Anonymous decls are just inserted in the scope. */
2649 bind (name
, x
, scope
, /*invisible=*/false, /*nested=*/false,
2654 /* First, see if there is another declaration with the same name in
2655 the current scope. If there is, duplicate_decls may do all the
2656 work for us. If duplicate_decls returns false, that indicates
2657 two incompatible decls in the same scope; we are to silently
2658 replace the old one (duplicate_decls has issued all appropriate
2659 diagnostics). In particular, we should not consider possible
2660 duplicates in the external scope, or shadowing. */
2661 b
= I_SYMBOL_BINDING (name
);
2662 if (b
&& B_IN_SCOPE (b
, scope
))
2664 struct c_binding
*b_ext
, *b_use
;
2665 tree type
= TREE_TYPE (x
);
2666 tree visdecl
= b
->decl
;
2667 tree vistype
= TREE_TYPE (visdecl
);
2668 if (TREE_CODE (TREE_TYPE (x
)) == ARRAY_TYPE
2669 && COMPLETE_TYPE_P (TREE_TYPE (x
)))
2670 b
->inner_comp
= false;
2673 /* If this is an external linkage declaration, we should check
2674 for compatibility with the type in the external scope before
2675 setting the type at this scope based on the visible
2676 information only. */
2677 if (TREE_PUBLIC (x
) && TREE_PUBLIC (visdecl
))
2679 while (b_ext
&& !B_IN_EXTERNAL_SCOPE (b_ext
))
2680 b_ext
= b_ext
->shadowed
;
2685 TREE_TYPE (b_use
->decl
) = b_use
->u
.type
;
2688 if (duplicate_decls (x
, b_use
->decl
))
2692 /* Save the updated type in the external scope and
2693 restore the proper type for this scope. */
2695 if (comptypes (vistype
, type
))
2696 thistype
= composite_type (vistype
, type
);
2698 thistype
= TREE_TYPE (b_use
->decl
);
2699 b_use
->u
.type
= TREE_TYPE (b_use
->decl
);
2700 if (TREE_CODE (b_use
->decl
) == FUNCTION_DECL
2701 && DECL_BUILT_IN (b_use
->decl
))
2703 = build_type_attribute_variant (thistype
,
2706 TREE_TYPE (b_use
->decl
) = thistype
;
2711 goto skip_external_and_shadow_checks
;
2714 /* All declarations with external linkage, and all external
2715 references, go in the external scope, no matter what scope is
2716 current. However, the binding in that scope is ignored for
2717 purposes of normal name lookup. A separate binding structure is
2718 created in the requested scope; this governs the normal
2719 visibility of the symbol.
2721 The binding in the externals scope is used exclusively for
2722 detecting duplicate declarations of the same object, no matter
2723 what scope they are in; this is what we do here. (C99 6.2.7p2:
2724 All declarations that refer to the same object or function shall
2725 have compatible type; otherwise, the behavior is undefined.) */
2726 if (DECL_EXTERNAL (x
) || scope
== file_scope
)
2728 tree type
= TREE_TYPE (x
);
2731 bool type_saved
= false;
2732 if (b
&& !B_IN_EXTERNAL_SCOPE (b
)
2733 && (TREE_CODE (b
->decl
) == FUNCTION_DECL
2734 || TREE_CODE (b
->decl
) == VAR_DECL
)
2735 && DECL_FILE_SCOPE_P (b
->decl
))
2738 vistype
= TREE_TYPE (visdecl
);
2740 if (scope
!= file_scope
2741 && !DECL_IN_SYSTEM_HEADER (x
))
2742 warning (OPT_Wnested_externs
, "nested extern declaration of %qD", x
);
2744 while (b
&& !B_IN_EXTERNAL_SCOPE (b
))
2746 /* If this decl might be modified, save its type. This is
2747 done here rather than when the decl is first bound
2748 because the type may change after first binding, through
2749 being completed or through attributes being added. If we
2750 encounter multiple such decls, only the first should have
2751 its type saved; the others will already have had their
2752 proper types saved and the types will not have changed as
2753 their scopes will not have been re-entered. */
2754 if (DECL_P (b
->decl
) && DECL_FILE_SCOPE_P (b
->decl
) && !type_saved
)
2756 b
->u
.type
= TREE_TYPE (b
->decl
);
2759 if (B_IN_FILE_SCOPE (b
)
2760 && TREE_CODE (b
->decl
) == VAR_DECL
2761 && TREE_STATIC (b
->decl
)
2762 && TREE_CODE (TREE_TYPE (b
->decl
)) == ARRAY_TYPE
2763 && !TYPE_DOMAIN (TREE_TYPE (b
->decl
))
2764 && TREE_CODE (type
) == ARRAY_TYPE
2765 && TYPE_DOMAIN (type
)
2766 && TYPE_MAX_VALUE (TYPE_DOMAIN (type
))
2767 && !integer_zerop (TYPE_MAX_VALUE (TYPE_DOMAIN (type
))))
2769 /* Array type completed in inner scope, which should be
2770 diagnosed if the completion does not have size 1 and
2771 it does not get completed in the file scope. */
2772 b
->inner_comp
= true;
2777 /* If a matching external declaration has been found, set its
2778 type to the composite of all the types of that declaration.
2779 After the consistency checks, it will be reset to the
2780 composite of the visible types only. */
2781 if (b
&& (TREE_PUBLIC (x
) || same_translation_unit_p (x
, b
->decl
))
2783 TREE_TYPE (b
->decl
) = b
->u
.type
;
2785 /* The point of the same_translation_unit_p check here is,
2786 we want to detect a duplicate decl for a construct like
2787 foo() { extern bar(); } ... static bar(); but not if
2788 they are in different translation units. In any case,
2789 the static does not go in the externals scope. */
2791 && (TREE_PUBLIC (x
) || same_translation_unit_p (x
, b
->decl
))
2792 && duplicate_decls (x
, b
->decl
))
2797 if (comptypes (vistype
, type
))
2798 thistype
= composite_type (vistype
, type
);
2800 thistype
= TREE_TYPE (b
->decl
);
2804 b
->u
.type
= TREE_TYPE (b
->decl
);
2805 if (TREE_CODE (b
->decl
) == FUNCTION_DECL
&& DECL_BUILT_IN (b
->decl
))
2807 = build_type_attribute_variant (thistype
,
2808 TYPE_ATTRIBUTES (b
->u
.type
));
2809 TREE_TYPE (b
->decl
) = thistype
;
2810 bind (name
, b
->decl
, scope
, /*invisible=*/false, /*nested=*/true,
2814 else if (TREE_PUBLIC (x
))
2816 if (visdecl
&& !b
&& duplicate_decls (x
, visdecl
))
2818 /* An external declaration at block scope referring to a
2819 visible entity with internal linkage. The composite
2820 type will already be correct for this scope, so we
2821 just need to fall through to make the declaration in
2828 bind (name
, x
, external_scope
, /*invisible=*/true,
2829 /*nested=*/false, locus
);
2835 if (TREE_CODE (x
) != PARM_DECL
)
2836 warn_if_shadowing (x
);
2838 skip_external_and_shadow_checks
:
2839 if (TREE_CODE (x
) == TYPE_DECL
)
2841 /* So this is a typedef, set its underlying type. */
2842 set_underlying_type (x
);
2844 /* If X is a typedef defined in the current function, record it
2845 for the purpose of implementing the -Wunused-local-typedefs
2847 record_locally_defined_typedef (x
);
2850 bind (name
, x
, scope
, /*invisible=*/false, nested
, locus
);
2852 /* If x's type is incomplete because it's based on a
2853 structure or union which has not yet been fully declared,
2854 attach it to that structure or union type, so we can go
2855 back and complete the variable declaration later, if the
2856 structure or union gets fully declared.
2858 If the input is erroneous, we can have error_mark in the type
2859 slot (e.g. "f(void a, ...)") - that doesn't count as an
2861 if (TREE_TYPE (x
) != error_mark_node
2862 && !COMPLETE_TYPE_P (TREE_TYPE (x
)))
2864 tree element
= TREE_TYPE (x
);
2866 while (TREE_CODE (element
) == ARRAY_TYPE
)
2867 element
= TREE_TYPE (element
);
2868 element
= TYPE_MAIN_VARIANT (element
);
2870 if ((TREE_CODE (element
) == RECORD_TYPE
2871 || TREE_CODE (element
) == UNION_TYPE
)
2872 && (TREE_CODE (x
) != TYPE_DECL
2873 || TREE_CODE (TREE_TYPE (x
)) == ARRAY_TYPE
)
2874 && !COMPLETE_TYPE_P (element
))
2875 C_TYPE_INCOMPLETE_VARS (element
)
2876 = tree_cons (NULL_TREE
, x
, C_TYPE_INCOMPLETE_VARS (element
));
2881 /* Record X as belonging to file scope.
2882 This is used only internally by the Objective-C front end,
2883 and is limited to its needs. duplicate_decls is not called;
2884 if there is any preexisting decl for this identifier, it is an ICE. */
2887 pushdecl_top_level (tree x
)
2890 bool nested
= false;
2891 gcc_assert (TREE_CODE (x
) == VAR_DECL
|| TREE_CODE (x
) == CONST_DECL
);
2893 name
= DECL_NAME (x
);
2895 gcc_assert (TREE_CODE (x
) == CONST_DECL
|| !I_SYMBOL_BINDING (name
));
2897 if (TREE_PUBLIC (x
))
2899 bind (name
, x
, external_scope
, /*invisible=*/true, /*nested=*/false,
2904 bind (name
, x
, file_scope
, /*invisible=*/false, nested
, UNKNOWN_LOCATION
);
2910 implicit_decl_warning (tree id
, tree olddecl
)
2912 if (upc_diagnose_deprecated_stmt (input_location
, id
))
2914 if (warn_implicit_function_declaration
)
2919 warned
= pedwarn (input_location
, OPT_Wimplicit_function_declaration
,
2920 "implicit declaration of function %qE", id
);
2922 warned
= warning (OPT_Wimplicit_function_declaration
,
2923 G_("implicit declaration of function %qE"), id
);
2924 if (olddecl
&& warned
)
2925 locate_old_decl (olddecl
);
2929 /* Generate an implicit declaration for identifier FUNCTIONID at LOC as a
2930 function of type int (). */
2933 implicitly_declare (location_t loc
, tree functionid
)
2935 struct c_binding
*b
;
2939 for (b
= I_SYMBOL_BINDING (functionid
); b
; b
= b
->shadowed
)
2941 if (B_IN_SCOPE (b
, external_scope
))
2950 if (decl
== error_mark_node
)
2953 /* FIXME: Objective-C has weird not-really-builtin functions
2954 which are supposed to be visible automatically. They wind up
2955 in the external scope because they're pushed before the file
2956 scope gets created. Catch this here and rebind them into the
2958 if (!DECL_BUILT_IN (decl
) && DECL_IS_BUILTIN (decl
))
2960 bind (functionid
, decl
, file_scope
,
2961 /*invisible=*/false, /*nested=*/true,
2962 DECL_SOURCE_LOCATION (decl
));
2967 tree newtype
= default_function_type
;
2969 TREE_TYPE (decl
) = b
->u
.type
;
2970 /* Implicit declaration of a function already declared
2971 (somehow) in a different scope, or as a built-in.
2972 If this is the first time this has happened, warn;
2973 then recycle the old declaration but with the new type. */
2974 if (!C_DECL_IMPLICIT (decl
))
2976 implicit_decl_warning (functionid
, decl
);
2977 C_DECL_IMPLICIT (decl
) = 1;
2979 if (DECL_BUILT_IN (decl
))
2981 newtype
= build_type_attribute_variant (newtype
,
2983 (TREE_TYPE (decl
)));
2984 if (!comptypes (newtype
, TREE_TYPE (decl
)))
2986 warning_at (loc
, 0, "incompatible implicit declaration of "
2987 "built-in function %qD", decl
);
2988 newtype
= TREE_TYPE (decl
);
2993 if (!comptypes (newtype
, TREE_TYPE (decl
)))
2995 error_at (loc
, "incompatible implicit declaration of function %qD", decl
);
2996 locate_old_decl (decl
);
2999 b
->u
.type
= TREE_TYPE (decl
);
3000 TREE_TYPE (decl
) = newtype
;
3001 bind (functionid
, decl
, current_scope
,
3002 /*invisible=*/false, /*nested=*/true,
3003 DECL_SOURCE_LOCATION (decl
));
3008 /* Not seen before. */
3009 decl
= build_decl (loc
, FUNCTION_DECL
, functionid
, default_function_type
);
3010 DECL_EXTERNAL (decl
) = 1;
3011 TREE_PUBLIC (decl
) = 1;
3012 C_DECL_IMPLICIT (decl
) = 1;
3013 implicit_decl_warning (functionid
, 0);
3014 asmspec_tree
= maybe_apply_renaming_pragma (decl
, /*asmname=*/NULL
);
3016 set_user_assembler_name (decl
, TREE_STRING_POINTER (asmspec_tree
));
3018 /* C89 says implicit declarations are in the innermost block.
3019 So we record the decl in the standard fashion. */
3020 decl
= pushdecl (decl
);
3022 /* No need to call objc_check_decl here - it's a function type. */
3023 rest_of_decl_compilation (decl
, 0, 0);
3025 /* Write a record describing this implicit function declaration
3026 to the prototypes file (if requested). */
3027 gen_aux_info_record (decl
, 0, 1, 0);
3029 /* Possibly apply some default attributes to this implicit declaration. */
3030 decl_attributes (&decl
, NULL_TREE
, 0);
3035 /* Issue an error message for a reference to an undeclared variable
3036 ID, including a reference to a builtin outside of function-call
3037 context. Establish a binding of the identifier to error_mark_node
3038 in an appropriate scope, which will suppress further errors for the
3039 same identifier. The error message should be given location LOC. */
3041 undeclared_variable (location_t loc
, tree id
)
3043 static bool already
= false;
3044 struct c_scope
*scope
;
3046 if (current_function_decl
== 0)
3048 error_at (loc
, "%qE undeclared here (not in a function)", id
);
3049 scope
= current_scope
;
3053 if (upc_diagnose_deprecated_stmt (loc
, id
))
3055 if (!objc_diagnose_private_ivar (id
))
3056 error_at (loc
, "%qE undeclared (first use in this function)", id
);
3059 inform (loc
, "each undeclared identifier is reported only"
3060 " once for each function it appears in");
3064 /* If we are parsing old-style parameter decls, current_function_decl
3065 will be nonnull but current_function_scope will be null. */
3066 scope
= current_function_scope
? current_function_scope
: current_scope
;
3068 bind (id
, error_mark_node
, scope
, /*invisible=*/false, /*nested=*/false,
3072 /* Subroutine of lookup_label, declare_label, define_label: construct a
3073 LABEL_DECL with all the proper frills. Also create a struct
3074 c_label_vars initialized for the current scope. */
3077 make_label (location_t location
, tree name
, bool defining
,
3078 struct c_label_vars
**p_label_vars
)
3080 tree label
= build_decl (location
, LABEL_DECL
, name
, void_type_node
);
3081 struct c_label_vars
*label_vars
;
3083 DECL_CONTEXT (label
) = current_function_decl
;
3084 DECL_MODE (label
) = VOIDmode
;
3086 label_vars
= ggc_alloc_c_label_vars ();
3087 label_vars
->shadowed
= NULL
;
3088 set_spot_bindings (&label_vars
->label_bindings
, defining
);
3089 label_vars
->decls_in_scope
= make_tree_vector ();
3090 label_vars
->gotos
= NULL
;
3091 *p_label_vars
= label_vars
;
3096 /* Get the LABEL_DECL corresponding to identifier NAME as a label.
3097 Create one if none exists so far for the current function.
3098 This is called when a label is used in a goto expression or
3099 has its address taken. */
3102 lookup_label (tree name
)
3105 struct c_label_vars
*label_vars
;
3107 if (current_function_scope
== 0)
3109 error ("label %qE referenced outside of any function", name
);
3113 /* Use a label already defined or ref'd with this name, but not if
3114 it is inherited from a containing function and wasn't declared
3116 label
= I_LABEL_DECL (name
);
3117 if (label
&& (DECL_CONTEXT (label
) == current_function_decl
3118 || C_DECLARED_LABEL_FLAG (label
)))
3120 /* If the label has only been declared, update its apparent
3121 location to point here, for better diagnostics if it
3122 turns out not to have been defined. */
3123 if (DECL_INITIAL (label
) == NULL_TREE
)
3124 DECL_SOURCE_LOCATION (label
) = input_location
;
3128 /* No label binding for that identifier; make one. */
3129 label
= make_label (input_location
, name
, false, &label_vars
);
3131 /* Ordinary labels go in the current function scope. */
3132 bind_label (name
, label
, current_function_scope
, label_vars
);
3137 /* Issue a warning about DECL for a goto statement at GOTO_LOC going
3141 warn_about_goto (location_t goto_loc
, tree label
, tree decl
)
3143 if (variably_modified_type_p (TREE_TYPE (decl
), NULL_TREE
))
3145 "jump into scope of identifier with variably modified type");
3147 warning_at (goto_loc
, OPT_Wjump_misses_init
,
3148 "jump skips variable initialization");
3149 inform (DECL_SOURCE_LOCATION (label
), "label %qD defined here", label
);
3150 inform (DECL_SOURCE_LOCATION (decl
), "%qD declared here", decl
);
3153 /* Look up a label because of a goto statement. This is like
3154 lookup_label, but also issues any appropriate warnings. */
3157 lookup_label_for_goto (location_t loc
, tree name
)
3160 struct c_label_vars
*label_vars
;
3164 label
= lookup_label (name
);
3165 if (label
== NULL_TREE
)
3168 /* If we are jumping to a different function, we can't issue any
3170 if (DECL_CONTEXT (label
) != current_function_decl
)
3172 gcc_assert (C_DECLARED_LABEL_FLAG (label
));
3176 label_vars
= I_LABEL_BINDING (name
)->u
.label
;
3178 /* If the label has not yet been defined, then push this goto on a
3179 list for possible later warnings. */
3180 if (label_vars
->label_bindings
.scope
== NULL
)
3182 struct c_goto_bindings
*g
;
3184 g
= ggc_alloc_c_goto_bindings ();
3186 set_spot_bindings (&g
->goto_bindings
, true);
3187 vec_safe_push (label_vars
->gotos
, g
);
3191 /* If there are any decls in label_vars->decls_in_scope, then this
3192 goto has missed the declaration of the decl. This happens for a
3198 Issue a warning or error. */
3199 FOR_EACH_VEC_SAFE_ELT (label_vars
->decls_in_scope
, ix
, decl
)
3200 warn_about_goto (loc
, label
, decl
);
3202 if (label_vars
->label_bindings
.left_stmt_expr
)
3204 error_at (loc
, "jump into statement expression");
3205 inform (DECL_SOURCE_LOCATION (label
), "label %qD defined here", label
);
3211 /* Make a label named NAME in the current function, shadowing silently
3212 any that may be inherited from containing functions or containing
3213 scopes. This is called for __label__ declarations. */
3216 declare_label (tree name
)
3218 struct c_binding
*b
= I_LABEL_BINDING (name
);
3220 struct c_label_vars
*label_vars
;
3222 /* Check to make sure that the label hasn't already been declared
3224 if (b
&& B_IN_CURRENT_SCOPE (b
))
3226 error ("duplicate label declaration %qE", name
);
3227 locate_old_decl (b
->decl
);
3229 /* Just use the previous declaration. */
3233 label
= make_label (input_location
, name
, false, &label_vars
);
3234 C_DECLARED_LABEL_FLAG (label
) = 1;
3236 /* Declared labels go in the current scope. */
3237 bind_label (name
, label
, current_scope
, label_vars
);
3242 /* When we define a label, issue any appropriate warnings if there are
3243 any gotos earlier in the function which jump to this label. */
3246 check_earlier_gotos (tree label
, struct c_label_vars
* label_vars
)
3249 struct c_goto_bindings
*g
;
3251 FOR_EACH_VEC_SAFE_ELT (label_vars
->gotos
, ix
, g
)
3253 struct c_binding
*b
;
3254 struct c_scope
*scope
;
3256 /* We have a goto to this label. The goto is going forward. In
3257 g->scope, the goto is going to skip any binding which was
3258 defined after g->bindings_in_scope. */
3259 if (g
->goto_bindings
.scope
->has_jump_unsafe_decl
)
3261 for (b
= g
->goto_bindings
.scope
->bindings
;
3262 b
!= g
->goto_bindings
.bindings_in_scope
;
3265 if (decl_jump_unsafe (b
->decl
))
3266 warn_about_goto (g
->loc
, label
, b
->decl
);
3270 /* We also need to warn about decls defined in any scopes
3271 between the scope of the label and the scope of the goto. */
3272 for (scope
= label_vars
->label_bindings
.scope
;
3273 scope
!= g
->goto_bindings
.scope
;
3274 scope
= scope
->outer
)
3276 gcc_assert (scope
!= NULL
);
3277 if (scope
->has_jump_unsafe_decl
)
3279 if (scope
== label_vars
->label_bindings
.scope
)
3280 b
= label_vars
->label_bindings
.bindings_in_scope
;
3282 b
= scope
->bindings
;
3283 for (; b
!= NULL
; b
= b
->prev
)
3285 if (decl_jump_unsafe (b
->decl
))
3286 warn_about_goto (g
->loc
, label
, b
->decl
);
3291 if (g
->goto_bindings
.stmt_exprs
> 0)
3293 error_at (g
->loc
, "jump into statement expression");
3294 inform (DECL_SOURCE_LOCATION (label
), "label %qD defined here",
3299 /* Now that the label is defined, we will issue warnings about
3300 subsequent gotos to this label when we see them. */
3301 vec_safe_truncate (label_vars
->gotos
, 0);
3302 label_vars
->gotos
= NULL
;
3305 /* Define a label, specifying the location in the source file.
3306 Return the LABEL_DECL node for the label, if the definition is valid.
3307 Otherwise return 0. */
3310 define_label (location_t location
, tree name
)
3312 /* Find any preexisting label with this name. It is an error
3313 if that label has already been defined in this function, or
3314 if there is a containing function with a declared label with
3316 tree label
= I_LABEL_DECL (name
);
3319 && ((DECL_CONTEXT (label
) == current_function_decl
3320 && DECL_INITIAL (label
) != 0)
3321 || (DECL_CONTEXT (label
) != current_function_decl
3322 && C_DECLARED_LABEL_FLAG (label
))))
3324 error_at (location
, "duplicate label %qD", label
);
3325 locate_old_decl (label
);
3328 else if (label
&& DECL_CONTEXT (label
) == current_function_decl
)
3330 struct c_label_vars
*label_vars
= I_LABEL_BINDING (name
)->u
.label
;
3332 /* The label has been used or declared already in this function,
3333 but not defined. Update its location to point to this
3335 DECL_SOURCE_LOCATION (label
) = location
;
3336 set_spot_bindings (&label_vars
->label_bindings
, true);
3338 /* Issue warnings as required about any goto statements from
3339 earlier in the function. */
3340 check_earlier_gotos (label
, label_vars
);
3344 struct c_label_vars
*label_vars
;
3346 /* No label binding for that identifier; make one. */
3347 label
= make_label (location
, name
, true, &label_vars
);
3349 /* Ordinary labels go in the current function scope. */
3350 bind_label (name
, label
, current_function_scope
, label_vars
);
3353 if (!in_system_header_at (input_location
) && lookup_name (name
))
3354 warning_at (location
, OPT_Wtraditional
,
3355 "traditional C lacks a separate namespace "
3356 "for labels, identifier %qE conflicts", name
);
3358 /* Mark label as having been defined. */
3359 DECL_INITIAL (label
) = error_mark_node
;
3363 /* Get the bindings for a new switch statement. This is used to issue
3364 warnings as appropriate for jumps from the switch to case or
3367 struct c_spot_bindings
*
3368 c_get_switch_bindings (void)
3370 struct c_spot_bindings
*switch_bindings
;
3372 switch_bindings
= XNEW (struct c_spot_bindings
);
3373 set_spot_bindings (switch_bindings
, true);
3374 return switch_bindings
;
3378 c_release_switch_bindings (struct c_spot_bindings
*bindings
)
3380 gcc_assert (bindings
->stmt_exprs
== 0 && !bindings
->left_stmt_expr
);
3384 /* This is called at the point of a case or default label to issue
3385 warnings about decls as needed. It returns true if it found an
3386 error, not just a warning. */
3389 c_check_switch_jump_warnings (struct c_spot_bindings
*switch_bindings
,
3390 location_t switch_loc
, location_t case_loc
)
3393 struct c_scope
*scope
;
3396 for (scope
= current_scope
;
3397 scope
!= switch_bindings
->scope
;
3398 scope
= scope
->outer
)
3400 struct c_binding
*b
;
3402 gcc_assert (scope
!= NULL
);
3404 if (!scope
->has_jump_unsafe_decl
)
3407 for (b
= scope
->bindings
; b
!= NULL
; b
= b
->prev
)
3409 if (decl_jump_unsafe (b
->decl
))
3411 if (variably_modified_type_p (TREE_TYPE (b
->decl
), NULL_TREE
))
3415 ("switch jumps into scope of identifier with "
3416 "variably modified type"));
3419 warning_at (case_loc
, OPT_Wjump_misses_init
,
3420 "switch jumps over variable initialization");
3421 inform (switch_loc
, "switch starts here");
3422 inform (DECL_SOURCE_LOCATION (b
->decl
), "%qD declared here",
3428 if (switch_bindings
->stmt_exprs
> 0)
3431 error_at (case_loc
, "switch jumps into statement expression");
3432 inform (switch_loc
, "switch starts here");
3438 /* Given NAME, an IDENTIFIER_NODE,
3439 return the structure (or union or enum) definition for that name.
3440 If THISLEVEL_ONLY is nonzero, searches only the current_scope.
3441 CODE says which kind of type the caller wants;
3442 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
3443 If PLOC is not NULL and this returns non-null, it sets *PLOC to the
3444 location where the tag was defined.
3445 If the wrong kind of type is found, an error is reported. */
3448 lookup_tag (enum tree_code code
, tree name
, int thislevel_only
,
3451 struct c_binding
*b
= I_TAG_BINDING (name
);
3457 /* We only care about whether it's in this level if
3458 thislevel_only was set or it might be a type clash. */
3459 if (thislevel_only
|| TREE_CODE (b
->decl
) != code
)
3461 /* For our purposes, a tag in the external scope is the same as
3462 a tag in the file scope. (Primarily relevant to Objective-C
3463 and its builtin structure tags, which get pushed before the
3464 file scope is created.) */
3465 if (B_IN_CURRENT_SCOPE (b
)
3466 || (current_scope
== file_scope
&& B_IN_EXTERNAL_SCOPE (b
)))
3470 if (thislevel_only
&& !thislevel
)
3473 if (TREE_CODE (b
->decl
) != code
)
3475 /* Definition isn't the kind we were looking for. */
3476 pending_invalid_xref
= name
;
3477 pending_invalid_xref_location
= input_location
;
3479 /* If in the same binding level as a declaration as a tag
3480 of a different type, this must not be allowed to
3481 shadow that tag, so give the error immediately.
3482 (For example, "struct foo; union foo;" is invalid.) */
3484 pending_xref_error ();
3493 /* Print an error message now
3494 for a recent invalid struct, union or enum cross reference.
3495 We don't print them immediately because they are not invalid
3496 when used in the `struct foo;' construct for shadowing. */
3499 pending_xref_error (void)
3501 if (pending_invalid_xref
!= 0)
3502 error_at (pending_invalid_xref_location
, "%qE defined as wrong kind of tag",
3503 pending_invalid_xref
);
3504 pending_invalid_xref
= 0;
3508 /* Look up NAME in the current scope and its superiors
3509 in the namespace of variables, functions and typedefs.
3510 Return a ..._DECL node of some kind representing its definition,
3511 or return 0 if it is undefined. */
3514 lookup_name (tree name
)
3516 struct c_binding
*b
= I_SYMBOL_BINDING (name
);
3517 if (b
&& !b
->invisible
)
3519 maybe_record_typedef_use (b
->decl
);
3525 /* Similar to `lookup_name' but look only at the indicated scope. */
3528 lookup_name_in_scope (tree name
, struct c_scope
*scope
)
3530 struct c_binding
*b
;
3532 for (b
= I_SYMBOL_BINDING (name
); b
; b
= b
->shadowed
)
3533 if (B_IN_SCOPE (b
, scope
))
3538 /* Create the predefined scalar types of C,
3539 and some nodes representing standard constants (0, 1, (void *) 0).
3540 Initialize the global scope.
3541 Make definitions for built-in primitive functions. */
3544 c_init_decl_processing (void)
3546 location_t save_loc
= input_location
;
3548 /* Initialize reserved words for parser. */
3551 current_function_decl
= 0;
3553 gcc_obstack_init (&parser_obstack
);
3555 /* Make the externals scope. */
3557 external_scope
= current_scope
;
3559 /* Declarations from c_common_nodes_and_builtins must not be associated
3560 with this input file, lest we get differences between using and not
3561 using preprocessed headers. */
3562 input_location
= BUILTINS_LOCATION
;
3564 c_common_nodes_and_builtins ();
3566 /* In C, comparisons and TRUTH_* expressions have type int. */
3567 truthvalue_type_node
= integer_type_node
;
3568 truthvalue_true_node
= integer_one_node
;
3569 truthvalue_false_node
= integer_zero_node
;
3571 /* Even in C99, which has a real boolean type. */
3572 pushdecl (build_decl (UNKNOWN_LOCATION
, TYPE_DECL
, get_identifier ("_Bool"),
3573 boolean_type_node
));
3575 input_location
= save_loc
;
3577 pedantic_lvalues
= true;
3579 make_fname_decl
= c_make_fname_decl
;
3580 start_fname_decls ();
3583 /* Create the VAR_DECL at LOC for __FUNCTION__ etc. ID is the name to
3584 give the decl, NAME is the initialization string and TYPE_DEP
3585 indicates whether NAME depended on the type of the function. As we
3586 don't yet implement delayed emission of static data, we mark the
3587 decl as emitted so it is not placed in the output. Anything using
3588 it must therefore pull out the STRING_CST initializer directly.
3592 c_make_fname_decl (location_t loc
, tree id
, int type_dep
)
3594 const char *name
= fname_as_string (type_dep
);
3595 tree decl
, type
, init
;
3596 size_t length
= strlen (name
);
3598 type
= build_array_type (char_type_node
,
3599 build_index_type (size_int (length
)));
3600 type
= c_build_qualified_type (type
, TYPE_QUAL_CONST
);
3602 decl
= build_decl (loc
, VAR_DECL
, id
, type
);
3604 TREE_STATIC (decl
) = 1;
3605 TREE_READONLY (decl
) = 1;
3606 DECL_ARTIFICIAL (decl
) = 1;
3608 init
= build_string (length
+ 1, name
);
3609 free (CONST_CAST (char *, name
));
3610 TREE_TYPE (init
) = type
;
3611 DECL_INITIAL (decl
) = init
;
3613 TREE_USED (decl
) = 1;
3615 if (current_function_decl
3616 /* For invalid programs like this:
3619 const char* p = __FUNCTION__;
3621 the __FUNCTION__ is believed to appear in K&R style function
3622 parameter declarator. In that case we still don't have
3624 && (!seen_error () || current_function_scope
))
3626 DECL_CONTEXT (decl
) = current_function_decl
;
3627 bind (id
, decl
, current_function_scope
,
3628 /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION
);
3631 finish_decl (decl
, loc
, init
, NULL_TREE
, NULL_TREE
);
3637 c_builtin_function (tree decl
)
3639 tree type
= TREE_TYPE (decl
);
3640 tree id
= DECL_NAME (decl
);
3642 const char *name
= IDENTIFIER_POINTER (id
);
3643 C_DECL_BUILTIN_PROTOTYPE (decl
) = prototype_p (type
);
3645 /* Should never be called on a symbol with a preexisting meaning. */
3646 gcc_assert (!I_SYMBOL_BINDING (id
));
3648 bind (id
, decl
, external_scope
, /*invisible=*/true, /*nested=*/false,
3651 /* Builtins in the implementation namespace are made visible without
3652 needing to be explicitly declared. See push_file_scope. */
3653 if (name
[0] == '_' && (name
[1] == '_' || ISUPPER (name
[1])))
3655 DECL_CHAIN (decl
) = visible_builtins
;
3656 visible_builtins
= decl
;
3663 c_builtin_function_ext_scope (tree decl
)
3665 tree type
= TREE_TYPE (decl
);
3666 tree id
= DECL_NAME (decl
);
3668 const char *name
= IDENTIFIER_POINTER (id
);
3669 C_DECL_BUILTIN_PROTOTYPE (decl
) = prototype_p (type
);
3672 bind (id
, decl
, external_scope
, /*invisible=*/false, /*nested=*/false,
3675 /* Builtins in the implementation namespace are made visible without
3676 needing to be explicitly declared. See push_file_scope. */
3677 if (name
[0] == '_' && (name
[1] == '_' || ISUPPER (name
[1])))
3679 DECL_CHAIN (decl
) = visible_builtins
;
3680 visible_builtins
= decl
;
3686 /* Called when a declaration is seen that contains no names to declare.
3687 If its type is a reference to a structure, union or enum inherited
3688 from a containing scope, shadow that tag name for the current scope
3689 with a forward reference.
3690 If its type defines a new named structure or union
3691 or defines an enum, it is valid but we need not do anything here.
3692 Otherwise, it is an error. */
3695 shadow_tag (const struct c_declspecs
*declspecs
)
3697 shadow_tag_warned (declspecs
, 0);
3700 /* WARNED is 1 if we have done a pedwarn, 2 if we have done a warning,
3703 shadow_tag_warned (const struct c_declspecs
*declspecs
, int warned
)
3705 bool found_tag
= false;
3707 if (declspecs
->type
&& !declspecs
->default_int_p
&& !declspecs
->typedef_p
)
3709 tree value
= declspecs
->type
;
3710 enum tree_code code
= TREE_CODE (value
);
3712 if (code
== RECORD_TYPE
|| code
== UNION_TYPE
|| code
== ENUMERAL_TYPE
)
3713 /* Used to test also that TYPE_SIZE (value) != 0.
3714 That caused warning for `struct foo;' at top level in the file. */
3716 tree name
= TYPE_NAME (value
);
3721 if (declspecs
->restrict_p
)
3723 error ("invalid use of %<restrict%>");
3729 if (warned
!= 1 && code
!= ENUMERAL_TYPE
)
3730 /* Empty unnamed enum OK */
3732 pedwarn (input_location
, 0,
3733 "unnamed struct/union that defines no instances");
3737 else if (declspecs
->typespec_kind
!= ctsk_tagdef
3738 && declspecs
->typespec_kind
!= ctsk_tagfirstref
3739 && declspecs
->storage_class
!= csc_none
)
3742 pedwarn (input_location
, 0,
3743 "empty declaration with storage class specifier "
3744 "does not redeclare tag");
3746 pending_xref_error ();
3748 else if (declspecs
->typespec_kind
!= ctsk_tagdef
3749 && declspecs
->typespec_kind
!= ctsk_tagfirstref
3750 && (declspecs
->const_p
3751 || declspecs
->volatile_p
3752 || declspecs
->atomic_p
3753 || declspecs
->restrict_p
3754 || declspecs
->address_space
))
3757 pedwarn (input_location
, 0,
3758 "empty declaration with type qualifier "
3759 "does not redeclare tag");
3761 pending_xref_error ();
3763 else if (declspecs
->typespec_kind
!= ctsk_tagdef
3764 && declspecs
->typespec_kind
!= ctsk_tagfirstref
3765 && declspecs
->alignas_p
)
3768 pedwarn (input_location
, 0,
3769 "empty declaration with %<_Alignas%> "
3770 "does not redeclare tag");
3772 pending_xref_error ();
3776 pending_invalid_xref
= 0;
3777 t
= lookup_tag (code
, name
, 1, NULL
);
3781 t
= make_node (code
);
3782 pushtag (input_location
, name
, t
);
3788 if (warned
!= 1 && !in_system_header_at (input_location
))
3790 pedwarn (input_location
, 0,
3791 "useless type name in empty declaration");
3796 else if (warned
!= 1 && !in_system_header_at (input_location
)
3797 && declspecs
->typedef_p
)
3799 pedwarn (input_location
, 0, "useless type name in empty declaration");
3803 pending_invalid_xref
= 0;
3805 if (declspecs
->inline_p
)
3807 error ("%<inline%> in empty declaration");
3811 if (declspecs
->noreturn_p
)
3813 error ("%<_Noreturn%> in empty declaration");
3817 if (current_scope
== file_scope
&& declspecs
->storage_class
== csc_auto
)
3819 error ("%<auto%> in file-scope empty declaration");
3823 if (current_scope
== file_scope
&& declspecs
->storage_class
== csc_register
)
3825 error ("%<register%> in file-scope empty declaration");
3829 if (!warned
&& !in_system_header_at (input_location
)
3830 && declspecs
->storage_class
!= csc_none
)
3832 warning (0, "useless storage class specifier in empty declaration");
3836 if (!warned
&& !in_system_header_at (input_location
) && declspecs
->thread_p
)
3838 warning (0, "useless %qs in empty declaration",
3839 declspecs
->thread_gnu_p
? "__thread" : "_Thread_local");
3844 && !in_system_header_at (input_location
)
3845 && (declspecs
->const_p
3846 || declspecs
->volatile_p
3847 || declspecs
->atomic_p
3848 || declspecs
->restrict_p
3849 || declspecs
->address_space
))
3851 warning (0, "useless type qualifier in empty declaration");
3855 if (!warned
&& !in_system_header_at (input_location
)
3856 && declspecs
->alignas_p
)
3858 warning (0, "useless %<_Alignas%> in empty declaration");
3865 pedwarn (input_location
, 0, "empty declaration");
3870 /* Return the qualifiers from SPECS as a bitwise OR of TYPE_QUAL_*
3871 bits. SPECS represents declaration specifiers that the grammar
3872 only permits to contain type qualifiers and attributes. */
3875 quals_from_declspecs (const struct c_declspecs
*specs
)
3877 int quals
= ((specs
->const_p
? TYPE_QUAL_CONST
: 0)
3878 | (specs
->volatile_p
? TYPE_QUAL_VOLATILE
: 0)
3879 | (specs
->restrict_p
? TYPE_QUAL_RESTRICT
: 0)
3880 | (specs
->atomic_p
? TYPE_QUAL_ATOMIC
: 0)
3881 | (specs
->shared_p
? TYPE_QUAL_SHARED
: 0)
3882 | (specs
->strict_p
? TYPE_QUAL_STRICT
: 0)
3883 | (specs
->relaxed_p
? TYPE_QUAL_RELAXED
: 0)
3884 | (ENCODE_QUAL_ADDR_SPACE (specs
->address_space
)));
3885 gcc_assert (!specs
->type
3886 && !specs
->decl_attr
3887 && specs
->typespec_word
== cts_none
3888 && specs
->storage_class
== csc_none
3889 && !specs
->typedef_p
3890 && !specs
->explicit_signed_p
3891 && !specs
->deprecated_p
3893 && !specs
->long_long_p
3896 && !specs
->unsigned_p
3897 && !specs
->complex_p
3899 && !specs
->noreturn_p
3900 && !specs
->thread_p
);
3904 /* Construct an array declarator. LOC is the location of the
3905 beginning of the array (usually the opening brace). EXPR is the
3906 expression inside [], or NULL_TREE. QUALS are the type qualifiers
3907 inside the [] (to be applied to the pointer to which a parameter
3908 array is converted). STATIC_P is true if "static" is inside the
3909 [], false otherwise. VLA_UNSPEC_P is true if the array is [*], a
3910 VLA of unspecified length which is nevertheless a complete type,
3911 false otherwise. The field for the contained declarator is left to
3912 be filled in by set_array_declarator_inner. */
3914 struct c_declarator
*
3915 build_array_declarator (location_t loc
,
3916 tree expr
, struct c_declspecs
*quals
, bool static_p
,
3919 struct c_declarator
*declarator
= XOBNEW (&parser_obstack
,
3920 struct c_declarator
);
3921 declarator
->id_loc
= loc
;
3922 declarator
->kind
= cdk_array
;
3923 declarator
->declarator
= 0;
3924 declarator
->u
.array
.dimen
= expr
;
3927 declarator
->u
.array
.attrs
= quals
->attrs
;
3928 declarator
->u
.array
.quals
= quals_from_declspecs (quals
);
3932 declarator
->u
.array
.attrs
= NULL_TREE
;
3933 declarator
->u
.array
.quals
= 0;
3935 declarator
->u
.array
.static_p
= static_p
;
3936 declarator
->u
.array
.vla_unspec_p
= vla_unspec_p
;
3939 if (static_p
|| quals
!= NULL
)
3940 pedwarn (loc
, OPT_Wpedantic
,
3941 "ISO C90 does not support %<static%> or type "
3942 "qualifiers in parameter array declarators");
3944 pedwarn (loc
, OPT_Wpedantic
,
3945 "ISO C90 does not support %<[*]%> array declarators");
3949 if (!current_scope
->parm_flag
)
3952 error_at (loc
, "%<[*]%> not allowed in other than "
3953 "function prototype scope");
3954 declarator
->u
.array
.vla_unspec_p
= false;
3957 current_scope
->had_vla_unspec
= true;
3962 /* Set the contained declarator of an array declarator. DECL is the
3963 declarator, as constructed by build_array_declarator; INNER is what
3964 appears on the left of the []. */
3966 struct c_declarator
*
3967 set_array_declarator_inner (struct c_declarator
*decl
,
3968 struct c_declarator
*inner
)
3970 decl
->declarator
= inner
;
3974 /* INIT is a constructor that forms DECL's initializer. If the final
3975 element initializes a flexible array field, add the size of that
3976 initializer to DECL's size. */
3979 add_flexible_array_elts_to_size (tree decl
, tree init
)
3983 if (vec_safe_is_empty (CONSTRUCTOR_ELTS (init
)))
3986 elt
= CONSTRUCTOR_ELTS (init
)->last ().value
;
3987 type
= TREE_TYPE (elt
);
3988 if (TREE_CODE (type
) == ARRAY_TYPE
3989 && TYPE_SIZE (type
) == NULL_TREE
3990 && TYPE_DOMAIN (type
) != NULL_TREE
3991 && TYPE_MAX_VALUE (TYPE_DOMAIN (type
)) == NULL_TREE
)
3993 complete_array_type (&type
, elt
, false);
3995 = size_binop (PLUS_EXPR
, DECL_SIZE (decl
), TYPE_SIZE (type
));
3996 DECL_SIZE_UNIT (decl
)
3997 = size_binop (PLUS_EXPR
, DECL_SIZE_UNIT (decl
), TYPE_SIZE_UNIT (type
));
4001 /* Decode a "typename", such as "int **", returning a ..._TYPE node.
4002 Set *EXPR, if EXPR not NULL, to any expression to be evaluated
4003 before the type name, and set *EXPR_CONST_OPERANDS, if
4004 EXPR_CONST_OPERANDS not NULL, to indicate whether the type name may
4005 appear in a constant expression. */
4008 groktypename (struct c_type_name
*type_name
, tree
*expr
,
4009 bool *expr_const_operands
)
4012 tree attrs
= type_name
->specs
->attrs
;
4014 type_name
->specs
->attrs
= NULL_TREE
;
4016 type
= grokdeclarator (type_name
->declarator
, type_name
->specs
, TYPENAME
,
4017 false, NULL
, &attrs
, expr
, expr_const_operands
,
4020 /* Apply attributes. */
4021 decl_attributes (&type
, attrs
, 0);
4026 /* Wrapper for decl_attributes that adds some implicit attributes
4027 to VAR_DECLs or FUNCTION_DECLs. */
4030 c_decl_attributes (tree
*node
, tree attributes
, int flags
)
4032 /* Add implicit "omp declare target" attribute if requested. */
4033 if (current_omp_declare_target_attribute
4034 && ((TREE_CODE (*node
) == VAR_DECL
&& TREE_STATIC (*node
))
4035 || TREE_CODE (*node
) == FUNCTION_DECL
))
4037 if (TREE_CODE (*node
) == VAR_DECL
4038 && ((DECL_CONTEXT (*node
)
4039 && TREE_CODE (DECL_CONTEXT (*node
)) == FUNCTION_DECL
)
4040 || (current_function_decl
&& !DECL_EXTERNAL (*node
))))
4041 error ("%q+D in block scope inside of declare target directive",
4043 else if (TREE_CODE (*node
) == VAR_DECL
4044 && !lang_hooks
.types
.omp_mappable_type (TREE_TYPE (*node
)))
4045 error ("%q+D in declare target directive does not have mappable type",
4048 attributes
= tree_cons (get_identifier ("omp declare target"),
4049 NULL_TREE
, attributes
);
4051 return decl_attributes (node
, attributes
, flags
);
4055 /* Decode a declarator in an ordinary declaration or data definition.
4056 This is called as soon as the type information and variable name
4057 have been parsed, before parsing the initializer if any.
4058 Here we create the ..._DECL node, fill in its type,
4059 and put it on the list of decls for the current context.
4060 The ..._DECL node is returned as the value.
4062 Exception: for arrays where the length is not specified,
4063 the type is left null, to be filled in by `finish_decl'.
4065 Function definitions do not come here; they go to start_function
4066 instead. However, external and forward declarations of functions
4067 do go through here. Structure field declarations are done by
4068 grokfield and not through here. */
4071 start_decl (struct c_declarator
*declarator
, struct c_declspecs
*declspecs
,
4072 bool initialized
, tree attributes
)
4076 tree expr
= NULL_TREE
;
4077 enum deprecated_states deprecated_state
= DEPRECATED_NORMAL
;
4079 /* An object declared as __attribute__((deprecated)) suppresses
4080 warnings of uses of other deprecated items. */
4081 if (lookup_attribute ("deprecated", attributes
))
4082 deprecated_state
= DEPRECATED_SUPPRESS
;
4084 decl
= grokdeclarator (declarator
, declspecs
,
4085 NORMAL
, initialized
, NULL
, &attributes
, &expr
, NULL
,
4091 add_stmt (fold_convert (void_type_node
, expr
));
4093 if (TREE_CODE (decl
) != FUNCTION_DECL
&& MAIN_NAME_P (DECL_NAME (decl
)))
4094 warning (OPT_Wmain
, "%q+D is usually a function", decl
);
4097 /* Is it valid for this decl to have an initializer at all?
4098 If not, set INITIALIZED to zero, which will indirectly
4099 tell 'finish_decl' to ignore the initializer once it is parsed. */
4100 switch (TREE_CODE (decl
))
4103 error ("typedef %qD is initialized (use __typeof__ instead)", decl
);
4108 error ("function %qD is initialized like a variable", decl
);
4113 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
4114 error ("parameter %qD is initialized", decl
);
4119 /* Don't allow initializations for incomplete types except for
4120 arrays which might be completed by the initialization. */
4122 /* This can happen if the array size is an undefined macro.
4123 We already gave a warning, so we don't need another one. */
4124 if (TREE_TYPE (decl
) == error_mark_node
)
4126 else if (COMPLETE_TYPE_P (TREE_TYPE (decl
)))
4128 /* A complete type is ok if size is fixed. */
4130 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl
))) != INTEGER_CST
4131 || C_DECL_VARIABLE_SIZE (decl
))
4133 error ("variable-sized object may not be initialized");
4137 else if (TREE_CODE (TREE_TYPE (decl
)) != ARRAY_TYPE
)
4139 error ("variable %qD has initializer but incomplete type", decl
);
4142 else if (C_DECL_VARIABLE_SIZE (decl
))
4144 /* Although C99 is unclear about whether incomplete arrays
4145 of VLAs themselves count as VLAs, it does not make
4146 sense to permit them to be initialized given that
4147 ordinary VLAs may not be initialized. */
4148 error ("variable-sized object may not be initialized");
4155 if (current_scope
== file_scope
)
4156 TREE_STATIC (decl
) = 1;
4158 /* Tell 'pushdecl' this is an initialized decl
4159 even though we don't yet have the initializer expression.
4160 Also tell 'finish_decl' it may store the real initializer. */
4161 DECL_INITIAL (decl
) = error_mark_node
;
4164 /* If this is a function declaration, write a record describing it to the
4165 prototypes file (if requested). */
4167 if (TREE_CODE (decl
) == FUNCTION_DECL
)
4168 gen_aux_info_record (decl
, 0, 0, prototype_p (TREE_TYPE (decl
)));
4170 /* ANSI specifies that a tentative definition which is not merged with
4171 a non-tentative definition behaves exactly like a definition with an
4172 initializer equal to zero. (Section 3.7.2)
4174 -fno-common gives strict ANSI behavior, though this tends to break
4175 a large body of code that grew up without this rule.
4177 Thread-local variables are never common, since there's no entrenched
4178 body of code to break, and it allows more efficient variable references
4179 in the presence of dynamic linking. */
4181 if (TREE_CODE (decl
) == VAR_DECL
4183 && TREE_PUBLIC (decl
)
4184 && !DECL_THREAD_LOCAL_P (decl
)
4186 DECL_COMMON (decl
) = 1;
4188 /* Set attributes here so if duplicate decl, will have proper attributes. */
4189 c_decl_attributes (&decl
, attributes
, 0);
4191 /* Handle gnu_inline attribute. */
4192 if (declspecs
->inline_p
4193 && !flag_gnu89_inline
4194 && TREE_CODE (decl
) == FUNCTION_DECL
4195 && (lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl
))
4196 || current_function_decl
))
4198 if (declspecs
->storage_class
== csc_auto
&& current_scope
!= file_scope
)
4200 else if (declspecs
->storage_class
!= csc_static
)
4201 DECL_EXTERNAL (decl
) = !DECL_EXTERNAL (decl
);
4204 if (TREE_CODE (decl
) == FUNCTION_DECL
4205 && targetm
.calls
.promote_prototypes (TREE_TYPE (decl
)))
4207 struct c_declarator
*ce
= declarator
;
4209 if (ce
->kind
== cdk_pointer
)
4210 ce
= declarator
->declarator
;
4211 if (ce
->kind
== cdk_function
)
4213 tree args
= ce
->u
.arg_info
->parms
;
4214 for (; args
; args
= DECL_CHAIN (args
))
4216 tree type
= TREE_TYPE (args
);
4217 if (type
&& INTEGRAL_TYPE_P (type
)
4218 && TYPE_PRECISION (type
) < TYPE_PRECISION (integer_type_node
))
4219 DECL_ARG_TYPE (args
) = c_type_promotes_to (type
);
4224 if (TREE_CODE (decl
) == FUNCTION_DECL
4225 && DECL_DECLARED_INLINE_P (decl
)
4226 && DECL_UNINLINABLE (decl
)
4227 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl
)))
4228 warning (OPT_Wattributes
, "inline function %q+D given attribute noinline",
4231 /* C99 6.7.4p3: An inline definition of a function with external
4232 linkage shall not contain a definition of a modifiable object
4233 with static storage duration... */
4234 if (TREE_CODE (decl
) == VAR_DECL
4235 && current_scope
!= file_scope
4236 && TREE_STATIC (decl
)
4237 && !TREE_READONLY (decl
)
4238 && DECL_DECLARED_INLINE_P (current_function_decl
)
4239 && DECL_EXTERNAL (current_function_decl
))
4240 record_inline_static (input_location
, current_function_decl
,
4241 decl
, csi_modifiable
);
4243 if (c_dialect_objc ()
4244 && (TREE_CODE (decl
) == VAR_DECL
4245 || TREE_CODE (decl
) == FUNCTION_DECL
))
4246 objc_check_global_decl (decl
);
4248 /* Add this decl to the current scope.
4249 TEM may equal DECL or it may be a previous decl of the same name. */
4250 tem
= pushdecl (decl
);
4252 if (initialized
&& DECL_EXTERNAL (tem
))
4254 DECL_EXTERNAL (tem
) = 0;
4255 TREE_STATIC (tem
) = 1;
4261 /* Subroutine of finish_decl. TYPE is the type of an uninitialized object
4262 DECL or the non-array element type if DECL is an uninitialized array.
4263 If that type has a const member, diagnose this. */
4266 diagnose_uninitialized_cst_member (tree decl
, tree type
)
4269 for (field
= TYPE_FIELDS (type
); field
; field
= TREE_CHAIN (field
))
4272 if (TREE_CODE (field
) != FIELD_DECL
)
4274 field_type
= strip_array_types (TREE_TYPE (field
));
4276 if (TYPE_QUALS (field_type
) & TYPE_QUAL_CONST
)
4278 warning_at (DECL_SOURCE_LOCATION (decl
), OPT_Wc___compat
,
4279 "uninitialized const member in %qT is invalid in C++",
4280 strip_array_types (TREE_TYPE (decl
)));
4281 inform (DECL_SOURCE_LOCATION (field
), "%qD should be initialized", field
);
4284 if (TREE_CODE (field_type
) == RECORD_TYPE
4285 || TREE_CODE (field_type
) == UNION_TYPE
)
4286 diagnose_uninitialized_cst_member (decl
, field_type
);
4290 /* Finish processing of a declaration;
4291 install its initial value.
4292 If ORIGTYPE is not NULL_TREE, it is the original type of INIT.
4293 If the length of an array type is not known before,
4294 it must be determined now, from the initial value, or it is an error.
4296 INIT_LOC is the location of the initial value. */
4299 finish_decl (tree decl
, location_t init_loc
, tree init
,
4300 tree origtype
, tree asmspec_tree
)
4303 bool was_incomplete
= (DECL_SIZE (decl
) == 0);
4304 const char *asmspec
= 0;
4306 /* If a name was specified, get the string. */
4307 if ((TREE_CODE (decl
) == FUNCTION_DECL
|| TREE_CODE (decl
) == VAR_DECL
)
4308 && DECL_FILE_SCOPE_P (decl
))
4309 asmspec_tree
= maybe_apply_renaming_pragma (decl
, asmspec_tree
);
4311 asmspec
= TREE_STRING_POINTER (asmspec_tree
);
4313 if (TREE_CODE (decl
) == VAR_DECL
4314 && TREE_STATIC (decl
)
4315 && global_bindings_p ())
4316 /* So decl is a global variable. Record the types it uses
4317 so that we can decide later to emit debug info for them. */
4318 record_types_used_by_current_var_decl (decl
);
4320 /* If `start_decl' didn't like having an initialization, ignore it now. */
4321 if (init
!= 0 && DECL_INITIAL (decl
) == 0)
4324 /* Don't crash if parm is initialized. */
4325 if (TREE_CODE (decl
) == PARM_DECL
)
4329 store_init_value (init_loc
, decl
, init
, origtype
);
4331 if (c_dialect_objc () && (TREE_CODE (decl
) == VAR_DECL
4332 || TREE_CODE (decl
) == FUNCTION_DECL
4333 || TREE_CODE (decl
) == FIELD_DECL
))
4334 objc_check_decl (decl
);
4336 type
= TREE_TYPE (decl
);
4338 /* Deduce size of array from initialization, if not already known. */
4339 if (TREE_CODE (type
) == ARRAY_TYPE
4340 && TYPE_DOMAIN (type
) == 0
4341 && TREE_CODE (decl
) != TYPE_DECL
)
4344 = (TREE_STATIC (decl
)
4345 /* Even if pedantic, an external linkage array
4346 may have incomplete type at first. */
4347 ? pedantic
&& !TREE_PUBLIC (decl
)
4348 : !DECL_EXTERNAL (decl
));
4350 = complete_array_type (&TREE_TYPE (decl
), DECL_INITIAL (decl
),
4353 /* Get the completed type made by complete_array_type. */
4354 type
= TREE_TYPE (decl
);
4359 error ("initializer fails to determine size of %q+D", decl
);
4364 error ("array size missing in %q+D", decl
);
4365 /* If a `static' var's size isn't known,
4366 make it extern as well as static, so it does not get
4368 If it is not `static', then do not mark extern;
4369 finish_incomplete_decl will give it a default size
4370 and it will get allocated. */
4371 else if (!pedantic
&& TREE_STATIC (decl
) && !TREE_PUBLIC (decl
))
4372 DECL_EXTERNAL (decl
) = 1;
4376 error ("zero or negative size array %q+D", decl
);
4380 /* For global variables, update the copy of the type that
4381 exists in the binding. */
4382 if (TREE_PUBLIC (decl
))
4384 struct c_binding
*b_ext
= I_SYMBOL_BINDING (DECL_NAME (decl
));
4385 while (b_ext
&& !B_IN_EXTERNAL_SCOPE (b_ext
))
4386 b_ext
= b_ext
->shadowed
;
4389 if (b_ext
->u
.type
&& comptypes (b_ext
->u
.type
, type
))
4390 b_ext
->u
.type
= composite_type (b_ext
->u
.type
, type
);
4392 b_ext
->u
.type
= type
;
4401 if (DECL_INITIAL (decl
))
4402 TREE_TYPE (DECL_INITIAL (decl
)) = type
;
4404 relayout_decl (decl
);
4407 if (TREE_CODE (decl
) == VAR_DECL
)
4409 if (init
&& TREE_CODE (init
) == CONSTRUCTOR
)
4410 add_flexible_array_elts_to_size (decl
, init
);
4412 if (DECL_SIZE (decl
) == 0 && TREE_TYPE (decl
) != error_mark_node
4413 && COMPLETE_TYPE_P (TREE_TYPE (decl
)))
4414 layout_decl (decl
, 0);
4416 if (DECL_SIZE (decl
) == 0
4417 /* Don't give an error if we already gave one earlier. */
4418 && TREE_TYPE (decl
) != error_mark_node
4419 && (TREE_STATIC (decl
)
4420 /* A static variable with an incomplete type
4421 is an error if it is initialized.
4422 Also if it is not file scope.
4423 Otherwise, let it through, but if it is not `extern'
4424 then it may cause an error message later. */
4425 ? (DECL_INITIAL (decl
) != 0
4426 || !DECL_FILE_SCOPE_P (decl
))
4427 /* An automatic variable with an incomplete type
4429 : !DECL_EXTERNAL (decl
)))
4431 error ("storage size of %q+D isn%'t known", decl
);
4432 TREE_TYPE (decl
) = error_mark_node
;
4435 if ((DECL_EXTERNAL (decl
) || TREE_STATIC (decl
))
4436 && DECL_SIZE (decl
) != 0)
4438 if (TREE_CODE (DECL_SIZE (decl
)) == INTEGER_CST
)
4439 constant_expression_warning (DECL_SIZE (decl
));
4442 if (upc_shared_type_p (TREE_TYPE (decl
)))
4444 gcc_assert (!flag_upc_threads
);
4445 if (TYPE_HAS_THREADS_FACTOR (TREE_TYPE (decl
)))
4446 error ("in the UPC dynamic translation environment, " "THREADS may not appear in declarations "
4447 "of shared arrays with indefinite block size; "
4448 "the storage size of %q+D cannot be calculated",
4451 error ("in the UPC dynamic translation environment, "
4452 "THREADS must appear exactly once in "
4453 "declarations of shared arrays; "
4454 "the storage size of %q+D cannot be calculated",
4458 error ("storage size of %q+D isn%'t constant", decl
);
4459 TREE_TYPE (decl
) = error_mark_node
;
4463 if (TREE_USED (type
))
4465 TREE_USED (decl
) = 1;
4466 DECL_READ_P (decl
) = 1;
4470 /* If this is a function and an assembler name is specified, reset DECL_RTL
4471 so we can give it its new name. Also, update builtin_decl if it
4472 was a normal built-in. */
4473 if (TREE_CODE (decl
) == FUNCTION_DECL
&& asmspec
)
4475 if (DECL_BUILT_IN_CLASS (decl
) == BUILT_IN_NORMAL
)
4476 set_builtin_user_assembler_name (decl
, asmspec
);
4477 set_user_assembler_name (decl
, asmspec
);
4480 /* If #pragma weak was used, mark the decl weak now. */
4481 maybe_apply_pragma_weak (decl
);
4483 /* Output the assembler code and/or RTL code for variables and functions,
4484 unless the type is an undefined structure or union.
4485 If not, it will get done when the type is completed. */
4487 if (TREE_CODE (decl
) == VAR_DECL
|| TREE_CODE (decl
) == FUNCTION_DECL
)
4489 /* Determine the ELF visibility. */
4490 if (TREE_PUBLIC (decl
))
4491 c_determine_visibility (decl
);
4493 /* This is a no-op in c-lang.c or something real in objc-act.c. */
4494 if (c_dialect_objc ())
4495 objc_check_decl (decl
);
4497 /* Give UPC a chance to check the declaration. */
4499 upc_check_decl (decl
);
4503 /* If this is not a static variable, issue a warning.
4504 It doesn't make any sense to give an ASMSPEC for an
4505 ordinary, non-register local variable. Historically,
4506 GCC has accepted -- but ignored -- the ASMSPEC in
4508 if (!DECL_FILE_SCOPE_P (decl
)
4509 && TREE_CODE (decl
) == VAR_DECL
4510 && !C_DECL_REGISTER (decl
)
4511 && !TREE_STATIC (decl
))
4512 warning (0, "ignoring asm-specifier for non-static local "
4513 "variable %q+D", decl
);
4515 set_user_assembler_name (decl
, asmspec
);
4518 if (DECL_FILE_SCOPE_P (decl
))
4520 if (DECL_INITIAL (decl
) == NULL_TREE
4521 || DECL_INITIAL (decl
) == error_mark_node
)
4522 /* Don't output anything
4523 when a tentative file-scope definition is seen.
4524 But at end of compilation, do output code for them. */
4525 DECL_DEFER_OUTPUT (decl
) = 1;
4526 if (asmspec
&& C_DECL_REGISTER (decl
))
4527 DECL_HARD_REGISTER (decl
) = 1;
4528 rest_of_decl_compilation (decl
, true, 0);
4532 /* In conjunction with an ASMSPEC, the `register'
4533 keyword indicates that we should place the variable
4534 in a particular register. */
4535 if (asmspec
&& C_DECL_REGISTER (decl
))
4537 DECL_HARD_REGISTER (decl
) = 1;
4538 /* This cannot be done for a structure with volatile
4539 fields, on which DECL_REGISTER will have been
4541 if (!DECL_REGISTER (decl
))
4542 error ("cannot put object with volatile field into register");
4545 if (TREE_CODE (decl
) != FUNCTION_DECL
)
4547 /* If we're building a variable sized type, and we might be
4548 reachable other than via the top of the current binding
4549 level, then create a new BIND_EXPR so that we deallocate
4550 the object at the right time. */
4551 /* Note that DECL_SIZE can be null due to errors. */
4552 if (DECL_SIZE (decl
)
4553 && !TREE_CONSTANT (DECL_SIZE (decl
))
4554 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list
))
4557 bind
= build3 (BIND_EXPR
, void_type_node
, NULL
, NULL
, NULL
);
4558 TREE_SIDE_EFFECTS (bind
) = 1;
4560 BIND_EXPR_BODY (bind
) = push_stmt_list ();
4562 add_stmt (build_stmt (DECL_SOURCE_LOCATION (decl
),
4568 if (!DECL_FILE_SCOPE_P (decl
))
4570 /* Recompute the RTL of a local array now
4571 if it used to be an incomplete type. */
4573 && !TREE_STATIC (decl
) && !DECL_EXTERNAL (decl
))
4575 /* If we used it already as memory, it must stay in memory. */
4576 TREE_ADDRESSABLE (decl
) = TREE_USED (decl
);
4577 /* If it's still incomplete now, no init will save it. */
4578 if (DECL_SIZE (decl
) == 0)
4579 DECL_INITIAL (decl
) = 0;
4584 if (TREE_CODE (decl
) == TYPE_DECL
)
4586 if (!DECL_FILE_SCOPE_P (decl
)
4587 && variably_modified_type_p (TREE_TYPE (decl
), NULL_TREE
))
4588 add_stmt (build_stmt (DECL_SOURCE_LOCATION (decl
), DECL_EXPR
, decl
));
4590 rest_of_decl_compilation (decl
, DECL_FILE_SCOPE_P (decl
), 0);
4593 /* Install a cleanup (aka destructor) if one was given. */
4594 if (TREE_CODE (decl
) == VAR_DECL
&& !TREE_STATIC (decl
))
4596 tree attr
= lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl
));
4599 tree cleanup_id
= TREE_VALUE (TREE_VALUE (attr
));
4600 tree cleanup_decl
= lookup_name (cleanup_id
);
4602 vec
<tree
, va_gc
> *v
;
4604 /* Build "cleanup(&decl)" for the destructor. */
4605 cleanup
= build_unary_op (input_location
, ADDR_EXPR
, decl
, 0);
4607 v
->quick_push (cleanup
);
4608 cleanup
= c_build_function_call_vec (DECL_SOURCE_LOCATION (decl
),
4609 vNULL
, cleanup_decl
, v
, NULL
);
4612 /* Don't warn about decl unused; the cleanup uses it. */
4613 TREE_USED (decl
) = 1;
4614 TREE_USED (cleanup_decl
) = 1;
4615 DECL_READ_P (decl
) = 1;
4617 push_cleanup (decl
, cleanup
, false);
4622 && TREE_CODE (decl
) == VAR_DECL
4623 && !DECL_EXTERNAL (decl
)
4624 && DECL_INITIAL (decl
) == NULL_TREE
)
4626 type
= strip_array_types (type
);
4627 if (TREE_READONLY (decl
))
4628 warning_at (DECL_SOURCE_LOCATION (decl
), OPT_Wc___compat
,
4629 "uninitialized const %qD is invalid in C++", decl
);
4630 else if ((TREE_CODE (type
) == RECORD_TYPE
4631 || TREE_CODE (type
) == UNION_TYPE
)
4632 && C_TYPE_FIELDS_READONLY (type
))
4633 diagnose_uninitialized_cst_member (decl
, type
);
4636 invoke_plugin_callbacks (PLUGIN_FINISH_DECL
, decl
);
4639 /* Given a parsed parameter declaration, decode it into a PARM_DECL.
4640 EXPR is NULL or a pointer to an expression that needs to be
4641 evaluated for the side effects of array size expressions in the
4645 grokparm (const struct c_parm
*parm
, tree
*expr
)
4647 tree attrs
= parm
->attrs
;
4648 tree decl
= grokdeclarator (parm
->declarator
, parm
->specs
, PARM
, false,
4649 NULL
, &attrs
, expr
, NULL
, DEPRECATED_NORMAL
);
4651 decl_attributes (&decl
, attrs
, 0);
4656 /* Given a parsed parameter declaration, decode it into a PARM_DECL
4657 and push that on the current scope. EXPR is a pointer to an
4658 expression that needs to be evaluated for the side effects of array
4659 size expressions in the parameters. */
4662 push_parm_decl (const struct c_parm
*parm
, tree
*expr
)
4664 tree attrs
= parm
->attrs
;
4667 decl
= grokdeclarator (parm
->declarator
, parm
->specs
, PARM
, false, NULL
,
4668 &attrs
, expr
, NULL
, DEPRECATED_NORMAL
);
4669 decl_attributes (&decl
, attrs
, 0);
4671 decl
= pushdecl (decl
);
4673 finish_decl (decl
, input_location
, NULL_TREE
, NULL_TREE
, NULL_TREE
);
4676 /* Mark all the parameter declarations to date as forward decls.
4677 Also diagnose use of this extension. */
4680 mark_forward_parm_decls (void)
4682 struct c_binding
*b
;
4684 if (pedantic
&& !current_scope
->warned_forward_parm_decls
)
4686 pedwarn (input_location
, OPT_Wpedantic
,
4687 "ISO C forbids forward parameter declarations");
4688 current_scope
->warned_forward_parm_decls
= true;
4691 for (b
= current_scope
->bindings
; b
; b
= b
->prev
)
4692 if (TREE_CODE (b
->decl
) == PARM_DECL
)
4693 TREE_ASM_WRITTEN (b
->decl
) = 1;
4696 /* Build a COMPOUND_LITERAL_EXPR. TYPE is the type given in the compound
4697 literal, which may be an incomplete array type completed by the
4698 initializer; INIT is a CONSTRUCTOR at LOC that initializes the compound
4699 literal. NON_CONST is true if the initializers contain something
4700 that cannot occur in a constant expression. */
4703 build_compound_literal (location_t loc
, tree type
, tree init
, bool non_const
)
4705 /* We do not use start_decl here because we have a type, not a declarator;
4706 and do not use finish_decl because the decl should be stored inside
4707 the COMPOUND_LITERAL_EXPR rather than added elsewhere as a DECL_EXPR. */
4712 if (type
== error_mark_node
4713 || init
== error_mark_node
)
4714 return error_mark_node
;
4716 decl
= build_decl (loc
, VAR_DECL
, NULL_TREE
, type
);
4717 DECL_EXTERNAL (decl
) = 0;
4718 TREE_PUBLIC (decl
) = 0;
4719 TREE_STATIC (decl
) = (current_scope
== file_scope
);
4720 DECL_CONTEXT (decl
) = current_function_decl
;
4721 TREE_USED (decl
) = 1;
4722 DECL_READ_P (decl
) = 1;
4723 TREE_TYPE (decl
) = type
;
4724 TREE_READONLY (decl
) = (TYPE_READONLY (type
)
4725 || (TREE_CODE (type
) == ARRAY_TYPE
4726 && TYPE_READONLY (TREE_TYPE (type
))));
4727 store_init_value (loc
, decl
, init
, NULL_TREE
);
4729 if (TREE_CODE (type
) == ARRAY_TYPE
&& !COMPLETE_TYPE_P (type
))
4731 int failure
= complete_array_type (&TREE_TYPE (decl
),
4732 DECL_INITIAL (decl
), true);
4733 /* If complete_array_type returns 3, it means that the
4734 initial value of the compound literal is empty. Allow it. */
4735 gcc_assert (failure
== 0 || failure
== 3);
4737 type
= TREE_TYPE (decl
);
4738 TREE_TYPE (DECL_INITIAL (decl
)) = type
;
4741 if (type
== error_mark_node
|| !COMPLETE_TYPE_P (type
))
4743 c_incomplete_type_error (NULL_TREE
, type
);
4744 return error_mark_node
;
4747 stmt
= build_stmt (DECL_SOURCE_LOCATION (decl
), DECL_EXPR
, decl
);
4748 complit
= build1 (COMPOUND_LITERAL_EXPR
, type
, stmt
);
4749 TREE_SIDE_EFFECTS (complit
) = 1;
4751 layout_decl (decl
, 0);
4753 if (TREE_STATIC (decl
))
4755 /* This decl needs a name for the assembler output. */
4756 set_compound_literal_name (decl
);
4757 DECL_DEFER_OUTPUT (decl
) = 1;
4758 DECL_COMDAT (decl
) = 1;
4759 DECL_ARTIFICIAL (decl
) = 1;
4760 DECL_IGNORED_P (decl
) = 1;
4762 rest_of_decl_compilation (decl
, 1, 0);
4767 complit
= build2 (C_MAYBE_CONST_EXPR
, type
, NULL
, complit
);
4768 C_MAYBE_CONST_EXPR_NON_CONST (complit
) = 1;
4774 /* Check the type of a compound literal. Here we just check that it
4775 is valid for C++. */
4778 check_compound_literal_type (location_t loc
, struct c_type_name
*type_name
)
4781 && (type_name
->specs
->typespec_kind
== ctsk_tagdef
4782 || type_name
->specs
->typespec_kind
== ctsk_tagfirstref
))
4783 warning_at (loc
, OPT_Wc___compat
,
4784 "defining a type in a compound literal is invalid in C++");
4787 /* Determine whether TYPE is a structure with a flexible array member,
4788 or a union containing such a structure (possibly recursively). */
4791 flexible_array_type_p (tree type
)
4794 switch (TREE_CODE (type
))
4797 x
= TYPE_FIELDS (type
);
4800 while (DECL_CHAIN (x
) != NULL_TREE
)
4802 if (TREE_CODE (TREE_TYPE (x
)) == ARRAY_TYPE
4803 && TYPE_SIZE (TREE_TYPE (x
)) == NULL_TREE
4804 && TYPE_DOMAIN (TREE_TYPE (x
)) != NULL_TREE
4805 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x
))) == NULL_TREE
)
4809 for (x
= TYPE_FIELDS (type
); x
!= NULL_TREE
; x
= DECL_CHAIN (x
))
4811 if (flexible_array_type_p (TREE_TYPE (x
)))
4820 /* Performs sanity checks on the TYPE and WIDTH of the bit-field NAME,
4821 replacing with appropriate values if they are invalid. */
4823 check_bitfield_type_and_width (tree
*type
, tree
*width
, tree orig_name
)
4826 unsigned int max_width
;
4827 unsigned HOST_WIDE_INT w
;
4828 const char *name
= (orig_name
4829 ? identifier_to_locale (IDENTIFIER_POINTER (orig_name
))
4830 : _("<anonymous>"));
4832 /* Detect and ignore out of range field width and process valid
4834 if (!INTEGRAL_TYPE_P (TREE_TYPE (*width
)))
4836 error ("bit-field %qs width not an integer constant", name
);
4837 *width
= integer_one_node
;
4841 if (TREE_CODE (*width
) != INTEGER_CST
)
4843 *width
= c_fully_fold (*width
, false, NULL
);
4844 if (TREE_CODE (*width
) == INTEGER_CST
)
4845 pedwarn (input_location
, OPT_Wpedantic
,
4846 "bit-field %qs width not an integer constant expression",
4849 if (TREE_CODE (*width
) != INTEGER_CST
)
4851 error ("bit-field %qs width not an integer constant", name
);
4852 *width
= integer_one_node
;
4854 constant_expression_warning (*width
);
4855 if (tree_int_cst_sgn (*width
) < 0)
4857 error ("negative width in bit-field %qs", name
);
4858 *width
= integer_one_node
;
4860 else if (integer_zerop (*width
) && orig_name
)
4862 error ("zero width for bit-field %qs", name
);
4863 *width
= integer_one_node
;
4867 /* Detect invalid bit-field type. */
4868 if (TREE_CODE (*type
) != INTEGER_TYPE
4869 && TREE_CODE (*type
) != BOOLEAN_TYPE
4870 && TREE_CODE (*type
) != ENUMERAL_TYPE
)
4872 error ("bit-field %qs has invalid type", name
);
4873 *type
= unsigned_type_node
;
4876 type_mv
= TYPE_MAIN_VARIANT (*type
);
4877 if (!in_system_header_at (input_location
)
4878 && type_mv
!= integer_type_node
4879 && type_mv
!= unsigned_type_node
4880 && type_mv
!= boolean_type_node
4882 pedwarn (input_location
, OPT_Wpedantic
,
4883 "type of bit-field %qs is a GCC extension", name
);
4885 max_width
= TYPE_PRECISION (*type
);
4887 if (0 < compare_tree_int (*width
, max_width
))
4889 error ("width of %qs exceeds its type", name
);
4891 *width
= build_int_cst (integer_type_node
, w
);
4894 w
= tree_to_uhwi (*width
);
4896 if (TREE_CODE (*type
) == ENUMERAL_TYPE
)
4898 struct lang_type
*lt
= TYPE_LANG_SPECIFIC (*type
);
4900 || w
< tree_int_cst_min_precision (lt
->enum_min
, TYPE_UNSIGNED (*type
))
4901 || w
< tree_int_cst_min_precision (lt
->enum_max
, TYPE_UNSIGNED (*type
)))
4902 warning (0, "%qs is narrower than values of its type", name
);
4908 /* Print warning about variable length array if necessary. */
4911 warn_variable_length_array (tree name
, tree size
)
4913 int const_size
= TREE_CONSTANT (size
);
4915 if (!flag_isoc99
&& pedantic
&& warn_vla
!= 0)
4920 pedwarn (input_location
, OPT_Wvla
,
4921 "ISO C90 forbids array %qE whose size "
4922 "can%'t be evaluated",
4925 pedwarn (input_location
, OPT_Wvla
, "ISO C90 forbids array whose size "
4926 "can%'t be evaluated");
4931 pedwarn (input_location
, OPT_Wvla
,
4932 "ISO C90 forbids variable length array %qE",
4935 pedwarn (input_location
, OPT_Wvla
, "ISO C90 forbids variable length array");
4938 else if (warn_vla
> 0)
4944 "the size of array %qE can"
4945 "%'t be evaluated", name
);
4948 "the size of array can %'t be evaluated");
4954 "variable length array %qE is used",
4958 "variable length array is used");
4963 /* Given declspecs and a declarator,
4964 determine the name and type of the object declared
4965 and construct a ..._DECL node for it.
4966 (In one case we can return a ..._TYPE node instead.
4967 For invalid input we sometimes return 0.)
4969 DECLSPECS is a c_declspecs structure for the declaration specifiers.
4971 DECL_CONTEXT says which syntactic context this declaration is in:
4972 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
4973 FUNCDEF for a function definition. Like NORMAL but a few different
4974 error messages in each case. Return value may be zero meaning
4975 this definition is too screwy to try to parse.
4976 PARM for a parameter declaration (either within a function prototype
4977 or before a function body). Make a PARM_DECL, or return void_type_node.
4978 TYPENAME if for a typename (in a cast or sizeof).
4979 Don't make a DECL node; just return the ..._TYPE node.
4980 FIELD for a struct or union field; make a FIELD_DECL.
4981 INITIALIZED is true if the decl has an initializer.
4982 WIDTH is non-NULL for bit-fields, and is a pointer to an INTEGER_CST node
4983 representing the width of the bit-field.
4984 DECL_ATTRS points to the list of attributes that should be added to this
4985 decl. Any nested attributes that belong on the decl itself will be
4987 If EXPR is not NULL, any expressions that need to be evaluated as
4988 part of evaluating variably modified types will be stored in *EXPR.
4989 If EXPR_CONST_OPERANDS is not NULL, *EXPR_CONST_OPERANDS will be
4990 set to indicate whether operands in *EXPR can be used in constant
4992 DEPRECATED_STATE is a deprecated_states value indicating whether
4993 deprecation warnings should be suppressed.
4995 In the TYPENAME case, DECLARATOR is really an absolute declarator.
4996 It may also be so in the PARM case, for a prototype where the
4997 argument type is specified but not the name.
4999 This function is where the complicated C meanings of `static'
5000 and `extern' are interpreted. */
5003 grokdeclarator (const struct c_declarator
*declarator
,
5004 struct c_declspecs
*declspecs
,
5005 enum decl_context decl_context
, bool initialized
, tree
*width
,
5006 tree
*decl_attrs
, tree
*expr
, bool *expr_const_operands
,
5007 enum deprecated_states deprecated_state
)
5009 tree type
= declspecs
->type
;
5010 bool threadp
= declspecs
->thread_p
;
5011 enum c_storage_class storage_class
= declspecs
->storage_class
;
5019 int type_quals
= TYPE_UNQUALIFIED
;
5020 tree name
= NULL_TREE
;
5021 bool funcdef_flag
= false;
5022 bool funcdef_syntax
= false;
5023 bool size_varies
= false;
5024 tree decl_attr
= declspecs
->decl_attr
;
5025 int array_ptr_quals
= TYPE_UNQUALIFIED
;
5026 tree array_ptr_attrs
= NULL_TREE
;
5027 int array_parm_static
= 0;
5028 bool array_parm_vla_unspec_p
= false;
5029 tree returned_attrs
= NULL_TREE
;
5030 int upc_threads_ref
= 0; /* for static declarations of shared arrays */
5031 tree upc_layout_qualifier
;
5032 tree upc_elem_block_factor
;
5033 tree upc_block_factor
= NULL
;
5034 bool bitfield
= width
!= NULL
;
5036 struct c_arg_info
*arg_info
= 0;
5037 addr_space_t as1
, as2
, address_space
;
5038 location_t loc
= UNKNOWN_LOCATION
;
5041 bool expr_const_operands_dummy
;
5042 enum c_declarator_kind first_non_attr_kind
;
5043 unsigned int alignas_align
= 0;
5045 if (TREE_CODE (type
) == ERROR_MARK
)
5046 return error_mark_node
;
5049 if (expr_const_operands
== NULL
)
5050 expr_const_operands
= &expr_const_operands_dummy
;
5052 *expr
= declspecs
->expr
;
5053 *expr_const_operands
= declspecs
->expr_const_operands
;
5055 if (decl_context
== FUNCDEF
)
5056 funcdef_flag
= true, decl_context
= NORMAL
;
5058 /* Look inside a declarator for the name being declared
5059 and get it as an IDENTIFIER_NODE, for an error message. */
5061 const struct c_declarator
*decl
= declarator
;
5063 first_non_attr_kind
= cdk_attrs
;
5073 funcdef_syntax
= (decl
->kind
== cdk_function
);
5074 decl
= decl
->declarator
;
5075 if (first_non_attr_kind
== cdk_attrs
)
5076 first_non_attr_kind
= decl
->kind
;
5080 decl
= decl
->declarator
;
5087 if (first_non_attr_kind
== cdk_attrs
)
5088 first_non_attr_kind
= decl
->kind
;
5097 gcc_assert (decl_context
== PARM
5098 || decl_context
== TYPENAME
5099 || (decl_context
== FIELD
5100 && declarator
->kind
== cdk_id
));
5101 gcc_assert (!initialized
);
5105 /* A function definition's declarator must have the form of
5106 a function declarator. */
5108 if (funcdef_flag
&& !funcdef_syntax
)
5111 /* If this looks like a function definition, make it one,
5112 even if it occurs where parms are expected.
5113 Then store_parm_decls will reject it and not use it as a parm. */
5114 if (decl_context
== NORMAL
&& !funcdef_flag
&& current_scope
->parm_flag
)
5115 decl_context
= PARM
;
5117 if (declspecs
->deprecated_p
&& deprecated_state
!= DEPRECATED_SUPPRESS
)
5118 warn_deprecated_use (declspecs
->type
, declspecs
->decl_attr
);
5120 if ((decl_context
== NORMAL
|| decl_context
== FIELD
)
5121 && current_scope
== file_scope
5122 && variably_modified_type_p (type
, NULL_TREE
))
5125 error_at (loc
, "variably modified %qE at file scope", name
);
5127 error_at (loc
, "variably modified field at file scope");
5128 type
= integer_type_node
;
5131 size_varies
= C_TYPE_VARIABLE_SIZE (type
) != 0;
5133 upc_threads_ref
= TYPE_HAS_THREADS_FACTOR (type
);
5135 /* Diagnose defaulting to "int". */
5137 if (declspecs
->default_int_p
&& !in_system_header_at (input_location
))
5139 /* Issue a warning if this is an ISO C 99 program or if
5140 -Wreturn-type and this is a function, or if -Wimplicit;
5141 prefer the former warning since it is more explicit. */
5142 if ((warn_implicit_int
|| warn_return_type
|| flag_isoc99
)
5144 warn_about_return_type
= 1;
5148 pedwarn_c99 (loc
, flag_isoc99
? 0 : OPT_Wimplicit_int
,
5149 "type defaults to %<int%> in declaration of %qE",
5152 pedwarn_c99 (input_location
, flag_isoc99
? 0 : OPT_Wimplicit_int
,
5153 "type defaults to %<int%> in type name");
5157 /* Adjust the type if a bit-field is being declared,
5158 -funsigned-bitfields applied and the type is not explicitly
5160 if (bitfield
&& !flag_signed_bitfields
&& !declspecs
->explicit_signed_p
5161 && TREE_CODE (type
) == INTEGER_TYPE
)
5162 type
= unsigned_type_for (type
);
5164 /* Figure out the type qualifiers for the declaration. There are
5165 two ways a declaration can become qualified. One is something
5166 like `const int i' where the `const' is explicit. Another is
5167 something like `typedef const int CI; CI i' where the type of the
5168 declaration contains the `const'. A third possibility is that
5169 there is a type qualifier on the element type of a typedefed
5170 array type, in which case we should extract that qualifier so
5171 that c_apply_type_quals_to_decl receives the full list of
5172 qualifiers to work with (C90 is not entirely clear about whether
5173 duplicate qualifiers should be diagnosed in this case, but it
5174 seems most appropriate to do so). */
5175 element_type
= strip_array_types (type
);
5176 constp
= declspecs
->const_p
+ TYPE_READONLY (element_type
);
5177 restrictp
= declspecs
->restrict_p
+ TYPE_RESTRICT (element_type
);
5178 volatilep
= declspecs
->volatile_p
+ TYPE_VOLATILE (element_type
);
5179 atomicp
= declspecs
->atomic_p
+ TYPE_ATOMIC (element_type
);
5180 sharedp
= declspecs
->shared_p
+ upc_shared_type_p (element_type
);
5181 strictp
= declspecs
->strict_p
+ TYPE_STRICT (element_type
);
5182 relaxedp
= declspecs
->relaxed_p
+ TYPE_RELAXED (element_type
);
5183 upc_elem_block_factor
= TYPE_BLOCK_FACTOR (element_type
);
5184 upc_layout_qualifier
= declspecs
->upc_layout_qualifier
;
5185 as1
= declspecs
->address_space
;
5186 as2
= TYPE_ADDR_SPACE (element_type
);
5187 address_space
= ADDR_SPACE_GENERIC_P (as1
)? as2
: as1
;
5189 if (pedantic
&& !flag_isoc99
)
5192 pedwarn (loc
, OPT_Wpedantic
, "duplicate %<const%>");
5194 pedwarn (loc
, OPT_Wpedantic
, "duplicate %<restrict%>");
5196 pedwarn (loc
, OPT_Wpedantic
, "duplicate %<volatile%>");
5198 pedwarn (loc
, OPT_Wpedantic
, "duplicate %<_Atomic%>");
5200 pedwarn (loc
, OPT_Wpedantic
, "duplicate %<shared%>");
5202 pedwarn (loc
, OPT_Wpedantic
, "duplicate %<strict%>");
5204 pedwarn (loc
, OPT_Wpedantic
, "duplicate %<relaxed%>");
5207 if (strictp
&& relaxedp
)
5208 error_at (loc
, "UPC shared variable %qE is declared "
5209 "both strict and relaxed", name
);
5210 if (strictp
&& !sharedp
)
5211 error_at (loc
, "%qE is declared with UPC strict qualifier "
5212 "but not shared", name
);
5213 if (relaxedp
&& !sharedp
)
5214 error_at (loc
, "%qE is declared with UPC relaxed qualifier "
5215 "but not shared", name
);
5217 if (!ADDR_SPACE_GENERIC_P (as1
) && !ADDR_SPACE_GENERIC_P (as2
) && as1
!= as2
)
5218 error_at (loc
, "conflicting named address spaces (%s vs %s)",
5219 c_addr_space_name (as1
), c_addr_space_name (as2
));
5221 if ((TREE_CODE (type
) == ARRAY_TYPE
5222 || first_non_attr_kind
== cdk_array
)
5223 && TYPE_QUALS (element_type
))
5224 type
= TYPE_MAIN_VARIANT (type
);
5225 type_quals
= ((constp
? TYPE_QUAL_CONST
: 0)
5226 | (restrictp
? TYPE_QUAL_RESTRICT
: 0)
5227 | (volatilep
? TYPE_QUAL_VOLATILE
: 0)
5228 | (atomicp
? TYPE_QUAL_ATOMIC
: 0)
5229 | (sharedp
? TYPE_QUAL_SHARED
: 0)
5230 | (strictp
? TYPE_QUAL_STRICT
: 0)
5231 | (relaxedp
? TYPE_QUAL_RELAXED
: 0)
5232 | ENCODE_QUAL_ADDR_SPACE (address_space
));
5234 /* Applying the _Atomic qualifier to an array type (through the use
5235 of typedefs or typeof) must be detected here. If the qualifier
5236 is introduced later, any appearance of applying it to an array is
5237 actually applying it to an element of that array. */
5238 if (atomicp
&& TREE_CODE (type
) == ARRAY_TYPE
)
5239 error_at (loc
, "%<_Atomic%>-qualified array type");
5241 /* Warn about storage classes that are invalid for certain
5242 kinds of declarations (parameters, typenames, etc.). */
5246 || storage_class
== csc_auto
5247 || storage_class
== csc_register
5248 || storage_class
== csc_typedef
))
5250 if (storage_class
== csc_auto
)
5252 (current_scope
== file_scope
) ? 0 : OPT_Wpedantic
,
5253 "function definition declared %<auto%>");
5254 if (storage_class
== csc_register
)
5255 error_at (loc
, "function definition declared %<register%>");
5256 if (storage_class
== csc_typedef
)
5257 error_at (loc
, "function definition declared %<typedef%>");
5259 error_at (loc
, "function definition declared %qs",
5260 declspecs
->thread_gnu_p
? "__thread" : "_Thread_local");
5262 if (storage_class
== csc_auto
5263 || storage_class
== csc_register
5264 || storage_class
== csc_typedef
)
5265 storage_class
= csc_none
;
5267 else if (decl_context
!= NORMAL
&& (storage_class
!= csc_none
|| threadp
))
5269 if (decl_context
== PARM
&& storage_class
== csc_register
)
5273 switch (decl_context
)
5277 error_at (loc
, "storage class specified for structure "
5280 error_at (loc
, "storage class specified for structure field");
5284 error_at (loc
, "storage class specified for parameter %qE",
5287 error_at (loc
, "storage class specified for unnamed parameter");
5290 error_at (loc
, "storage class specified for typename");
5293 storage_class
= csc_none
;
5297 else if (storage_class
== csc_extern
5301 /* 'extern' with initialization is invalid if not at file scope. */
5302 if (current_scope
== file_scope
)
5304 /* It is fine to have 'extern const' when compiling at C
5305 and C++ intersection. */
5306 if (!(warn_cxx_compat
&& constp
))
5307 warning_at (loc
, 0, "%qE initialized and declared %<extern%>",
5311 error_at (loc
, "%qE has both %<extern%> and initializer", name
);
5313 else if (current_scope
== file_scope
)
5315 if (storage_class
== csc_auto
)
5316 error_at (loc
, "file-scope declaration of %qE specifies %<auto%>",
5318 if (pedantic
&& storage_class
== csc_register
)
5319 pedwarn (input_location
, OPT_Wpedantic
,
5320 "file-scope declaration of %qE specifies %<register%>", name
);
5324 if (storage_class
== csc_extern
&& funcdef_flag
)
5325 error_at (loc
, "nested function %qE declared %<extern%>", name
);
5326 else if (threadp
&& storage_class
== csc_none
)
5328 error_at (loc
, "function-scope %qE implicitly auto and declared "
5330 declspecs
->thread_gnu_p
? "__thread" : "_Thread_local");
5335 /* Now figure out the structure of the declarator proper.
5336 Descend through it, creating more complex types, until we reach
5337 the declared identifier (or NULL_TREE, in an absolute declarator).
5338 At each stage we maintain an unqualified version of the type
5339 together with any qualifiers that should be applied to it with
5340 c_build_qualified_type; this way, array types including
5341 multidimensional array types are first built up in unqualified
5342 form and then the qualified form is created with
5343 TYPE_MAIN_VARIANT pointing to the unqualified form. */
5345 while (declarator
&& declarator
->kind
!= cdk_id
)
5347 if (type
== error_mark_node
)
5349 declarator
= declarator
->declarator
;
5353 /* Each level of DECLARATOR is either a cdk_array (for ...[..]),
5354 a cdk_pointer (for *...),
5355 a cdk_function (for ...(...)),
5356 a cdk_attrs (for nested attributes),
5357 or a cdk_id (for the name being declared
5358 or the place in an absolute declarator
5359 where the name was omitted).
5360 For the last case, we have just exited the loop.
5362 At this point, TYPE is the type of elements of an array,
5363 or for a function to return, or for a pointer to point to.
5364 After this sequence of ifs, TYPE is the type of the
5365 array or function or pointer, and DECLARATOR has had its
5366 outermost layer removed. */
5368 if (array_ptr_quals
!= TYPE_UNQUALIFIED
5369 || array_ptr_attrs
!= NULL_TREE
5370 || array_parm_static
)
5372 /* Only the innermost declarator (making a parameter be of
5373 array type which is converted to pointer type)
5374 may have static or type qualifiers. */
5375 error_at (loc
, "static or type qualifiers in non-parameter array declarator");
5376 array_ptr_quals
= TYPE_UNQUALIFIED
;
5377 array_ptr_attrs
= NULL_TREE
;
5378 array_parm_static
= 0;
5381 switch (declarator
->kind
)
5385 /* A declarator with embedded attributes. */
5386 tree attrs
= declarator
->u
.attrs
;
5387 const struct c_declarator
*inner_decl
;
5389 declarator
= declarator
->declarator
;
5390 inner_decl
= declarator
;
5391 while (inner_decl
->kind
== cdk_attrs
)
5392 inner_decl
= inner_decl
->declarator
;
5393 if (inner_decl
->kind
== cdk_id
)
5394 attr_flags
|= (int) ATTR_FLAG_DECL_NEXT
;
5395 else if (inner_decl
->kind
== cdk_function
)
5396 attr_flags
|= (int) ATTR_FLAG_FUNCTION_NEXT
;
5397 else if (inner_decl
->kind
== cdk_array
)
5398 attr_flags
|= (int) ATTR_FLAG_ARRAY_NEXT
;
5399 returned_attrs
= decl_attributes (&type
,
5400 chainon (returned_attrs
, attrs
),
5406 tree itype
= NULL_TREE
;
5407 tree size
= declarator
->u
.array
.dimen
;
5408 /* The index is a signed object `sizetype' bits wide. */
5409 tree index_type
= c_common_signed_type (sizetype
);
5411 array_ptr_quals
= declarator
->u
.array
.quals
;
5412 array_ptr_attrs
= declarator
->u
.array
.attrs
;
5413 array_parm_static
= declarator
->u
.array
.static_p
;
5414 array_parm_vla_unspec_p
= declarator
->u
.array
.vla_unspec_p
;
5416 declarator
= declarator
->declarator
;
5418 /* Check for some types that there cannot be arrays of. */
5420 if (VOID_TYPE_P (type
))
5423 error_at (loc
, "declaration of %qE as array of voids", name
);
5425 error_at (loc
, "declaration of type name as array of voids");
5426 type
= error_mark_node
;
5429 if (TREE_CODE (type
) == FUNCTION_TYPE
)
5432 error_at (loc
, "declaration of %qE as array of functions",
5435 error_at (loc
, "declaration of type name as array of "
5437 type
= error_mark_node
;
5440 if (pedantic
&& !in_system_header_at (input_location
)
5441 && flexible_array_type_p (type
))
5442 pedwarn (loc
, OPT_Wpedantic
,
5443 "invalid use of structure with flexible array member");
5445 if (size
== error_mark_node
)
5446 type
= error_mark_node
;
5448 if (type
== error_mark_node
)
5451 /* If size was specified, set ITYPE to a range-type for
5452 that size. Otherwise, ITYPE remains null. finish_decl
5453 may figure it out from an initial value. */
5457 bool size_maybe_const
= true;
5458 bool size_int_const
= (TREE_CODE (size
) == INTEGER_CST
5459 && !TREE_OVERFLOW (size
));
5460 bool this_size_varies
= false;
5462 /* Strip NON_LVALUE_EXPRs since we aren't using as an
5464 STRIP_TYPE_NOPS (size
);
5466 if (!INTEGRAL_TYPE_P (TREE_TYPE (size
)))
5469 error_at (loc
, "size of array %qE has non-integer type",
5473 "size of unnamed array has non-integer type");
5474 size
= integer_one_node
;
5477 size
= c_fully_fold (size
, false, &size_maybe_const
);
5479 if (pedantic
&& size_maybe_const
&& integer_zerop (size
))
5482 pedwarn (loc
, OPT_Wpedantic
,
5483 "ISO C forbids zero-size array %qE", name
);
5485 pedwarn (loc
, OPT_Wpedantic
,
5486 "ISO C forbids zero-size array");
5489 if (TREE_CODE (size
) == INTEGER_CST
&& size_maybe_const
)
5491 constant_expression_warning (size
);
5492 if (tree_int_cst_sgn (size
) < 0)
5495 error_at (loc
, "size of array %qE is negative", name
);
5497 error_at (loc
, "size of unnamed array is negative");
5498 size
= integer_one_node
;
5500 /* Handle a size folded to an integer constant but
5501 not an integer constant expression. */
5502 if (!size_int_const
)
5504 /* If this is a file scope declaration of an
5505 ordinary identifier, this is invalid code;
5506 diagnosing it here and not subsequently
5507 treating the type as variable-length avoids
5508 more confusing diagnostics later. */
5509 if ((decl_context
== NORMAL
|| decl_context
== FIELD
)
5510 && current_scope
== file_scope
)
5511 pedwarn (input_location
, 0,
5512 "variably modified %qE at file scope",
5515 this_size_varies
= size_varies
= true;
5516 warn_variable_length_array (name
, size
);
5519 else if (sharedp
&& count_upc_threads_refs (size
))
5521 /* We have a shared array with a non-constant
5522 dimension. If the expression is a factor of
5523 THREADS, then we'll need to set the flag
5524 in the result type. Otherwise, it is an error. */
5525 int n_thread_refs
= count_upc_threads_refs (size
);
5526 if (upc_threads_ref
|| n_thread_refs
> 1)
5528 error_at (loc
, "UPC shared array declaration references THREADS "
5529 "more than once; the size of %qE "
5530 "cannot be calculated", name
);
5531 size
= integer_one_node
;
5533 else if (!is_multiple_of_upc_threads (size
))
5535 error_at (loc
, "UPC shared array dimension is not a simple multiple "
5536 "of THREADS; the size of %qE "
5537 "cannot be calculated.", name
);
5538 size
= integer_one_node
;
5542 upc_threads_ref
= 1;
5543 set_upc_threads_refs_to_one (&size
);
5545 if (TREE_CODE (size
) != INTEGER_CST
)
5547 error_at (loc
, "UPC forbids variable-size shared array %qE",
5549 size
= integer_one_node
;
5553 else if ((decl_context
== NORMAL
|| decl_context
== FIELD
)
5554 && current_scope
== file_scope
)
5556 error_at (loc
, "variably modified %qE at file scope", name
);
5557 size
= integer_one_node
;
5561 /* Make sure the array size remains visibly
5562 nonconstant even if it is (eg) a const variable
5563 with known value. */
5564 this_size_varies
= size_varies
= true;
5565 warn_variable_length_array (name
, size
);
5566 if (flag_sanitize
& SANITIZE_VLA
5567 && decl_context
== NORMAL
)
5569 /* Evaluate the array size only once. */
5570 size
= c_save_expr (size
);
5571 size
= c_fully_fold (size
, false, NULL
);
5572 size
= fold_build2 (COMPOUND_EXPR
, TREE_TYPE (size
),
5573 ubsan_instrument_vla (loc
, size
),
5578 if (integer_zerop (size
) && !this_size_varies
)
5580 /* A zero-length array cannot be represented with
5581 an unsigned index type, which is what we'll
5582 get with build_index_type. Create an
5583 open-ended range instead. */
5584 itype
= build_range_type (sizetype
, size
, NULL_TREE
);
5588 /* Arrange for the SAVE_EXPR on the inside of the
5589 MINUS_EXPR, which allows the -1 to get folded
5590 with the +1 that happens when building TYPE_SIZE. */
5592 size
= save_expr (size
);
5593 if (this_size_varies
&& TREE_CODE (size
) == INTEGER_CST
)
5594 size
= build2 (COMPOUND_EXPR
, TREE_TYPE (size
),
5595 integer_zero_node
, size
);
5597 /* Compute the maximum valid index, that is, size
5598 - 1. Do the calculation in index_type, so that
5599 if it is a variable the computations will be
5600 done in the proper mode. */
5601 itype
= fold_build2_loc (loc
, MINUS_EXPR
, index_type
,
5602 convert (index_type
, size
),
5603 convert (index_type
,
5606 /* The above overflows when size does not fit
5608 ??? While a size of INT_MAX+1 technically shouldn't
5609 cause an overflow (because we subtract 1), handling
5610 this case seems like an unnecessary complication. */
5611 if (TREE_CODE (size
) == INTEGER_CST
5612 && !int_fits_type_p (size
, index_type
))
5615 error_at (loc
, "size of array %qE is too large",
5618 error_at (loc
, "size of unnamed array is too large");
5619 type
= error_mark_node
;
5623 itype
= build_index_type (itype
);
5625 if (this_size_varies
)
5628 *expr
= build2 (COMPOUND_EXPR
, TREE_TYPE (size
),
5632 *expr_const_operands
&= size_maybe_const
;
5635 else if (decl_context
== FIELD
)
5637 bool flexible_array_member
= false;
5638 if (array_parm_vla_unspec_p
)
5639 /* Field names can in fact have function prototype
5640 scope so [*] is disallowed here through making
5641 the field variably modified, not through being
5642 something other than a declaration with function
5647 const struct c_declarator
*t
= declarator
;
5648 while (t
->kind
== cdk_attrs
)
5650 flexible_array_member
= (t
->kind
== cdk_id
);
5652 if (flexible_array_member
5653 && pedantic
&& !flag_isoc99
5654 && !in_system_header_at (input_location
))
5655 pedwarn (loc
, OPT_Wpedantic
,
5656 "ISO C90 does not support flexible array members");
5658 /* ISO C99 Flexible array members are effectively
5659 identical to GCC's zero-length array extension. */
5660 if (flexible_array_member
|| array_parm_vla_unspec_p
)
5661 itype
= build_range_type (sizetype
, size_zero_node
,
5664 else if (decl_context
== PARM
)
5666 if (array_parm_vla_unspec_p
)
5668 itype
= build_range_type (sizetype
, size_zero_node
, NULL_TREE
);
5672 else if (decl_context
== TYPENAME
)
5674 if (array_parm_vla_unspec_p
)
5677 warning (0, "%<[*]%> not in a declaration");
5678 /* We use this to avoid messing up with incomplete
5679 array types of the same type, that would
5680 otherwise be modified below. */
5681 itype
= build_range_type (sizetype
, size_zero_node
,
5687 /* Complain about arrays of incomplete types. */
5688 if (!COMPLETE_TYPE_P (type
))
5690 error_at (loc
, "array type has incomplete element type");
5691 type
= error_mark_node
;
5694 /* When itype is NULL, a shared incomplete array type is
5695 returned for all array of a given type. Elsewhere we
5696 make sure we don't complete that type before copying
5697 it, but here we want to make sure we don't ever
5698 modify the shared type, so we gcc_assert (itype)
5701 addr_space_t as
= DECODE_QUAL_ADDR_SPACE (type_quals
);
5702 if (!ADDR_SPACE_GENERIC_P (as
) && as
!= TYPE_ADDR_SPACE (type
))
5703 type
= build_qualified_type (type
,
5704 ENCODE_QUAL_ADDR_SPACE (as
));
5706 type
= build_array_type (type
, itype
);
5709 if (type
!= error_mark_node
)
5713 /* It is ok to modify type here even if itype is
5714 NULL: if size_varies, we're in a
5715 multi-dimensional array and the inner type has
5716 variable size, so the enclosing shared array type
5718 if (size
&& TREE_CODE (size
) == INTEGER_CST
)
5720 = build_distinct_type_copy (TYPE_MAIN_VARIANT (type
));
5721 C_TYPE_VARIABLE_SIZE (type
) = 1;
5724 if (upc_threads_ref
)
5726 /* We need a unique type copy here for UPC shared
5727 array types compiled in a dynamic threads enviroment
5728 that reference THREADS as a multiplier; to avoid
5729 setting the "has threads factor" bit in
5730 a re-used non- UPC shared array type node. */
5731 if (size
&& TREE_CODE (size
) == INTEGER_CST
)
5732 type
= build_distinct_type_copy (TYPE_MAIN_VARIANT (type
));
5733 TYPE_HAS_THREADS_FACTOR (type
) = 1;
5736 /* The GCC extension for zero-length arrays differs from
5737 ISO flexible array members in that sizeof yields
5739 if (size
&& integer_zerop (size
))
5742 type
= build_distinct_type_copy (TYPE_MAIN_VARIANT (type
));
5743 TYPE_SIZE (type
) = bitsize_zero_node
;
5744 TYPE_SIZE_UNIT (type
) = size_zero_node
;
5745 SET_TYPE_STRUCTURAL_EQUALITY (type
);
5747 if (array_parm_vla_unspec_p
)
5750 /* The type is complete. C99 6.7.5.2p4 */
5751 type
= build_distinct_type_copy (TYPE_MAIN_VARIANT (type
));
5752 TYPE_SIZE (type
) = bitsize_zero_node
;
5753 TYPE_SIZE_UNIT (type
) = size_zero_node
;
5754 SET_TYPE_STRUCTURAL_EQUALITY (type
);
5758 if (decl_context
!= PARM
5759 && (array_ptr_quals
!= TYPE_UNQUALIFIED
5760 || array_ptr_attrs
!= NULL_TREE
5761 || array_parm_static
))
5763 error_at (loc
, "static or type qualifiers in non-parameter array declarator");
5764 array_ptr_quals
= TYPE_UNQUALIFIED
;
5765 array_ptr_attrs
= NULL_TREE
;
5766 array_parm_static
= 0;
5772 /* Say it's a definition only for the declarator closest
5773 to the identifier, apart possibly from some
5775 bool really_funcdef
= false;
5779 const struct c_declarator
*t
= declarator
->declarator
;
5780 while (t
->kind
== cdk_attrs
)
5782 really_funcdef
= (t
->kind
== cdk_id
);
5785 /* Declaring a function type. Make sure we have a valid
5786 type for the function to return. */
5787 if (type
== error_mark_node
)
5790 size_varies
= false;
5791 upc_threads_ref
= 0;
5792 upc_layout_qualifier
= 0;
5794 /* Warn about some types functions can't return. */
5795 if (TREE_CODE (type
) == FUNCTION_TYPE
)
5798 error_at (loc
, "%qE declared as function returning a "
5801 error_at (loc
, "type name declared as function "
5802 "returning a function");
5803 type
= integer_type_node
;
5805 if (TREE_CODE (type
) == ARRAY_TYPE
)
5808 error_at (loc
, "%qE declared as function returning an array",
5811 error_at (loc
, "type name declared as function returning "
5813 type
= integer_type_node
;
5815 errmsg
= targetm
.invalid_return_type (type
);
5819 type
= integer_type_node
;
5822 /* Construct the function type and go to the next
5823 inner layer of declarator. */
5824 arg_info
= declarator
->u
.arg_info
;
5825 arg_types
= grokparms (arg_info
, really_funcdef
);
5827 /* Type qualifiers before the return type of the function
5828 qualify the return type, not the function type. */
5831 /* Type qualifiers on a function return type are
5832 normally permitted by the standard but have no
5833 effect, so give a warning at -Wreturn-type.
5834 Qualifiers on a void return type are banned on
5835 function definitions in ISO C; GCC used to used
5836 them for noreturn functions. */
5837 if (VOID_TYPE_P (type
) && really_funcdef
)
5839 "function definition has qualified void return type");
5840 else if (type_quals
& TYPE_QUAL_SHARED
)
5842 error_at (loc
, "function definition has UPC shared qualified return type");
5843 type_quals
&= ~(TYPE_QUAL_SHARED
| TYPE_QUAL_STRICT
5844 | TYPE_QUAL_RELAXED
);
5847 warning_at (loc
, OPT_Wignored_qualifiers
,
5848 "type qualifiers ignored on function return type");
5850 type
= c_build_qualified_type (type
, type_quals
);
5852 type_quals
= TYPE_UNQUALIFIED
;
5854 type
= build_function_type (type
, arg_types
);
5855 declarator
= declarator
->declarator
;
5857 /* Set the TYPE_CONTEXTs for each tagged type which is local to
5858 the formal parameter list of this FUNCTION_TYPE to point to
5859 the FUNCTION_TYPE node itself. */
5864 FOR_EACH_VEC_SAFE_ELT_REVERSE (arg_info
->tags
, ix
, tag
)
5865 TYPE_CONTEXT (tag
->type
) = type
;
5871 /* Merge any constancy or volatility into the target type
5873 if ((type_quals
& TYPE_QUAL_ATOMIC
)
5874 && TREE_CODE (type
) == FUNCTION_TYPE
)
5877 "%<_Atomic%>-qualified function type");
5878 type_quals
&= ~TYPE_QUAL_ATOMIC
;
5880 else if (pedantic
&& TREE_CODE (type
) == FUNCTION_TYPE
5882 pedwarn (loc
, OPT_Wpedantic
,
5883 "ISO C forbids qualified function types");
5885 if (upc_layout_qualifier
)
5886 upc_block_factor
= upc_grok_layout_qualifier (
5887 loc
, POINTER_TYPE
, type
,
5888 NULL_TREE
, upc_layout_qualifier
);
5891 type
= c_build_qualified_type_1 (type
, type_quals
,
5894 size_varies
= false;
5895 upc_threads_ref
= 0;
5896 upc_block_factor
= 0;
5898 /* When the pointed-to type involves components of variable size,
5899 care must be taken to ensure that the size evaluation code is
5900 emitted early enough to dominate all the possible later uses
5901 and late enough for the variables on which it depends to have
5904 This is expected to happen automatically when the pointed-to
5905 type has a name/declaration of it's own, but special attention
5906 is required if the type is anonymous.
5908 We handle the NORMAL and FIELD contexts here by attaching an
5909 artificial TYPE_DECL to such pointed-to type. This forces the
5910 sizes evaluation at a safe point and ensures it is not deferred
5911 until e.g. within a deeper conditional context.
5913 We expect nothing to be needed here for PARM or TYPENAME.
5914 Pushing a TYPE_DECL at this point for TYPENAME would actually
5915 be incorrect, as we might be in the middle of an expression
5916 with side effects on the pointed-to type size "arguments" prior
5917 to the pointer declaration point and the fake TYPE_DECL in the
5918 enclosing context would force the size evaluation prior to the
5921 if (!TYPE_NAME (type
)
5922 && (decl_context
== NORMAL
|| decl_context
== FIELD
)
5923 && variably_modified_type_p (type
, NULL_TREE
))
5925 tree decl
= build_decl (loc
, TYPE_DECL
, NULL_TREE
, type
);
5926 DECL_ARTIFICIAL (decl
) = 1;
5928 finish_decl (decl
, loc
, NULL_TREE
, NULL_TREE
, NULL_TREE
);
5929 TYPE_NAME (type
) = decl
;
5932 type
= c_build_pointer_type (type
);
5934 /* Process type qualifiers (such as const or volatile)
5935 that were given inside the `*'. */
5936 type_quals
= declarator
->u
.pointer
.quals
;
5937 upc_layout_qualifier
= declarator
->u
.pointer
.upc_layout_qual
;
5938 sharedp
= ((type_quals
& TYPE_QUAL_SHARED
) != 0);
5940 declarator
= declarator
->declarator
;
5947 *decl_attrs
= chainon (returned_attrs
, *decl_attrs
);
5949 /* Now TYPE has the actual type, apart from any qualifiers in
5952 /* Warn about address space used for things other than static memory or
5954 address_space
= DECODE_QUAL_ADDR_SPACE (type_quals
);
5955 if (!ADDR_SPACE_GENERIC_P (address_space
))
5957 if (decl_context
== NORMAL
)
5959 switch (storage_class
)
5962 error ("%qs combined with %<auto%> qualifier for %qE",
5963 c_addr_space_name (address_space
), name
);
5966 error ("%qs combined with %<register%> qualifier for %qE",
5967 c_addr_space_name (address_space
), name
);
5970 if (current_function_scope
)
5972 error ("%qs specified for auto variable %qE",
5973 c_addr_space_name (address_space
), name
);
5985 else if (decl_context
== PARM
&& TREE_CODE (type
) != ARRAY_TYPE
)
5988 error ("%qs specified for parameter %qE",
5989 c_addr_space_name (address_space
), name
);
5991 error ("%qs specified for unnamed parameter",
5992 c_addr_space_name (address_space
));
5994 else if (decl_context
== FIELD
)
5997 error ("%qs specified for structure field %qE",
5998 c_addr_space_name (address_space
), name
);
6000 error ("%qs specified for structure field",
6001 c_addr_space_name (address_space
));
6005 /* Check the type and width of a bit-field. */
6008 check_bitfield_type_and_width (&type
, width
, name
);
6009 /* C11 makes it implementation-defined (6.7.2.1#5) whether
6010 atomic types are permitted for bit-fields; we have no code to
6011 make bit-field accesses atomic, so disallow them. */
6012 if (type_quals
& TYPE_QUAL_ATOMIC
)
6015 error ("bit-field %qE has atomic type", name
);
6017 error ("bit-field has atomic type");
6018 type_quals
&= ~TYPE_QUAL_ATOMIC
;
6022 /* Check for UPC's layout qualifier. */
6023 if (upc_layout_qualifier
|| upc_elem_block_factor
)
6025 upc_block_factor
= upc_grok_layout_qualifier (loc
, TREE_CODE (type
), type
,
6026 upc_elem_block_factor
, upc_layout_qualifier
);
6027 upc_layout_qualifier
= 0;
6030 /* Reject invalid uses of _Alignas. */
6031 if (declspecs
->alignas_p
)
6033 if (storage_class
== csc_typedef
)
6034 error_at (loc
, "alignment specified for typedef %qE", name
);
6035 else if (storage_class
== csc_register
)
6036 error_at (loc
, "alignment specified for %<register%> object %qE",
6038 else if (decl_context
== PARM
)
6041 error_at (loc
, "alignment specified for parameter %qE", name
);
6043 error_at (loc
, "alignment specified for unnamed parameter");
6048 error_at (loc
, "alignment specified for bit-field %qE", name
);
6050 error_at (loc
, "alignment specified for unnamed bit-field");
6052 else if (TREE_CODE (type
) == FUNCTION_TYPE
)
6053 error_at (loc
, "alignment specified for function %qE", name
);
6054 else if (declspecs
->align_log
!= -1)
6056 alignas_align
= 1U << declspecs
->align_log
;
6057 if (alignas_align
< TYPE_ALIGN_UNIT (type
))
6060 error_at (loc
, "%<_Alignas%> specifiers cannot reduce "
6061 "alignment of %qE", name
);
6063 error_at (loc
, "%<_Alignas%> specifiers cannot reduce "
6064 "alignment of unnamed field");
6070 /* Did array size calculations overflow or does the array cover more
6071 than half of the address-space? */
6072 if (TREE_CODE (type
) == ARRAY_TYPE
6073 && COMPLETE_TYPE_P (type
)
6074 && TREE_CODE (TYPE_SIZE_UNIT (type
)) == INTEGER_CST
6075 && ! valid_constant_size_p (TYPE_SIZE_UNIT (type
)))
6078 error_at (loc
, "size of array %qE is too large", name
);
6080 error_at (loc
, "size of unnamed array is too large");
6081 /* If we proceed with the array type as it is, we'll eventually
6082 crash in tree_to_[su]hwi(). */
6083 type
= error_mark_node
;
6086 /* If this is declaring a typedef name, return a TYPE_DECL. */
6088 if (storage_class
== csc_typedef
)
6091 if ((type_quals
& TYPE_QUAL_ATOMIC
)
6092 && TREE_CODE (type
) == FUNCTION_TYPE
)
6095 "%<_Atomic%>-qualified function type");
6096 type_quals
&= ~TYPE_QUAL_ATOMIC
;
6098 else if (pedantic
&& TREE_CODE (type
) == FUNCTION_TYPE
6100 pedwarn (loc
, OPT_Wpedantic
,
6101 "ISO C forbids qualified function types");
6103 type
= c_build_qualified_type_1 (type
, type_quals
, upc_block_factor
);
6105 decl
= build_decl (declarator
->id_loc
,
6106 TYPE_DECL
, declarator
->u
.id
, type
);
6107 if (declspecs
->explicit_signed_p
)
6108 C_TYPEDEF_EXPLICITLY_SIGNED (decl
) = 1;
6109 if (declspecs
->inline_p
)
6110 pedwarn (loc
, 0,"typedef %q+D declared %<inline%>", decl
);
6111 if (declspecs
->noreturn_p
)
6112 pedwarn (loc
, 0,"typedef %q+D declared %<_Noreturn%>", decl
);
6114 if (warn_cxx_compat
&& declarator
->u
.id
!= NULL_TREE
)
6116 struct c_binding
*b
= I_TAG_BINDING (declarator
->u
.id
);
6119 && b
->decl
!= NULL_TREE
6120 && (B_IN_CURRENT_SCOPE (b
)
6121 || (current_scope
== file_scope
&& B_IN_EXTERNAL_SCOPE (b
)))
6122 && TYPE_MAIN_VARIANT (b
->decl
) != TYPE_MAIN_VARIANT (type
))
6124 warning_at (declarator
->id_loc
, OPT_Wc___compat
,
6125 ("using %qD as both a typedef and a tag is "
6128 if (b
->locus
!= UNKNOWN_LOCATION
)
6129 inform (b
->locus
, "originally defined here");
6136 /* If this is a type name (such as, in a cast or sizeof),
6137 compute the type and return it now. */
6139 if (decl_context
== TYPENAME
)
6141 /* Note that the grammar rejects storage classes in typenames
6143 gcc_assert (storage_class
== csc_none
&& !threadp
6144 && !declspecs
->inline_p
&& !declspecs
->noreturn_p
);
6145 if ((type_quals
& TYPE_QUAL_ATOMIC
)
6146 && TREE_CODE (type
) == FUNCTION_TYPE
)
6149 "%<_Atomic%>-qualified function type");
6150 type_quals
&= ~TYPE_QUAL_ATOMIC
;
6152 else if (pedantic
&& TREE_CODE (type
) == FUNCTION_TYPE
6154 pedwarn (loc
, OPT_Wpedantic
,
6155 "ISO C forbids const or volatile function types");
6157 type
= c_build_qualified_type_1 (type
, type_quals
, upc_block_factor
);
6161 if (pedantic
&& decl_context
== FIELD
6162 && variably_modified_type_p (type
, NULL_TREE
))
6165 pedwarn (loc
, OPT_Wpedantic
, "a member of a structure or union cannot "
6166 "have a variably modified type");
6169 /* Aside from typedefs and type names (handle above),
6170 `void' at top level (not within pointer)
6171 is allowed only in public variables.
6172 We don't complain about parms either, but that is because
6173 a better error message can be made later. */
6175 if (VOID_TYPE_P (type
) && decl_context
!= PARM
6176 && !((decl_context
!= FIELD
&& TREE_CODE (type
) != FUNCTION_TYPE
)
6177 && (storage_class
== csc_extern
6178 || (current_scope
== file_scope
6179 && !(storage_class
== csc_static
6180 || storage_class
== csc_register
)))))
6182 error_at (loc
, "variable or field %qE declared void", name
);
6183 type
= integer_type_node
;
6186 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
6187 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
6192 if (decl_context
== PARM
)
6196 /* A parameter declared as an array of T is really a pointer to T.
6197 One declared as a function is really a pointer to a function. */
6199 if (TREE_CODE (type
) == ARRAY_TYPE
)
6201 /* Transfer const-ness of array into that of type pointed to. */
6202 type
= TREE_TYPE (type
);
6204 type
= c_build_qualified_type_1 (type
, type_quals
,
6206 type
= c_build_pointer_type (type
);
6207 type_quals
= array_ptr_quals
;
6209 type
= c_build_qualified_type (type
, type_quals
);
6211 /* We don't yet implement attributes in this context. */
6212 if (array_ptr_attrs
!= NULL_TREE
)
6213 warning_at (loc
, OPT_Wattributes
,
6214 "attributes in parameter array declarator ignored");
6216 size_varies
= false;
6217 upc_threads_ref
= 0;
6218 upc_block_factor
= 0;
6220 else if (TREE_CODE (type
) == FUNCTION_TYPE
)
6222 if (type_quals
& TYPE_QUAL_ATOMIC
)
6225 "%<_Atomic%>-qualified function type");
6226 type_quals
&= ~TYPE_QUAL_ATOMIC
;
6228 else if (type_quals
)
6229 pedwarn (loc
, OPT_Wpedantic
,
6230 "ISO C forbids qualified function types");
6232 type
= c_build_qualified_type (type
, type_quals
);
6233 type
= c_build_pointer_type (type
);
6234 type_quals
= TYPE_UNQUALIFIED
;
6236 else if (type_quals
& TYPE_QUAL_SHARED
)
6238 error ("parameter declared with UPC shared qualifier");
6239 type_quals
&= ~(TYPE_QUAL_SHARED
| TYPE_QUAL_STRICT
6240 | TYPE_QUAL_RELAXED
);
6242 else if (type_quals
)
6243 type
= c_build_qualified_type (type
, type_quals
);
6245 decl
= build_decl (declarator
->id_loc
,
6246 PARM_DECL
, declarator
->u
.id
, type
);
6248 C_DECL_VARIABLE_SIZE (decl
) = 1;
6250 /* Compute the type actually passed in the parmlist,
6251 for the case where there is no prototype.
6252 (For example, shorts and chars are passed as ints.)
6253 When there is a prototype, this is overridden later. */
6255 if (type
== error_mark_node
)
6256 promoted_type
= type
;
6258 promoted_type
= c_type_promotes_to (type
);
6260 DECL_ARG_TYPE (decl
) = promoted_type
;
6261 if (declspecs
->inline_p
)
6262 pedwarn (loc
, 0, "parameter %q+D declared %<inline%>", decl
);
6263 if (declspecs
->noreturn_p
)
6264 pedwarn (loc
, 0, "parameter %q+D declared %<_Noreturn%>", decl
);
6266 else if (decl_context
== FIELD
)
6268 /* Note that the grammar rejects storage classes in typenames
6270 gcc_assert (storage_class
== csc_none
&& !threadp
6271 && !declspecs
->inline_p
&& !declspecs
->noreturn_p
);
6273 /* Structure field. It may not be a function. */
6275 if (TREE_CODE (type
) == FUNCTION_TYPE
)
6277 error_at (loc
, "field %qE declared as a function", name
);
6278 type
= build_pointer_type (type
);
6280 else if (TREE_CODE (type
) != ERROR_MARK
6281 && !COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (type
))
6284 error_at (loc
, "field %qE has incomplete type", name
);
6286 error_at (loc
, "unnamed field has incomplete type");
6287 type
= error_mark_node
;
6289 else if (type_quals
& TYPE_QUAL_SHARED
)
6291 error_at (loc
, "field %qE declared with UPC shared qualifier",
6293 type_quals
&= ~(TYPE_QUAL_SHARED
| TYPE_QUAL_STRICT
6294 | TYPE_QUAL_RELAXED
);
6296 type
= c_build_qualified_type (type
, type_quals
);
6297 decl
= build_decl (declarator
->id_loc
,
6298 FIELD_DECL
, declarator
->u
.id
, type
);
6299 DECL_NONADDRESSABLE_P (decl
) = bitfield
;
6300 if (bitfield
&& !declarator
->u
.id
)
6301 TREE_NO_WARNING (decl
) = 1;
6304 C_DECL_VARIABLE_SIZE (decl
) = 1;
6306 else if (TREE_CODE (type
) == FUNCTION_TYPE
)
6308 if (storage_class
== csc_register
|| threadp
)
6310 error_at (loc
, "invalid storage class for function %qE", name
);
6312 else if (current_scope
!= file_scope
)
6314 /* Function declaration not at file scope. Storage
6315 classes other than `extern' are not allowed, C99
6316 6.7.1p5, and `extern' makes no difference. However,
6317 GCC allows 'auto', perhaps with 'inline', to support
6318 nested functions. */
6319 if (storage_class
== csc_auto
)
6320 pedwarn (loc
, OPT_Wpedantic
,
6321 "invalid storage class for function %qE", name
);
6322 else if (storage_class
== csc_static
)
6324 error_at (loc
, "invalid storage class for function %qE", name
);
6326 storage_class
= declspecs
->storage_class
= csc_none
;
6332 decl
= build_decl (declarator
->id_loc
,
6333 FUNCTION_DECL
, declarator
->u
.id
, type
);
6334 decl
= build_decl_attribute_variant (decl
, decl_attr
);
6336 if (type_quals
& TYPE_QUAL_ATOMIC
)
6339 "%<_Atomic%>-qualified function type");
6340 type_quals
&= ~TYPE_QUAL_ATOMIC
;
6342 else if (pedantic
&& type_quals
&& !DECL_IN_SYSTEM_HEADER (decl
))
6343 pedwarn (loc
, OPT_Wpedantic
,
6344 "ISO C forbids qualified function types");
6346 /* Every function declaration is an external reference
6347 (DECL_EXTERNAL) except for those which are not at file
6348 scope and are explicitly declared "auto". This is
6349 forbidden by standard C (C99 6.7.1p5) and is interpreted by
6350 GCC to signify a forward declaration of a nested function. */
6351 if (storage_class
== csc_auto
&& current_scope
!= file_scope
)
6352 DECL_EXTERNAL (decl
) = 0;
6353 /* In C99, a function which is declared 'inline' with 'extern'
6354 is not an external reference (which is confusing). It
6355 means that the later definition of the function must be output
6356 in this file, C99 6.7.4p6. In GNU C89, a function declared
6357 'extern inline' is an external reference. */
6358 else if (declspecs
->inline_p
&& storage_class
!= csc_static
)
6359 DECL_EXTERNAL (decl
) = ((storage_class
== csc_extern
)
6360 == flag_gnu89_inline
);
6362 DECL_EXTERNAL (decl
) = !initialized
;
6364 /* Record absence of global scope for `static' or `auto'. */
6366 = !(storage_class
== csc_static
|| storage_class
== csc_auto
);
6368 /* For a function definition, record the argument information
6369 block where store_parm_decls will look for it. */
6371 current_function_arg_info
= arg_info
;
6373 if (declspecs
->default_int_p
)
6374 C_FUNCTION_IMPLICIT_INT (decl
) = 1;
6376 /* Record presence of `inline' and `_Noreturn', if it is
6378 if (flag_hosted
&& MAIN_NAME_P (declarator
->u
.id
))
6380 if (declspecs
->inline_p
)
6381 pedwarn (loc
, 0, "cannot inline function %<main%>");
6382 if (declspecs
->noreturn_p
)
6383 pedwarn (loc
, 0, "%<main%> declared %<_Noreturn%>");
6387 if (declspecs
->inline_p
)
6388 /* Record that the function is declared `inline'. */
6389 DECL_DECLARED_INLINE_P (decl
) = 1;
6390 if (declspecs
->noreturn_p
)
6395 pedwarn (loc
, OPT_Wpedantic
,
6396 "ISO C99 does not support %<_Noreturn%>");
6398 pedwarn (loc
, OPT_Wpedantic
,
6399 "ISO C90 does not support %<_Noreturn%>");
6401 TREE_THIS_VOLATILE (decl
) = 1;
6407 /* It's a variable. */
6408 /* An uninitialized decl with `extern' is a reference. */
6409 int extern_ref
= !initialized
&& storage_class
== csc_extern
;
6411 if ((type_quals
& TYPE_QUAL_SHARED
)
6413 && !((current_scope
== file_scope
)
6414 || (storage_class
== csc_static
)))
6416 error_at (loc
, "UPC does not support shared auto variables");
6417 type
= error_mark_node
;
6420 type
= c_build_qualified_type_1 (type
, type_quals
, upc_block_factor
);
6422 /* C99 6.2.2p7: It is invalid (compile-time undefined
6423 behavior) to create an 'extern' declaration for a
6424 variable if there is a global declaration that is
6425 'static' and the global declaration is not visible.
6426 (If the static declaration _is_ currently visible,
6427 the 'extern' declaration is taken to refer to that decl.) */
6428 if (extern_ref
&& current_scope
!= file_scope
)
6430 tree global_decl
= identifier_global_value (declarator
->u
.id
);
6431 tree visible_decl
= lookup_name (declarator
->u
.id
);
6434 && global_decl
!= visible_decl
6435 && TREE_CODE (global_decl
) == VAR_DECL
6436 && !TREE_PUBLIC (global_decl
))
6437 error_at (loc
, "variable previously declared %<static%> "
6438 "redeclared %<extern%>");
6441 decl
= build_decl (declarator
->id_loc
,
6442 VAR_DECL
, declarator
->u
.id
, type
);
6444 C_DECL_VARIABLE_SIZE (decl
) = 1;
6446 if (declspecs
->inline_p
)
6447 pedwarn (loc
, 0, "variable %q+D declared %<inline%>", decl
);
6448 if (declspecs
->noreturn_p
)
6449 pedwarn (loc
, 0, "variable %q+D declared %<_Noreturn%>", decl
);
6451 /* At file scope, an initialized extern declaration may follow
6452 a static declaration. In that case, DECL_EXTERNAL will be
6453 reset later in start_decl. */
6454 DECL_EXTERNAL (decl
) = (storage_class
== csc_extern
);
6456 /* At file scope, the presence of a `static' or `register' storage
6457 class specifier, or the absence of all storage class specifiers
6458 makes this declaration a definition (perhaps tentative). Also,
6459 the absence of `static' makes it public. */
6460 if (current_scope
== file_scope
)
6462 TREE_PUBLIC (decl
) = storage_class
!= csc_static
;
6463 TREE_STATIC (decl
) = !extern_ref
;
6465 /* Not at file scope, only `static' makes a static definition. */
6468 TREE_STATIC (decl
) = (storage_class
== csc_static
);
6469 /* UPC's 'shared' attribute implies that the storage
6470 is 'static' to the extent it is stored in
6472 if (type_quals
& TYPE_QUAL_SHARED
)
6473 TREE_STATIC (decl
) = 1;
6474 TREE_PUBLIC (decl
) = extern_ref
;
6478 DECL_TLS_MODEL (decl
) = decl_default_tls_model (decl
);
6481 if ((storage_class
== csc_extern
6482 || (storage_class
== csc_none
6483 && TREE_CODE (type
) == FUNCTION_TYPE
6485 && variably_modified_type_p (type
, NULL_TREE
))
6488 if (TREE_CODE (type
) == FUNCTION_TYPE
)
6489 error_at (loc
, "non-nested function with variably modified type");
6491 error_at (loc
, "object with variably modified type must have "
6495 /* Record `register' declaration for warnings on &
6496 and in case doing stupid register allocation. */
6498 if (storage_class
== csc_register
)
6500 C_DECL_REGISTER (decl
) = 1;
6501 DECL_REGISTER (decl
) = 1;
6504 /* Record constancy and volatility. */
6505 c_apply_type_quals_to_decl (type_quals
, decl
);
6507 /* Apply _Alignas specifiers. */
6510 DECL_ALIGN (decl
) = alignas_align
* BITS_PER_UNIT
;
6511 DECL_USER_ALIGN (decl
) = 1;
6514 /* If a type has volatile components, it should be stored in memory.
6515 Otherwise, the fact that those components are volatile
6516 will be ignored, and would even crash the compiler.
6517 Of course, this only makes sense on VAR,PARM, and RESULT decl's. */
6518 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl
))
6519 && (TREE_CODE (decl
) == VAR_DECL
|| TREE_CODE (decl
) == PARM_DECL
6520 || TREE_CODE (decl
) == RESULT_DECL
))
6522 /* It is not an error for a structure with volatile fields to
6523 be declared register, but reset DECL_REGISTER since it
6524 cannot actually go in a register. */
6525 int was_reg
= C_DECL_REGISTER (decl
);
6526 C_DECL_REGISTER (decl
) = 0;
6527 DECL_REGISTER (decl
) = 0;
6528 c_mark_addressable (decl
);
6529 C_DECL_REGISTER (decl
) = was_reg
;
6532 /* This is the earliest point at which we might know the assembler
6533 name of a variable. Thus, if it's known before this, die horribly. */
6534 gcc_assert (!DECL_ASSEMBLER_NAME_SET_P (decl
));
6537 && TREE_CODE (decl
) == VAR_DECL
6538 && TREE_PUBLIC (decl
)
6539 && TREE_STATIC (decl
)
6540 && (TREE_CODE (TREE_TYPE (decl
)) == RECORD_TYPE
6541 || TREE_CODE (TREE_TYPE (decl
)) == UNION_TYPE
6542 || TREE_CODE (TREE_TYPE (decl
)) == ENUMERAL_TYPE
)
6543 && TYPE_NAME (TREE_TYPE (decl
)) == NULL_TREE
)
6544 warning_at (DECL_SOURCE_LOCATION (decl
), OPT_Wc___compat
,
6545 ("non-local variable %qD with anonymous type is "
6546 "questionable in C++"),
6549 /* Shared variables are given their own link section on
6550 most target platforms, and if compiling in pthreads mode
6551 regular local file scope variables are made thread local. */
6552 if ((TREE_CODE(decl
) == VAR_DECL
)
6553 && !threadp
&& (TREE_SHARED (decl
) || flag_upc_pthreads
))
6554 upc_set_decl_section (decl
);
6560 /* Decode the parameter-list info for a function type or function definition.
6561 The argument is the value returned by `get_parm_info' (or made in c-parse.c
6562 if there is an identifier list instead of a parameter decl list).
6563 These two functions are separate because when a function returns
6564 or receives functions then each is called multiple times but the order
6565 of calls is different. The last call to `grokparms' is always the one
6566 that contains the formal parameter names of a function definition.
6568 Return a list of arg types to use in the FUNCTION_TYPE for this function.
6570 FUNCDEF_FLAG is true for a function definition, false for
6571 a mere declaration. A nonempty identifier-list gets an error message
6572 when FUNCDEF_FLAG is false. */
6575 grokparms (struct c_arg_info
*arg_info
, bool funcdef_flag
)
6577 tree arg_types
= arg_info
->types
;
6579 if (funcdef_flag
&& arg_info
->had_vla_unspec
)
6581 /* A function definition isn't function prototype scope C99 6.2.1p4. */
6583 error ("%<[*]%> not allowed in other than function prototype scope");
6586 if (arg_types
== 0 && !funcdef_flag
6587 && !in_system_header_at (input_location
))
6588 warning (OPT_Wstrict_prototypes
,
6589 "function declaration isn%'t a prototype");
6591 if (arg_types
== error_mark_node
)
6592 return 0; /* don't set TYPE_ARG_TYPES in this case */
6594 else if (arg_types
&& TREE_CODE (TREE_VALUE (arg_types
)) == IDENTIFIER_NODE
)
6598 pedwarn (input_location
, 0, "parameter names (without types) in function declaration");
6599 arg_info
->parms
= NULL_TREE
;
6602 arg_info
->parms
= arg_info
->types
;
6604 arg_info
->types
= 0;
6609 tree parm
, type
, typelt
;
6610 unsigned int parmno
;
6613 /* If there is a parameter of incomplete type in a definition,
6614 this is an error. In a declaration this is valid, and a
6615 struct or union type may be completed later, before any calls
6616 or definition of the function. In the case where the tag was
6617 first declared within the parameter list, a warning has
6618 already been given. If a parameter has void type, then
6619 however the function cannot be defined or called, so
6622 for (parm
= arg_info
->parms
, typelt
= arg_types
, parmno
= 1;
6624 parm
= DECL_CHAIN (parm
), typelt
= TREE_CHAIN (typelt
), parmno
++)
6626 type
= TREE_VALUE (typelt
);
6627 if (type
== error_mark_node
)
6630 if (!COMPLETE_TYPE_P (type
))
6634 if (DECL_NAME (parm
))
6635 error_at (input_location
,
6636 "parameter %u (%q+D) has incomplete type",
6639 error_at (DECL_SOURCE_LOCATION (parm
),
6640 "parameter %u has incomplete type",
6643 TREE_VALUE (typelt
) = error_mark_node
;
6644 TREE_TYPE (parm
) = error_mark_node
;
6645 arg_types
= NULL_TREE
;
6647 else if (VOID_TYPE_P (type
))
6649 if (DECL_NAME (parm
))
6650 warning_at (input_location
, 0,
6651 "parameter %u (%q+D) has void type",
6654 warning_at (DECL_SOURCE_LOCATION (parm
), 0,
6655 "parameter %u has void type",
6660 errmsg
= targetm
.invalid_parameter_type (type
);
6664 TREE_VALUE (typelt
) = error_mark_node
;
6665 TREE_TYPE (parm
) = error_mark_node
;
6666 arg_types
= NULL_TREE
;
6669 if (DECL_NAME (parm
) && TREE_USED (parm
))
6670 warn_if_shadowing (parm
);
6676 /* Allocate and initialize a c_arg_info structure from the parser's
6680 build_arg_info (void)
6682 struct c_arg_info
*ret
= XOBNEW (&parser_obstack
, struct c_arg_info
);
6683 ret
->parms
= NULL_TREE
;
6685 ret
->types
= NULL_TREE
;
6686 ret
->others
= NULL_TREE
;
6687 ret
->pending_sizes
= NULL
;
6688 ret
->had_vla_unspec
= 0;
6692 /* Take apart the current scope and return a c_arg_info structure with
6693 info on a parameter list just parsed.
6695 This structure is later fed to 'grokparms' and 'store_parm_decls'.
6697 ELLIPSIS being true means the argument list ended in '...' so don't
6698 append a sentinel (void_list_node) to the end of the type-list.
6700 EXPR is NULL or an expression that needs to be evaluated for the
6701 side effects of array size expressions in the parameters. */
6704 get_parm_info (bool ellipsis
, tree expr
)
6706 struct c_binding
*b
= current_scope
->bindings
;
6707 struct c_arg_info
*arg_info
= build_arg_info ();
6710 vec
<c_arg_tag
, va_gc
> *tags
= NULL
;
6714 static bool explained_incomplete_types
= false;
6715 bool gave_void_only_once_err
= false;
6717 arg_info
->had_vla_unspec
= current_scope
->had_vla_unspec
;
6719 /* The bindings in this scope must not get put into a block.
6720 We will take care of deleting the binding nodes. */
6721 current_scope
->bindings
= 0;
6723 /* This function is only called if there was *something* on the
6727 /* A parameter list consisting solely of 'void' indicates that the
6728 function takes no arguments. But if the 'void' is qualified
6729 (by 'const' or 'volatile'), or has a storage class specifier
6730 ('register'), then the behavior is undefined; issue an error.
6731 Typedefs for 'void' are OK (see DR#157). */
6732 if (b
->prev
== 0 /* one binding */
6733 && TREE_CODE (b
->decl
) == PARM_DECL
/* which is a parameter */
6734 && !DECL_NAME (b
->decl
) /* anonymous */
6735 && VOID_TYPE_P (TREE_TYPE (b
->decl
))) /* of void type */
6737 if (TYPE_QUALS (TREE_TYPE (b
->decl
)) != TYPE_UNQUALIFIED
6738 || C_DECL_REGISTER (b
->decl
))
6739 error ("%<void%> as only parameter may not be qualified");
6741 /* There cannot be an ellipsis. */
6743 error ("%<void%> must be the only parameter");
6745 arg_info
->types
= void_list_node
;
6750 types
= void_list_node
;
6752 /* Break up the bindings list into parms, tags, types, and others;
6753 apply sanity checks; purge the name-to-decl bindings. */
6756 tree decl
= b
->decl
;
6757 tree type
= TREE_TYPE (decl
);
6759 const char *keyword
;
6761 switch (TREE_CODE (decl
))
6766 gcc_assert (I_SYMBOL_BINDING (b
->id
) == b
);
6767 I_SYMBOL_BINDING (b
->id
) = b
->shadowed
;
6770 /* Check for forward decls that never got their actual decl. */
6771 if (TREE_ASM_WRITTEN (decl
))
6772 error ("parameter %q+D has just a forward declaration", decl
);
6773 /* Check for (..., void, ...) and issue an error. */
6774 else if (VOID_TYPE_P (type
) && !DECL_NAME (decl
))
6776 if (!gave_void_only_once_err
)
6778 error ("%<void%> must be the only parameter");
6779 gave_void_only_once_err
= true;
6784 /* Valid parameter, add it to the list. */
6785 DECL_CHAIN (decl
) = parms
;
6788 /* Since there is a prototype, args are passed in their
6789 declared types. The back end may override this later. */
6790 DECL_ARG_TYPE (decl
) = type
;
6791 types
= tree_cons (0, type
, types
);
6795 case ENUMERAL_TYPE
: keyword
= "enum"; goto tag
;
6796 case UNION_TYPE
: keyword
= "union"; goto tag
;
6797 case RECORD_TYPE
: keyword
= "struct"; goto tag
;
6799 /* Types may not have tag-names, in which case the type
6800 appears in the bindings list with b->id NULL. */
6803 gcc_assert (I_TAG_BINDING (b
->id
) == b
);
6804 I_TAG_BINDING (b
->id
) = b
->shadowed
;
6807 /* Warn about any struct, union or enum tags defined in a
6808 parameter list. The scope of such types is limited to
6809 the parameter list, which is rarely if ever desirable
6810 (it's impossible to call such a function with type-
6811 correct arguments). An anonymous union parm type is
6812 meaningful as a GNU extension, so don't warn for that. */
6813 if (TREE_CODE (decl
) != UNION_TYPE
|| b
->id
!= 0)
6816 /* The %s will be one of 'struct', 'union', or 'enum'. */
6817 warning (0, "%<%s %E%> declared inside parameter list",
6820 /* The %s will be one of 'struct', 'union', or 'enum'. */
6821 warning (0, "anonymous %s declared inside parameter list",
6824 if (!explained_incomplete_types
)
6826 warning (0, "its scope is only this definition or declaration,"
6827 " which is probably not what you want");
6828 explained_incomplete_types
= true;
6834 vec_safe_push (tags
, tag
);
6840 /* CONST_DECLs appear here when we have an embedded enum,
6841 and TYPE_DECLs appear here when we have an embedded struct
6842 or union. No warnings for this - we already warned about the
6843 type itself. FUNCTION_DECLs appear when there is an implicit
6844 function declaration in the parameter list. */
6846 /* When we reinsert this decl in the function body, we need
6847 to reconstruct whether it was marked as nested. */
6848 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
6851 DECL_CHAIN (decl
) = others
;
6856 /* error_mark_node appears here when we have an undeclared
6857 variable. Just throw it away. */
6860 gcc_assert (I_SYMBOL_BINDING (b
->id
) == b
);
6861 I_SYMBOL_BINDING (b
->id
) = b
->shadowed
;
6865 /* Other things that might be encountered. */
6872 b
= free_binding_and_advance (b
);
6875 arg_info
->parms
= parms
;
6876 arg_info
->tags
= tags
;
6877 arg_info
->types
= types
;
6878 arg_info
->others
= others
;
6879 arg_info
->pending_sizes
= expr
;
6883 /* Get the struct, enum or union (CODE says which) with tag NAME.
6884 Define the tag as a forward-reference with location LOC if it is
6885 not defined. Return a c_typespec structure for the type
6889 parser_xref_tag (location_t loc
, enum tree_code code
, tree name
)
6891 struct c_typespec ret
;
6895 ret
.expr
= NULL_TREE
;
6896 ret
.expr_const_operands
= true;
6898 /* If a cross reference is requested, look up the type
6899 already defined for this tag and return it. */
6901 ref
= lookup_tag (code
, name
, 0, &refloc
);
6902 /* If this is the right type of tag, return what we found.
6903 (This reference will be shadowed by shadow_tag later if appropriate.)
6904 If this is the wrong type of tag, do not return it. If it was the
6905 wrong type in the same scope, we will have had an error
6906 message already; if in a different scope and declaring
6907 a name, pending_xref_error will give an error message; but if in a
6908 different scope and not declaring a name, this tag should
6909 shadow the previous declaration of a different type of tag, and
6910 this would not work properly if we return the reference found.
6911 (For example, with "struct foo" in an outer scope, "union foo;"
6912 must shadow that tag with a new one of union type.) */
6913 ret
.kind
= (ref
? ctsk_tagref
: ctsk_tagfirstref
);
6914 if (ref
&& TREE_CODE (ref
) == code
)
6916 if (C_TYPE_DEFINED_IN_STRUCT (ref
)
6917 && loc
!= UNKNOWN_LOCATION
6923 warning_at (loc
, OPT_Wc___compat
,
6924 ("enum type defined in struct or union "
6925 "is not visible in C++"));
6926 inform (refloc
, "enum type defined here");
6929 warning_at (loc
, OPT_Wc___compat
,
6930 ("struct defined in struct or union "
6931 "is not visible in C++"));
6932 inform (refloc
, "struct defined here");
6935 warning_at (loc
, OPT_Wc___compat
,
6936 ("union defined in struct or union "
6937 "is not visible in C++"));
6938 inform (refloc
, "union defined here");
6949 /* If no such tag is yet defined, create a forward-reference node
6950 and record it as the "definition".
6951 When a real declaration of this type is found,
6952 the forward-reference will be altered into a real type. */
6954 ref
= make_node (code
);
6955 if (code
== ENUMERAL_TYPE
)
6957 /* Give the type a default layout like unsigned int
6958 to avoid crashing if it does not get defined. */
6959 SET_TYPE_MODE (ref
, TYPE_MODE (unsigned_type_node
));
6960 TYPE_ALIGN (ref
) = TYPE_ALIGN (unsigned_type_node
);
6961 TYPE_USER_ALIGN (ref
) = 0;
6962 TYPE_UNSIGNED (ref
) = 1;
6963 TYPE_PRECISION (ref
) = TYPE_PRECISION (unsigned_type_node
);
6964 TYPE_MIN_VALUE (ref
) = TYPE_MIN_VALUE (unsigned_type_node
);
6965 TYPE_MAX_VALUE (ref
) = TYPE_MAX_VALUE (unsigned_type_node
);
6968 pushtag (loc
, name
, ref
);
6974 /* Get the struct, enum or union (CODE says which) with tag NAME.
6975 Define the tag as a forward-reference if it is not defined.
6976 Return a tree for the type. */
6979 xref_tag (enum tree_code code
, tree name
)
6981 return parser_xref_tag (input_location
, code
, name
).spec
;
6984 /* Make sure that the tag NAME is defined *in the current scope*
6985 at least as a forward reference.
6986 LOC is the location of the struct's definition.
6987 CODE says which kind of tag NAME ought to be.
6989 This stores the current value of the file static STRUCT_PARSE_INFO
6990 in *ENCLOSING_STRUCT_PARSE_INFO, and points STRUCT_PARSE_INFO at a
6991 new c_struct_parse_info structure. The old value of
6992 STRUCT_PARSE_INFO is restored in finish_struct. */
6995 start_struct (location_t loc
, enum tree_code code
, tree name
,
6996 struct c_struct_parse_info
**enclosing_struct_parse_info
)
6998 /* If there is already a tag defined at this scope
6999 (as a forward reference), just return it. */
7001 tree ref
= NULL_TREE
;
7002 location_t refloc
= UNKNOWN_LOCATION
;
7004 if (name
!= NULL_TREE
)
7005 ref
= lookup_tag (code
, name
, 1, &refloc
);
7006 if (ref
&& TREE_CODE (ref
) == code
)
7008 if (TYPE_SIZE (ref
))
7010 if (code
== UNION_TYPE
)
7011 error_at (loc
, "redefinition of %<union %E%>", name
);
7013 error_at (loc
, "redefinition of %<struct %E%>", name
);
7014 if (refloc
!= UNKNOWN_LOCATION
)
7015 inform (refloc
, "originally defined here");
7016 /* Don't create structures using a name already in use. */
7019 else if (C_TYPE_BEING_DEFINED (ref
))
7021 if (code
== UNION_TYPE
)
7022 error_at (loc
, "nested redefinition of %<union %E%>", name
);
7024 error_at (loc
, "nested redefinition of %<struct %E%>", name
);
7025 /* Don't bother to report "originally defined here" for a
7026 nested redefinition; the original definition should be
7028 /* Don't create structures that contain themselves. */
7033 /* Otherwise create a forward-reference just so the tag is in scope. */
7035 if (ref
== NULL_TREE
|| TREE_CODE (ref
) != code
)
7037 ref
= make_node (code
);
7038 pushtag (loc
, name
, ref
);
7041 C_TYPE_BEING_DEFINED (ref
) = 1;
7042 TYPE_PACKED (ref
) = flag_pack_struct
;
7044 *enclosing_struct_parse_info
= struct_parse_info
;
7045 struct_parse_info
= XNEW (struct c_struct_parse_info
);
7046 struct_parse_info
->struct_types
.create (0);
7047 struct_parse_info
->fields
.create (0);
7048 struct_parse_info
->typedefs_seen
.create (0);
7050 /* FIXME: This will issue a warning for a use of a type defined
7051 within a statement expr used within sizeof, et. al. This is not
7052 terribly serious as C++ doesn't permit statement exprs within
7054 if (warn_cxx_compat
&& (in_sizeof
|| in_typeof
|| in_alignof
))
7055 warning_at (loc
, OPT_Wc___compat
,
7056 "defining type in %qs expression is invalid in C++",
7059 : (in_typeof
? "typeof" : "alignof")));
7064 /* Process the specs, declarator and width (NULL if omitted)
7065 of a structure component, returning a FIELD_DECL node.
7066 WIDTH is non-NULL for bit-fields only, and is an INTEGER_CST node.
7067 DECL_ATTRS is as for grokdeclarator.
7069 LOC is the location of the structure component.
7071 This is done during the parsing of the struct declaration.
7072 The FIELD_DECL nodes are chained together and the lot of them
7073 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
7076 grokfield (location_t loc
,
7077 struct c_declarator
*declarator
, struct c_declspecs
*declspecs
,
7078 tree width
, tree
*decl_attrs
)
7082 if (declarator
->kind
== cdk_id
&& declarator
->u
.id
== NULL_TREE
7083 && width
== NULL_TREE
)
7085 /* This is an unnamed decl.
7087 If we have something of the form "union { list } ;" then this
7088 is the anonymous union extension. Similarly for struct.
7090 If this is something of the form "struct foo;", then
7091 If MS or Plan 9 extensions are enabled, this is handled as
7092 an anonymous struct.
7093 Otherwise this is a forward declaration of a structure tag.
7095 If this is something of the form "foo;" and foo is a TYPE_DECL, then
7096 If foo names a structure or union without a tag, then this
7097 is an anonymous struct (this is permitted by C11).
7098 If MS or Plan 9 extensions are enabled and foo names a
7099 structure, then again this is an anonymous struct.
7100 Otherwise this is an error.
7102 Oh what a horrid tangled web we weave. I wonder if MS consciously
7103 took this from Plan 9 or if it was an accident of implementation
7104 that took root before someone noticed the bug... */
7106 tree type
= declspecs
->type
;
7107 bool type_ok
= (TREE_CODE (type
) == RECORD_TYPE
7108 || TREE_CODE (type
) == UNION_TYPE
);
7112 && (flag_ms_extensions
7113 || flag_plan9_extensions
7114 || !declspecs
->typedef_p
))
7116 if (flag_ms_extensions
|| flag_plan9_extensions
)
7118 else if (TYPE_NAME (type
) == NULL
)
7125 pedwarn (loc
, 0, "declaration does not declare anything");
7131 pedwarn (loc
, OPT_Wpedantic
,
7132 "ISO C99 doesn%'t support unnamed structs/unions");
7134 pedwarn (loc
, OPT_Wpedantic
,
7135 "ISO C90 doesn%'t support unnamed structs/unions");
7139 value
= grokdeclarator (declarator
, declspecs
, FIELD
, false,
7140 width
? &width
: NULL
, decl_attrs
, NULL
, NULL
,
7143 finish_decl (value
, loc
, NULL_TREE
, NULL_TREE
, NULL_TREE
);
7144 DECL_INITIAL (value
) = width
;
7146 if (warn_cxx_compat
&& DECL_NAME (value
) != NULL_TREE
)
7148 /* If we currently have a binding for this field, set the
7149 in_struct field in the binding, so that we warn about lookups
7151 struct c_binding
*b
= I_SYMBOL_BINDING (DECL_NAME (value
));
7154 /* If the in_struct field is not yet set, push it on a list
7155 to be cleared when this struct is finished. */
7158 struct_parse_info
->fields
.safe_push (b
);
7167 /* Subroutine of detect_field_duplicates: return whether X and Y,
7168 which are both fields in the same struct, have duplicate field
7172 is_duplicate_field (tree x
, tree y
)
7174 if (DECL_NAME (x
) != NULL_TREE
&& DECL_NAME (x
) == DECL_NAME (y
))
7177 /* When using -fplan9-extensions, an anonymous field whose name is a
7178 typedef can duplicate a field name. */
7179 if (flag_plan9_extensions
7180 && (DECL_NAME (x
) == NULL_TREE
|| DECL_NAME (y
) == NULL_TREE
))
7182 tree xt
, xn
, yt
, yn
;
7185 if (DECL_NAME (x
) != NULL_TREE
)
7187 else if ((TREE_CODE (xt
) == RECORD_TYPE
|| TREE_CODE (xt
) == UNION_TYPE
)
7188 && TYPE_NAME (xt
) != NULL_TREE
7189 && TREE_CODE (TYPE_NAME (xt
)) == TYPE_DECL
)
7190 xn
= DECL_NAME (TYPE_NAME (xt
));
7195 if (DECL_NAME (y
) != NULL_TREE
)
7197 else if ((TREE_CODE (yt
) == RECORD_TYPE
|| TREE_CODE (yt
) == UNION_TYPE
)
7198 && TYPE_NAME (yt
) != NULL_TREE
7199 && TREE_CODE (TYPE_NAME (yt
)) == TYPE_DECL
)
7200 yn
= DECL_NAME (TYPE_NAME (yt
));
7204 if (xn
!= NULL_TREE
&& xn
== yn
)
7211 /* Subroutine of detect_field_duplicates: add the fields of FIELDLIST
7212 to HTAB, giving errors for any duplicates. */
7215 detect_field_duplicates_hash (tree fieldlist
,
7216 hash_table
<pointer_hash
<tree_node
> > htab
)
7221 for (x
= fieldlist
; x
; x
= DECL_CHAIN (x
))
7222 if ((y
= DECL_NAME (x
)) != 0)
7224 slot
= htab
.find_slot (y
, INSERT
);
7227 error ("duplicate member %q+D", x
);
7228 DECL_NAME (x
) = NULL_TREE
;
7232 else if (TREE_CODE (TREE_TYPE (x
)) == RECORD_TYPE
7233 || TREE_CODE (TREE_TYPE (x
)) == UNION_TYPE
)
7235 detect_field_duplicates_hash (TYPE_FIELDS (TREE_TYPE (x
)), htab
);
7237 /* When using -fplan9-extensions, an anonymous field whose
7238 name is a typedef can duplicate a field name. */
7239 if (flag_plan9_extensions
7240 && TYPE_NAME (TREE_TYPE (x
)) != NULL_TREE
7241 && TREE_CODE (TYPE_NAME (TREE_TYPE (x
))) == TYPE_DECL
)
7243 tree xn
= DECL_NAME (TYPE_NAME (TREE_TYPE (x
)));
7244 slot
= htab
.find_slot (xn
, INSERT
);
7246 error ("duplicate member %q+D", TYPE_NAME (TREE_TYPE (x
)));
7252 /* Generate an error for any duplicate field names in FIELDLIST. Munge
7253 the list such that this does not present a problem later. */
7256 detect_field_duplicates (tree fieldlist
)
7261 /* If the struct is the list of instance variables of an Objective-C
7262 class, then we need to check all the instance variables of
7263 superclasses when checking for duplicates (since you can't have
7264 an instance variable in a subclass with the same name as an
7265 instance variable in a superclass). We pass on this job to the
7266 Objective-C compiler. objc_detect_field_duplicates() will return
7267 false if we are not checking the list of instance variables and
7268 the C frontend should proceed with the standard field duplicate
7269 checks. If we are checking the list of instance variables, the
7270 ObjC frontend will do the check, emit the errors if needed, and
7271 then return true. */
7272 if (c_dialect_objc ())
7273 if (objc_detect_field_duplicates (false))
7276 /* First, see if there are more than "a few" fields.
7277 This is trivially true if there are zero or one fields. */
7278 if (!fieldlist
|| !DECL_CHAIN (fieldlist
))
7283 if (DECL_NAME (x
) == NULL_TREE
7284 && (TREE_CODE (TREE_TYPE (x
)) == RECORD_TYPE
7285 || TREE_CODE (TREE_TYPE (x
)) == UNION_TYPE
))
7288 } while (timeout
> 0 && x
);
7290 /* If there were "few" fields and no anonymous structures or unions,
7291 avoid the overhead of allocating a hash table. Instead just do
7292 the nested traversal thing. */
7295 for (x
= DECL_CHAIN (fieldlist
); x
; x
= DECL_CHAIN (x
))
7296 /* When using -fplan9-extensions, we can have duplicates
7297 between typedef names and fields. */
7299 || (flag_plan9_extensions
7300 && DECL_NAME (x
) == NULL_TREE
7301 && (TREE_CODE (TREE_TYPE (x
)) == RECORD_TYPE
7302 || TREE_CODE (TREE_TYPE (x
)) == UNION_TYPE
)
7303 && TYPE_NAME (TREE_TYPE (x
)) != NULL_TREE
7304 && TREE_CODE (TYPE_NAME (TREE_TYPE (x
))) == TYPE_DECL
))
7306 for (y
= fieldlist
; y
!= x
; y
= TREE_CHAIN (y
))
7307 if (is_duplicate_field (y
, x
))
7309 error ("duplicate member %q+D", x
);
7310 DECL_NAME (x
) = NULL_TREE
;
7316 hash_table
<pointer_hash
<tree_node
> > htab
;
7319 detect_field_duplicates_hash (fieldlist
, htab
);
7324 /* Finish up struct info used by -Wc++-compat. */
7327 warn_cxx_compat_finish_struct (tree fieldlist
)
7331 struct c_binding
*b
;
7333 /* Set the C_TYPE_DEFINED_IN_STRUCT flag for each type defined in
7334 the current struct. We do this now at the end of the struct
7335 because the flag is used to issue visibility warnings, and we
7336 only want to issue those warnings if the type is referenced
7337 outside of the struct declaration. */
7338 FOR_EACH_VEC_ELT (struct_parse_info
->struct_types
, ix
, x
)
7339 C_TYPE_DEFINED_IN_STRUCT (x
) = 1;
7341 /* The TYPEDEFS_SEEN field of STRUCT_PARSE_INFO is a list of
7342 typedefs used when declaring fields in this struct. If the name
7343 of any of the fields is also a typedef name then the struct would
7344 not parse in C++, because the C++ lookup rules say that the
7345 typedef name would be looked up in the context of the struct, and
7346 would thus be the field rather than the typedef. */
7347 if (!struct_parse_info
->typedefs_seen
.is_empty ()
7348 && fieldlist
!= NULL_TREE
)
7350 /* Use a pointer_set using the name of the typedef. We can use
7351 a pointer_set because identifiers are interned. */
7352 struct pointer_set_t
*tset
= pointer_set_create ();
7354 FOR_EACH_VEC_ELT (struct_parse_info
->typedefs_seen
, ix
, x
)
7355 pointer_set_insert (tset
, DECL_NAME (x
));
7357 for (x
= fieldlist
; x
!= NULL_TREE
; x
= DECL_CHAIN (x
))
7359 if (DECL_NAME (x
) != NULL_TREE
7360 && pointer_set_contains (tset
, DECL_NAME (x
)))
7362 warning_at (DECL_SOURCE_LOCATION (x
), OPT_Wc___compat
,
7363 ("using %qD as both field and typedef name is "
7366 /* FIXME: It would be nice to report the location where
7367 the typedef name is used. */
7371 pointer_set_destroy (tset
);
7374 /* For each field which has a binding and which was not defined in
7375 an enclosing struct, clear the in_struct field. */
7376 FOR_EACH_VEC_ELT (struct_parse_info
->fields
, ix
, b
)
7380 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
7381 LOC is the location of the RECORD_TYPE or UNION_TYPE's definition.
7382 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
7383 ATTRIBUTES are attributes to be applied to the structure.
7385 ENCLOSING_STRUCT_PARSE_INFO is the value of STRUCT_PARSE_INFO when
7386 the struct was started. */
7389 finish_struct (location_t loc
, tree t
, tree fieldlist
, tree attributes
,
7390 struct c_struct_parse_info
*enclosing_struct_parse_info
)
7393 bool toplevel
= file_scope
== current_scope
;
7394 int saw_named_field
;
7396 /* If this type was previously laid out as a forward reference,
7397 make sure we lay it out again. */
7401 decl_attributes (&t
, attributes
, (int) ATTR_FLAG_TYPE_IN_PLACE
);
7405 for (x
= fieldlist
; x
; x
= DECL_CHAIN (x
))
7407 if (DECL_NAME (x
) != 0)
7410 && (TREE_CODE (TREE_TYPE (x
)) == RECORD_TYPE
7411 || TREE_CODE (TREE_TYPE (x
)) == UNION_TYPE
))
7417 if (TREE_CODE (t
) == UNION_TYPE
)
7420 pedwarn (loc
, OPT_Wpedantic
, "union has no named members");
7422 pedwarn (loc
, OPT_Wpedantic
, "union has no members");
7427 pedwarn (loc
, OPT_Wpedantic
, "struct has no named members");
7429 pedwarn (loc
, OPT_Wpedantic
, "struct has no members");
7434 /* Install struct as DECL_CONTEXT of each field decl.
7435 Also process specified field sizes, found in the DECL_INITIAL,
7436 storing 0 there after the type has been changed to precision equal
7437 to its width, rather than the precision of the specified standard
7438 type. (Correct layout requires the original type to have been preserved
7441 saw_named_field
= 0;
7442 for (x
= fieldlist
; x
; x
= DECL_CHAIN (x
))
7444 if (TREE_TYPE (x
) == error_mark_node
)
7447 DECL_CONTEXT (x
) = t
;
7449 /* If any field is const, the structure type is pseudo-const. */
7450 if (TREE_READONLY (x
))
7451 C_TYPE_FIELDS_READONLY (t
) = 1;
7454 /* A field that is pseudo-const makes the structure likewise. */
7455 tree t1
= strip_array_types (TREE_TYPE (x
));
7456 if ((TREE_CODE (t1
) == RECORD_TYPE
|| TREE_CODE (t1
) == UNION_TYPE
)
7457 && C_TYPE_FIELDS_READONLY (t1
))
7458 C_TYPE_FIELDS_READONLY (t
) = 1;
7461 /* Any field that is volatile means variables of this type must be
7462 treated in some ways as volatile. */
7463 if (TREE_THIS_VOLATILE (x
))
7464 C_TYPE_FIELDS_VOLATILE (t
) = 1;
7466 /* Any field of nominal variable size implies structure is too. */
7467 if (C_DECL_VARIABLE_SIZE (x
))
7468 C_TYPE_VARIABLE_SIZE (t
) = 1;
7470 if (DECL_INITIAL (x
))
7472 unsigned HOST_WIDE_INT width
= tree_to_uhwi (DECL_INITIAL (x
));
7473 DECL_SIZE (x
) = bitsize_int (width
);
7474 DECL_BIT_FIELD (x
) = 1;
7475 SET_DECL_C_BIT_FIELD (x
);
7479 && (DECL_BIT_FIELD (x
)
7480 || TYPE_ALIGN (TREE_TYPE (x
)) > BITS_PER_UNIT
))
7481 DECL_PACKED (x
) = 1;
7483 /* Detect flexible array member in an invalid context. */
7484 if (TREE_CODE (TREE_TYPE (x
)) == ARRAY_TYPE
7485 && TYPE_SIZE (TREE_TYPE (x
)) == NULL_TREE
7486 && TYPE_DOMAIN (TREE_TYPE (x
)) != NULL_TREE
7487 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x
))) == NULL_TREE
)
7489 if (TREE_CODE (t
) == UNION_TYPE
)
7491 error_at (DECL_SOURCE_LOCATION (x
),
7492 "flexible array member in union");
7493 TREE_TYPE (x
) = error_mark_node
;
7495 else if (DECL_CHAIN (x
) != NULL_TREE
)
7497 error_at (DECL_SOURCE_LOCATION (x
),
7498 "flexible array member not at end of struct");
7499 TREE_TYPE (x
) = error_mark_node
;
7501 else if (!saw_named_field
)
7503 error_at (DECL_SOURCE_LOCATION (x
),
7504 "flexible array member in otherwise empty struct");
7505 TREE_TYPE (x
) = error_mark_node
;
7509 if (pedantic
&& TREE_CODE (t
) == RECORD_TYPE
7510 && flexible_array_type_p (TREE_TYPE (x
)))
7511 pedwarn (DECL_SOURCE_LOCATION (x
), OPT_Wpedantic
,
7512 "invalid use of structure with flexible array member");
7515 || TREE_CODE (TREE_TYPE (x
)) == RECORD_TYPE
7516 || TREE_CODE (TREE_TYPE (x
)) == UNION_TYPE
)
7517 saw_named_field
= 1;
7520 detect_field_duplicates (fieldlist
);
7522 /* Now we have the nearly final fieldlist. Record it,
7523 then lay out the structure or union (including the fields). */
7525 TYPE_FIELDS (t
) = fieldlist
;
7529 if (TYPE_SIZE_UNIT (t
)
7530 && TREE_CODE (TYPE_SIZE_UNIT (t
)) == INTEGER_CST
7531 && !TREE_OVERFLOW (TYPE_SIZE_UNIT (t
))
7532 && !valid_constant_size_p (TYPE_SIZE_UNIT (t
)))
7533 error ("type %qT is too large", t
);
7535 /* Give bit-fields their proper types. */
7537 tree
*fieldlistp
= &fieldlist
;
7539 if (TREE_CODE (*fieldlistp
) == FIELD_DECL
&& DECL_INITIAL (*fieldlistp
)
7540 && TREE_TYPE (*fieldlistp
) != error_mark_node
)
7542 unsigned HOST_WIDE_INT width
7543 = tree_to_uhwi (DECL_INITIAL (*fieldlistp
));
7544 tree type
= TREE_TYPE (*fieldlistp
);
7545 if (width
!= TYPE_PRECISION (type
))
7547 TREE_TYPE (*fieldlistp
)
7548 = c_build_bitfield_integer_type (width
, TYPE_UNSIGNED (type
));
7549 DECL_MODE (*fieldlistp
) = TYPE_MODE (TREE_TYPE (*fieldlistp
));
7551 DECL_INITIAL (*fieldlistp
) = 0;
7554 fieldlistp
= &DECL_CHAIN (*fieldlistp
);
7557 /* Now we have the truly final field list.
7558 Store it in this type and in the variants. */
7560 TYPE_FIELDS (t
) = fieldlist
;
7562 /* If there are lots of fields, sort so we can look through them fast.
7563 We arbitrarily consider 16 or more elts to be "a lot". */
7568 for (x
= fieldlist
; x
; x
= DECL_CHAIN (x
))
7570 if (len
> 15 || DECL_NAME (x
) == NULL
)
7578 struct lang_type
*space
;
7579 struct sorted_fields_type
*space2
;
7581 len
+= list_length (x
);
7583 /* Use the same allocation policy here that make_node uses, to
7584 ensure that this lives as long as the rest of the struct decl.
7585 All decls in an inline function need to be saved. */
7587 space
= ggc_alloc_cleared_lang_type (sizeof (struct lang_type
));
7588 space2
= ggc_alloc_sorted_fields_type
7589 (sizeof (struct sorted_fields_type
) + len
* sizeof (tree
));
7593 field_array
= &space2
->elts
[0];
7594 for (x
= fieldlist
; x
; x
= DECL_CHAIN (x
))
7596 field_array
[len
++] = x
;
7598 /* If there is anonymous struct or union, break out of the loop. */
7599 if (DECL_NAME (x
) == NULL
)
7602 /* Found no anonymous struct/union. Add the TYPE_LANG_SPECIFIC. */
7605 TYPE_LANG_SPECIFIC (t
) = space
;
7606 TYPE_LANG_SPECIFIC (t
)->s
->len
= len
;
7607 field_array
= TYPE_LANG_SPECIFIC (t
)->s
->elts
;
7608 qsort (field_array
, len
, sizeof (tree
), field_decl_cmp
);
7613 for (x
= TYPE_MAIN_VARIANT (t
); x
; x
= TYPE_NEXT_VARIANT (x
))
7615 TYPE_FIELDS (x
) = TYPE_FIELDS (t
);
7616 TYPE_LANG_SPECIFIC (x
) = TYPE_LANG_SPECIFIC (t
);
7617 C_TYPE_FIELDS_READONLY (x
) = C_TYPE_FIELDS_READONLY (t
);
7618 C_TYPE_FIELDS_VOLATILE (x
) = C_TYPE_FIELDS_VOLATILE (t
);
7619 C_TYPE_VARIABLE_SIZE (x
) = C_TYPE_VARIABLE_SIZE (t
);
7622 /* If this was supposed to be a transparent union, but we can't
7623 make it one, warn and turn off the flag. */
7624 if (TREE_CODE (t
) == UNION_TYPE
7625 && TYPE_TRANSPARENT_AGGR (t
)
7626 && (!TYPE_FIELDS (t
) || TYPE_MODE (t
) != DECL_MODE (TYPE_FIELDS (t
))))
7628 TYPE_TRANSPARENT_AGGR (t
) = 0;
7629 warning_at (loc
, 0, "union cannot be made transparent");
7632 /* If this structure or union completes the type of any previous
7633 variable declaration, lay it out and output its rtl. */
7634 for (x
= C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t
));
7638 tree decl
= TREE_VALUE (x
);
7639 if (TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
)
7640 layout_array_type (TREE_TYPE (decl
));
7641 if (TREE_CODE (decl
) != TYPE_DECL
)
7643 layout_decl (decl
, 0);
7644 if (c_dialect_objc ())
7645 objc_check_decl (decl
);
7646 rest_of_decl_compilation (decl
, toplevel
, 0);
7649 C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t
)) = 0;
7651 /* Update type location to the one of the definition, instead of e.g.
7652 a forward declaration. */
7653 if (TYPE_STUB_DECL (t
))
7654 DECL_SOURCE_LOCATION (TYPE_STUB_DECL (t
)) = loc
;
7656 /* Finish debugging output for this type. */
7657 rest_of_type_compilation (t
, toplevel
);
7659 /* If we're inside a function proper, i.e. not file-scope and not still
7660 parsing parameters, then arrange for the size of a variable sized type
7662 if (building_stmt_list_p () && variably_modified_type_p (t
, NULL_TREE
))
7663 add_stmt (build_stmt (loc
,
7664 DECL_EXPR
, build_decl (loc
, TYPE_DECL
, NULL
, t
)));
7666 if (warn_cxx_compat
)
7667 warn_cxx_compat_finish_struct (fieldlist
);
7669 struct_parse_info
->struct_types
.release ();
7670 struct_parse_info
->fields
.release ();
7671 struct_parse_info
->typedefs_seen
.release ();
7672 XDELETE (struct_parse_info
);
7674 struct_parse_info
= enclosing_struct_parse_info
;
7676 /* If this struct is defined inside a struct, add it to
7679 && struct_parse_info
!= NULL
7680 && !in_sizeof
&& !in_typeof
&& !in_alignof
)
7681 struct_parse_info
->struct_types
.safe_push (t
);
7686 /* Lay out the type T, and its element type, and so on. */
7689 layout_array_type (tree t
)
7691 if (TREE_CODE (TREE_TYPE (t
)) == ARRAY_TYPE
)
7692 layout_array_type (TREE_TYPE (t
));
7696 /* Begin compiling the definition of an enumeration type.
7697 NAME is its name (or null if anonymous).
7698 LOC is the enum's location.
7699 Returns the type object, as yet incomplete.
7700 Also records info about it so that build_enumerator
7701 may be used to declare the individual values as they are read. */
7704 start_enum (location_t loc
, struct c_enum_contents
*the_enum
, tree name
)
7706 tree enumtype
= NULL_TREE
;
7707 location_t enumloc
= UNKNOWN_LOCATION
;
7709 /* If this is the real definition for a previous forward reference,
7710 fill in the contents in the same object that used to be the
7711 forward reference. */
7713 if (name
!= NULL_TREE
)
7714 enumtype
= lookup_tag (ENUMERAL_TYPE
, name
, 1, &enumloc
);
7716 if (enumtype
== 0 || TREE_CODE (enumtype
) != ENUMERAL_TYPE
)
7718 enumtype
= make_node (ENUMERAL_TYPE
);
7719 pushtag (loc
, name
, enumtype
);
7722 if (C_TYPE_BEING_DEFINED (enumtype
))
7723 error_at (loc
, "nested redefinition of %<enum %E%>", name
);
7725 C_TYPE_BEING_DEFINED (enumtype
) = 1;
7727 if (TYPE_VALUES (enumtype
) != 0)
7729 /* This enum is a named one that has been declared already. */
7730 error_at (loc
, "redeclaration of %<enum %E%>", name
);
7731 if (enumloc
!= UNKNOWN_LOCATION
)
7732 inform (enumloc
, "originally defined here");
7734 /* Completely replace its old definition.
7735 The old enumerators remain defined, however. */
7736 TYPE_VALUES (enumtype
) = 0;
7739 the_enum
->enum_next_value
= integer_zero_node
;
7740 the_enum
->enum_overflow
= 0;
7742 if (flag_short_enums
)
7743 TYPE_PACKED (enumtype
) = 1;
7745 /* FIXME: This will issue a warning for a use of a type defined
7746 within sizeof in a statement expr. This is not terribly serious
7747 as C++ doesn't permit statement exprs within sizeof anyhow. */
7748 if (warn_cxx_compat
&& (in_sizeof
|| in_typeof
|| in_alignof
))
7749 warning_at (loc
, OPT_Wc___compat
,
7750 "defining type in %qs expression is invalid in C++",
7753 : (in_typeof
? "typeof" : "alignof")));
7758 /* After processing and defining all the values of an enumeration type,
7759 install their decls in the enumeration type and finish it off.
7760 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
7761 and ATTRIBUTES are the specified attributes.
7762 Returns ENUMTYPE. */
7765 finish_enum (tree enumtype
, tree values
, tree attributes
)
7768 tree minnode
= 0, maxnode
= 0;
7769 int precision
, unsign
;
7770 bool toplevel
= (file_scope
== current_scope
);
7771 struct lang_type
*lt
;
7773 decl_attributes (&enumtype
, attributes
, (int) ATTR_FLAG_TYPE_IN_PLACE
);
7775 /* Calculate the maximum value of any enumerator in this type. */
7777 if (values
== error_mark_node
)
7778 minnode
= maxnode
= integer_zero_node
;
7781 minnode
= maxnode
= TREE_VALUE (values
);
7782 for (pair
= TREE_CHAIN (values
); pair
; pair
= TREE_CHAIN (pair
))
7784 tree value
= TREE_VALUE (pair
);
7785 if (tree_int_cst_lt (maxnode
, value
))
7787 if (tree_int_cst_lt (value
, minnode
))
7792 /* Construct the final type of this enumeration. It is the same
7793 as one of the integral types - the narrowest one that fits, except
7794 that normally we only go as narrow as int - and signed iff any of
7795 the values are negative. */
7796 unsign
= (tree_int_cst_sgn (minnode
) >= 0);
7797 precision
= MAX (tree_int_cst_min_precision (minnode
, unsign
),
7798 tree_int_cst_min_precision (maxnode
, unsign
));
7800 if (TYPE_PACKED (enumtype
) || precision
> TYPE_PRECISION (integer_type_node
))
7802 tem
= c_common_type_for_size (precision
, unsign
);
7805 warning (0, "enumeration values exceed range of largest integer");
7806 tem
= long_long_integer_type_node
;
7810 tem
= unsign
? unsigned_type_node
: integer_type_node
;
7812 TYPE_MIN_VALUE (enumtype
) = TYPE_MIN_VALUE (tem
);
7813 TYPE_MAX_VALUE (enumtype
) = TYPE_MAX_VALUE (tem
);
7814 TYPE_UNSIGNED (enumtype
) = TYPE_UNSIGNED (tem
);
7815 TYPE_SIZE (enumtype
) = 0;
7817 /* If the precision of the type was specific with an attribute and it
7818 was too small, give an error. Otherwise, use it. */
7819 if (TYPE_PRECISION (enumtype
))
7821 if (precision
> TYPE_PRECISION (enumtype
))
7822 error ("specified mode too small for enumeral values");
7825 TYPE_PRECISION (enumtype
) = TYPE_PRECISION (tem
);
7827 layout_type (enumtype
);
7829 if (values
!= error_mark_node
)
7831 /* Change the type of the enumerators to be the enum type. We
7832 need to do this irrespective of the size of the enum, for
7833 proper type checking. Replace the DECL_INITIALs of the
7834 enumerators, and the value slots of the list, with copies
7835 that have the enum type; they cannot be modified in place
7836 because they may be shared (e.g. integer_zero_node) Finally,
7837 change the purpose slots to point to the names of the decls. */
7838 for (pair
= values
; pair
; pair
= TREE_CHAIN (pair
))
7840 tree enu
= TREE_PURPOSE (pair
);
7841 tree ini
= DECL_INITIAL (enu
);
7843 TREE_TYPE (enu
) = enumtype
;
7845 /* The ISO C Standard mandates enumerators to have type int,
7846 even though the underlying type of an enum type is
7847 unspecified. However, GCC allows enumerators of any
7848 integer type as an extensions. build_enumerator()
7849 converts any enumerators that fit in an int to type int,
7850 to avoid promotions to unsigned types when comparing
7851 integers with enumerators that fit in the int range.
7852 When -pedantic is given, build_enumerator() would have
7853 already warned about those that don't fit. Here we
7854 convert the rest to the enumerator type. */
7855 if (TREE_TYPE (ini
) != integer_type_node
)
7856 ini
= convert (enumtype
, ini
);
7858 DECL_INITIAL (enu
) = ini
;
7859 TREE_PURPOSE (pair
) = DECL_NAME (enu
);
7860 TREE_VALUE (pair
) = ini
;
7863 TYPE_VALUES (enumtype
) = values
;
7866 /* Record the min/max values so that we can warn about bit-field
7867 enumerations that are too small for the values. */
7868 lt
= ggc_alloc_cleared_lang_type (sizeof (struct lang_type
));
7869 lt
->enum_min
= minnode
;
7870 lt
->enum_max
= maxnode
;
7871 TYPE_LANG_SPECIFIC (enumtype
) = lt
;
7873 /* Fix up all variant types of this enum type. */
7874 for (tem
= TYPE_MAIN_VARIANT (enumtype
); tem
; tem
= TYPE_NEXT_VARIANT (tem
))
7876 if (tem
== enumtype
)
7878 TYPE_VALUES (tem
) = TYPE_VALUES (enumtype
);
7879 TYPE_MIN_VALUE (tem
) = TYPE_MIN_VALUE (enumtype
);
7880 TYPE_MAX_VALUE (tem
) = TYPE_MAX_VALUE (enumtype
);
7881 TYPE_SIZE (tem
) = TYPE_SIZE (enumtype
);
7882 TYPE_SIZE_UNIT (tem
) = TYPE_SIZE_UNIT (enumtype
);
7883 SET_TYPE_MODE (tem
, TYPE_MODE (enumtype
));
7884 TYPE_PRECISION (tem
) = TYPE_PRECISION (enumtype
);
7885 TYPE_ALIGN (tem
) = TYPE_ALIGN (enumtype
);
7886 TYPE_USER_ALIGN (tem
) = TYPE_USER_ALIGN (enumtype
);
7887 TYPE_UNSIGNED (tem
) = TYPE_UNSIGNED (enumtype
);
7888 TYPE_LANG_SPECIFIC (tem
) = TYPE_LANG_SPECIFIC (enumtype
);
7891 /* Finish debugging output for this type. */
7892 rest_of_type_compilation (enumtype
, toplevel
);
7894 /* If this enum is defined inside a struct, add it to
7897 && struct_parse_info
!= NULL
7898 && !in_sizeof
&& !in_typeof
&& !in_alignof
)
7899 struct_parse_info
->struct_types
.safe_push (enumtype
);
7904 /* Build and install a CONST_DECL for one value of the
7905 current enumeration type (one that was begun with start_enum).
7906 DECL_LOC is the location of the enumerator.
7907 LOC is the location of the '=' operator if any, DECL_LOC otherwise.
7908 Return a tree-list containing the CONST_DECL and its value.
7909 Assignment of sequential values by default is handled here. */
7912 build_enumerator (location_t decl_loc
, location_t loc
,
7913 struct c_enum_contents
*the_enum
, tree name
, tree value
)
7917 /* Validate and default VALUE. */
7921 /* Don't issue more errors for error_mark_node (i.e. an
7922 undeclared identifier) - just ignore the value expression. */
7923 if (value
== error_mark_node
)
7925 else if (!INTEGRAL_TYPE_P (TREE_TYPE (value
)))
7927 error_at (loc
, "enumerator value for %qE is not an integer constant",
7933 if (TREE_CODE (value
) != INTEGER_CST
)
7935 value
= c_fully_fold (value
, false, NULL
);
7936 if (TREE_CODE (value
) == INTEGER_CST
)
7937 pedwarn (loc
, OPT_Wpedantic
,
7938 "enumerator value for %qE is not an integer "
7939 "constant expression", name
);
7941 if (TREE_CODE (value
) != INTEGER_CST
)
7943 error ("enumerator value for %qE is not an integer constant",
7949 value
= default_conversion (value
);
7950 constant_expression_warning (value
);
7955 /* Default based on previous value. */
7956 /* It should no longer be possible to have NON_LVALUE_EXPR
7960 value
= the_enum
->enum_next_value
;
7961 if (the_enum
->enum_overflow
)
7962 error_at (loc
, "overflow in enumeration values");
7964 /* Even though the underlying type of an enum is unspecified, the
7965 type of enumeration constants is explicitly defined as int
7966 (6.4.4.3/2 in the C99 Standard). GCC allows any integer type as
7968 else if (!int_fits_type_p (value
, integer_type_node
))
7969 pedwarn (loc
, OPT_Wpedantic
,
7970 "ISO C restricts enumerator values to range of %<int%>");
7972 /* The ISO C Standard mandates enumerators to have type int, even
7973 though the underlying type of an enum type is unspecified.
7974 However, GCC allows enumerators of any integer type as an
7975 extensions. Here we convert any enumerators that fit in an int
7976 to type int, to avoid promotions to unsigned types when comparing
7977 integers with enumerators that fit in the int range. When
7978 -pedantic is given, we would have already warned about those that
7979 don't fit. We have to do this here rather than in finish_enum
7980 because this value may be used to define more enumerators. */
7981 if (int_fits_type_p (value
, integer_type_node
))
7982 value
= convert (integer_type_node
, value
);
7984 /* Set basis for default for next value. */
7985 the_enum
->enum_next_value
7986 = build_binary_op (EXPR_LOC_OR_LOC (value
, input_location
),
7987 PLUS_EXPR
, value
, integer_one_node
, 0);
7988 the_enum
->enum_overflow
= tree_int_cst_lt (the_enum
->enum_next_value
, value
);
7990 /* Now create a declaration for the enum value name. */
7992 type
= TREE_TYPE (value
);
7993 type
= c_common_type_for_size (MAX (TYPE_PRECISION (type
),
7994 TYPE_PRECISION (integer_type_node
)),
7995 (TYPE_PRECISION (type
)
7996 >= TYPE_PRECISION (integer_type_node
)
7997 && TYPE_UNSIGNED (type
)));
7999 decl
= build_decl (decl_loc
, CONST_DECL
, name
, type
);
8000 DECL_INITIAL (decl
) = convert (type
, value
);
8003 return tree_cons (decl
, value
, NULL_TREE
);
8007 /* Create the FUNCTION_DECL for a function definition.
8008 DECLSPECS, DECLARATOR and ATTRIBUTES are the parts of
8009 the declaration; they describe the function's name and the type it returns,
8010 but twisted together in a fashion that parallels the syntax of C.
8012 This function creates a binding context for the function body
8013 as well as setting up the FUNCTION_DECL in current_function_decl.
8015 Returns 1 on success. If the DECLARATOR is not suitable for a function
8016 (it defines a datum instead), we return 0, which tells
8017 yyparse to report a parse error. */
8020 start_function (struct c_declspecs
*declspecs
, struct c_declarator
*declarator
,
8023 tree decl1
, old_decl
;
8024 tree restype
, resdecl
;
8027 current_function_returns_value
= 0; /* Assume, until we see it does. */
8028 current_function_returns_null
= 0;
8029 current_function_returns_abnormally
= 0;
8030 warn_about_return_type
= 0;
8031 c_switch_stack
= NULL
;
8033 /* Indicate no valid break/continue context by setting these variables
8034 to some non-null, non-label value. We'll notice and emit the proper
8035 error message in c_finish_bc_stmt. */
8036 c_break_label
= c_cont_label
= size_zero_node
;
8038 decl1
= grokdeclarator (declarator
, declspecs
, FUNCDEF
, true, NULL
,
8039 &attributes
, NULL
, NULL
, DEPRECATED_NORMAL
);
8041 /* If the declarator is not suitable for a function definition,
8042 cause a syntax error. */
8044 || TREE_CODE (decl1
) != FUNCTION_DECL
)
8047 loc
= DECL_SOURCE_LOCATION (decl1
);
8049 c_decl_attributes (&decl1
, attributes
, 0);
8051 if (DECL_DECLARED_INLINE_P (decl1
)
8052 && DECL_UNINLINABLE (decl1
)
8053 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl1
)))
8054 warning_at (loc
, OPT_Wattributes
,
8055 "inline function %qD given attribute noinline",
8058 /* Handle gnu_inline attribute. */
8059 if (declspecs
->inline_p
8060 && !flag_gnu89_inline
8061 && TREE_CODE (decl1
) == FUNCTION_DECL
8062 && (lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl1
))
8063 || current_function_decl
))
8065 if (declspecs
->storage_class
!= csc_static
)
8066 DECL_EXTERNAL (decl1
) = !DECL_EXTERNAL (decl1
);
8069 announce_function (decl1
);
8071 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl1
))))
8073 error_at (loc
, "return type is an incomplete type");
8074 /* Make it return void instead. */
8076 = build_function_type (void_type_node
,
8077 TYPE_ARG_TYPES (TREE_TYPE (decl1
)));
8080 if (warn_about_return_type
)
8081 pedwarn_c99 (loc
, flag_isoc99
? 0
8082 : (warn_return_type
? OPT_Wreturn_type
: OPT_Wimplicit_int
),
8083 "return type defaults to %<int%>");
8085 /* Make the init_value nonzero so pushdecl knows this is not tentative.
8086 error_mark_node is replaced below (in pop_scope) with the BLOCK. */
8087 DECL_INITIAL (decl1
) = error_mark_node
;
8089 /* A nested function is not global. */
8090 if (current_function_decl
!= 0)
8091 TREE_PUBLIC (decl1
) = 0;
8093 /* If this definition isn't a prototype and we had a prototype declaration
8094 before, copy the arg type info from that prototype. */
8095 old_decl
= lookup_name_in_scope (DECL_NAME (decl1
), current_scope
);
8096 if (old_decl
&& TREE_CODE (old_decl
) != FUNCTION_DECL
)
8098 current_function_prototype_locus
= UNKNOWN_LOCATION
;
8099 current_function_prototype_built_in
= false;
8100 current_function_prototype_arg_types
= NULL_TREE
;
8101 if (!prototype_p (TREE_TYPE (decl1
)))
8103 if (old_decl
!= 0 && TREE_CODE (TREE_TYPE (old_decl
)) == FUNCTION_TYPE
8104 && comptypes (TREE_TYPE (TREE_TYPE (decl1
)),
8105 TREE_TYPE (TREE_TYPE (old_decl
))))
8107 TREE_TYPE (decl1
) = composite_type (TREE_TYPE (old_decl
),
8109 current_function_prototype_locus
= DECL_SOURCE_LOCATION (old_decl
);
8110 current_function_prototype_built_in
8111 = C_DECL_BUILTIN_PROTOTYPE (old_decl
);
8112 current_function_prototype_arg_types
8113 = TYPE_ARG_TYPES (TREE_TYPE (decl1
));
8115 if (TREE_PUBLIC (decl1
))
8117 /* If there is an external prototype declaration of this
8118 function, record its location but do not copy information
8119 to this decl. This may be an invisible declaration
8120 (built-in or in a scope which has finished) or simply
8121 have more refined argument types than any declaration
8123 struct c_binding
*b
;
8124 for (b
= I_SYMBOL_BINDING (DECL_NAME (decl1
)); b
; b
= b
->shadowed
)
8125 if (B_IN_SCOPE (b
, external_scope
))
8129 tree ext_decl
, ext_type
;
8131 ext_type
= b
->u
.type
? b
->u
.type
: TREE_TYPE (ext_decl
);
8132 if (TREE_CODE (ext_type
) == FUNCTION_TYPE
8133 && comptypes (TREE_TYPE (TREE_TYPE (decl1
)),
8134 TREE_TYPE (ext_type
)))
8136 current_function_prototype_locus
8137 = DECL_SOURCE_LOCATION (ext_decl
);
8138 current_function_prototype_built_in
8139 = C_DECL_BUILTIN_PROTOTYPE (ext_decl
);
8140 current_function_prototype_arg_types
8141 = TYPE_ARG_TYPES (ext_type
);
8147 /* Optionally warn of old-fashioned def with no previous prototype. */
8148 if (warn_strict_prototypes
8149 && old_decl
!= error_mark_node
8150 && !prototype_p (TREE_TYPE (decl1
))
8151 && C_DECL_ISNT_PROTOTYPE (old_decl
))
8152 warning_at (loc
, OPT_Wstrict_prototypes
,
8153 "function declaration isn%'t a prototype");
8154 /* Optionally warn of any global def with no previous prototype. */
8155 else if (warn_missing_prototypes
8156 && old_decl
!= error_mark_node
8157 && TREE_PUBLIC (decl1
)
8158 && !MAIN_NAME_P (DECL_NAME (decl1
))
8159 && C_DECL_ISNT_PROTOTYPE (old_decl
)
8160 && !DECL_DECLARED_INLINE_P (decl1
))
8161 warning_at (loc
, OPT_Wmissing_prototypes
,
8162 "no previous prototype for %qD", decl1
);
8163 /* Optionally warn of any def with no previous prototype
8164 if the function has already been used. */
8165 else if (warn_missing_prototypes
8167 && old_decl
!= error_mark_node
8168 && TREE_USED (old_decl
)
8169 && !prototype_p (TREE_TYPE (old_decl
)))
8170 warning_at (loc
, OPT_Wmissing_prototypes
,
8171 "%qD was used with no prototype before its definition", decl1
);
8172 /* Optionally warn of any global def with no previous declaration. */
8173 else if (warn_missing_declarations
8174 && TREE_PUBLIC (decl1
)
8176 && !MAIN_NAME_P (DECL_NAME (decl1
)))
8177 warning_at (loc
, OPT_Wmissing_declarations
,
8178 "no previous declaration for %qD",
8180 /* Optionally warn of any def with no previous declaration
8181 if the function has already been used. */
8182 else if (warn_missing_declarations
8184 && old_decl
!= error_mark_node
8185 && TREE_USED (old_decl
)
8186 && C_DECL_IMPLICIT (old_decl
))
8187 warning_at (loc
, OPT_Wmissing_declarations
,
8188 "%qD was used with no declaration before its definition", decl1
);
8190 /* This function exists in static storage.
8191 (This does not mean `static' in the C sense!) */
8192 TREE_STATIC (decl1
) = 1;
8194 /* This is the earliest point at which we might know the assembler
8195 name of the function. Thus, if it's set before this, die horribly. */
8196 gcc_assert (!DECL_ASSEMBLER_NAME_SET_P (decl1
));
8198 /* If #pragma weak was used, mark the decl weak now. */
8199 if (current_scope
== file_scope
)
8200 maybe_apply_pragma_weak (decl1
);
8202 /* Warn for unlikely, improbable, or stupid declarations of `main'. */
8203 if (warn_main
&& MAIN_NAME_P (DECL_NAME (decl1
)))
8205 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1
)))
8206 != integer_type_node
)
8207 pedwarn (loc
, OPT_Wmain
, "return type of %qD is not %<int%>", decl1
);
8209 check_main_parameter_types (decl1
);
8211 if (!TREE_PUBLIC (decl1
))
8212 pedwarn (loc
, OPT_Wmain
,
8213 "%qD is normally a non-static function", decl1
);
8216 /* Record the decl so that the function name is defined.
8217 If we already have a decl for this name, and it is a FUNCTION_DECL,
8218 use the old decl. */
8220 current_function_decl
= pushdecl (decl1
);
8223 declare_parm_level ();
8225 restype
= TREE_TYPE (TREE_TYPE (current_function_decl
));
8226 resdecl
= build_decl (loc
, RESULT_DECL
, NULL_TREE
, restype
);
8227 DECL_ARTIFICIAL (resdecl
) = 1;
8228 DECL_IGNORED_P (resdecl
) = 1;
8229 DECL_RESULT (current_function_decl
) = resdecl
;
8231 start_fname_decls ();
8236 /* Subroutine of store_parm_decls which handles new-style function
8237 definitions (prototype format). The parms already have decls, so we
8238 need only record them as in effect and complain if any redundant
8239 old-style parm decls were written. */
8241 store_parm_decls_newstyle (tree fndecl
, const struct c_arg_info
*arg_info
)
8247 if (current_scope
->bindings
)
8249 error_at (DECL_SOURCE_LOCATION (fndecl
),
8250 "old-style parameter declarations in prototyped "
8251 "function definition");
8253 /* Get rid of the old-style declarations. */
8257 /* Don't issue this warning for nested functions, and don't issue this
8258 warning if we got here because ARG_INFO_TYPES was error_mark_node
8259 (this happens when a function definition has just an ellipsis in
8260 its parameter list). */
8261 else if (!in_system_header_at (input_location
)
8262 && !current_function_scope
8263 && arg_info
->types
!= error_mark_node
)
8264 warning_at (DECL_SOURCE_LOCATION (fndecl
), OPT_Wtraditional
,
8265 "traditional C rejects ISO C style function definitions");
8267 /* Now make all the parameter declarations visible in the function body.
8268 We can bypass most of the grunt work of pushdecl. */
8269 for (decl
= arg_info
->parms
; decl
; decl
= DECL_CHAIN (decl
))
8271 DECL_CONTEXT (decl
) = current_function_decl
;
8272 if (DECL_NAME (decl
))
8274 bind (DECL_NAME (decl
), decl
, current_scope
,
8275 /*invisible=*/false, /*nested=*/false,
8277 if (!TREE_USED (decl
))
8278 warn_if_shadowing (decl
);
8281 error_at (DECL_SOURCE_LOCATION (decl
), "parameter name omitted");
8284 /* Record the parameter list in the function declaration. */
8285 DECL_ARGUMENTS (fndecl
) = arg_info
->parms
;
8287 /* Now make all the ancillary declarations visible, likewise. */
8288 for (decl
= arg_info
->others
; decl
; decl
= DECL_CHAIN (decl
))
8290 DECL_CONTEXT (decl
) = current_function_decl
;
8291 if (DECL_NAME (decl
))
8292 bind (DECL_NAME (decl
), decl
, current_scope
,
8293 /*invisible=*/false,
8294 /*nested=*/(TREE_CODE (decl
) == FUNCTION_DECL
),
8298 /* And all the tag declarations. */
8299 FOR_EACH_VEC_SAFE_ELT_REVERSE (arg_info
->tags
, ix
, tag
)
8301 bind (tag
->id
, tag
->type
, current_scope
,
8302 /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION
);
8305 /* Subroutine of store_parm_decls which handles old-style function
8306 definitions (separate parameter list and declarations). */
8309 store_parm_decls_oldstyle (tree fndecl
, const struct c_arg_info
*arg_info
)
8311 struct c_binding
*b
;
8312 tree parm
, decl
, last
;
8313 tree parmids
= arg_info
->parms
;
8314 struct pointer_set_t
*seen_args
= pointer_set_create ();
8316 if (!in_system_header_at (input_location
))
8317 warning_at (DECL_SOURCE_LOCATION (fndecl
),
8318 OPT_Wold_style_definition
, "old-style function definition");
8320 /* Match each formal parameter name with its declaration. Save each
8321 decl in the appropriate TREE_PURPOSE slot of the parmids chain. */
8322 for (parm
= parmids
; parm
; parm
= TREE_CHAIN (parm
))
8324 if (TREE_VALUE (parm
) == 0)
8326 error_at (DECL_SOURCE_LOCATION (fndecl
),
8327 "parameter name missing from parameter list");
8328 TREE_PURPOSE (parm
) = 0;
8332 b
= I_SYMBOL_BINDING (TREE_VALUE (parm
));
8333 if (b
&& B_IN_CURRENT_SCOPE (b
))
8336 /* Skip erroneous parameters. */
8337 if (decl
== error_mark_node
)
8339 /* If we got something other than a PARM_DECL it is an error. */
8340 if (TREE_CODE (decl
) != PARM_DECL
)
8341 error_at (DECL_SOURCE_LOCATION (decl
),
8342 "%qD declared as a non-parameter", decl
);
8343 /* If the declaration is already marked, we have a duplicate
8344 name. Complain and ignore the duplicate. */
8345 else if (pointer_set_contains (seen_args
, decl
))
8347 error_at (DECL_SOURCE_LOCATION (decl
),
8348 "multiple parameters named %qD", decl
);
8349 TREE_PURPOSE (parm
) = 0;
8352 /* If the declaration says "void", complain and turn it into
8354 else if (VOID_TYPE_P (TREE_TYPE (decl
)))
8356 error_at (DECL_SOURCE_LOCATION (decl
),
8357 "parameter %qD declared with void type", decl
);
8358 TREE_TYPE (decl
) = integer_type_node
;
8359 DECL_ARG_TYPE (decl
) = integer_type_node
;
8360 layout_decl (decl
, 0);
8362 warn_if_shadowing (decl
);
8364 /* If no declaration found, default to int. */
8367 /* FIXME diagnostics: This should be the location of the argument,
8368 not the FNDECL. E.g., for an old-style declaration
8370 int f10(v) { blah; }
8372 We should use the location of the V, not the F10.
8373 Unfortunately, the V is an IDENTIFIER_NODE which has no
8374 location. In the future we need locations for c_arg_info
8377 See gcc.dg/Wshadow-3.c for an example of this problem. */
8378 decl
= build_decl (DECL_SOURCE_LOCATION (fndecl
),
8379 PARM_DECL
, TREE_VALUE (parm
), integer_type_node
);
8380 DECL_ARG_TYPE (decl
) = TREE_TYPE (decl
);
8382 warn_if_shadowing (decl
);
8385 pedwarn (DECL_SOURCE_LOCATION (decl
),
8386 0, "type of %qD defaults to %<int%>", decl
);
8388 warning_at (DECL_SOURCE_LOCATION (decl
),
8389 OPT_Wmissing_parameter_type
,
8390 "type of %qD defaults to %<int%>", decl
);
8393 TREE_PURPOSE (parm
) = decl
;
8394 pointer_set_insert (seen_args
, decl
);
8397 /* Now examine the parms chain for incomplete declarations
8398 and declarations with no corresponding names. */
8400 for (b
= current_scope
->bindings
; b
; b
= b
->prev
)
8403 if (TREE_CODE (parm
) != PARM_DECL
)
8406 if (TREE_TYPE (parm
) != error_mark_node
8407 && !COMPLETE_TYPE_P (TREE_TYPE (parm
)))
8409 error_at (DECL_SOURCE_LOCATION (parm
),
8410 "parameter %qD has incomplete type", parm
);
8411 TREE_TYPE (parm
) = error_mark_node
;
8414 if (!pointer_set_contains (seen_args
, parm
))
8416 error_at (DECL_SOURCE_LOCATION (parm
),
8417 "declaration for parameter %qD but no such parameter",
8420 /* Pretend the parameter was not missing.
8421 This gets us to a standard state and minimizes
8422 further error messages. */
8423 parmids
= chainon (parmids
, tree_cons (parm
, 0, 0));
8427 /* Chain the declarations together in the order of the list of
8428 names. Store that chain in the function decl, replacing the
8429 list of names. Update the current scope to match. */
8430 DECL_ARGUMENTS (fndecl
) = 0;
8432 for (parm
= parmids
; parm
; parm
= TREE_CHAIN (parm
))
8433 if (TREE_PURPOSE (parm
))
8435 if (parm
&& TREE_PURPOSE (parm
))
8437 last
= TREE_PURPOSE (parm
);
8438 DECL_ARGUMENTS (fndecl
) = last
;
8440 for (parm
= TREE_CHAIN (parm
); parm
; parm
= TREE_CHAIN (parm
))
8441 if (TREE_PURPOSE (parm
))
8443 DECL_CHAIN (last
) = TREE_PURPOSE (parm
);
8444 last
= TREE_PURPOSE (parm
);
8446 DECL_CHAIN (last
) = 0;
8449 pointer_set_destroy (seen_args
);
8451 /* If there was a previous prototype,
8452 set the DECL_ARG_TYPE of each argument according to
8453 the type previously specified, and report any mismatches. */
8455 if (current_function_prototype_arg_types
)
8458 for (parm
= DECL_ARGUMENTS (fndecl
),
8459 type
= current_function_prototype_arg_types
;
8460 parm
|| (type
&& TREE_VALUE (type
) != error_mark_node
8461 && (TYPE_MAIN_VARIANT (TREE_VALUE (type
)) != void_type_node
));
8462 parm
= DECL_CHAIN (parm
), type
= TREE_CHAIN (type
))
8464 if (parm
== 0 || type
== 0
8465 || TYPE_MAIN_VARIANT (TREE_VALUE (type
)) == void_type_node
)
8467 if (current_function_prototype_built_in
)
8468 warning_at (DECL_SOURCE_LOCATION (fndecl
),
8469 0, "number of arguments doesn%'t match "
8470 "built-in prototype");
8473 /* FIXME diagnostics: This should be the location of
8474 FNDECL, but there is bug when a prototype is
8475 declared inside function context, but defined
8476 outside of it (e.g., gcc.dg/pr15698-2.c). In
8477 which case FNDECL gets the location of the
8478 prototype, not the definition. */
8479 error_at (input_location
,
8480 "number of arguments doesn%'t match prototype");
8482 error_at (current_function_prototype_locus
,
8483 "prototype declaration");
8487 /* Type for passing arg must be consistent with that
8488 declared for the arg. ISO C says we take the unqualified
8489 type for parameters declared with qualified type. */
8490 if (TREE_TYPE (parm
) != error_mark_node
8491 && TREE_TYPE (type
) != error_mark_node
8492 && ((TYPE_ATOMIC (DECL_ARG_TYPE (parm
))
8493 != TYPE_ATOMIC (TREE_VALUE (type
)))
8494 || !comptypes (TYPE_MAIN_VARIANT (DECL_ARG_TYPE (parm
)),
8495 TYPE_MAIN_VARIANT (TREE_VALUE (type
)))))
8497 if ((TYPE_ATOMIC (DECL_ARG_TYPE (parm
))
8498 == TYPE_ATOMIC (TREE_VALUE (type
)))
8499 && (TYPE_MAIN_VARIANT (TREE_TYPE (parm
))
8500 == TYPE_MAIN_VARIANT (TREE_VALUE (type
))))
8502 /* Adjust argument to match prototype. E.g. a previous
8503 `int foo(float);' prototype causes
8504 `int foo(x) float x; {...}' to be treated like
8505 `int foo(float x) {...}'. This is particularly
8506 useful for argument types like uid_t. */
8507 DECL_ARG_TYPE (parm
) = TREE_TYPE (parm
);
8509 if (targetm
.calls
.promote_prototypes (TREE_TYPE (current_function_decl
))
8510 && INTEGRAL_TYPE_P (TREE_TYPE (parm
))
8511 && TYPE_PRECISION (TREE_TYPE (parm
))
8512 < TYPE_PRECISION (integer_type_node
))
8513 DECL_ARG_TYPE (parm
)
8514 = c_type_promotes_to (TREE_TYPE (parm
));
8516 /* ??? Is it possible to get here with a
8517 built-in prototype or will it always have
8518 been diagnosed as conflicting with an
8519 old-style definition and discarded? */
8520 if (current_function_prototype_built_in
)
8521 warning_at (DECL_SOURCE_LOCATION (parm
),
8522 OPT_Wpedantic
, "promoted argument %qD "
8523 "doesn%'t match built-in prototype", parm
);
8526 pedwarn (DECL_SOURCE_LOCATION (parm
),
8527 OPT_Wpedantic
, "promoted argument %qD "
8528 "doesn%'t match prototype", parm
);
8529 pedwarn (current_function_prototype_locus
, OPT_Wpedantic
,
8530 "prototype declaration");
8535 if (current_function_prototype_built_in
)
8536 warning_at (DECL_SOURCE_LOCATION (parm
),
8537 0, "argument %qD doesn%'t match "
8538 "built-in prototype", parm
);
8541 error_at (DECL_SOURCE_LOCATION (parm
),
8542 "argument %qD doesn%'t match prototype", parm
);
8543 error_at (current_function_prototype_locus
,
8544 "prototype declaration");
8549 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl
)) = 0;
8552 /* Otherwise, create a prototype that would match. */
8556 tree actual
= 0, last
= 0, type
;
8558 for (parm
= DECL_ARGUMENTS (fndecl
); parm
; parm
= DECL_CHAIN (parm
))
8560 type
= tree_cons (NULL_TREE
, DECL_ARG_TYPE (parm
), NULL_TREE
);
8562 TREE_CHAIN (last
) = type
;
8567 type
= tree_cons (NULL_TREE
, void_type_node
, NULL_TREE
);
8569 TREE_CHAIN (last
) = type
;
8573 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
8574 of the type of this function, but we need to avoid having this
8575 affect the types of other similarly-typed functions, so we must
8576 first force the generation of an identical (but separate) type
8577 node for the relevant function type. The new node we create
8578 will be a variant of the main variant of the original function
8581 TREE_TYPE (fndecl
) = build_variant_type_copy (TREE_TYPE (fndecl
));
8583 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl
)) = actual
;
8587 /* Store parameter declarations passed in ARG_INFO into the current
8588 function declaration. */
8591 store_parm_decls_from (struct c_arg_info
*arg_info
)
8593 current_function_arg_info
= arg_info
;
8594 store_parm_decls ();
8597 /* Store the parameter declarations into the current function declaration.
8598 This is called after parsing the parameter declarations, before
8599 digesting the body of the function.
8601 For an old-style definition, construct a prototype out of the old-style
8602 parameter declarations and inject it into the function's type. */
8605 store_parm_decls (void)
8607 tree fndecl
= current_function_decl
;
8610 /* The argument information block for FNDECL. */
8611 struct c_arg_info
*arg_info
= current_function_arg_info
;
8612 current_function_arg_info
= 0;
8614 /* True if this definition is written with a prototype. Note:
8615 despite C99 6.7.5.3p14, we can *not* treat an empty argument
8616 list in a function definition as equivalent to (void) -- an
8617 empty argument list specifies the function has no parameters,
8618 but only (void) sets up a prototype for future calls. */
8619 proto
= arg_info
->types
!= 0;
8622 store_parm_decls_newstyle (fndecl
, arg_info
);
8624 store_parm_decls_oldstyle (fndecl
, arg_info
);
8626 /* The next call to push_scope will be a function body. */
8628 next_is_function_body
= true;
8630 /* Write a record describing this function definition to the prototypes
8631 file (if requested). */
8633 gen_aux_info_record (fndecl
, 1, 0, proto
);
8635 /* Initialize the RTL code for the function. */
8636 allocate_struct_function (fndecl
, false);
8638 if (warn_unused_local_typedefs
)
8639 cfun
->language
= ggc_alloc_cleared_language_function ();
8641 /* Begin the statement tree for this function. */
8642 DECL_SAVED_TREE (fndecl
) = push_stmt_list ();
8644 /* ??? Insert the contents of the pending sizes list into the function
8645 to be evaluated. The only reason left to have this is
8646 void foo(int n, int array[n++])
8647 because we throw away the array type in favor of a pointer type, and
8648 thus won't naturally see the SAVE_EXPR containing the increment. All
8649 other pending sizes would be handled by gimplify_parameters. */
8650 if (arg_info
->pending_sizes
)
8651 add_stmt (arg_info
->pending_sizes
);
8654 /* Store PARM_DECLs in PARMS into scope temporarily. Used for
8655 c_finish_omp_declare_simd for function prototypes. No diagnostics
8659 temp_store_parm_decls (tree fndecl
, tree parms
)
8662 for (tree p
= parms
; p
; p
= DECL_CHAIN (p
))
8664 DECL_CONTEXT (p
) = fndecl
;
8666 bind (DECL_NAME (p
), p
, current_scope
,
8667 /*invisible=*/false, /*nested=*/false,
8672 /* Undo what temp_store_parm_decls did. */
8675 temp_pop_parm_decls (void)
8677 /* Clear all bindings in this temporary scope, so that
8678 pop_scope doesn't create a BLOCK. */
8679 struct c_binding
*b
= current_scope
->bindings
;
8680 current_scope
->bindings
= NULL
;
8681 for (; b
; b
= free_binding_and_advance (b
))
8683 gcc_assert (TREE_CODE (b
->decl
) == PARM_DECL
);
8684 gcc_assert (I_SYMBOL_BINDING (b
->id
) == b
);
8685 I_SYMBOL_BINDING (b
->id
) = b
->shadowed
;
8686 if (b
->shadowed
&& b
->shadowed
->u
.type
)
8687 TREE_TYPE (b
->shadowed
->decl
) = b
->shadowed
->u
.type
;
8693 /* Finish up a function declaration and compile that function
8694 all the way to assembler language output. Then free the storage
8695 for the function definition.
8697 This is called after parsing the body of the function definition. */
8700 finish_function (void)
8702 tree fndecl
= current_function_decl
;
8704 if (c_dialect_objc ())
8705 objc_finish_function ();
8707 if (TREE_CODE (fndecl
) == FUNCTION_DECL
8708 && targetm
.calls
.promote_prototypes (TREE_TYPE (fndecl
)))
8710 tree args
= DECL_ARGUMENTS (fndecl
);
8711 for (; args
; args
= DECL_CHAIN (args
))
8713 tree type
= TREE_TYPE (args
);
8714 if (INTEGRAL_TYPE_P (type
)
8715 && TYPE_PRECISION (type
) < TYPE_PRECISION (integer_type_node
))
8716 DECL_ARG_TYPE (args
) = c_type_promotes_to (type
);
8720 if (DECL_INITIAL (fndecl
) && DECL_INITIAL (fndecl
) != error_mark_node
)
8721 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl
)) = fndecl
;
8723 /* Must mark the RESULT_DECL as being in this function. */
8725 if (DECL_RESULT (fndecl
) && DECL_RESULT (fndecl
) != error_mark_node
)
8726 DECL_CONTEXT (DECL_RESULT (fndecl
)) = fndecl
;
8728 if (MAIN_NAME_P (DECL_NAME (fndecl
)) && flag_hosted
8729 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl
)))
8730 == integer_type_node
&& flag_isoc99
)
8732 /* Hack. We don't want the middle-end to warn that this return
8733 is unreachable, so we mark its location as special. Using
8734 UNKNOWN_LOCATION has the problem that it gets clobbered in
8735 annotate_one_with_locus. A cleaner solution might be to
8736 ensure ! should_carry_locus_p (stmt), but that needs a flag.
8738 c_finish_return (BUILTINS_LOCATION
, integer_zero_node
, NULL_TREE
);
8741 /* Tie off the statement tree for this function. */
8742 DECL_SAVED_TREE (fndecl
) = pop_stmt_list (DECL_SAVED_TREE (fndecl
));
8744 /* If the function has _Cilk_spawn in front of a function call inside it
8745 i.e. it is a spawning function, then add the appropriate Cilk plus
8746 functions inside. */
8747 if (fn_contains_cilk_spawn_p (cfun
))
8748 cfun
->cilk_frame_decl
= insert_cilk_frame (fndecl
);
8750 finish_fname_decls ();
8752 /* Complain if there's just no return statement. */
8753 if (warn_return_type
8754 && TREE_CODE (TREE_TYPE (TREE_TYPE (fndecl
))) != VOID_TYPE
8755 && !current_function_returns_value
&& !current_function_returns_null
8756 /* Don't complain if we are no-return. */
8757 && !current_function_returns_abnormally
8758 /* Don't complain if we are declared noreturn. */
8759 && !TREE_THIS_VOLATILE (fndecl
)
8760 /* Don't warn for main(). */
8761 && !MAIN_NAME_P (DECL_NAME (fndecl
))
8762 /* Or if they didn't actually specify a return type. */
8763 && !C_FUNCTION_IMPLICIT_INT (fndecl
)
8764 /* Normally, with -Wreturn-type, flow will complain, but we might
8765 optimize out static functions. */
8766 && !TREE_PUBLIC (fndecl
))
8768 warning (OPT_Wreturn_type
,
8769 "no return statement in function returning non-void");
8770 TREE_NO_WARNING (fndecl
) = 1;
8773 /* Complain about parameters that are only set, but never otherwise used. */
8774 if (warn_unused_but_set_parameter
)
8778 for (decl
= DECL_ARGUMENTS (fndecl
);
8780 decl
= DECL_CHAIN (decl
))
8781 if (TREE_USED (decl
)
8782 && TREE_CODE (decl
) == PARM_DECL
8783 && !DECL_READ_P (decl
)
8785 && !DECL_ARTIFICIAL (decl
)
8786 && !TREE_NO_WARNING (decl
))
8787 warning_at (DECL_SOURCE_LOCATION (decl
),
8788 OPT_Wunused_but_set_parameter
,
8789 "parameter %qD set but not used", decl
);
8792 /* Complain about locally defined typedefs that are not used in this
8794 maybe_warn_unused_local_typedefs ();
8796 /* Store the end of the function, so that we get good line number
8797 info for the epilogue. */
8798 cfun
->function_end_locus
= input_location
;
8800 /* Finalize the ELF visibility for the function. */
8801 c_determine_visibility (fndecl
);
8803 /* For GNU C extern inline functions disregard inline limits. */
8804 if (DECL_EXTERNAL (fndecl
)
8805 && DECL_DECLARED_INLINE_P (fndecl
))
8806 DECL_DISREGARD_INLINE_LIMITS (fndecl
) = 1;
8808 /* Genericize before inlining. Delay genericizing nested functions
8809 until their parent function is genericized. Since finalizing
8810 requires GENERIC, delay that as well. */
8812 if (DECL_INITIAL (fndecl
) && DECL_INITIAL (fndecl
) != error_mark_node
8813 && !undef_nested_function
)
8815 if (!decl_function_context (fndecl
))
8817 invoke_plugin_callbacks (PLUGIN_PRE_GENERICIZE
, fndecl
);
8818 c_genericize (fndecl
);
8820 /* ??? Objc emits functions after finalizing the compilation unit.
8821 This should be cleaned up later and this conditional removed. */
8822 if (cgraph_global_info_ready
)
8824 cgraph_add_new_function (fndecl
, false);
8827 cgraph_finalize_function (fndecl
, false);
8831 /* Register this function with cgraph just far enough to get it
8832 added to our parent's nested function list. Handy, since the
8833 C front end doesn't have such a list. */
8834 (void) cgraph_get_create_node (fndecl
);
8838 if (!decl_function_context (fndecl
))
8839 undef_nested_function
= false;
8841 if (cfun
->language
!= NULL
)
8843 ggc_free (cfun
->language
);
8844 cfun
->language
= NULL
;
8847 /* We're leaving the context of this function, so zap cfun.
8848 It's still in DECL_STRUCT_FUNCTION, and we'll restore it in
8849 tree_rest_of_compilation. */
8851 current_function_decl
= NULL
;
8854 /* Check the declarations given in a for-loop for satisfying the C99
8855 constraints. If exactly one such decl is found, return it. LOC is
8856 the location of the opening parenthesis of the for loop. The last
8857 parameter allows you to control the "for loop initial declarations
8858 are only allowed in C99 mode". Normally, you should pass
8859 flag_isoc99 as that parameter. But in some cases (Objective-C
8860 foreach loop, for example) we want to run the checks in this
8861 function even if not in C99 mode, so we allow the caller to turn
8862 off the error about not being in C99 mode.
8866 check_for_loop_decls (location_t loc
, bool turn_off_iso_c99_error
)
8868 struct c_binding
*b
;
8869 tree one_decl
= NULL_TREE
;
8872 if (!turn_off_iso_c99_error
)
8874 static bool hint
= true;
8875 /* If we get here, declarations have been used in a for loop without
8876 the C99 for loop scope. This doesn't make much sense, so don't
8878 error_at (loc
, "%<for%> loop initial declarations "
8879 "are only allowed in C99 or C11 mode");
8883 "use option -std=c99, -std=gnu99, -std=c11 or -std=gnu11 "
8884 "to compile your code");
8889 /* C99 subclause 6.8.5 paragraph 3:
8891 [#3] The declaration part of a for statement shall only
8892 declare identifiers for objects having storage class auto or
8895 It isn't clear whether, in this sentence, "identifiers" binds to
8896 "shall only declare" or to "objects" - that is, whether all identifiers
8897 declared must be identifiers for objects, or whether the restriction
8898 only applies to those that are. (A question on this in comp.std.c
8899 in November 2000 received no answer.) We implement the strictest
8900 interpretation, to avoid creating an extension which later causes
8903 for (b
= current_scope
->bindings
; b
; b
= b
->prev
)
8906 tree decl
= b
->decl
;
8911 switch (TREE_CODE (decl
))
8915 location_t decl_loc
= DECL_SOURCE_LOCATION (decl
);
8916 if (TREE_STATIC (decl
))
8918 "declaration of static variable %qD in %<for%> loop "
8919 "initial declaration", decl
);
8920 else if (DECL_EXTERNAL (decl
))
8922 "declaration of %<extern%> variable %qD in %<for%> loop "
8923 "initial declaration", decl
);
8929 "%<struct %E%> declared in %<for%> loop initial "
8934 "%<union %E%> declared in %<for%> loop initial declaration",
8938 error_at (loc
, "%<enum %E%> declared in %<for%> loop "
8939 "initial declaration", id
);
8942 error_at (loc
, "declaration of non-variable "
8943 "%qD in %<for%> loop initial declaration", decl
);
8950 return n_decls
== 1 ? one_decl
: NULL_TREE
;
8953 /* Save and reinitialize the variables
8954 used during compilation of a C function. */
8957 c_push_function_context (void)
8959 struct language_function
*p
= cfun
->language
;
8960 /* cfun->language might have been already allocated by the use of
8961 -Wunused-local-typedefs. In that case, just re-use it. */
8963 cfun
->language
= p
= ggc_alloc_cleared_language_function ();
8965 p
->base
.x_stmt_tree
= c_stmt_tree
;
8966 c_stmt_tree
.x_cur_stmt_list
= vec_safe_copy (c_stmt_tree
.x_cur_stmt_list
);
8967 p
->x_break_label
= c_break_label
;
8968 p
->x_cont_label
= c_cont_label
;
8969 p
->x_switch_stack
= c_switch_stack
;
8970 p
->arg_info
= current_function_arg_info
;
8971 p
->returns_value
= current_function_returns_value
;
8972 p
->returns_null
= current_function_returns_null
;
8973 p
->returns_abnormally
= current_function_returns_abnormally
;
8974 p
->warn_about_return_type
= warn_about_return_type
;
8976 push_function_context ();
8979 /* Restore the variables used during compilation of a C function. */
8982 c_pop_function_context (void)
8984 struct language_function
*p
;
8986 pop_function_context ();
8989 /* When -Wunused-local-typedefs is in effect, cfun->languages is
8990 used to store data throughout the life time of the current cfun,
8991 So don't deallocate it. */
8992 if (!warn_unused_local_typedefs
)
8993 cfun
->language
= NULL
;
8995 if (DECL_STRUCT_FUNCTION (current_function_decl
) == 0
8996 && DECL_SAVED_TREE (current_function_decl
) == NULL_TREE
)
8998 /* Stop pointing to the local nodes about to be freed. */
8999 /* But DECL_INITIAL must remain nonzero so we know this
9000 was an actual function definition. */
9001 DECL_INITIAL (current_function_decl
) = error_mark_node
;
9002 DECL_ARGUMENTS (current_function_decl
) = 0;
9005 c_stmt_tree
= p
->base
.x_stmt_tree
;
9006 p
->base
.x_stmt_tree
.x_cur_stmt_list
= NULL
;
9007 c_break_label
= p
->x_break_label
;
9008 c_cont_label
= p
->x_cont_label
;
9009 c_switch_stack
= p
->x_switch_stack
;
9010 current_function_arg_info
= p
->arg_info
;
9011 current_function_returns_value
= p
->returns_value
;
9012 current_function_returns_null
= p
->returns_null
;
9013 current_function_returns_abnormally
= p
->returns_abnormally
;
9014 warn_about_return_type
= p
->warn_about_return_type
;
9017 /* The functions below are required for functionality of doing
9018 function at once processing in the C front end. Currently these
9019 functions are not called from anywhere in the C front end, but as
9020 these changes continue, that will change. */
9022 /* Returns the stmt_tree (if any) to which statements are currently
9023 being added. If there is no active statement-tree, NULL is
9027 current_stmt_tree (void)
9029 return &c_stmt_tree
;
9032 /* Return the global value of T as a symbol. */
9035 identifier_global_value (tree t
)
9037 struct c_binding
*b
;
9039 for (b
= I_SYMBOL_BINDING (t
); b
; b
= b
->shadowed
)
9040 if (B_IN_FILE_SCOPE (b
) || B_IN_EXTERNAL_SCOPE (b
))
9046 /* In C, the only C-linkage public declaration is at file scope. */
9049 c_linkage_bindings (tree name
)
9051 return identifier_global_value (name
);
9054 /* Record a builtin type for C. If NAME is non-NULL, it is the name used;
9055 otherwise the name is found in ridpointers from RID_INDEX. */
9058 record_builtin_type (enum rid rid_index
, const char *name
, tree type
)
9062 id
= ridpointers
[(int) rid_index
];
9064 id
= get_identifier (name
);
9065 decl
= build_decl (UNKNOWN_LOCATION
, TYPE_DECL
, id
, type
);
9067 if (debug_hooks
->type_decl
)
9068 debug_hooks
->type_decl (decl
, false);
9071 /* Build the void_list_node (void_type_node having been created). */
9073 build_void_list_node (void)
9075 tree t
= build_tree_list (NULL_TREE
, void_type_node
);
9079 /* Return a c_parm structure with the given SPECS, ATTRS and DECLARATOR. */
9082 build_c_parm (struct c_declspecs
*specs
, tree attrs
,
9083 struct c_declarator
*declarator
)
9085 struct c_parm
*ret
= XOBNEW (&parser_obstack
, struct c_parm
);
9088 ret
->declarator
= declarator
;
9092 /* Return a declarator with nested attributes. TARGET is the inner
9093 declarator to which these attributes apply. ATTRS are the
9096 struct c_declarator
*
9097 build_attrs_declarator (tree attrs
, struct c_declarator
*target
)
9099 struct c_declarator
*ret
= XOBNEW (&parser_obstack
, struct c_declarator
);
9100 ret
->kind
= cdk_attrs
;
9101 ret
->declarator
= target
;
9102 ret
->u
.attrs
= attrs
;
9106 /* Return a declarator for a function with arguments specified by ARGS
9107 and return type specified by TARGET. */
9109 struct c_declarator
*
9110 build_function_declarator (struct c_arg_info
*args
,
9111 struct c_declarator
*target
)
9113 struct c_declarator
*ret
= XOBNEW (&parser_obstack
, struct c_declarator
);
9114 ret
->kind
= cdk_function
;
9115 ret
->declarator
= target
;
9116 ret
->u
.arg_info
= args
;
9120 /* Return a declarator for the identifier IDENT (which may be
9121 NULL_TREE for an abstract declarator). */
9123 struct c_declarator
*
9124 build_id_declarator (tree ident
)
9126 struct c_declarator
*ret
= XOBNEW (&parser_obstack
, struct c_declarator
);
9128 ret
->declarator
= 0;
9130 /* Default value - may get reset to a more precise location. */
9131 ret
->id_loc
= input_location
;
9135 /* Return something to represent absolute declarators containing a *.
9136 TARGET is the absolute declarator that the * contains.
9137 TYPE_QUALS_ATTRS is a structure for type qualifiers and attributes
9138 to apply to the pointer type. */
9140 struct c_declarator
*
9141 make_pointer_declarator (struct c_declspecs
*type_quals_attrs
,
9142 struct c_declarator
*target
)
9146 tree upc_layout_qual
= 0;
9147 struct c_declarator
*itarget
= target
;
9148 struct c_declarator
*ret
= XOBNEW (&parser_obstack
, struct c_declarator
);
9149 if (type_quals_attrs
)
9151 attrs
= type_quals_attrs
->attrs
;
9152 quals
= quals_from_declspecs (type_quals_attrs
);
9153 upc_layout_qual
= type_quals_attrs
->upc_layout_qualifier
;
9154 if (attrs
!= NULL_TREE
)
9155 itarget
= build_attrs_declarator (attrs
, target
);
9157 ret
->kind
= cdk_pointer
;
9158 ret
->declarator
= itarget
;
9159 ret
->u
.pointer
.quals
= quals
;
9160 ret
->u
.pointer
.upc_layout_qual
= upc_layout_qual
;
9164 /* Return a pointer to a structure for an empty list of declaration
9167 struct c_declspecs
*
9168 build_null_declspecs (void)
9170 struct c_declspecs
*ret
= XOBNEW (&parser_obstack
, struct c_declspecs
);
9171 memset (&ret
->locations
, 0, cdw_number_of_elements
);
9176 ret
->upc_layout_qualifier
= 0;
9177 ret
->align_log
= -1;
9178 ret
->typespec_word
= cts_none
;
9179 ret
->storage_class
= csc_none
;
9180 ret
->expr_const_operands
= true;
9181 ret
->declspecs_seen_p
= false;
9182 ret
->typespec_kind
= ctsk_none
;
9183 ret
->non_sc_seen_p
= false;
9184 ret
->typedef_p
= false;
9185 ret
->explicit_signed_p
= false;
9186 ret
->deprecated_p
= false;
9187 ret
->default_int_p
= false;
9188 ret
->long_p
= false;
9189 ret
->long_long_p
= false;
9190 ret
->short_p
= false;
9191 ret
->signed_p
= false;
9192 ret
->unsigned_p
= false;
9193 ret
->complex_p
= false;
9194 ret
->inline_p
= false;
9195 ret
->noreturn_p
= false;
9196 ret
->thread_p
= false;
9197 ret
->thread_gnu_p
= false;
9198 ret
->const_p
= false;
9199 ret
->volatile_p
= false;
9200 ret
->atomic_p
= false;
9201 ret
->restrict_p
= false;
9202 ret
->shared_p
= false;
9203 ret
->strict_p
= false;
9204 ret
->relaxed_p
= false;
9205 ret
->saturating_p
= false;
9206 ret
->alignas_p
= false;
9207 ret
->address_space
= ADDR_SPACE_GENERIC
;
9211 /* Add the address space ADDRSPACE to the declaration specifiers
9212 SPECS, returning SPECS. */
9214 struct c_declspecs
*
9215 declspecs_add_addrspace (source_location location
,
9216 struct c_declspecs
*specs
, addr_space_t as
)
9218 specs
->non_sc_seen_p
= true;
9219 specs
->declspecs_seen_p
= true;
9221 if (!ADDR_SPACE_GENERIC_P (specs
->address_space
)
9222 && specs
->address_space
!= as
)
9223 error ("incompatible address space qualifiers %qs and %qs",
9224 c_addr_space_name (as
),
9225 c_addr_space_name (specs
->address_space
));
9228 specs
->address_space
= as
;
9229 specs
->locations
[cdw_address_space
] = location
;
9234 /* Add the type qualifier QUAL to the declaration specifiers SPECS,
9237 struct c_declspecs
*
9238 declspecs_add_qual (source_location loc
,
9239 struct c_declspecs
*specs
, tree qual
)
9243 specs
->non_sc_seen_p
= true;
9244 specs
->declspecs_seen_p
= true;
9246 /* A UPC layout qualifier is encoded as an ARRAY_REF,
9247 further, it implies the presence of the 'shared' keyword. */
9248 if (TREE_CODE (qual
) == ARRAY_REF
)
9250 if (specs
->upc_layout_qualifier
)
9252 error ("two or more layout qualifiers specified");
9257 specs
->upc_layout_qualifier
= qual
;
9258 qual
= ridpointers
[RID_SHARED
];
9262 gcc_assert (TREE_CODE (qual
) == IDENTIFIER_NODE
9263 && C_IS_RESERVED_WORD (qual
));
9264 i
= C_RID_CODE (qual
);
9268 dupe
= specs
->const_p
;
9269 specs
->const_p
= true;
9270 specs
->locations
[cdw_const
] = loc
;
9273 dupe
= specs
->volatile_p
;
9274 specs
->volatile_p
= true;
9275 specs
->locations
[cdw_volatile
] = loc
;
9278 dupe
= specs
->restrict_p
;
9279 specs
->restrict_p
= true;
9280 specs
->locations
[cdw_restrict
] = loc
;
9283 dupe
= specs
->atomic_p
;
9284 specs
->atomic_p
= true;
9287 dupe
= specs
->shared_p
;
9288 specs
->shared_p
= true;
9291 dupe
= specs
->strict_p
;
9292 specs
->strict_p
= true;
9295 dupe
= specs
->relaxed_p
;
9296 specs
->relaxed_p
= true;
9301 if (dupe
&& !flag_isoc99
)
9302 pedwarn (loc
, OPT_Wpedantic
, "duplicate %qE", qual
);
9306 /* Add the type specifier TYPE to the declaration specifiers SPECS,
9309 struct c_declspecs
*
9310 declspecs_add_type (location_t loc
, struct c_declspecs
*specs
,
9311 struct c_typespec spec
)
9313 tree type
= spec
.spec
;
9314 specs
->non_sc_seen_p
= true;
9315 specs
->declspecs_seen_p
= true;
9316 specs
->typespec_kind
= spec
.kind
;
9317 if (TREE_DEPRECATED (type
))
9318 specs
->deprecated_p
= true;
9320 /* Handle type specifier keywords. */
9321 if (TREE_CODE (type
) == IDENTIFIER_NODE
9322 && C_IS_RESERVED_WORD (type
)
9323 && C_RID_CODE (type
) != RID_CXX_COMPAT_WARN
)
9325 enum rid i
= C_RID_CODE (type
);
9328 error_at (loc
, "two or more data types in declaration specifiers");
9331 if ((int) i
<= (int) RID_LAST_MODIFIER
)
9333 /* "long", "short", "signed", "unsigned", "_Complex" or "_Sat". */
9338 if (specs
->long_long_p
)
9340 error_at (loc
, "%<long long long%> is too long for GCC");
9345 if (specs
->typespec_word
== cts_double
)
9348 ("both %<long long%> and %<double%> in "
9349 "declaration specifiers"));
9352 pedwarn_c90 (loc
, OPT_Wlong_long
,
9353 "ISO C90 does not support %<long long%>");
9354 specs
->long_long_p
= 1;
9355 specs
->locations
[cdw_long_long
] = loc
;
9360 ("both %<long%> and %<short%> in "
9361 "declaration specifiers"));
9362 else if (specs
->typespec_word
== cts_auto_type
)
9364 ("both %<long%> and %<__auto_type%> in "
9365 "declaration specifiers"));
9366 else if (specs
->typespec_word
== cts_void
)
9368 ("both %<long%> and %<void%> in "
9369 "declaration specifiers"));
9370 else if (specs
->typespec_word
== cts_int128
)
9372 ("both %<long%> and %<__int128%> in "
9373 "declaration specifiers"));
9374 else if (specs
->typespec_word
== cts_bool
)
9376 ("both %<long%> and %<_Bool%> in "
9377 "declaration specifiers"));
9378 else if (specs
->typespec_word
== cts_char
)
9380 ("both %<long%> and %<char%> in "
9381 "declaration specifiers"));
9382 else if (specs
->typespec_word
== cts_float
)
9384 ("both %<long%> and %<float%> in "
9385 "declaration specifiers"));
9386 else if (specs
->typespec_word
== cts_dfloat32
)
9388 ("both %<long%> and %<_Decimal32%> in "
9389 "declaration specifiers"));
9390 else if (specs
->typespec_word
== cts_dfloat64
)
9392 ("both %<long%> and %<_Decimal64%> in "
9393 "declaration specifiers"));
9394 else if (specs
->typespec_word
== cts_dfloat128
)
9396 ("both %<long%> and %<_Decimal128%> in "
9397 "declaration specifiers"));
9400 specs
->long_p
= true;
9401 specs
->locations
[cdw_long
] = loc
;
9405 dupe
= specs
->short_p
;
9408 ("both %<long%> and %<short%> in "
9409 "declaration specifiers"));
9410 else if (specs
->typespec_word
== cts_auto_type
)
9412 ("both %<short%> and %<__auto_type%> in "
9413 "declaration specifiers"));
9414 else if (specs
->typespec_word
== cts_void
)
9416 ("both %<short%> and %<void%> in "
9417 "declaration specifiers"));
9418 else if (specs
->typespec_word
== cts_int128
)
9420 ("both %<short%> and %<__int128%> in "
9421 "declaration specifiers"));
9422 else if (specs
->typespec_word
== cts_bool
)
9424 ("both %<short%> and %<_Bool%> in "
9425 "declaration specifiers"));
9426 else if (specs
->typespec_word
== cts_char
)
9428 ("both %<short%> and %<char%> in "
9429 "declaration specifiers"));
9430 else if (specs
->typespec_word
== cts_float
)
9432 ("both %<short%> and %<float%> in "
9433 "declaration specifiers"));
9434 else if (specs
->typespec_word
== cts_double
)
9436 ("both %<short%> and %<double%> in "
9437 "declaration specifiers"));
9438 else if (specs
->typespec_word
== cts_dfloat32
)
9440 ("both %<short%> and %<_Decimal32%> in "
9441 "declaration specifiers"));
9442 else if (specs
->typespec_word
== cts_dfloat64
)
9444 ("both %<short%> and %<_Decimal64%> in "
9445 "declaration specifiers"));
9446 else if (specs
->typespec_word
== cts_dfloat128
)
9448 ("both %<short%> and %<_Decimal128%> in "
9449 "declaration specifiers"));
9452 specs
->short_p
= true;
9453 specs
->locations
[cdw_short
] = loc
;
9457 dupe
= specs
->signed_p
;
9458 if (specs
->unsigned_p
)
9460 ("both %<signed%> and %<unsigned%> in "
9461 "declaration specifiers"));
9462 else if (specs
->typespec_word
== cts_auto_type
)
9464 ("both %<signed%> and %<__auto_type%> in "
9465 "declaration specifiers"));
9466 else if (specs
->typespec_word
== cts_void
)
9468 ("both %<signed%> and %<void%> in "
9469 "declaration specifiers"));
9470 else if (specs
->typespec_word
== cts_bool
)
9472 ("both %<signed%> and %<_Bool%> in "
9473 "declaration specifiers"));
9474 else if (specs
->typespec_word
== cts_float
)
9476 ("both %<signed%> and %<float%> in "
9477 "declaration specifiers"));
9478 else if (specs
->typespec_word
== cts_double
)
9480 ("both %<signed%> and %<double%> in "
9481 "declaration specifiers"));
9482 else if (specs
->typespec_word
== cts_dfloat32
)
9484 ("both %<signed%> and %<_Decimal32%> in "
9485 "declaration specifiers"));
9486 else if (specs
->typespec_word
== cts_dfloat64
)
9488 ("both %<signed%> and %<_Decimal64%> in "
9489 "declaration specifiers"));
9490 else if (specs
->typespec_word
== cts_dfloat128
)
9492 ("both %<signed%> and %<_Decimal128%> in "
9493 "declaration specifiers"));
9496 specs
->signed_p
= true;
9497 specs
->locations
[cdw_signed
] = loc
;
9501 dupe
= specs
->unsigned_p
;
9502 if (specs
->signed_p
)
9504 ("both %<signed%> and %<unsigned%> in "
9505 "declaration specifiers"));
9506 else if (specs
->typespec_word
== cts_auto_type
)
9508 ("both %<unsigned%> and %<__auto_type%> in "
9509 "declaration specifiers"));
9510 else if (specs
->typespec_word
== cts_void
)
9512 ("both %<unsigned%> and %<void%> in "
9513 "declaration specifiers"));
9514 else if (specs
->typespec_word
== cts_bool
)
9516 ("both %<unsigned%> and %<_Bool%> in "
9517 "declaration specifiers"));
9518 else if (specs
->typespec_word
== cts_float
)
9520 ("both %<unsigned%> and %<float%> in "
9521 "declaration specifiers"));
9522 else if (specs
->typespec_word
== cts_double
)
9524 ("both %<unsigned%> and %<double%> in "
9525 "declaration specifiers"));
9526 else if (specs
->typespec_word
== cts_dfloat32
)
9528 ("both %<unsigned%> and %<_Decimal32%> in "
9529 "declaration specifiers"));
9530 else if (specs
->typespec_word
== cts_dfloat64
)
9532 ("both %<unsigned%> and %<_Decimal64%> in "
9533 "declaration specifiers"));
9534 else if (specs
->typespec_word
== cts_dfloat128
)
9536 ("both %<unsigned%> and %<_Decimal128%> in "
9537 "declaration specifiers"));
9540 specs
->unsigned_p
= true;
9541 specs
->locations
[cdw_unsigned
] = loc
;
9545 dupe
= specs
->complex_p
;
9546 if (!flag_isoc99
&& !in_system_header_at (loc
))
9547 pedwarn (loc
, OPT_Wpedantic
,
9548 "ISO C90 does not support complex types");
9549 if (specs
->typespec_word
== cts_auto_type
)
9551 ("both %<complex%> and %<__auto_type%> in "
9552 "declaration specifiers"));
9553 else if (specs
->typespec_word
== cts_void
)
9555 ("both %<complex%> and %<void%> in "
9556 "declaration specifiers"));
9557 else if (specs
->typespec_word
== cts_bool
)
9559 ("both %<complex%> and %<_Bool%> in "
9560 "declaration specifiers"));
9561 else if (specs
->typespec_word
== cts_dfloat32
)
9563 ("both %<complex%> and %<_Decimal32%> in "
9564 "declaration specifiers"));
9565 else if (specs
->typespec_word
== cts_dfloat64
)
9567 ("both %<complex%> and %<_Decimal64%> in "
9568 "declaration specifiers"));
9569 else if (specs
->typespec_word
== cts_dfloat128
)
9571 ("both %<complex%> and %<_Decimal128%> in "
9572 "declaration specifiers"));
9573 else if (specs
->typespec_word
== cts_fract
)
9575 ("both %<complex%> and %<_Fract%> in "
9576 "declaration specifiers"));
9577 else if (specs
->typespec_word
== cts_accum
)
9579 ("both %<complex%> and %<_Accum%> in "
9580 "declaration specifiers"));
9581 else if (specs
->saturating_p
)
9583 ("both %<complex%> and %<_Sat%> in "
9584 "declaration specifiers"));
9587 specs
->complex_p
= true;
9588 specs
->locations
[cdw_complex
] = loc
;
9592 dupe
= specs
->saturating_p
;
9593 pedwarn (loc
, OPT_Wpedantic
,
9594 "ISO C does not support saturating types");
9595 if (specs
->typespec_word
== cts_int128
)
9598 ("both %<_Sat%> and %<__int128%> in "
9599 "declaration specifiers"));
9601 else if (specs
->typespec_word
== cts_auto_type
)
9603 ("both %<_Sat%> and %<__auto_type%> in "
9604 "declaration specifiers"));
9605 else if (specs
->typespec_word
== cts_void
)
9607 ("both %<_Sat%> and %<void%> in "
9608 "declaration specifiers"));
9609 else if (specs
->typespec_word
== cts_bool
)
9611 ("both %<_Sat%> and %<_Bool%> in "
9612 "declaration specifiers"));
9613 else if (specs
->typespec_word
== cts_char
)
9615 ("both %<_Sat%> and %<char%> in "
9616 "declaration specifiers"));
9617 else if (specs
->typespec_word
== cts_int
)
9619 ("both %<_Sat%> and %<int%> in "
9620 "declaration specifiers"));
9621 else if (specs
->typespec_word
== cts_float
)
9623 ("both %<_Sat%> and %<float%> in "
9624 "declaration specifiers"));
9625 else if (specs
->typespec_word
== cts_double
)
9627 ("both %<_Sat%> and %<double%> in "
9628 "declaration specifiers"));
9629 else if (specs
->typespec_word
== cts_dfloat32
)
9631 ("both %<_Sat%> and %<_Decimal32%> in "
9632 "declaration specifiers"));
9633 else if (specs
->typespec_word
== cts_dfloat64
)
9635 ("both %<_Sat%> and %<_Decimal64%> in "
9636 "declaration specifiers"));
9637 else if (specs
->typespec_word
== cts_dfloat128
)
9639 ("both %<_Sat%> and %<_Decimal128%> in "
9640 "declaration specifiers"));
9641 else if (specs
->complex_p
)
9643 ("both %<_Sat%> and %<complex%> in "
9644 "declaration specifiers"));
9647 specs
->saturating_p
= true;
9648 specs
->locations
[cdw_saturating
] = loc
;
9656 error_at (loc
, "duplicate %qE", type
);
9662 /* "void", "_Bool", "char", "int", "float", "double", "_Decimal32",
9663 "__int128", "_Decimal64", "_Decimal128", "_Fract", "_Accum" or
9665 if (specs
->typespec_word
!= cts_none
)
9668 "two or more data types in declaration specifiers");
9676 ("both %<long%> and %<__auto_type%> in "
9677 "declaration specifiers"));
9678 else if (specs
->short_p
)
9680 ("both %<short%> and %<__auto_type%> in "
9681 "declaration specifiers"));
9682 else if (specs
->signed_p
)
9684 ("both %<signed%> and %<__auto_type%> in "
9685 "declaration specifiers"));
9686 else if (specs
->unsigned_p
)
9688 ("both %<unsigned%> and %<__auto_type%> in "
9689 "declaration specifiers"));
9690 else if (specs
->complex_p
)
9692 ("both %<complex%> and %<__auto_type%> in "
9693 "declaration specifiers"));
9694 else if (specs
->saturating_p
)
9696 ("both %<_Sat%> and %<__auto_type%> in "
9697 "declaration specifiers"));
9700 specs
->typespec_word
= cts_auto_type
;
9701 specs
->locations
[cdw_typespec
] = loc
;
9705 if (int128_integer_type_node
== NULL_TREE
)
9707 error_at (loc
, "%<__int128%> is not supported for this target");
9710 if (!in_system_header_at (input_location
))
9711 pedwarn (loc
, OPT_Wpedantic
,
9712 "ISO C does not support %<__int128%> type");
9716 ("both %<__int128%> and %<long%> in "
9717 "declaration specifiers"));
9718 else if (specs
->saturating_p
)
9720 ("both %<_Sat%> and %<__int128%> in "
9721 "declaration specifiers"));
9722 else if (specs
->short_p
)
9724 ("both %<__int128%> and %<short%> in "
9725 "declaration specifiers"));
9728 specs
->typespec_word
= cts_int128
;
9729 specs
->locations
[cdw_typespec
] = loc
;
9735 ("both %<long%> and %<void%> in "
9736 "declaration specifiers"));
9737 else if (specs
->short_p
)
9739 ("both %<short%> and %<void%> in "
9740 "declaration specifiers"));
9741 else if (specs
->signed_p
)
9743 ("both %<signed%> and %<void%> in "
9744 "declaration specifiers"));
9745 else if (specs
->unsigned_p
)
9747 ("both %<unsigned%> and %<void%> in "
9748 "declaration specifiers"));
9749 else if (specs
->complex_p
)
9751 ("both %<complex%> and %<void%> in "
9752 "declaration specifiers"));
9753 else if (specs
->saturating_p
)
9755 ("both %<_Sat%> and %<void%> in "
9756 "declaration specifiers"));
9759 specs
->typespec_word
= cts_void
;
9760 specs
->locations
[cdw_typespec
] = loc
;
9766 ("both %<long%> and %<_Bool%> in "
9767 "declaration specifiers"));
9768 else if (specs
->short_p
)
9770 ("both %<short%> and %<_Bool%> in "
9771 "declaration specifiers"));
9772 else if (specs
->signed_p
)
9774 ("both %<signed%> and %<_Bool%> in "
9775 "declaration specifiers"));
9776 else if (specs
->unsigned_p
)
9778 ("both %<unsigned%> and %<_Bool%> in "
9779 "declaration specifiers"));
9780 else if (specs
->complex_p
)
9782 ("both %<complex%> and %<_Bool%> in "
9783 "declaration specifiers"));
9784 else if (specs
->saturating_p
)
9786 ("both %<_Sat%> and %<_Bool%> in "
9787 "declaration specifiers"));
9790 specs
->typespec_word
= cts_bool
;
9791 specs
->locations
[cdw_typespec
] = loc
;
9797 ("both %<long%> and %<char%> in "
9798 "declaration specifiers"));
9799 else if (specs
->short_p
)
9801 ("both %<short%> and %<char%> in "
9802 "declaration specifiers"));
9803 else if (specs
->saturating_p
)
9805 ("both %<_Sat%> and %<char%> in "
9806 "declaration specifiers"));
9809 specs
->typespec_word
= cts_char
;
9810 specs
->locations
[cdw_typespec
] = loc
;
9814 if (specs
->saturating_p
)
9816 ("both %<_Sat%> and %<int%> in "
9817 "declaration specifiers"));
9820 specs
->typespec_word
= cts_int
;
9821 specs
->locations
[cdw_typespec
] = loc
;
9827 ("both %<long%> and %<float%> in "
9828 "declaration specifiers"));
9829 else if (specs
->short_p
)
9831 ("both %<short%> and %<float%> in "
9832 "declaration specifiers"));
9833 else if (specs
->signed_p
)
9835 ("both %<signed%> and %<float%> in "
9836 "declaration specifiers"));
9837 else if (specs
->unsigned_p
)
9839 ("both %<unsigned%> and %<float%> in "
9840 "declaration specifiers"));
9841 else if (specs
->saturating_p
)
9843 ("both %<_Sat%> and %<float%> in "
9844 "declaration specifiers"));
9847 specs
->typespec_word
= cts_float
;
9848 specs
->locations
[cdw_typespec
] = loc
;
9852 if (specs
->long_long_p
)
9854 ("both %<long long%> and %<double%> in "
9855 "declaration specifiers"));
9856 else if (specs
->short_p
)
9858 ("both %<short%> and %<double%> in "
9859 "declaration specifiers"));
9860 else if (specs
->signed_p
)
9862 ("both %<signed%> and %<double%> in "
9863 "declaration specifiers"));
9864 else if (specs
->unsigned_p
)
9866 ("both %<unsigned%> and %<double%> in "
9867 "declaration specifiers"));
9868 else if (specs
->saturating_p
)
9870 ("both %<_Sat%> and %<double%> in "
9871 "declaration specifiers"));
9874 specs
->typespec_word
= cts_double
;
9875 specs
->locations
[cdw_typespec
] = loc
;
9883 if (i
== RID_DFLOAT32
)
9885 else if (i
== RID_DFLOAT64
)
9888 str
= "_Decimal128";
9889 if (specs
->long_long_p
)
9891 ("both %<long long%> and %<%s%> in "
9892 "declaration specifiers"),
9896 ("both %<long%> and %<%s%> in "
9897 "declaration specifiers"),
9899 else if (specs
->short_p
)
9901 ("both %<short%> and %<%s%> in "
9902 "declaration specifiers"),
9904 else if (specs
->signed_p
)
9906 ("both %<signed%> and %<%s%> in "
9907 "declaration specifiers"),
9909 else if (specs
->unsigned_p
)
9911 ("both %<unsigned%> and %<%s%> in "
9912 "declaration specifiers"),
9914 else if (specs
->complex_p
)
9916 ("both %<complex%> and %<%s%> in "
9917 "declaration specifiers"),
9919 else if (specs
->saturating_p
)
9921 ("both %<_Sat%> and %<%s%> in "
9922 "declaration specifiers"),
9924 else if (i
== RID_DFLOAT32
)
9925 specs
->typespec_word
= cts_dfloat32
;
9926 else if (i
== RID_DFLOAT64
)
9927 specs
->typespec_word
= cts_dfloat64
;
9929 specs
->typespec_word
= cts_dfloat128
;
9930 specs
->locations
[cdw_typespec
] = loc
;
9932 if (!targetm
.decimal_float_supported_p ())
9934 ("decimal floating point not supported "
9935 "for this target"));
9936 pedwarn (loc
, OPT_Wpedantic
,
9937 "ISO C does not support decimal floating point");
9947 if (specs
->complex_p
)
9949 ("both %<complex%> and %<%s%> in "
9950 "declaration specifiers"),
9952 else if (i
== RID_FRACT
)
9953 specs
->typespec_word
= cts_fract
;
9955 specs
->typespec_word
= cts_accum
;
9956 specs
->locations
[cdw_typespec
] = loc
;
9958 if (!targetm
.fixed_point_supported_p ())
9960 "fixed-point types not supported for this target");
9961 pedwarn (loc
, OPT_Wpedantic
,
9962 "ISO C does not support fixed-point types");
9965 /* ObjC reserved word "id", handled below. */
9971 /* Now we have a typedef (a TYPE_DECL node), an identifier (some
9972 form of ObjC type, cases such as "int" and "long" being handled
9973 above), a TYPE (struct, union, enum and typeof specifiers) or an
9974 ERROR_MARK. In none of these cases may there have previously
9975 been any type specifiers. */
9976 if (specs
->type
|| specs
->typespec_word
!= cts_none
9977 || specs
->long_p
|| specs
->short_p
|| specs
->signed_p
9978 || specs
->unsigned_p
|| specs
->complex_p
)
9979 error_at (loc
, "two or more data types in declaration specifiers");
9980 else if (TREE_CODE (type
) == TYPE_DECL
)
9982 if (TREE_TYPE (type
) == error_mark_node
)
9983 ; /* Allow the type to default to int to avoid cascading errors. */
9986 specs
->type
= TREE_TYPE (type
);
9987 specs
->decl_attr
= DECL_ATTRIBUTES (type
);
9988 specs
->typedef_p
= true;
9989 specs
->explicit_signed_p
= C_TYPEDEF_EXPLICITLY_SIGNED (type
);
9990 specs
->locations
[cdw_typedef
] = loc
;
9992 /* If this typedef name is defined in a struct, then a C++
9993 lookup would return a different value. */
9995 && I_SYMBOL_BINDING (DECL_NAME (type
))->in_struct
)
9996 warning_at (loc
, OPT_Wc___compat
,
9997 "C++ lookup of %qD would return a field, not a type",
10000 /* If we are parsing a struct, record that a struct field
10002 if (warn_cxx_compat
&& struct_parse_info
!= NULL
)
10003 struct_parse_info
->typedefs_seen
.safe_push (type
);
10006 else if (TREE_CODE (type
) == IDENTIFIER_NODE
)
10008 tree t
= lookup_name (type
);
10009 if (!t
|| TREE_CODE (t
) != TYPE_DECL
)
10010 error_at (loc
, "%qE fails to be a typedef or built in type", type
);
10011 else if (TREE_TYPE (t
) == error_mark_node
)
10015 specs
->type
= TREE_TYPE (t
);
10016 specs
->locations
[cdw_typespec
] = loc
;
10021 if (TREE_CODE (type
) != ERROR_MARK
&& spec
.kind
== ctsk_typeof
)
10023 specs
->typedef_p
= true;
10024 specs
->locations
[cdw_typedef
] = loc
;
10028 specs
->expr
= build2 (COMPOUND_EXPR
, TREE_TYPE (spec
.expr
),
10029 specs
->expr
, spec
.expr
);
10031 specs
->expr
= spec
.expr
;
10032 specs
->expr_const_operands
&= spec
.expr_const_operands
;
10035 specs
->type
= type
;
10041 /* Add the storage class specifier or function specifier SCSPEC to the
10042 declaration specifiers SPECS, returning SPECS. */
10044 struct c_declspecs
*
10045 declspecs_add_scspec (source_location loc
,
10046 struct c_declspecs
*specs
,
10050 enum c_storage_class n
= csc_none
;
10052 specs
->declspecs_seen_p
= true;
10053 gcc_assert (TREE_CODE (scspec
) == IDENTIFIER_NODE
10054 && C_IS_RESERVED_WORD (scspec
));
10055 i
= C_RID_CODE (scspec
);
10056 if (specs
->non_sc_seen_p
)
10057 warning (OPT_Wold_style_declaration
,
10058 "%qE is not at beginning of declaration", scspec
);
10062 /* C99 permits duplicate inline. Although of doubtful utility,
10063 it seems simplest to permit it in gnu89 mode as well, as
10064 there is also little utility in maintaining this as a
10065 difference between gnu89 and C99 inline. */
10067 specs
->inline_p
= true;
10068 specs
->locations
[cdw_inline
] = loc
;
10071 /* Duplicate _Noreturn is permitted. */
10073 specs
->noreturn_p
= true;
10074 specs
->locations
[cdw_noreturn
] = loc
;
10077 dupe
= specs
->thread_p
;
10078 if (specs
->storage_class
== csc_auto
)
10079 error ("%qE used with %<auto%>", scspec
);
10080 else if (specs
->storage_class
== csc_register
)
10081 error ("%qE used with %<register%>", scspec
);
10082 else if (specs
->storage_class
== csc_typedef
)
10083 error ("%qE used with %<typedef%>", scspec
);
10086 specs
->thread_p
= true;
10087 specs
->thread_gnu_p
= (strcmp (IDENTIFIER_POINTER (scspec
),
10089 /* A diagnostic is not required for the use of this
10090 identifier in the implementation namespace; only diagnose
10091 it for the C11 spelling because of existing code using
10092 the other spelling. */
10093 if (!flag_isoc11
&& !specs
->thread_gnu_p
)
10096 pedwarn (loc
, OPT_Wpedantic
,
10097 "ISO C99 does not support %qE", scspec
);
10099 pedwarn (loc
, OPT_Wpedantic
,
10100 "ISO C90 does not support %qE", scspec
);
10102 specs
->locations
[cdw_thread
] = loc
;
10110 /* Diagnose "__thread extern". */
10111 if (specs
->thread_p
&& specs
->thread_gnu_p
)
10112 error ("%<__thread%> before %<extern%>");
10119 /* Diagnose "__thread static". */
10120 if (specs
->thread_p
&& specs
->thread_gnu_p
)
10121 error ("%<__thread%> before %<static%>");
10127 gcc_unreachable ();
10129 if (n
!= csc_none
&& n
== specs
->storage_class
)
10133 if (i
== RID_THREAD
)
10134 error ("duplicate %<_Thread_local%> or %<__thread%>");
10136 error ("duplicate %qE", scspec
);
10140 if (specs
->storage_class
!= csc_none
&& n
!= specs
->storage_class
)
10142 error ("multiple storage classes in declaration specifiers");
10146 specs
->storage_class
= n
;
10147 specs
->locations
[cdw_storage_class
] = loc
;
10148 if (n
!= csc_extern
&& n
!= csc_static
&& specs
->thread_p
)
10150 error ("%qs used with %qE",
10151 specs
->thread_gnu_p
? "__thread" : "_Thread_local",
10153 specs
->thread_p
= false;
10160 /* Add the attributes ATTRS to the declaration specifiers SPECS,
10161 returning SPECS. */
10163 struct c_declspecs
*
10164 declspecs_add_attrs (source_location loc
, struct c_declspecs
*specs
, tree attrs
)
10166 specs
->attrs
= chainon (attrs
, specs
->attrs
);
10167 specs
->locations
[cdw_attributes
] = loc
;
10168 specs
->declspecs_seen_p
= true;
10172 /* Add an _Alignas specifier (expression ALIGN, or type whose
10173 alignment is ALIGN) to the declaration specifiers SPECS, returning
10175 struct c_declspecs
*
10176 declspecs_add_alignas (source_location loc
,
10177 struct c_declspecs
*specs
, tree align
)
10180 specs
->alignas_p
= true;
10181 specs
->locations
[cdw_alignas
] = loc
;
10182 if (align
== error_mark_node
)
10184 align_log
= check_user_alignment (align
, true);
10185 if (align_log
> specs
->align_log
)
10186 specs
->align_log
= align_log
;
10190 /* Combine "long", "short", "signed", "unsigned" and "_Complex" type
10191 specifiers with any other type specifier to determine the resulting
10192 type. This is where ISO C checks on complex types are made, since
10193 "_Complex long" is a prefix of the valid ISO C type "_Complex long
10196 struct c_declspecs
*
10197 finish_declspecs (struct c_declspecs
*specs
)
10199 /* If a type was specified as a whole, we have no modifiers and are
10201 if (specs
->type
!= NULL_TREE
)
10203 gcc_assert (!specs
->long_p
&& !specs
->long_long_p
&& !specs
->short_p
10204 && !specs
->signed_p
&& !specs
->unsigned_p
10205 && !specs
->complex_p
);
10207 /* Set a dummy type. */
10208 if (TREE_CODE (specs
->type
) == ERROR_MARK
)
10209 specs
->type
= integer_type_node
;
10213 /* If none of "void", "_Bool", "char", "int", "float" or "double"
10214 has been specified, treat it as "int" unless "_Complex" is
10215 present and there are no other specifiers. If we just have
10216 "_Complex", it is equivalent to "_Complex double", but e.g.
10217 "_Complex short" is equivalent to "_Complex short int". */
10218 if (specs
->typespec_word
== cts_none
)
10220 if (specs
->saturating_p
)
10222 error_at (specs
->locations
[cdw_saturating
],
10223 "%<_Sat%> is used without %<_Fract%> or %<_Accum%>");
10224 if (!targetm
.fixed_point_supported_p ())
10225 error_at (specs
->locations
[cdw_saturating
],
10226 "fixed-point types not supported for this target");
10227 specs
->typespec_word
= cts_fract
;
10229 else if (specs
->long_p
|| specs
->short_p
10230 || specs
->signed_p
|| specs
->unsigned_p
)
10232 specs
->typespec_word
= cts_int
;
10234 else if (specs
->complex_p
)
10236 specs
->typespec_word
= cts_double
;
10237 pedwarn (specs
->locations
[cdw_complex
], OPT_Wpedantic
,
10238 "ISO C does not support plain %<complex%> meaning "
10239 "%<double complex%>");
10243 specs
->typespec_word
= cts_int
;
10244 specs
->default_int_p
= true;
10245 /* We don't diagnose this here because grokdeclarator will
10246 give more specific diagnostics according to whether it is
10247 a function definition. */
10251 /* If "signed" was specified, record this to distinguish "int" and
10252 "signed int" in the case of a bit-field with
10253 -funsigned-bitfields. */
10254 specs
->explicit_signed_p
= specs
->signed_p
;
10256 /* Now compute the actual type. */
10257 switch (specs
->typespec_word
)
10259 case cts_auto_type
:
10260 gcc_assert (!specs
->long_p
&& !specs
->short_p
10261 && !specs
->signed_p
&& !specs
->unsigned_p
10262 && !specs
->complex_p
);
10263 /* Type to be filled in later. */
10266 gcc_assert (!specs
->long_p
&& !specs
->short_p
10267 && !specs
->signed_p
&& !specs
->unsigned_p
10268 && !specs
->complex_p
);
10269 specs
->type
= void_type_node
;
10272 gcc_assert (!specs
->long_p
&& !specs
->short_p
10273 && !specs
->signed_p
&& !specs
->unsigned_p
10274 && !specs
->complex_p
);
10275 specs
->type
= boolean_type_node
;
10278 gcc_assert (!specs
->long_p
&& !specs
->short_p
);
10279 gcc_assert (!(specs
->signed_p
&& specs
->unsigned_p
));
10280 if (specs
->signed_p
)
10281 specs
->type
= signed_char_type_node
;
10282 else if (specs
->unsigned_p
)
10283 specs
->type
= unsigned_char_type_node
;
10285 specs
->type
= char_type_node
;
10286 if (specs
->complex_p
)
10288 pedwarn (specs
->locations
[cdw_complex
], OPT_Wpedantic
,
10289 "ISO C does not support complex integer types");
10290 specs
->type
= build_complex_type (specs
->type
);
10294 gcc_assert (!specs
->long_p
&& !specs
->short_p
&& !specs
->long_long_p
);
10295 gcc_assert (!(specs
->signed_p
&& specs
->unsigned_p
));
10296 specs
->type
= (specs
->unsigned_p
10297 ? int128_unsigned_type_node
10298 : int128_integer_type_node
);
10299 if (specs
->complex_p
)
10301 pedwarn (specs
->locations
[cdw_complex
], OPT_Wpedantic
,
10302 "ISO C does not support complex integer types");
10303 specs
->type
= build_complex_type (specs
->type
);
10307 gcc_assert (!(specs
->long_p
&& specs
->short_p
));
10308 gcc_assert (!(specs
->signed_p
&& specs
->unsigned_p
));
10309 if (specs
->long_long_p
)
10310 specs
->type
= (specs
->unsigned_p
10311 ? long_long_unsigned_type_node
10312 : long_long_integer_type_node
);
10313 else if (specs
->long_p
)
10314 specs
->type
= (specs
->unsigned_p
10315 ? long_unsigned_type_node
10316 : long_integer_type_node
);
10317 else if (specs
->short_p
)
10318 specs
->type
= (specs
->unsigned_p
10319 ? short_unsigned_type_node
10320 : short_integer_type_node
);
10322 specs
->type
= (specs
->unsigned_p
10323 ? unsigned_type_node
10324 : integer_type_node
);
10325 if (specs
->complex_p
)
10327 pedwarn (specs
->locations
[cdw_complex
], OPT_Wpedantic
,
10328 "ISO C does not support complex integer types");
10329 specs
->type
= build_complex_type (specs
->type
);
10333 gcc_assert (!specs
->long_p
&& !specs
->short_p
10334 && !specs
->signed_p
&& !specs
->unsigned_p
);
10335 specs
->type
= (specs
->complex_p
10336 ? complex_float_type_node
10337 : float_type_node
);
10340 gcc_assert (!specs
->long_long_p
&& !specs
->short_p
10341 && !specs
->signed_p
&& !specs
->unsigned_p
);
10344 specs
->type
= (specs
->complex_p
10345 ? complex_long_double_type_node
10346 : long_double_type_node
);
10350 specs
->type
= (specs
->complex_p
10351 ? complex_double_type_node
10352 : double_type_node
);
10357 case cts_dfloat128
:
10358 gcc_assert (!specs
->long_p
&& !specs
->long_long_p
&& !specs
->short_p
10359 && !specs
->signed_p
&& !specs
->unsigned_p
&& !specs
->complex_p
);
10360 if (specs
->typespec_word
== cts_dfloat32
)
10361 specs
->type
= dfloat32_type_node
;
10362 else if (specs
->typespec_word
== cts_dfloat64
)
10363 specs
->type
= dfloat64_type_node
;
10365 specs
->type
= dfloat128_type_node
;
10368 gcc_assert (!specs
->complex_p
);
10369 if (!targetm
.fixed_point_supported_p ())
10370 specs
->type
= integer_type_node
;
10371 else if (specs
->saturating_p
)
10373 if (specs
->long_long_p
)
10374 specs
->type
= specs
->unsigned_p
10375 ? sat_unsigned_long_long_fract_type_node
10376 : sat_long_long_fract_type_node
;
10377 else if (specs
->long_p
)
10378 specs
->type
= specs
->unsigned_p
10379 ? sat_unsigned_long_fract_type_node
10380 : sat_long_fract_type_node
;
10381 else if (specs
->short_p
)
10382 specs
->type
= specs
->unsigned_p
10383 ? sat_unsigned_short_fract_type_node
10384 : sat_short_fract_type_node
;
10386 specs
->type
= specs
->unsigned_p
10387 ? sat_unsigned_fract_type_node
10388 : sat_fract_type_node
;
10392 if (specs
->long_long_p
)
10393 specs
->type
= specs
->unsigned_p
10394 ? unsigned_long_long_fract_type_node
10395 : long_long_fract_type_node
;
10396 else if (specs
->long_p
)
10397 specs
->type
= specs
->unsigned_p
10398 ? unsigned_long_fract_type_node
10399 : long_fract_type_node
;
10400 else if (specs
->short_p
)
10401 specs
->type
= specs
->unsigned_p
10402 ? unsigned_short_fract_type_node
10403 : short_fract_type_node
;
10405 specs
->type
= specs
->unsigned_p
10406 ? unsigned_fract_type_node
10411 gcc_assert (!specs
->complex_p
);
10412 if (!targetm
.fixed_point_supported_p ())
10413 specs
->type
= integer_type_node
;
10414 else if (specs
->saturating_p
)
10416 if (specs
->long_long_p
)
10417 specs
->type
= specs
->unsigned_p
10418 ? sat_unsigned_long_long_accum_type_node
10419 : sat_long_long_accum_type_node
;
10420 else if (specs
->long_p
)
10421 specs
->type
= specs
->unsigned_p
10422 ? sat_unsigned_long_accum_type_node
10423 : sat_long_accum_type_node
;
10424 else if (specs
->short_p
)
10425 specs
->type
= specs
->unsigned_p
10426 ? sat_unsigned_short_accum_type_node
10427 : sat_short_accum_type_node
;
10429 specs
->type
= specs
->unsigned_p
10430 ? sat_unsigned_accum_type_node
10431 : sat_accum_type_node
;
10435 if (specs
->long_long_p
)
10436 specs
->type
= specs
->unsigned_p
10437 ? unsigned_long_long_accum_type_node
10438 : long_long_accum_type_node
;
10439 else if (specs
->long_p
)
10440 specs
->type
= specs
->unsigned_p
10441 ? unsigned_long_accum_type_node
10442 : long_accum_type_node
;
10443 else if (specs
->short_p
)
10444 specs
->type
= specs
->unsigned_p
10445 ? unsigned_short_accum_type_node
10446 : short_accum_type_node
;
10448 specs
->type
= specs
->unsigned_p
10449 ? unsigned_accum_type_node
10454 gcc_unreachable ();
10460 /* A subroutine of c_write_global_declarations. Perform final processing
10461 on one file scope's declarations (or the external scope's declarations),
10465 c_write_global_declarations_1 (tree globals
)
10470 /* Process the decls in the order they were written. */
10471 for (decl
= globals
; decl
; decl
= DECL_CHAIN (decl
))
10473 /* Check for used but undefined static functions using the C
10474 standard's definition of "used", and set TREE_NO_WARNING so
10475 that check_global_declarations doesn't repeat the check. */
10476 if (TREE_CODE (decl
) == FUNCTION_DECL
10477 && DECL_INITIAL (decl
) == 0
10478 && DECL_EXTERNAL (decl
)
10479 && !TREE_PUBLIC (decl
)
10480 && C_DECL_USED (decl
))
10482 pedwarn (input_location
, 0, "%q+F used but never defined", decl
);
10483 TREE_NO_WARNING (decl
) = 1;
10486 wrapup_global_declaration_1 (decl
);
10491 reconsider
= false;
10492 for (decl
= globals
; decl
; decl
= DECL_CHAIN (decl
))
10493 reconsider
|= wrapup_global_declaration_2 (decl
);
10495 while (reconsider
);
10497 for (decl
= globals
; decl
; decl
= DECL_CHAIN (decl
))
10498 check_global_declaration_1 (decl
);
10501 /* A subroutine of c_write_global_declarations Emit debug information for each
10502 of the declarations in GLOBALS. */
10505 c_write_global_declarations_2 (tree globals
)
10509 for (decl
= globals
; decl
; decl
= DECL_CHAIN (decl
))
10510 debug_hooks
->global_decl (decl
);
10513 /* Callback to collect a source_ref from a DECL. */
10516 collect_source_ref_cb (tree decl
)
10518 if (!DECL_IS_BUILTIN (decl
))
10519 collect_source_ref (LOCATION_FILE (decl_sloc (decl
, false)));
10522 /* Preserve the external declarations scope across a garbage collect. */
10523 static GTY(()) tree ext_block
;
10525 /* Collect all references relevant to SOURCE_FILE. */
10528 collect_all_refs (const char *source_file
)
10533 FOR_EACH_VEC_ELT (*all_translation_units
, i
, t
)
10534 collect_ada_nodes (BLOCK_VARS (DECL_INITIAL (t
)), source_file
);
10536 collect_ada_nodes (BLOCK_VARS (ext_block
), source_file
);
10539 /* Iterate over all global declarations and call CALLBACK. */
10542 for_each_global_decl (void (*callback
) (tree decl
))
10549 FOR_EACH_VEC_ELT (*all_translation_units
, i
, t
)
10551 decls
= DECL_INITIAL (t
);
10552 for (decl
= BLOCK_VARS (decls
); decl
; decl
= TREE_CHAIN (decl
))
10556 for (decl
= BLOCK_VARS (ext_block
); decl
; decl
= TREE_CHAIN (decl
))
10561 c_write_global_declarations (void)
10566 /* We don't want to do this if generating a PCH. */
10570 timevar_start (TV_PHASE_DEFERRED
);
10572 /* Do the Objective-C stuff. This is where all the Objective-C
10573 module stuff gets generated (symtab, class/protocol/selector
10575 if (c_dialect_objc ())
10576 objc_write_global_declarations ();
10578 /* Close the external scope. */
10579 ext_block
= pop_scope ();
10580 external_scope
= 0;
10581 gcc_assert (!current_scope
);
10583 /* Handle -fdump-ada-spec[-slim]. */
10584 if (flag_dump_ada_spec
|| flag_dump_ada_spec_slim
)
10586 /* Build a table of files to generate specs for */
10587 if (flag_dump_ada_spec_slim
)
10588 collect_source_ref (main_input_filename
);
10590 for_each_global_decl (collect_source_ref_cb
);
10592 dump_ada_specs (collect_all_refs
, NULL
);
10597 tree tmp
= BLOCK_VARS (ext_block
);
10599 FILE * stream
= dump_begin (TDI_tu
, &flags
);
10602 dump_node (tmp
, flags
& ~TDF_SLIM
, stream
);
10603 dump_end (TDI_tu
, stream
);
10607 /* Process all file scopes in this compilation, and the external_scope,
10608 through wrapup_global_declarations and check_global_declarations. */
10609 FOR_EACH_VEC_ELT (*all_translation_units
, i
, t
)
10610 c_write_global_declarations_1 (BLOCK_VARS (DECL_INITIAL (t
)));
10611 c_write_global_declarations_1 (BLOCK_VARS (ext_block
));
10613 timevar_stop (TV_PHASE_DEFERRED
);
10614 timevar_start (TV_PHASE_OPT_GEN
);
10616 /* We're done parsing; proceed to optimize and emit assembly.
10617 FIXME: shouldn't be the front end's responsibility to call this. */
10618 finalize_compilation_unit ();
10620 timevar_stop (TV_PHASE_OPT_GEN
);
10621 timevar_start (TV_PHASE_DBGINFO
);
10623 /* After cgraph has had a chance to emit everything that's going to
10624 be emitted, output debug information for globals. */
10625 if (!seen_error ())
10627 timevar_push (TV_SYMOUT
);
10628 FOR_EACH_VEC_ELT (*all_translation_units
, i
, t
)
10629 c_write_global_declarations_2 (BLOCK_VARS (DECL_INITIAL (t
)));
10630 c_write_global_declarations_2 (BLOCK_VARS (ext_block
));
10631 timevar_pop (TV_SYMOUT
);
10635 timevar_stop (TV_PHASE_DBGINFO
);
10638 /* Register reserved keyword WORD as qualifier for address space AS. */
10641 c_register_addr_space (const char *word
, addr_space_t as
)
10643 int rid
= RID_FIRST_ADDR_SPACE
+ as
;
10646 /* Address space qualifiers are only supported
10647 in C with GNU extensions enabled. */
10648 if (c_dialect_objc () || flag_no_asm
)
10651 id
= get_identifier (word
);
10652 C_SET_RID_CODE (id
, rid
);
10653 C_IS_RESERVED_WORD (id
) = 1;
10654 ridpointers
[rid
] = id
;
10657 /* Return identifier to look up for omp declare reduction. */
10660 c_omp_reduction_id (enum tree_code reduction_code
, tree reduction_id
)
10662 const char *p
= NULL
;
10663 switch (reduction_code
)
10665 case PLUS_EXPR
: p
= "+"; break;
10666 case MULT_EXPR
: p
= "*"; break;
10667 case MINUS_EXPR
: p
= "-"; break;
10668 case BIT_AND_EXPR
: p
= "&"; break;
10669 case BIT_XOR_EXPR
: p
= "^"; break;
10670 case BIT_IOR_EXPR
: p
= "|"; break;
10671 case TRUTH_ANDIF_EXPR
: p
= "&&"; break;
10672 case TRUTH_ORIF_EXPR
: p
= "||"; break;
10673 case MIN_EXPR
: p
= "min"; break;
10674 case MAX_EXPR
: p
= "max"; break;
10681 if (TREE_CODE (reduction_id
) != IDENTIFIER_NODE
)
10682 return error_mark_node
;
10683 p
= IDENTIFIER_POINTER (reduction_id
);
10686 const char prefix
[] = "omp declare reduction ";
10687 size_t lenp
= sizeof (prefix
);
10688 size_t len
= strlen (p
);
10689 char *name
= XALLOCAVEC (char, lenp
+ len
);
10690 memcpy (name
, prefix
, lenp
- 1);
10691 memcpy (name
+ lenp
- 1, p
, len
+ 1);
10692 return get_identifier (name
);
10695 /* Lookup REDUCTION_ID in the current scope, or create an artificial
10696 VAR_DECL, bind it into the current scope and return it. */
10699 c_omp_reduction_decl (tree reduction_id
)
10701 struct c_binding
*b
= I_SYMBOL_BINDING (reduction_id
);
10702 if (b
!= NULL
&& B_IN_CURRENT_SCOPE (b
))
10705 tree decl
= build_decl (BUILTINS_LOCATION
, VAR_DECL
,
10706 reduction_id
, integer_type_node
);
10707 DECL_ARTIFICIAL (decl
) = 1;
10708 DECL_EXTERNAL (decl
) = 1;
10709 TREE_STATIC (decl
) = 1;
10710 TREE_PUBLIC (decl
) = 0;
10711 bind (reduction_id
, decl
, current_scope
, true, false, BUILTINS_LOCATION
);
10715 /* Lookup REDUCTION_ID in the first scope where it has entry for TYPE. */
10718 c_omp_reduction_lookup (tree reduction_id
, tree type
)
10720 struct c_binding
*b
= I_SYMBOL_BINDING (reduction_id
);
10724 for (t
= DECL_INITIAL (b
->decl
); t
; t
= TREE_CHAIN (t
))
10725 if (comptypes (TREE_PURPOSE (t
), type
))
10726 return TREE_VALUE (t
);
10729 return error_mark_node
;
10732 /* Helper function called via walk_tree, to diagnose invalid
10733 #pragma omp declare reduction combiners or initializers. */
10736 c_check_omp_declare_reduction_r (tree
*tp
, int *, void *data
)
10738 tree
*vars
= (tree
*) data
;
10739 if (SSA_VAR_P (*tp
)
10740 && !DECL_ARTIFICIAL (*tp
)
10744 location_t loc
= DECL_SOURCE_LOCATION (vars
[0]);
10745 if (strcmp (IDENTIFIER_POINTER (DECL_NAME (vars
[0])), "omp_out") == 0)
10746 error_at (loc
, "%<#pragma omp declare reduction%> combiner refers to "
10747 "variable %qD which is not %<omp_out%> nor %<omp_in%>",
10750 error_at (loc
, "%<#pragma omp declare reduction%> initializer refers "
10751 "to variable %qD which is not %<omp_priv%> nor "
10759 #include "gt-c-c-decl.h"