1 /* Process declarations and variables for C compiler.
2 Copyright (C) 1988-2017 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 "stringpool.h"
37 #include "print-tree.h"
38 #include "stor-layout.h"
43 #include "c-family/c-objc.h"
44 #include "c-family/c-pragma.h"
45 #include "c-family/c-ubsan.h"
47 #include "langhooks.h"
48 #include "tree-iterator.h"
51 #include "c-family/c-ada-spec.h"
54 #include "spellcheck-tree.h"
55 #include "gcc-rich-location.h"
57 /* In grokdeclarator, distinguish syntactic contexts of declarators. */
59 { NORMAL
, /* Ordinary declaration */
60 FUNCDEF
, /* Function definition */
61 PARM
, /* Declaration of parm before function body */
62 FIELD
, /* Declaration inside struct or union */
63 TYPENAME
}; /* Typename (inside cast or sizeof) */
65 /* States indicating how grokdeclarator() should handle declspecs marked
66 with __attribute__((deprecated)). An object declared as
67 __attribute__((deprecated)) suppresses warnings of uses of other
70 enum deprecated_states
{
76 /* Nonzero if we have seen an invalid cross reference
77 to a struct, union, or enum, but not yet printed the message. */
78 tree pending_invalid_xref
;
80 /* File and line to appear in the eventual error message. */
81 location_t pending_invalid_xref_location
;
83 /* The file and line that the prototype came from if this is an
84 old-style definition; used for diagnostics in
85 store_parm_decls_oldstyle. */
87 static location_t current_function_prototype_locus
;
89 /* Whether this prototype was built-in. */
91 static bool current_function_prototype_built_in
;
93 /* The argument type information of this prototype. */
95 static tree current_function_prototype_arg_types
;
97 /* The argument information structure for the function currently being
100 static struct c_arg_info
*current_function_arg_info
;
102 /* The obstack on which parser and related data structures, which are
103 not live beyond their top-level declaration or definition, are
105 struct obstack parser_obstack
;
107 /* The current statement tree. */
109 static GTY(()) struct stmt_tree_s c_stmt_tree
;
111 /* State saving variables. */
115 /* A list of decls to be made automatically visible in each file scope. */
116 static GTY(()) tree visible_builtins
;
118 /* Set to 0 at beginning of a function definition, set to 1 if
119 a return statement that specifies a return value is seen. */
121 int current_function_returns_value
;
123 /* Set to 0 at beginning of a function definition, set to 1 if
124 a return statement with no argument is seen. */
126 int current_function_returns_null
;
128 /* Set to 0 at beginning of a function definition, set to 1 if
129 a call to a noreturn function is seen. */
131 int current_function_returns_abnormally
;
133 /* Set to nonzero by `grokdeclarator' for a function
134 whose return type is defaulted, if warnings for this are desired. */
136 static int warn_about_return_type
;
138 /* Nonzero when the current toplevel function contains a declaration
139 of a nested function which is never defined. */
141 static bool undef_nested_function
;
143 /* If non-zero, implicit "omp declare target" attribute is added into the
145 int current_omp_declare_target_attribute
;
147 /* Each c_binding structure describes one binding of an identifier to
148 a decl. All the decls in a scope - irrespective of namespace - are
149 chained together by the ->prev field, which (as the name implies)
150 runs in reverse order. All the decls in a given namespace bound to
151 a given identifier are chained by the ->shadowed field, which runs
152 from inner to outer scopes.
154 The ->decl field usually points to a DECL node, but there are two
155 exceptions. In the namespace of type tags, the bound entity is a
156 RECORD_TYPE, UNION_TYPE, or ENUMERAL_TYPE node. If an undeclared
157 identifier is encountered, it is bound to error_mark_node to
158 suppress further errors about that identifier in the current
161 The ->u.type field stores the type of the declaration in this scope;
162 if NULL, the type is the type of the ->decl field. This is only of
163 relevance for objects with external or internal linkage which may
164 be redeclared in inner scopes, forming composite types that only
165 persist for the duration of those scopes. In the external scope,
166 this stores the composite of all the types declared for this
167 object, visible or not. The ->inner_comp field (used only at file
168 scope) stores whether an incomplete array type at file scope was
169 completed at an inner scope to an array size other than 1.
171 The ->u.label field is used for labels. It points to a structure
172 which stores additional information used for warnings.
174 The depth field is copied from the scope structure that holds this
175 decl. It is used to preserve the proper ordering of the ->shadowed
176 field (see bind()) and also for a handful of special-case checks.
177 Finally, the invisible bit is true for a decl which should be
178 ignored for purposes of normal name lookup, and the nested bit is
179 true for a decl that's been bound a second time in an inner scope;
180 in all such cases, the binding in the outer scope will have its
181 invisible bit true. */
183 struct GTY((chain_next ("%h.prev"))) c_binding
{
184 union GTY(()) { /* first so GTY desc can use decl */
185 tree
GTY((tag ("0"))) type
; /* the type in this scope */
186 struct c_label_vars
* GTY((tag ("1"))) label
; /* for warnings */
187 } GTY((desc ("TREE_CODE (%0.decl) == LABEL_DECL"))) u
;
188 tree decl
; /* the decl bound */
189 tree id
; /* the identifier it's bound to */
190 struct c_binding
*prev
; /* the previous decl in this scope */
191 struct c_binding
*shadowed
; /* the innermost decl shadowed by this one */
192 unsigned int depth
: 28; /* depth of this scope */
193 BOOL_BITFIELD invisible
: 1; /* normal lookup should ignore this binding */
194 BOOL_BITFIELD nested
: 1; /* do not set DECL_CONTEXT when popping */
195 BOOL_BITFIELD inner_comp
: 1; /* incomplete array completed in inner scope */
196 BOOL_BITFIELD in_struct
: 1; /* currently defined as struct field */
197 location_t locus
; /* location for nested bindings */
199 #define B_IN_SCOPE(b1, b2) ((b1)->depth == (b2)->depth)
200 #define B_IN_CURRENT_SCOPE(b) ((b)->depth == current_scope->depth)
201 #define B_IN_FILE_SCOPE(b) ((b)->depth == 1 /*file_scope->depth*/)
202 #define B_IN_EXTERNAL_SCOPE(b) ((b)->depth == 0 /*external_scope->depth*/)
204 /* Each C symbol points to three linked lists of c_binding structures.
205 These describe the values of the identifier in the three different
206 namespaces defined by the language. */
208 struct GTY(()) lang_identifier
{
209 struct c_common_identifier common_id
;
210 struct c_binding
*symbol_binding
; /* vars, funcs, constants, typedefs */
211 struct c_binding
*tag_binding
; /* struct/union/enum tags */
212 struct c_binding
*label_binding
; /* labels */
215 /* Validate c-lang.c's assumptions. */
216 extern char C_SIZEOF_STRUCT_LANG_IDENTIFIER_isnt_accurate
217 [(sizeof(struct lang_identifier
) == C_SIZEOF_STRUCT_LANG_IDENTIFIER
) ? 1 : -1];
219 /* The binding oracle; see c-tree.h. */
220 void (*c_binding_oracle
) (enum c_oracle_request
, tree identifier
);
222 /* This flag is set on an identifier if we have previously asked the
223 binding oracle for this identifier's symbol binding. */
224 #define I_SYMBOL_CHECKED(node) \
225 (TREE_LANG_FLAG_4 (IDENTIFIER_NODE_CHECK (node)))
227 static inline struct c_binding
* *
228 i_symbol_binding (tree node
)
230 struct lang_identifier
*lid
231 = (struct lang_identifier
*) IDENTIFIER_NODE_CHECK (node
);
233 if (lid
->symbol_binding
== NULL
234 && c_binding_oracle
!= NULL
235 && !I_SYMBOL_CHECKED (node
))
237 /* Set the "checked" flag first, to avoid infinite recursion
238 when the binding oracle calls back into gcc. */
239 I_SYMBOL_CHECKED (node
) = 1;
240 c_binding_oracle (C_ORACLE_SYMBOL
, node
);
243 return &lid
->symbol_binding
;
246 #define I_SYMBOL_BINDING(node) (*i_symbol_binding (node))
248 #define I_SYMBOL_DECL(node) \
249 (I_SYMBOL_BINDING(node) ? I_SYMBOL_BINDING(node)->decl : 0)
251 /* This flag is set on an identifier if we have previously asked the
252 binding oracle for this identifier's tag binding. */
253 #define I_TAG_CHECKED(node) \
254 (TREE_LANG_FLAG_5 (IDENTIFIER_NODE_CHECK (node)))
256 static inline struct c_binding
**
257 i_tag_binding (tree node
)
259 struct lang_identifier
*lid
260 = (struct lang_identifier
*) IDENTIFIER_NODE_CHECK (node
);
262 if (lid
->tag_binding
== NULL
263 && c_binding_oracle
!= NULL
264 && !I_TAG_CHECKED (node
))
266 /* Set the "checked" flag first, to avoid infinite recursion
267 when the binding oracle calls back into gcc. */
268 I_TAG_CHECKED (node
) = 1;
269 c_binding_oracle (C_ORACLE_TAG
, node
);
272 return &lid
->tag_binding
;
275 #define I_TAG_BINDING(node) (*i_tag_binding (node))
277 #define I_TAG_DECL(node) \
278 (I_TAG_BINDING(node) ? I_TAG_BINDING(node)->decl : 0)
280 /* This flag is set on an identifier if we have previously asked the
281 binding oracle for this identifier's label binding. */
282 #define I_LABEL_CHECKED(node) \
283 (TREE_LANG_FLAG_6 (IDENTIFIER_NODE_CHECK (node)))
285 static inline struct c_binding
**
286 i_label_binding (tree node
)
288 struct lang_identifier
*lid
289 = (struct lang_identifier
*) IDENTIFIER_NODE_CHECK (node
);
291 if (lid
->label_binding
== NULL
292 && c_binding_oracle
!= NULL
293 && !I_LABEL_CHECKED (node
))
295 /* Set the "checked" flag first, to avoid infinite recursion
296 when the binding oracle calls back into gcc. */
297 I_LABEL_CHECKED (node
) = 1;
298 c_binding_oracle (C_ORACLE_LABEL
, node
);
301 return &lid
->label_binding
;
304 #define I_LABEL_BINDING(node) (*i_label_binding (node))
306 #define I_LABEL_DECL(node) \
307 (I_LABEL_BINDING(node) ? I_LABEL_BINDING(node)->decl : 0)
309 /* The resulting tree type. */
311 union GTY((desc ("TREE_CODE (&%h.generic) == IDENTIFIER_NODE"),
312 chain_next ("(union lang_tree_node *) c_tree_chain_next (&%h.generic)"))) lang_tree_node
314 union tree_node
GTY ((tag ("0"),
315 desc ("tree_node_structure (&%h)")))
317 struct lang_identifier
GTY ((tag ("1"))) identifier
;
320 /* Track bindings and other things that matter for goto warnings. For
321 efficiency, we do not gather all the decls at the point of
322 definition. Instead, we point into the bindings structure. As
323 scopes are popped, we update these structures and gather the decls
324 that matter at that time. */
326 struct GTY(()) c_spot_bindings
{
327 /* The currently open scope which holds bindings defined when the
328 label was defined or the goto statement was found. */
329 struct c_scope
*scope
;
330 /* The bindings in the scope field which were defined at the point
331 of the label or goto. This lets us look at older or newer
332 bindings in the scope, as appropriate. */
333 struct c_binding
*bindings_in_scope
;
334 /* The number of statement expressions that have started since this
335 label or goto statement was defined. This is zero if we are at
336 the same statement expression level. It is positive if we are in
337 a statement expression started since this spot. It is negative
338 if this spot was in a statement expression and we have left
341 /* Whether we started in a statement expression but are no longer in
342 it. This is set to true if stmt_exprs ever goes negative. */
346 /* This structure is used to keep track of bindings seen when a goto
347 statement is defined. This is only used if we see the goto
348 statement before we see the label. */
350 struct GTY(()) c_goto_bindings
{
351 /* The location of the goto statement. */
353 /* The bindings of the goto statement. */
354 struct c_spot_bindings goto_bindings
;
357 typedef struct c_goto_bindings
*c_goto_bindings_p
;
359 /* The additional information we keep track of for a label binding.
360 These fields are updated as scopes are popped. */
362 struct GTY(()) c_label_vars
{
363 /* The shadowed c_label_vars, when one label shadows another (which
364 can only happen using a __label__ declaration). */
365 struct c_label_vars
*shadowed
;
366 /* The bindings when the label was defined. */
367 struct c_spot_bindings label_bindings
;
368 /* A list of decls that we care about: decls about which we should
369 warn if a goto branches to this label from later in the function.
370 Decls are added to this list as scopes are popped. We only add
371 the decls that matter. */
372 vec
<tree
, va_gc
> *decls_in_scope
;
373 /* A list of goto statements to this label. This is only used for
374 goto statements seen before the label was defined, so that we can
375 issue appropriate warnings for them. */
376 vec
<c_goto_bindings_p
, va_gc
> *gotos
;
379 /* Each c_scope structure describes the complete contents of one
380 scope. Four scopes are distinguished specially: the innermost or
381 current scope, the innermost function scope, the file scope (always
382 the second to outermost) and the outermost or external scope.
384 Most declarations are recorded in the current scope.
386 All normal label declarations are recorded in the innermost
387 function scope, as are bindings of undeclared identifiers to
388 error_mark_node. (GCC permits nested functions as an extension,
389 hence the 'innermost' qualifier.) Explicitly declared labels
390 (using the __label__ extension) appear in the current scope.
392 Being in the file scope (current_scope == file_scope) causes
393 special behavior in several places below. Also, under some
394 conditions the Objective-C front end records declarations in the
395 file scope even though that isn't the current scope.
397 All declarations with external linkage are recorded in the external
398 scope, even if they aren't visible there; this models the fact that
399 such declarations are visible to the entire program, and (with a
400 bit of cleverness, see pushdecl) allows diagnosis of some violations
401 of C99 6.2.2p7 and 6.2.7p2:
403 If, within the same translation unit, the same identifier appears
404 with both internal and external linkage, the behavior is
407 All declarations that refer to the same object or function shall
408 have compatible type; otherwise, the behavior is undefined.
410 Initially only the built-in declarations, which describe compiler
411 intrinsic functions plus a subset of the standard library, are in
414 The order of the blocks list matters, and it is frequently appended
415 to. To avoid having to walk all the way to the end of the list on
416 each insertion, or reverse the list later, we maintain a pointer to
417 the last list entry. (FIXME: It should be feasible to use a reversed
420 The bindings list is strictly in reverse order of declarations;
421 pop_scope relies on this. */
424 struct GTY((chain_next ("%h.outer"))) c_scope
{
425 /* The scope containing this one. */
426 struct c_scope
*outer
;
428 /* The next outermost function scope. */
429 struct c_scope
*outer_function
;
431 /* All bindings in this scope. */
432 struct c_binding
*bindings
;
434 /* For each scope (except the global one), a chain of BLOCK nodes
435 for all the scopes that were entered and exited one level down. */
439 /* The depth of this scope. Used to keep the ->shadowed chain of
440 bindings sorted innermost to outermost. */
441 unsigned int depth
: 28;
443 /* True if we are currently filling this scope with parameter
445 BOOL_BITFIELD parm_flag
: 1;
447 /* True if we saw [*] in this scope. Used to give an error messages
448 if these appears in a function definition. */
449 BOOL_BITFIELD had_vla_unspec
: 1;
451 /* True if we already complained about forward parameter decls
452 in this scope. This prevents double warnings on
453 foo (int a; int b; ...) */
454 BOOL_BITFIELD warned_forward_parm_decls
: 1;
456 /* True if this is the outermost block scope of a function body.
457 This scope contains the parameters, the local variables declared
458 in the outermost block, and all the labels (except those in
459 nested functions, or declared at block scope with __label__). */
460 BOOL_BITFIELD function_body
: 1;
462 /* True means make a BLOCK for this scope no matter what. */
463 BOOL_BITFIELD keep
: 1;
465 /* True means that an unsuffixed float constant is _Decimal64. */
466 BOOL_BITFIELD float_const_decimal64
: 1;
468 /* True if this scope has any label bindings. This is used to speed
469 up searching for labels when popping scopes, particularly since
470 labels are normally only found at function scope. */
471 BOOL_BITFIELD has_label_bindings
: 1;
473 /* True if we should issue a warning if a goto statement crosses any
474 of the bindings. We still need to check the list of bindings to
475 find the specific ones we need to warn about. This is true if
476 decl_jump_unsafe would return true for any of the bindings. This
477 is used to avoid looping over all the bindings unnecessarily. */
478 BOOL_BITFIELD has_jump_unsafe_decl
: 1;
481 /* The scope currently in effect. */
483 static GTY(()) struct c_scope
*current_scope
;
485 /* The innermost function scope. Ordinary (not explicitly declared)
486 labels, bindings to error_mark_node, and the lazily-created
487 bindings of __func__ and its friends get this scope. */
489 static GTY(()) struct c_scope
*current_function_scope
;
491 /* The C file scope. This is reset for each input translation unit. */
493 static GTY(()) struct c_scope
*file_scope
;
495 /* The outermost scope. This is used for all declarations with
496 external linkage, and only these, hence the name. */
498 static GTY(()) struct c_scope
*external_scope
;
500 /* A chain of c_scope structures awaiting reuse. */
502 static GTY((deletable
)) struct c_scope
*scope_freelist
;
504 /* A chain of c_binding structures awaiting reuse. */
506 static GTY((deletable
)) struct c_binding
*binding_freelist
;
508 /* Append VAR to LIST in scope SCOPE. */
509 #define SCOPE_LIST_APPEND(scope, list, decl) do { \
510 struct c_scope *s_ = (scope); \
512 if (s_->list##_last) \
513 BLOCK_CHAIN (s_->list##_last) = d_; \
516 s_->list##_last = d_; \
519 /* Concatenate FROM in scope FSCOPE onto TO in scope TSCOPE. */
520 #define SCOPE_LIST_CONCAT(tscope, to, fscope, from) do { \
521 struct c_scope *t_ = (tscope); \
522 struct c_scope *f_ = (fscope); \
524 BLOCK_CHAIN (t_->to##_last) = f_->from; \
527 t_->to##_last = f_->from##_last; \
530 /* A c_inline_static structure stores details of a static identifier
531 referenced in a definition of a function that may be an inline
532 definition if no subsequent declaration of that function uses
533 "extern" or does not use "inline". */
535 struct GTY((chain_next ("%h.next"))) c_inline_static
{
536 /* The location for a diagnostic. */
539 /* The function that may be an inline definition. */
542 /* The object or function referenced. */
545 /* What sort of reference this is. */
546 enum c_inline_static_type type
;
548 /* The next such structure or NULL. */
549 struct c_inline_static
*next
;
552 /* List of static identifiers used or referenced in functions that may
553 be inline definitions. */
554 static GTY(()) struct c_inline_static
*c_inline_statics
;
556 /* True means unconditionally make a BLOCK for the next scope pushed. */
558 static bool keep_next_level_flag
;
560 /* True means the next call to push_scope will be the outermost scope
561 of a function body, so do not push a new scope, merely cease
562 expecting parameter decls. */
564 static bool next_is_function_body
;
566 /* A vector of pointers to c_binding structures. */
568 typedef struct c_binding
*c_binding_ptr
;
570 /* Information that we keep for a struct or union while it is being
573 struct c_struct_parse_info
575 /* If warn_cxx_compat, a list of types defined within this
577 auto_vec
<tree
> struct_types
;
578 /* If warn_cxx_compat, a list of field names which have bindings,
579 and which are defined in this struct, but which are not defined
580 in any enclosing struct. This is used to clear the in_struct
581 field of the c_bindings structure. */
582 auto_vec
<c_binding_ptr
> fields
;
583 /* If warn_cxx_compat, a list of typedef names used when defining
584 fields in this struct. */
585 auto_vec
<tree
> typedefs_seen
;
588 /* Information for the struct or union currently being parsed, or
589 NULL if not parsing a struct or union. */
590 static struct c_struct_parse_info
*struct_parse_info
;
592 /* Forward declarations. */
593 static tree
lookup_name_in_scope (tree
, struct c_scope
*);
594 static tree
c_make_fname_decl (location_t
, tree
, int);
595 static tree
grokdeclarator (const struct c_declarator
*,
596 struct c_declspecs
*,
597 enum decl_context
, bool, tree
*, tree
*, tree
*,
598 bool *, enum deprecated_states
);
599 static tree
grokparms (struct c_arg_info
*, bool);
600 static void layout_array_type (tree
);
601 static void warn_defaults_to (location_t
, int, const char *, ...)
602 ATTRIBUTE_GCC_DIAG(3,4);
604 /* T is a statement. Add it to the statement-tree. This is the
605 C/ObjC version--C++ has a slightly different version of this
611 enum tree_code code
= TREE_CODE (t
);
613 if (CAN_HAVE_LOCATION_P (t
) && code
!= LABEL_EXPR
)
615 if (!EXPR_HAS_LOCATION (t
))
616 SET_EXPR_LOCATION (t
, input_location
);
619 if (code
== LABEL_EXPR
|| code
== CASE_LABEL_EXPR
)
620 STATEMENT_LIST_HAS_LABEL (cur_stmt_list
) = 1;
622 /* Add T to the statement-tree. Non-side-effect statements need to be
623 recorded during statement expressions. */
624 if (!building_stmt_list_p ())
626 append_to_statement_list_force (t
, &cur_stmt_list
);
631 /* Build a pointer type using the default pointer mode. */
634 c_build_pointer_type (tree to_type
)
636 addr_space_t as
= to_type
== error_mark_node
? ADDR_SPACE_GENERIC
637 : TYPE_ADDR_SPACE (to_type
);
638 machine_mode pointer_mode
;
640 if (as
!= ADDR_SPACE_GENERIC
|| c_default_pointer_mode
== VOIDmode
)
641 pointer_mode
= targetm
.addr_space
.pointer_mode (as
);
643 pointer_mode
= c_default_pointer_mode
;
644 return build_pointer_type_for_mode (to_type
, pointer_mode
, false);
648 /* Return true if we will want to say something if a goto statement
652 decl_jump_unsafe (tree decl
)
654 if (error_operand_p (decl
))
657 /* Always warn about crossing variably modified types. */
658 if ((VAR_P (decl
) || TREE_CODE (decl
) == TYPE_DECL
)
659 && variably_modified_type_p (TREE_TYPE (decl
), NULL_TREE
))
662 /* Otherwise, only warn if -Wgoto-misses-init and this is an
663 initialized automatic decl. */
664 if (warn_jump_misses_init
666 && !TREE_STATIC (decl
)
667 && DECL_INITIAL (decl
) != NULL_TREE
)
675 c_print_identifier (FILE *file
, tree node
, int indent
)
677 void (*save
) (enum c_oracle_request
, tree identifier
);
679 /* Temporarily hide any binding oracle. Without this, calls to
680 debug_tree from the debugger will end up calling into the oracle,
681 making for a confusing debug session. As the oracle isn't needed
682 here for normal operation, it's simplest to suppress it. */
683 save
= c_binding_oracle
;
684 c_binding_oracle
= NULL
;
686 print_node (file
, "symbol", I_SYMBOL_DECL (node
), indent
+ 4);
687 print_node (file
, "tag", I_TAG_DECL (node
), indent
+ 4);
688 print_node (file
, "label", I_LABEL_DECL (node
), indent
+ 4);
689 if (C_IS_RESERVED_WORD (node
) && C_RID_CODE (node
) != RID_CXX_COMPAT_WARN
)
691 tree rid
= ridpointers
[C_RID_CODE (node
)];
692 indent_to (file
, indent
+ 4);
693 fprintf (file
, "rid " HOST_PTR_PRINTF
" \"%s\"",
694 (void *) rid
, IDENTIFIER_POINTER (rid
));
697 c_binding_oracle
= save
;
700 /* Establish a binding between NAME, an IDENTIFIER_NODE, and DECL,
701 which may be any of several kinds of DECL or TYPE or error_mark_node,
702 in the scope SCOPE. */
704 bind (tree name
, tree decl
, struct c_scope
*scope
, bool invisible
,
705 bool nested
, location_t locus
)
707 struct c_binding
*b
, **here
;
709 if (binding_freelist
)
711 b
= binding_freelist
;
712 binding_freelist
= b
->prev
;
715 b
= ggc_alloc
<c_binding
> ();
720 b
->depth
= scope
->depth
;
721 b
->invisible
= invisible
;
729 b
->prev
= scope
->bindings
;
732 if (decl_jump_unsafe (decl
))
733 scope
->has_jump_unsafe_decl
= 1;
738 switch (TREE_CODE (decl
))
740 case LABEL_DECL
: here
= &I_LABEL_BINDING (name
); break;
743 case RECORD_TYPE
: here
= &I_TAG_BINDING (name
); break;
749 case ERROR_MARK
: here
= &I_SYMBOL_BINDING (name
); break;
755 /* Locate the appropriate place in the chain of shadowed decls
756 to insert this binding. Normally, scope == current_scope and
757 this does nothing. */
758 while (*here
&& (*here
)->depth
> scope
->depth
)
759 here
= &(*here
)->shadowed
;
765 /* Clear the binding structure B, stick it on the binding_freelist,
766 and return the former value of b->prev. This is used by pop_scope
767 and get_parm_info to iterate destructively over all the bindings
768 from a given scope. */
769 static struct c_binding
*
770 free_binding_and_advance (struct c_binding
*b
)
772 struct c_binding
*prev
= b
->prev
;
774 memset (b
, 0, sizeof (struct c_binding
));
775 b
->prev
= binding_freelist
;
776 binding_freelist
= b
;
781 /* Bind a label. Like bind, but skip fields which aren't used for
782 labels, and add the LABEL_VARS value. */
784 bind_label (tree name
, tree label
, struct c_scope
*scope
,
785 struct c_label_vars
*label_vars
)
789 bind (name
, label
, scope
, /*invisible=*/false, /*nested=*/false,
792 scope
->has_label_bindings
= true;
795 gcc_assert (b
->decl
== label
);
796 label_vars
->shadowed
= b
->u
.label
;
797 b
->u
.label
= label_vars
;
800 /* Hook called at end of compilation to assume 1 elt
801 for a file-scope tentative array defn that wasn't complete before. */
804 c_finish_incomplete_decl (tree decl
)
808 tree type
= TREE_TYPE (decl
);
809 if (type
!= error_mark_node
810 && TREE_CODE (type
) == ARRAY_TYPE
811 && !DECL_EXTERNAL (decl
)
812 && TYPE_DOMAIN (type
) == 0)
814 warning_at (DECL_SOURCE_LOCATION (decl
),
815 0, "array %q+D assumed to have one element", decl
);
817 complete_array_type (&TREE_TYPE (decl
), NULL_TREE
, true);
819 relayout_decl (decl
);
824 /* Record that inline function FUNC contains a reference (location
825 LOC) to static DECL (file-scope or function-local according to
829 record_inline_static (location_t loc
, tree func
, tree decl
,
830 enum c_inline_static_type type
)
832 c_inline_static
*csi
= ggc_alloc
<c_inline_static
> ();
834 csi
->function
= func
;
835 csi
->static_decl
= decl
;
837 csi
->next
= c_inline_statics
;
838 c_inline_statics
= csi
;
841 /* Check for references to static declarations in inline functions at
842 the end of the translation unit and diagnose them if the functions
843 are still inline definitions. */
846 check_inline_statics (void)
848 struct c_inline_static
*csi
;
849 for (csi
= c_inline_statics
; csi
; csi
= csi
->next
)
851 if (DECL_EXTERNAL (csi
->function
))
855 pedwarn (csi
->location
, 0,
856 "%qD is static but used in inline function %qD "
857 "which is not static", csi
->static_decl
, csi
->function
);
860 pedwarn (csi
->location
, 0,
861 "%q+D is static but declared in inline function %qD "
862 "which is not static", csi
->static_decl
, csi
->function
);
868 c_inline_statics
= NULL
;
871 /* Fill in a c_spot_bindings structure. If DEFINING is true, set it
872 for the current state, otherwise set it to uninitialized. */
875 set_spot_bindings (struct c_spot_bindings
*p
, bool defining
)
879 p
->scope
= current_scope
;
880 p
->bindings_in_scope
= current_scope
->bindings
;
885 p
->bindings_in_scope
= NULL
;
888 p
->left_stmt_expr
= false;
891 /* Update spot bindings P as we pop out of SCOPE. Return true if we
892 should push decls for a label. */
895 update_spot_bindings (struct c_scope
*scope
, struct c_spot_bindings
*p
)
897 if (p
->scope
!= scope
)
899 /* This label or goto is defined in some other scope, or it is a
900 label which is not yet defined. There is nothing to
905 /* Adjust the spot bindings to refer to the bindings already defined
906 in the enclosing scope. */
907 p
->scope
= scope
->outer
;
908 p
->bindings_in_scope
= p
->scope
->bindings
;
913 /* The Objective-C front-end often needs to determine the current scope. */
916 objc_get_current_scope (void)
918 return current_scope
;
921 /* The following function is used only by Objective-C. It needs to live here
922 because it accesses the innards of c_scope. */
925 objc_mark_locals_volatile (void *enclosing_blk
)
927 struct c_scope
*scope
;
930 for (scope
= current_scope
;
931 scope
&& scope
!= enclosing_blk
;
932 scope
= scope
->outer
)
934 for (b
= scope
->bindings
; b
; b
= b
->prev
)
935 objc_volatilize_decl (b
->decl
);
937 /* Do not climb up past the current function. */
938 if (scope
->function_body
)
943 /* Return true if we are in the global binding level. */
946 global_bindings_p (void)
948 return current_scope
== file_scope
;
952 keep_next_level (void)
954 keep_next_level_flag
= true;
957 /* Set the flag for the FLOAT_CONST_DECIMAL64 pragma being ON. */
960 set_float_const_decimal64 (void)
962 current_scope
->float_const_decimal64
= true;
965 /* Clear the flag for the FLOAT_CONST_DECIMAL64 pragma. */
968 clear_float_const_decimal64 (void)
970 current_scope
->float_const_decimal64
= false;
973 /* Return nonzero if an unsuffixed float constant is _Decimal64. */
976 float_const_decimal64_p (void)
978 return current_scope
->float_const_decimal64
;
981 /* Identify this scope as currently being filled with parameters. */
984 declare_parm_level (void)
986 current_scope
->parm_flag
= true;
992 if (next_is_function_body
)
994 /* This is the transition from the parameters to the top level
995 of the function body. These are the same scope
996 (C99 6.2.1p4,6) so we do not push another scope structure.
997 next_is_function_body is set only by store_parm_decls, which
998 in turn is called when and only when we are about to
999 encounter the opening curly brace for the function body.
1001 The outermost block of a function always gets a BLOCK node,
1002 because the debugging output routines expect that each
1003 function has at least one BLOCK. */
1004 current_scope
->parm_flag
= false;
1005 current_scope
->function_body
= true;
1006 current_scope
->keep
= true;
1007 current_scope
->outer_function
= current_function_scope
;
1008 current_function_scope
= current_scope
;
1010 keep_next_level_flag
= false;
1011 next_is_function_body
= false;
1013 /* The FLOAT_CONST_DECIMAL64 pragma applies to nested scopes. */
1014 if (current_scope
->outer
)
1015 current_scope
->float_const_decimal64
1016 = current_scope
->outer
->float_const_decimal64
;
1018 current_scope
->float_const_decimal64
= false;
1022 struct c_scope
*scope
;
1025 scope
= scope_freelist
;
1026 scope_freelist
= scope
->outer
;
1029 scope
= ggc_cleared_alloc
<c_scope
> ();
1031 /* The FLOAT_CONST_DECIMAL64 pragma applies to nested scopes. */
1033 scope
->float_const_decimal64
= current_scope
->float_const_decimal64
;
1035 scope
->float_const_decimal64
= false;
1037 scope
->keep
= keep_next_level_flag
;
1038 scope
->outer
= current_scope
;
1039 scope
->depth
= current_scope
? (current_scope
->depth
+ 1) : 0;
1041 /* Check for scope depth overflow. Unlikely (2^28 == 268,435,456) but
1043 if (current_scope
&& scope
->depth
== 0)
1046 sorry ("GCC supports only %u nested scopes", scope
->depth
);
1049 current_scope
= scope
;
1050 keep_next_level_flag
= false;
1054 /* This is called when we are leaving SCOPE. For each label defined
1055 in SCOPE, add any appropriate decls to its decls_in_scope fields.
1056 These are the decls whose initialization will be skipped by a goto
1057 later in the function. */
1060 update_label_decls (struct c_scope
*scope
)
1067 if (s
->has_label_bindings
)
1069 struct c_binding
*b
;
1071 for (b
= s
->bindings
; b
!= NULL
; b
= b
->prev
)
1073 struct c_label_vars
*label_vars
;
1074 struct c_binding
*b1
;
1077 struct c_goto_bindings
*g
;
1079 if (TREE_CODE (b
->decl
) != LABEL_DECL
)
1081 label_vars
= b
->u
.label
;
1083 b1
= label_vars
->label_bindings
.bindings_in_scope
;
1084 if (label_vars
->label_bindings
.scope
== NULL
)
1087 hjud
= label_vars
->label_bindings
.scope
->has_jump_unsafe_decl
;
1088 if (update_spot_bindings (scope
, &label_vars
->label_bindings
))
1090 /* This label is defined in this scope. */
1093 for (; b1
!= NULL
; b1
= b1
->prev
)
1095 /* A goto from later in the function to this
1096 label will never see the initialization
1097 of B1, if any. Save it to issue a
1098 warning if needed. */
1099 if (decl_jump_unsafe (b1
->decl
))
1100 vec_safe_push(label_vars
->decls_in_scope
, b1
->decl
);
1105 /* Update the bindings of any goto statements associated
1107 FOR_EACH_VEC_SAFE_ELT (label_vars
->gotos
, ix
, g
)
1108 update_spot_bindings (scope
, &g
->goto_bindings
);
1112 /* Don't search beyond the current function. */
1113 if (s
== current_function_scope
)
1120 /* Set the TYPE_CONTEXT of all of TYPE's variants to CONTEXT. */
1123 set_type_context (tree type
, tree context
)
1125 for (type
= TYPE_MAIN_VARIANT (type
); type
;
1126 type
= TYPE_NEXT_VARIANT (type
))
1127 TYPE_CONTEXT (type
) = context
;
1130 /* Exit a scope. Restore the state of the identifier-decl mappings
1131 that were in effect when this scope was entered. Return a BLOCK
1132 node containing all the DECLs in this scope that are of interest
1133 to debug info generation. */
1138 struct c_scope
*scope
= current_scope
;
1139 tree block
, context
, p
;
1140 struct c_binding
*b
;
1142 bool functionbody
= scope
->function_body
;
1143 bool keep
= functionbody
|| scope
->keep
|| scope
->bindings
;
1145 update_label_decls (scope
);
1147 /* If appropriate, create a BLOCK to record the decls for the life
1148 of this function. */
1152 block
= make_node (BLOCK
);
1153 BLOCK_SUBBLOCKS (block
) = scope
->blocks
;
1154 TREE_USED (block
) = 1;
1156 /* In each subblock, record that this is its superior. */
1157 for (p
= scope
->blocks
; p
; p
= BLOCK_CHAIN (p
))
1158 BLOCK_SUPERCONTEXT (p
) = block
;
1160 BLOCK_VARS (block
) = 0;
1163 /* The TYPE_CONTEXTs for all of the tagged types belonging to this
1164 scope must be set so that they point to the appropriate
1165 construct, i.e. either to the current FUNCTION_DECL node, or
1166 else to the BLOCK node we just constructed.
1168 Note that for tagged types whose scope is just the formal
1169 parameter list for some function type specification, we can't
1170 properly set their TYPE_CONTEXTs here, because we don't have a
1171 pointer to the appropriate FUNCTION_TYPE node readily available
1172 to us. For those cases, the TYPE_CONTEXTs of the relevant tagged
1173 type nodes get set in `grokdeclarator' as soon as we have created
1174 the FUNCTION_TYPE node which will represent the "scope" for these
1175 "parameter list local" tagged types. */
1176 if (scope
->function_body
)
1177 context
= current_function_decl
;
1178 else if (scope
== file_scope
)
1181 = build_translation_unit_decl (get_identifier (main_input_filename
));
1182 context
= file_decl
;
1183 debug_hooks
->register_main_translation_unit (file_decl
);
1188 /* Clear all bindings in this scope. */
1189 for (b
= scope
->bindings
; b
; b
= free_binding_and_advance (b
))
1192 switch (TREE_CODE (p
))
1195 /* Warnings for unused labels, errors for undefined labels. */
1196 if (TREE_USED (p
) && !DECL_INITIAL (p
))
1198 error ("label %q+D used but not defined", p
);
1199 DECL_INITIAL (p
) = error_mark_node
;
1202 warn_for_unused_label (p
);
1204 /* Labels go in BLOCK_VARS. */
1205 DECL_CHAIN (p
) = BLOCK_VARS (block
);
1206 BLOCK_VARS (block
) = p
;
1207 gcc_assert (I_LABEL_BINDING (b
->id
) == b
);
1208 I_LABEL_BINDING (b
->id
) = b
->shadowed
;
1210 /* Also pop back to the shadowed label_vars. */
1211 release_tree_vector (b
->u
.label
->decls_in_scope
);
1212 b
->u
.label
= b
->u
.label
->shadowed
;
1218 set_type_context (p
, context
);
1220 /* Types may not have tag-names, in which case the type
1221 appears in the bindings list with b->id NULL. */
1224 gcc_assert (I_TAG_BINDING (b
->id
) == b
);
1225 I_TAG_BINDING (b
->id
) = b
->shadowed
;
1230 /* Propagate TREE_ADDRESSABLE from nested functions to their
1231 containing functions. */
1232 if (!TREE_ASM_WRITTEN (p
)
1233 && DECL_INITIAL (p
) != 0
1234 && TREE_ADDRESSABLE (p
)
1235 && DECL_ABSTRACT_ORIGIN (p
) != 0
1236 && DECL_ABSTRACT_ORIGIN (p
) != p
)
1237 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (p
)) = 1;
1238 if (!DECL_EXTERNAL (p
)
1239 && !DECL_INITIAL (p
)
1240 && scope
!= file_scope
1241 && scope
!= external_scope
)
1243 error ("nested function %q+D declared but never defined", p
);
1244 undef_nested_function
= true;
1246 else if (DECL_DECLARED_INLINE_P (p
)
1248 && !DECL_INITIAL (p
))
1250 /* C99 6.7.4p6: "a function with external linkage... declared
1251 with an inline function specifier ... shall also be defined
1252 in the same translation unit." */
1253 if (!flag_gnu89_inline
1254 && !lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (p
))
1255 && scope
!= external_scope
)
1256 pedwarn (input_location
, 0,
1257 "inline function %q+D declared but never defined", p
);
1258 DECL_EXTERNAL (p
) = 1;
1264 /* Warnings for unused variables. */
1265 if ((!TREE_USED (p
) || !DECL_READ_P (p
))
1266 && !TREE_NO_WARNING (p
)
1267 && !DECL_IN_SYSTEM_HEADER (p
)
1269 && !DECL_ARTIFICIAL (p
)
1270 && scope
!= file_scope
1271 && scope
!= external_scope
)
1274 warning (OPT_Wunused_variable
, "unused variable %q+D", p
);
1275 else if (DECL_CONTEXT (p
) == current_function_decl
)
1276 warning_at (DECL_SOURCE_LOCATION (p
),
1277 OPT_Wunused_but_set_variable
,
1278 "variable %qD set but not used", p
);
1283 error ("type of array %q+D completed incompatibly with"
1284 " implicit initialization", p
);
1291 /* All of these go in BLOCK_VARS, but only if this is the
1292 binding in the home scope. */
1295 DECL_CHAIN (p
) = BLOCK_VARS (block
);
1296 BLOCK_VARS (block
) = p
;
1298 else if (VAR_OR_FUNCTION_DECL_P (p
) && scope
!= file_scope
)
1300 /* For block local externs add a special
1301 DECL_EXTERNAL decl for debug info generation. */
1302 tree extp
= copy_node (p
);
1304 DECL_EXTERNAL (extp
) = 1;
1305 TREE_STATIC (extp
) = 0;
1306 TREE_PUBLIC (extp
) = 1;
1307 DECL_INITIAL (extp
) = NULL_TREE
;
1308 DECL_LANG_SPECIFIC (extp
) = NULL
;
1309 DECL_CONTEXT (extp
) = current_function_decl
;
1310 if (TREE_CODE (p
) == FUNCTION_DECL
)
1312 DECL_RESULT (extp
) = NULL_TREE
;
1313 DECL_SAVED_TREE (extp
) = NULL_TREE
;
1314 DECL_STRUCT_FUNCTION (extp
) = NULL
;
1316 if (b
->locus
!= UNKNOWN_LOCATION
)
1317 DECL_SOURCE_LOCATION (extp
) = b
->locus
;
1318 DECL_CHAIN (extp
) = BLOCK_VARS (block
);
1319 BLOCK_VARS (block
) = extp
;
1321 /* If this is the file scope set DECL_CONTEXT of each decl to
1322 the TRANSLATION_UNIT_DECL. This makes same_translation_unit_p
1324 if (scope
== file_scope
)
1326 DECL_CONTEXT (p
) = context
;
1327 if (TREE_CODE (p
) == TYPE_DECL
1328 && TREE_TYPE (p
) != error_mark_node
)
1329 set_type_context (TREE_TYPE (p
), context
);
1333 /* Parameters go in DECL_ARGUMENTS, not BLOCK_VARS, and have
1334 already been put there by store_parm_decls. Unused-
1335 parameter warnings are handled by function.c.
1336 error_mark_node obviously does not go in BLOCK_VARS and
1337 does not get unused-variable warnings. */
1340 /* It is possible for a decl not to have a name. We get
1341 here with b->id NULL in this case. */
1344 gcc_assert (I_SYMBOL_BINDING (b
->id
) == b
);
1345 I_SYMBOL_BINDING (b
->id
) = b
->shadowed
;
1346 if (b
->shadowed
&& b
->shadowed
->u
.type
)
1347 TREE_TYPE (b
->shadowed
->decl
) = b
->shadowed
->u
.type
;
1357 /* Dispose of the block that we just made inside some higher level. */
1358 if ((scope
->function_body
|| scope
== file_scope
) && context
)
1360 DECL_INITIAL (context
) = block
;
1361 BLOCK_SUPERCONTEXT (block
) = context
;
1363 else if (scope
->outer
)
1366 SCOPE_LIST_APPEND (scope
->outer
, blocks
, block
);
1367 /* If we did not make a block for the scope just exited, any
1368 blocks made for inner scopes must be carried forward so they
1369 will later become subblocks of something else. */
1370 else if (scope
->blocks
)
1371 SCOPE_LIST_CONCAT (scope
->outer
, blocks
, scope
, blocks
);
1374 /* Pop the current scope, and free the structure for reuse. */
1375 current_scope
= scope
->outer
;
1376 if (scope
->function_body
)
1377 current_function_scope
= scope
->outer_function
;
1379 memset (scope
, 0, sizeof (struct c_scope
));
1380 scope
->outer
= scope_freelist
;
1381 scope_freelist
= scope
;
1387 push_file_scope (void)
1395 file_scope
= current_scope
;
1397 start_fname_decls ();
1399 for (decl
= visible_builtins
; decl
; decl
= DECL_CHAIN (decl
))
1400 bind (DECL_NAME (decl
), decl
, file_scope
,
1401 /*invisible=*/false, /*nested=*/true, DECL_SOURCE_LOCATION (decl
));
1405 pop_file_scope (void)
1407 /* In case there were missing closebraces, get us back to the global
1409 while (current_scope
!= file_scope
)
1412 /* __FUNCTION__ is defined at file scope (""). This
1413 call may not be necessary as my tests indicate it
1414 still works without it. */
1415 finish_fname_decls ();
1417 check_inline_statics ();
1419 /* This is the point to write out a PCH if we're doing that.
1420 In that case we do not want to do anything else. */
1423 c_common_write_pch ();
1424 /* Ensure even the callers don't try to finalize the CU. */
1425 flag_syntax_only
= 1;
1429 /* Pop off the file scope and close this translation unit. */
1433 maybe_apply_pending_pragma_weaks ();
1436 /* Adjust the bindings for the start of a statement expression. */
1439 c_bindings_start_stmt_expr (struct c_spot_bindings
* switch_bindings
)
1441 struct c_scope
*scope
;
1443 for (scope
= current_scope
; scope
!= NULL
; scope
= scope
->outer
)
1445 struct c_binding
*b
;
1447 if (!scope
->has_label_bindings
)
1450 for (b
= scope
->bindings
; b
!= NULL
; b
= b
->prev
)
1452 struct c_label_vars
*label_vars
;
1454 struct c_goto_bindings
*g
;
1456 if (TREE_CODE (b
->decl
) != LABEL_DECL
)
1458 label_vars
= b
->u
.label
;
1459 ++label_vars
->label_bindings
.stmt_exprs
;
1460 FOR_EACH_VEC_SAFE_ELT (label_vars
->gotos
, ix
, g
)
1461 ++g
->goto_bindings
.stmt_exprs
;
1465 if (switch_bindings
!= NULL
)
1466 ++switch_bindings
->stmt_exprs
;
1469 /* Adjust the bindings for the end of a statement expression. */
1472 c_bindings_end_stmt_expr (struct c_spot_bindings
*switch_bindings
)
1474 struct c_scope
*scope
;
1476 for (scope
= current_scope
; scope
!= NULL
; scope
= scope
->outer
)
1478 struct c_binding
*b
;
1480 if (!scope
->has_label_bindings
)
1483 for (b
= scope
->bindings
; b
!= NULL
; b
= b
->prev
)
1485 struct c_label_vars
*label_vars
;
1487 struct c_goto_bindings
*g
;
1489 if (TREE_CODE (b
->decl
) != LABEL_DECL
)
1491 label_vars
= b
->u
.label
;
1492 --label_vars
->label_bindings
.stmt_exprs
;
1493 if (label_vars
->label_bindings
.stmt_exprs
< 0)
1495 label_vars
->label_bindings
.left_stmt_expr
= true;
1496 label_vars
->label_bindings
.stmt_exprs
= 0;
1498 FOR_EACH_VEC_SAFE_ELT (label_vars
->gotos
, ix
, g
)
1500 --g
->goto_bindings
.stmt_exprs
;
1501 if (g
->goto_bindings
.stmt_exprs
< 0)
1503 g
->goto_bindings
.left_stmt_expr
= true;
1504 g
->goto_bindings
.stmt_exprs
= 0;
1510 if (switch_bindings
!= NULL
)
1512 --switch_bindings
->stmt_exprs
;
1513 gcc_assert (switch_bindings
->stmt_exprs
>= 0);
1517 /* Push a definition or a declaration of struct, union or enum tag "name".
1518 "type" should be the type node.
1519 We assume that the tag "name" is not already defined, and has a location
1522 Note that the definition may really be just a forward reference.
1523 In that case, the TYPE_SIZE will be zero. */
1526 pushtag (location_t loc
, tree name
, tree type
)
1528 /* Record the identifier as the type's name if it has none. */
1529 if (name
&& !TYPE_NAME (type
))
1530 TYPE_NAME (type
) = name
;
1531 bind (name
, type
, current_scope
, /*invisible=*/false, /*nested=*/false, loc
);
1533 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
1534 tagged type we just added to the current scope. This fake
1535 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
1536 to output a representation of a tagged type, and it also gives
1537 us a convenient place to record the "scope start" address for the
1540 TYPE_STUB_DECL (type
) = pushdecl (build_decl (loc
,
1541 TYPE_DECL
, NULL_TREE
, type
));
1543 /* An approximation for now, so we can tell this is a function-scope tag.
1544 This will be updated in pop_scope. */
1545 TYPE_CONTEXT (type
) = DECL_CONTEXT (TYPE_STUB_DECL (type
));
1547 if (warn_cxx_compat
&& name
!= NULL_TREE
)
1549 struct c_binding
*b
= I_SYMBOL_BINDING (name
);
1552 && b
->decl
!= NULL_TREE
1553 && TREE_CODE (b
->decl
) == TYPE_DECL
1554 && (B_IN_CURRENT_SCOPE (b
)
1555 || (current_scope
== file_scope
&& B_IN_EXTERNAL_SCOPE (b
)))
1556 && (TYPE_MAIN_VARIANT (TREE_TYPE (b
->decl
))
1557 != TYPE_MAIN_VARIANT (type
)))
1559 warning_at (loc
, OPT_Wc___compat
,
1560 ("using %qD as both a typedef and a tag is "
1563 if (b
->locus
!= UNKNOWN_LOCATION
)
1564 inform (b
->locus
, "originally defined here");
1569 /* An exported interface to pushtag. This is used by the gdb plugin's
1570 binding oracle to introduce a new tag binding. */
1573 c_pushtag (location_t loc
, tree name
, tree type
)
1575 pushtag (loc
, name
, type
);
1578 /* An exported interface to bind a declaration. LOC is the location
1579 to use. DECL is the declaration to bind. The decl's name is used
1580 to determine how it is bound. If DECL is a VAR_DECL, then
1581 IS_GLOBAL determines whether the decl is put into the global (file
1582 and external) scope or the current function's scope; if DECL is not
1583 a VAR_DECL then it is always put into the file scope. */
1586 c_bind (location_t loc
, tree decl
, bool is_global
)
1588 struct c_scope
*scope
;
1589 bool nested
= false;
1591 if (!VAR_P (decl
) || current_function_scope
== NULL
)
1593 /* Types and functions are always considered to be global. */
1595 DECL_EXTERNAL (decl
) = 1;
1596 TREE_PUBLIC (decl
) = 1;
1600 /* Also bind it into the external scope. */
1601 bind (DECL_NAME (decl
), decl
, external_scope
, true, false, loc
);
1604 DECL_EXTERNAL (decl
) = 1;
1605 TREE_PUBLIC (decl
) = 1;
1609 DECL_CONTEXT (decl
) = current_function_decl
;
1610 TREE_PUBLIC (decl
) = 0;
1611 scope
= current_function_scope
;
1614 bind (DECL_NAME (decl
), decl
, scope
, false, nested
, loc
);
1617 /* Subroutine of compare_decls. Allow harmless mismatches in return
1618 and argument types provided that the type modes match. This function
1619 return a unified type given a suitable match, and 0 otherwise. */
1622 match_builtin_function_types (tree newtype
, tree oldtype
)
1624 tree newrettype
, oldrettype
;
1625 tree newargs
, oldargs
;
1626 tree trytype
, tryargs
;
1628 /* Accept the return type of the new declaration if same modes. */
1629 oldrettype
= TREE_TYPE (oldtype
);
1630 newrettype
= TREE_TYPE (newtype
);
1632 if (TYPE_MODE (oldrettype
) != TYPE_MODE (newrettype
))
1635 oldargs
= TYPE_ARG_TYPES (oldtype
);
1636 newargs
= TYPE_ARG_TYPES (newtype
);
1639 while (oldargs
|| newargs
)
1643 || !TREE_VALUE (oldargs
)
1644 || !TREE_VALUE (newargs
)
1645 || TYPE_MODE (TREE_VALUE (oldargs
))
1646 != TYPE_MODE (TREE_VALUE (newargs
)))
1649 oldargs
= TREE_CHAIN (oldargs
);
1650 newargs
= TREE_CHAIN (newargs
);
1653 trytype
= build_function_type (newrettype
, tryargs
);
1655 /* Allow declaration to change transaction_safe attribute. */
1656 tree oldattrs
= TYPE_ATTRIBUTES (oldtype
);
1657 tree oldtsafe
= lookup_attribute ("transaction_safe", oldattrs
);
1658 tree newattrs
= TYPE_ATTRIBUTES (newtype
);
1659 tree newtsafe
= lookup_attribute ("transaction_safe", newattrs
);
1660 if (oldtsafe
&& !newtsafe
)
1661 oldattrs
= remove_attribute ("transaction_safe", oldattrs
);
1662 else if (newtsafe
&& !oldtsafe
)
1663 oldattrs
= tree_cons (get_identifier ("transaction_safe"),
1664 NULL_TREE
, oldattrs
);
1666 return build_type_attribute_variant (trytype
, oldattrs
);
1669 /* Subroutine of diagnose_mismatched_decls. Check for function type
1670 mismatch involving an empty arglist vs a nonempty one and give clearer
1673 diagnose_arglist_conflict (tree newdecl
, tree olddecl
,
1674 tree newtype
, tree oldtype
)
1678 if (TREE_CODE (olddecl
) != FUNCTION_DECL
1679 || !comptypes (TREE_TYPE (oldtype
), TREE_TYPE (newtype
))
1680 || !((!prototype_p (oldtype
) && DECL_INITIAL (olddecl
) == 0)
1681 || (!prototype_p (newtype
) && DECL_INITIAL (newdecl
) == 0)))
1684 t
= TYPE_ARG_TYPES (oldtype
);
1686 t
= TYPE_ARG_TYPES (newtype
);
1687 for (; t
; t
= TREE_CHAIN (t
))
1689 tree type
= TREE_VALUE (t
);
1691 if (TREE_CHAIN (t
) == 0
1692 && TYPE_MAIN_VARIANT (type
) != void_type_node
)
1694 inform (input_location
, "a parameter list with an ellipsis can%'t match "
1695 "an empty parameter name list declaration");
1699 if (c_type_promotes_to (type
) != type
)
1701 inform (input_location
, "an argument type that has a default promotion can%'t match "
1702 "an empty parameter name list declaration");
1708 /* Another subroutine of diagnose_mismatched_decls. OLDDECL is an
1709 old-style function definition, NEWDECL is a prototype declaration.
1710 Diagnose inconsistencies in the argument list. Returns TRUE if
1711 the prototype is compatible, FALSE if not. */
1713 validate_proto_after_old_defn (tree newdecl
, tree newtype
, tree oldtype
)
1715 tree newargs
, oldargs
;
1718 #define END_OF_ARGLIST(t) ((t) == void_type_node)
1720 oldargs
= TYPE_ACTUAL_ARG_TYPES (oldtype
);
1721 newargs
= TYPE_ARG_TYPES (newtype
);
1726 tree oldargtype
= TREE_VALUE (oldargs
);
1727 tree newargtype
= TREE_VALUE (newargs
);
1729 if (oldargtype
== error_mark_node
|| newargtype
== error_mark_node
)
1732 oldargtype
= (TYPE_ATOMIC (oldargtype
)
1733 ? c_build_qualified_type (TYPE_MAIN_VARIANT (oldargtype
),
1735 : TYPE_MAIN_VARIANT (oldargtype
));
1736 newargtype
= (TYPE_ATOMIC (newargtype
)
1737 ? c_build_qualified_type (TYPE_MAIN_VARIANT (newargtype
),
1739 : TYPE_MAIN_VARIANT (newargtype
));
1741 if (END_OF_ARGLIST (oldargtype
) && END_OF_ARGLIST (newargtype
))
1744 /* Reaching the end of just one list means the two decls don't
1745 agree on the number of arguments. */
1746 if (END_OF_ARGLIST (oldargtype
))
1748 error ("prototype for %q+D declares more arguments "
1749 "than previous old-style definition", newdecl
);
1752 else if (END_OF_ARGLIST (newargtype
))
1754 error ("prototype for %q+D declares fewer arguments "
1755 "than previous old-style definition", newdecl
);
1759 /* Type for passing arg must be consistent with that declared
1761 else if (!comptypes (oldargtype
, newargtype
))
1763 error ("prototype for %q+D declares argument %d"
1764 " with incompatible type",
1769 oldargs
= TREE_CHAIN (oldargs
);
1770 newargs
= TREE_CHAIN (newargs
);
1774 /* If we get here, no errors were found, but do issue a warning
1775 for this poor-style construct. */
1776 warning (0, "prototype for %q+D follows non-prototype definition",
1779 #undef END_OF_ARGLIST
1782 /* Subroutine of diagnose_mismatched_decls. Report the location of DECL,
1783 first in a pair of mismatched declarations, using the diagnostic
1786 locate_old_decl (tree decl
)
1788 if (TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_BUILT_IN (decl
)
1789 && !C_DECL_DECLARED_BUILTIN (decl
))
1791 else if (DECL_INITIAL (decl
))
1792 inform (input_location
, "previous definition of %q+D was here", decl
);
1793 else if (C_DECL_IMPLICIT (decl
))
1794 inform (input_location
, "previous implicit declaration of %q+D was here", decl
);
1796 inform (input_location
, "previous declaration of %q+D was here", decl
);
1799 /* Subroutine of duplicate_decls. Compare NEWDECL to OLDDECL.
1800 Returns true if the caller should proceed to merge the two, false
1801 if OLDDECL should simply be discarded. As a side effect, issues
1802 all necessary diagnostics for invalid or poor-style combinations.
1803 If it returns true, writes the types of NEWDECL and OLDDECL to
1804 *NEWTYPEP and *OLDTYPEP - these may have been adjusted from
1805 TREE_TYPE (NEWDECL, OLDDECL) respectively. */
1808 diagnose_mismatched_decls (tree newdecl
, tree olddecl
,
1809 tree
*newtypep
, tree
*oldtypep
)
1811 tree newtype
, oldtype
;
1812 bool pedwarned
= false;
1813 bool warned
= false;
1816 #define DECL_EXTERN_INLINE(DECL) (DECL_DECLARED_INLINE_P (DECL) \
1817 && DECL_EXTERNAL (DECL))
1819 /* If we have error_mark_node for either decl or type, just discard
1820 the previous decl - we're in an error cascade already. */
1821 if (olddecl
== error_mark_node
|| newdecl
== error_mark_node
)
1823 *oldtypep
= oldtype
= TREE_TYPE (olddecl
);
1824 *newtypep
= newtype
= TREE_TYPE (newdecl
);
1825 if (oldtype
== error_mark_node
|| newtype
== error_mark_node
)
1828 /* Two different categories of symbol altogether. This is an error
1829 unless OLDDECL is a builtin. OLDDECL will be discarded in any case. */
1830 if (TREE_CODE (olddecl
) != TREE_CODE (newdecl
))
1832 if (!(TREE_CODE (olddecl
) == FUNCTION_DECL
1833 && DECL_BUILT_IN (olddecl
)
1834 && !C_DECL_DECLARED_BUILTIN (olddecl
)))
1836 error ("%q+D redeclared as different kind of symbol", newdecl
);
1837 locate_old_decl (olddecl
);
1839 else if (TREE_PUBLIC (newdecl
))
1840 warning (0, "built-in function %q+D declared as non-function",
1843 warning (OPT_Wshadow
, "declaration of %q+D shadows "
1844 "a built-in function", newdecl
);
1848 /* Enumerators have no linkage, so may only be declared once in a
1850 if (TREE_CODE (olddecl
) == CONST_DECL
)
1852 error ("redeclaration of enumerator %q+D", newdecl
);
1853 locate_old_decl (olddecl
);
1857 if (!comptypes (oldtype
, newtype
))
1859 if (TREE_CODE (olddecl
) == FUNCTION_DECL
1860 && DECL_BUILT_IN (olddecl
) && !C_DECL_DECLARED_BUILTIN (olddecl
))
1862 /* Accept harmless mismatch in function types.
1863 This is for the ffs and fprintf builtins. */
1864 tree trytype
= match_builtin_function_types (newtype
, oldtype
);
1866 if (trytype
&& comptypes (newtype
, trytype
))
1867 *oldtypep
= oldtype
= trytype
;
1870 /* If types don't match for a built-in, throw away the
1871 built-in. No point in calling locate_old_decl here, it
1872 won't print anything. */
1873 warning (OPT_Wbuiltin_declaration_mismatch
,
1874 "conflicting types for built-in function %q+D",
1879 else if (TREE_CODE (olddecl
) == FUNCTION_DECL
1880 && DECL_IS_BUILTIN (olddecl
))
1882 /* A conflicting function declaration for a predeclared
1883 function that isn't actually built in. Objective C uses
1884 these. The new declaration silently overrides everything
1885 but the volatility (i.e. noreturn) indication. See also
1886 below. FIXME: Make Objective C use normal builtins. */
1887 TREE_THIS_VOLATILE (newdecl
) |= TREE_THIS_VOLATILE (olddecl
);
1890 /* Permit void foo (...) to match int foo (...) if the latter is
1891 the definition and implicit int was used. See
1892 c-torture/compile/920625-2.c. */
1893 else if (TREE_CODE (newdecl
) == FUNCTION_DECL
&& DECL_INITIAL (newdecl
)
1894 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype
)) == void_type_node
1895 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype
)) == integer_type_node
1896 && C_FUNCTION_IMPLICIT_INT (newdecl
) && !DECL_INITIAL (olddecl
))
1898 pedwarned
= pedwarn (input_location
, 0,
1899 "conflicting types for %q+D", newdecl
);
1900 /* Make sure we keep void as the return type. */
1901 TREE_TYPE (newdecl
) = *newtypep
= newtype
= oldtype
;
1902 C_FUNCTION_IMPLICIT_INT (newdecl
) = 0;
1904 /* Permit void foo (...) to match an earlier call to foo (...) with
1905 no declared type (thus, implicitly int). */
1906 else if (TREE_CODE (newdecl
) == FUNCTION_DECL
1907 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype
)) == void_type_node
1908 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype
)) == integer_type_node
1909 && C_DECL_IMPLICIT (olddecl
) && !DECL_INITIAL (olddecl
))
1911 pedwarned
= pedwarn (input_location
, 0,
1912 "conflicting types for %q+D", newdecl
);
1913 /* Make sure we keep void as the return type. */
1914 TREE_TYPE (olddecl
) = *oldtypep
= oldtype
= newtype
;
1918 int new_quals
= TYPE_QUALS (newtype
);
1919 int old_quals
= TYPE_QUALS (oldtype
);
1921 if (new_quals
!= old_quals
)
1923 addr_space_t new_addr
= DECODE_QUAL_ADDR_SPACE (new_quals
);
1924 addr_space_t old_addr
= DECODE_QUAL_ADDR_SPACE (old_quals
);
1925 if (new_addr
!= old_addr
)
1927 if (ADDR_SPACE_GENERIC_P (new_addr
))
1928 error ("conflicting named address spaces (generic vs %s) "
1930 c_addr_space_name (old_addr
), newdecl
);
1931 else if (ADDR_SPACE_GENERIC_P (old_addr
))
1932 error ("conflicting named address spaces (%s vs generic) "
1934 c_addr_space_name (new_addr
), newdecl
);
1936 error ("conflicting named address spaces (%s vs %s) "
1938 c_addr_space_name (new_addr
),
1939 c_addr_space_name (old_addr
),
1943 if (CLEAR_QUAL_ADDR_SPACE (new_quals
)
1944 != CLEAR_QUAL_ADDR_SPACE (old_quals
))
1945 error ("conflicting type qualifiers for %q+D", newdecl
);
1948 error ("conflicting types for %q+D", newdecl
);
1949 diagnose_arglist_conflict (newdecl
, olddecl
, newtype
, oldtype
);
1950 locate_old_decl (olddecl
);
1955 /* Redeclaration of a type is a constraint violation (6.7.2.3p1),
1956 but silently ignore the redeclaration if either is in a system
1957 header. (Conflicting redeclarations were handled above.) This
1958 is allowed for C11 if the types are the same, not just
1960 if (TREE_CODE (newdecl
) == TYPE_DECL
)
1962 bool types_different
= false;
1963 int comptypes_result
;
1966 = comptypes_check_different_types (oldtype
, newtype
, &types_different
);
1968 if (comptypes_result
!= 1 || types_different
)
1970 error ("redefinition of typedef %q+D with different type", newdecl
);
1971 locate_old_decl (olddecl
);
1975 if (DECL_IN_SYSTEM_HEADER (newdecl
)
1976 || DECL_IN_SYSTEM_HEADER (olddecl
)
1977 || TREE_NO_WARNING (newdecl
)
1978 || TREE_NO_WARNING (olddecl
))
1979 return true; /* Allow OLDDECL to continue in use. */
1981 if (variably_modified_type_p (newtype
, NULL
))
1983 error ("redefinition of typedef %q+D with variably modified type",
1985 locate_old_decl (olddecl
);
1987 else if (pedwarn_c99 (input_location
, OPT_Wpedantic
,
1988 "redefinition of typedef %q+D", newdecl
))
1989 locate_old_decl (olddecl
);
1994 /* Function declarations can either be 'static' or 'extern' (no
1995 qualifier is equivalent to 'extern' - C99 6.2.2p5) and therefore
1996 can never conflict with each other on account of linkage
1997 (6.2.2p4). Multiple definitions are not allowed (6.9p3,5) but
1998 gnu89 mode permits two definitions if one is 'extern inline' and
1999 one is not. The non- extern-inline definition supersedes the
2000 extern-inline definition. */
2002 else if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2004 /* If you declare a built-in function name as static, or
2005 define the built-in with an old-style definition (so we
2006 can't validate the argument list) the built-in definition is
2007 overridden, but optionally warn this was a bad choice of name. */
2008 if (DECL_BUILT_IN (olddecl
)
2009 && !C_DECL_DECLARED_BUILTIN (olddecl
)
2010 && (!TREE_PUBLIC (newdecl
)
2011 || (DECL_INITIAL (newdecl
)
2012 && !prototype_p (TREE_TYPE (newdecl
)))))
2014 warning (OPT_Wshadow
, "declaration of %q+D shadows "
2015 "a built-in function", newdecl
);
2016 /* Discard the old built-in function. */
2020 if (DECL_INITIAL (newdecl
))
2022 if (DECL_INITIAL (olddecl
))
2024 /* If both decls are in the same TU and the new declaration
2025 isn't overriding an extern inline reject the new decl.
2026 In c99, no overriding is allowed in the same translation
2028 if ((!DECL_EXTERN_INLINE (olddecl
)
2029 || DECL_EXTERN_INLINE (newdecl
)
2030 || (!flag_gnu89_inline
2031 && (!DECL_DECLARED_INLINE_P (olddecl
)
2032 || !lookup_attribute ("gnu_inline",
2033 DECL_ATTRIBUTES (olddecl
)))
2034 && (!DECL_DECLARED_INLINE_P (newdecl
)
2035 || !lookup_attribute ("gnu_inline",
2036 DECL_ATTRIBUTES (newdecl
))))
2038 && same_translation_unit_p (newdecl
, olddecl
))
2040 error ("redefinition of %q+D", newdecl
);
2041 locate_old_decl (olddecl
);
2046 /* If we have a prototype after an old-style function definition,
2047 the argument types must be checked specially. */
2048 else if (DECL_INITIAL (olddecl
)
2049 && !prototype_p (oldtype
) && prototype_p (newtype
)
2050 && TYPE_ACTUAL_ARG_TYPES (oldtype
)
2051 && !validate_proto_after_old_defn (newdecl
, newtype
, oldtype
))
2053 locate_old_decl (olddecl
);
2056 /* A non-static declaration (even an "extern") followed by a
2057 static declaration is undefined behavior per C99 6.2.2p3-5,7.
2058 The same is true for a static forward declaration at block
2059 scope followed by a non-static declaration/definition at file
2060 scope. Static followed by non-static at the same scope is
2061 not undefined behavior, and is the most convenient way to get
2062 some effects (see e.g. what unwind-dw2-fde-glibc.c does to
2063 the definition of _Unwind_Find_FDE in unwind-dw2-fde.c), but
2064 we do diagnose it if -Wtraditional. */
2065 if (TREE_PUBLIC (olddecl
) && !TREE_PUBLIC (newdecl
))
2067 /* Two exceptions to the rule. If olddecl is an extern
2068 inline, or a predeclared function that isn't actually
2069 built in, newdecl silently overrides olddecl. The latter
2070 occur only in Objective C; see also above. (FIXME: Make
2071 Objective C use normal builtins.) */
2072 if (!DECL_IS_BUILTIN (olddecl
)
2073 && !DECL_EXTERN_INLINE (olddecl
))
2075 error ("static declaration of %q+D follows "
2076 "non-static declaration", newdecl
);
2077 locate_old_decl (olddecl
);
2081 else if (TREE_PUBLIC (newdecl
) && !TREE_PUBLIC (olddecl
))
2083 if (DECL_CONTEXT (olddecl
))
2085 error ("non-static declaration of %q+D follows "
2086 "static declaration", newdecl
);
2087 locate_old_decl (olddecl
);
2090 else if (warn_traditional
)
2092 warned
|= warning (OPT_Wtraditional
,
2093 "non-static declaration of %q+D "
2094 "follows static declaration", newdecl
);
2098 /* Make sure gnu_inline attribute is either not present, or
2099 present on all inline decls. */
2100 if (DECL_DECLARED_INLINE_P (olddecl
)
2101 && DECL_DECLARED_INLINE_P (newdecl
))
2103 bool newa
= lookup_attribute ("gnu_inline",
2104 DECL_ATTRIBUTES (newdecl
)) != NULL
;
2105 bool olda
= lookup_attribute ("gnu_inline",
2106 DECL_ATTRIBUTES (olddecl
)) != NULL
;
2109 error_at (input_location
, "%<gnu_inline%> attribute present on %q+D",
2110 newa
? newdecl
: olddecl
);
2111 error_at (DECL_SOURCE_LOCATION (newa
? olddecl
: newdecl
),
2116 else if (VAR_P (newdecl
))
2118 /* Only variables can be thread-local, and all declarations must
2119 agree on this property. */
2120 if (C_DECL_THREADPRIVATE_P (olddecl
) && !DECL_THREAD_LOCAL_P (newdecl
))
2122 /* Nothing to check. Since OLDDECL is marked threadprivate
2123 and NEWDECL does not have a thread-local attribute, we
2124 will merge the threadprivate attribute into NEWDECL. */
2127 else if (DECL_THREAD_LOCAL_P (newdecl
) != DECL_THREAD_LOCAL_P (olddecl
))
2129 if (DECL_THREAD_LOCAL_P (newdecl
))
2130 error ("thread-local declaration of %q+D follows "
2131 "non-thread-local declaration", newdecl
);
2133 error ("non-thread-local declaration of %q+D follows "
2134 "thread-local declaration", newdecl
);
2136 locate_old_decl (olddecl
);
2140 /* Multiple initialized definitions are not allowed (6.9p3,5). */
2141 if (DECL_INITIAL (newdecl
) && DECL_INITIAL (olddecl
))
2143 error ("redefinition of %q+D", newdecl
);
2144 locate_old_decl (olddecl
);
2148 /* Objects declared at file scope: if the first declaration had
2149 external linkage (even if it was an external reference) the
2150 second must have external linkage as well, or the behavior is
2151 undefined. If the first declaration had internal linkage, then
2152 the second must too, or else be an external reference (in which
2153 case the composite declaration still has internal linkage).
2154 As for function declarations, we warn about the static-then-
2155 extern case only for -Wtraditional. See generally 6.2.2p3-5,7. */
2156 if (DECL_FILE_SCOPE_P (newdecl
)
2157 && TREE_PUBLIC (newdecl
) != TREE_PUBLIC (olddecl
))
2159 if (DECL_EXTERNAL (newdecl
))
2161 if (!DECL_FILE_SCOPE_P (olddecl
))
2163 error ("extern declaration of %q+D follows "
2164 "declaration with no linkage", newdecl
);
2165 locate_old_decl (olddecl
);
2168 else if (warn_traditional
)
2170 warned
|= warning (OPT_Wtraditional
,
2171 "non-static declaration of %q+D "
2172 "follows static declaration", newdecl
);
2177 if (TREE_PUBLIC (newdecl
))
2178 error ("non-static declaration of %q+D follows "
2179 "static declaration", newdecl
);
2181 error ("static declaration of %q+D follows "
2182 "non-static declaration", newdecl
);
2184 locate_old_decl (olddecl
);
2188 /* Two objects with the same name declared at the same block
2189 scope must both be external references (6.7p3). */
2190 else if (!DECL_FILE_SCOPE_P (newdecl
))
2192 if (DECL_EXTERNAL (newdecl
))
2194 /* Extern with initializer at block scope, which will
2195 already have received an error. */
2197 else if (DECL_EXTERNAL (olddecl
))
2199 error ("declaration of %q+D with no linkage follows "
2200 "extern declaration", newdecl
);
2201 locate_old_decl (olddecl
);
2205 error ("redeclaration of %q+D with no linkage", newdecl
);
2206 locate_old_decl (olddecl
);
2212 /* C++ does not permit a decl to appear multiple times at file
2215 && DECL_FILE_SCOPE_P (newdecl
)
2216 && !DECL_EXTERNAL (newdecl
)
2217 && !DECL_EXTERNAL (olddecl
))
2218 warned
|= warning_at (DECL_SOURCE_LOCATION (newdecl
),
2220 ("duplicate declaration of %qD is "
2226 /* All decls must agree on a visibility. */
2227 if (CODE_CONTAINS_STRUCT (TREE_CODE (newdecl
), TS_DECL_WITH_VIS
)
2228 && DECL_VISIBILITY_SPECIFIED (newdecl
) && DECL_VISIBILITY_SPECIFIED (olddecl
)
2229 && DECL_VISIBILITY (newdecl
) != DECL_VISIBILITY (olddecl
))
2231 warned
|= warning (0, "redeclaration of %q+D with different visibility "
2232 "(old visibility preserved)", newdecl
);
2235 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2236 warned
|= diagnose_mismatched_attributes (olddecl
, newdecl
);
2237 else /* PARM_DECL, VAR_DECL */
2239 /* Redeclaration of a parameter is a constraint violation (this is
2240 not explicitly stated, but follows from C99 6.7p3 [no more than
2241 one declaration of the same identifier with no linkage in the
2242 same scope, except type tags] and 6.2.2p6 [parameters have no
2243 linkage]). We must check for a forward parameter declaration,
2244 indicated by TREE_ASM_WRITTEN on the old declaration - this is
2245 an extension, the mandatory diagnostic for which is handled by
2246 mark_forward_parm_decls. */
2248 if (TREE_CODE (newdecl
) == PARM_DECL
2249 && (!TREE_ASM_WRITTEN (olddecl
) || TREE_ASM_WRITTEN (newdecl
)))
2251 error ("redefinition of parameter %q+D", newdecl
);
2252 locate_old_decl (olddecl
);
2257 /* Optional warning for completely redundant decls. */
2258 if (!warned
&& !pedwarned
2259 && warn_redundant_decls
2260 /* Don't warn about a function declaration followed by a
2262 && !(TREE_CODE (newdecl
) == FUNCTION_DECL
2263 && DECL_INITIAL (newdecl
) && !DECL_INITIAL (olddecl
))
2264 /* Don't warn about redundant redeclarations of builtins. */
2265 && !(TREE_CODE (newdecl
) == FUNCTION_DECL
2266 && !DECL_BUILT_IN (newdecl
)
2267 && DECL_BUILT_IN (olddecl
)
2268 && !C_DECL_DECLARED_BUILTIN (olddecl
))
2269 /* Don't warn about an extern followed by a definition. */
2270 && !(DECL_EXTERNAL (olddecl
) && !DECL_EXTERNAL (newdecl
))
2271 /* Don't warn about forward parameter decls. */
2272 && !(TREE_CODE (newdecl
) == PARM_DECL
2273 && TREE_ASM_WRITTEN (olddecl
) && !TREE_ASM_WRITTEN (newdecl
))
2274 /* Don't warn about a variable definition following a declaration. */
2275 && !(VAR_P (newdecl
)
2276 && DECL_INITIAL (newdecl
) && !DECL_INITIAL (olddecl
)))
2278 warned
= warning (OPT_Wredundant_decls
, "redundant redeclaration of %q+D",
2282 /* Report location of previous decl/defn. */
2283 if (warned
|| pedwarned
)
2284 locate_old_decl (olddecl
);
2286 #undef DECL_EXTERN_INLINE
2291 /* Subroutine of duplicate_decls. NEWDECL has been found to be
2292 consistent with OLDDECL, but carries new information. Merge the
2293 new information into OLDDECL. This function issues no
2297 merge_decls (tree newdecl
, tree olddecl
, tree newtype
, tree oldtype
)
2299 bool new_is_definition
= (TREE_CODE (newdecl
) == FUNCTION_DECL
2300 && DECL_INITIAL (newdecl
) != 0);
2301 bool new_is_prototype
= (TREE_CODE (newdecl
) == FUNCTION_DECL
2302 && prototype_p (TREE_TYPE (newdecl
)));
2303 bool old_is_prototype
= (TREE_CODE (olddecl
) == FUNCTION_DECL
2304 && prototype_p (TREE_TYPE (olddecl
)));
2306 /* For real parm decl following a forward decl, rechain the old decl
2307 in its new location and clear TREE_ASM_WRITTEN (it's not a
2308 forward decl anymore). */
2309 if (TREE_CODE (newdecl
) == PARM_DECL
2310 && TREE_ASM_WRITTEN (olddecl
) && !TREE_ASM_WRITTEN (newdecl
))
2312 struct c_binding
*b
, **here
;
2314 for (here
= ¤t_scope
->bindings
; *here
; here
= &(*here
)->prev
)
2315 if ((*here
)->decl
== olddecl
)
2322 b
->prev
= current_scope
->bindings
;
2323 current_scope
->bindings
= b
;
2325 TREE_ASM_WRITTEN (olddecl
) = 0;
2328 DECL_ATTRIBUTES (newdecl
)
2329 = targetm
.merge_decl_attributes (olddecl
, newdecl
);
2331 /* For typedefs use the old type, as the new type's DECL_NAME points
2332 at newdecl, which will be ggc_freed. */
2333 if (TREE_CODE (newdecl
) == TYPE_DECL
)
2335 /* But NEWTYPE might have an attribute, honor that. */
2339 if (TYPE_USER_ALIGN (tem
))
2341 if (TYPE_ALIGN (tem
) > TYPE_ALIGN (newtype
))
2342 SET_TYPE_ALIGN (newtype
, TYPE_ALIGN (tem
));
2343 TYPE_USER_ALIGN (newtype
) = true;
2346 /* And remove the new type from the variants list. */
2347 if (TYPE_NAME (TREE_TYPE (newdecl
)) == newdecl
)
2349 tree remove
= TREE_TYPE (newdecl
);
2350 for (tree t
= TYPE_MAIN_VARIANT (remove
); ;
2351 t
= TYPE_NEXT_VARIANT (t
))
2352 if (TYPE_NEXT_VARIANT (t
) == remove
)
2354 TYPE_NEXT_VARIANT (t
) = TYPE_NEXT_VARIANT (remove
);
2360 /* Merge the data types specified in the two decls. */
2362 = TREE_TYPE (olddecl
)
2363 = composite_type (newtype
, oldtype
);
2365 /* Lay the type out, unless already done. */
2366 if (!comptypes (oldtype
, TREE_TYPE (newdecl
)))
2368 if (TREE_TYPE (newdecl
) != error_mark_node
)
2369 layout_type (TREE_TYPE (newdecl
));
2370 if (TREE_CODE (newdecl
) != FUNCTION_DECL
2371 && TREE_CODE (newdecl
) != TYPE_DECL
2372 && TREE_CODE (newdecl
) != CONST_DECL
)
2373 layout_decl (newdecl
, 0);
2377 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
2378 DECL_SIZE (newdecl
) = DECL_SIZE (olddecl
);
2379 DECL_SIZE_UNIT (newdecl
) = DECL_SIZE_UNIT (olddecl
);
2380 SET_DECL_MODE (newdecl
, DECL_MODE (olddecl
));
2381 if (DECL_ALIGN (olddecl
) > DECL_ALIGN (newdecl
))
2383 SET_DECL_ALIGN (newdecl
, DECL_ALIGN (olddecl
));
2384 DECL_USER_ALIGN (newdecl
) |= DECL_USER_ALIGN (olddecl
);
2388 /* Keep the old rtl since we can safely use it. */
2389 if (HAS_RTL_P (olddecl
))
2390 COPY_DECL_RTL (olddecl
, newdecl
);
2392 /* Merge the type qualifiers. */
2393 if (TREE_READONLY (newdecl
))
2394 TREE_READONLY (olddecl
) = 1;
2396 if (TREE_THIS_VOLATILE (newdecl
))
2397 TREE_THIS_VOLATILE (olddecl
) = 1;
2399 /* Merge deprecatedness. */
2400 if (TREE_DEPRECATED (newdecl
))
2401 TREE_DEPRECATED (olddecl
) = 1;
2403 /* If a decl is in a system header and the other isn't, keep the one on the
2404 system header. Otherwise, keep source location of definition rather than
2405 declaration and of prototype rather than non-prototype unless that
2406 prototype is built-in. */
2407 if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl
), TS_DECL_WITH_VIS
)
2408 && DECL_IN_SYSTEM_HEADER (olddecl
)
2409 && !DECL_IN_SYSTEM_HEADER (newdecl
) )
2410 DECL_SOURCE_LOCATION (newdecl
) = DECL_SOURCE_LOCATION (olddecl
);
2411 else if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl
), TS_DECL_WITH_VIS
)
2412 && DECL_IN_SYSTEM_HEADER (newdecl
)
2413 && !DECL_IN_SYSTEM_HEADER (olddecl
))
2414 DECL_SOURCE_LOCATION (olddecl
) = DECL_SOURCE_LOCATION (newdecl
);
2415 else if ((DECL_INITIAL (newdecl
) == 0 && DECL_INITIAL (olddecl
) != 0)
2416 || (old_is_prototype
&& !new_is_prototype
2417 && !C_DECL_BUILTIN_PROTOTYPE (olddecl
)))
2418 DECL_SOURCE_LOCATION (newdecl
) = DECL_SOURCE_LOCATION (olddecl
);
2420 /* Merge the initialization information. */
2421 if (DECL_INITIAL (newdecl
) == 0)
2422 DECL_INITIAL (newdecl
) = DECL_INITIAL (olddecl
);
2424 /* Merge the threadprivate attribute. */
2425 if (VAR_P (olddecl
) && C_DECL_THREADPRIVATE_P (olddecl
))
2426 C_DECL_THREADPRIVATE_P (newdecl
) = 1;
2428 if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl
), TS_DECL_WITH_VIS
))
2430 /* Copy the assembler name.
2431 Currently, it can only be defined in the prototype. */
2432 COPY_DECL_ASSEMBLER_NAME (olddecl
, newdecl
);
2434 /* Use visibility of whichever declaration had it specified */
2435 if (DECL_VISIBILITY_SPECIFIED (olddecl
))
2437 DECL_VISIBILITY (newdecl
) = DECL_VISIBILITY (olddecl
);
2438 DECL_VISIBILITY_SPECIFIED (newdecl
) = 1;
2441 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2443 DECL_STATIC_CONSTRUCTOR(newdecl
) |= DECL_STATIC_CONSTRUCTOR(olddecl
);
2444 DECL_STATIC_DESTRUCTOR (newdecl
) |= DECL_STATIC_DESTRUCTOR (olddecl
);
2445 DECL_NO_LIMIT_STACK (newdecl
) |= DECL_NO_LIMIT_STACK (olddecl
);
2446 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl
)
2447 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl
);
2448 TREE_THIS_VOLATILE (newdecl
) |= TREE_THIS_VOLATILE (olddecl
);
2449 DECL_IS_MALLOC (newdecl
) |= DECL_IS_MALLOC (olddecl
);
2450 DECL_IS_OPERATOR_NEW (newdecl
) |= DECL_IS_OPERATOR_NEW (olddecl
);
2451 TREE_READONLY (newdecl
) |= TREE_READONLY (olddecl
);
2452 DECL_PURE_P (newdecl
) |= DECL_PURE_P (olddecl
);
2453 DECL_IS_NOVOPS (newdecl
) |= DECL_IS_NOVOPS (olddecl
);
2456 /* Merge the storage class information. */
2457 merge_weak (newdecl
, olddecl
);
2459 /* For functions, static overrides non-static. */
2460 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2462 TREE_PUBLIC (newdecl
) &= TREE_PUBLIC (olddecl
);
2463 /* This is since we don't automatically
2464 copy the attributes of NEWDECL into OLDDECL. */
2465 TREE_PUBLIC (olddecl
) = TREE_PUBLIC (newdecl
);
2466 /* If this clears `static', clear it in the identifier too. */
2467 if (!TREE_PUBLIC (olddecl
))
2468 TREE_PUBLIC (DECL_NAME (olddecl
)) = 0;
2472 /* In c99, 'extern' declaration before (or after) 'inline' means this
2473 function is not DECL_EXTERNAL, unless 'gnu_inline' attribute
2475 if (TREE_CODE (newdecl
) == FUNCTION_DECL
2476 && !flag_gnu89_inline
2477 && (DECL_DECLARED_INLINE_P (newdecl
)
2478 || DECL_DECLARED_INLINE_P (olddecl
))
2479 && (!DECL_DECLARED_INLINE_P (newdecl
)
2480 || !DECL_DECLARED_INLINE_P (olddecl
)
2481 || !DECL_EXTERNAL (olddecl
))
2482 && DECL_EXTERNAL (newdecl
)
2483 && !lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (newdecl
))
2484 && !current_function_decl
)
2485 DECL_EXTERNAL (newdecl
) = 0;
2487 /* An inline definition following a static declaration is not
2489 if (new_is_definition
2490 && (DECL_DECLARED_INLINE_P (newdecl
)
2491 || DECL_DECLARED_INLINE_P (olddecl
))
2492 && !TREE_PUBLIC (olddecl
))
2493 DECL_EXTERNAL (newdecl
) = 0;
2495 if (DECL_EXTERNAL (newdecl
))
2497 TREE_STATIC (newdecl
) = TREE_STATIC (olddecl
);
2498 DECL_EXTERNAL (newdecl
) = DECL_EXTERNAL (olddecl
);
2500 /* An extern decl does not override previous storage class. */
2501 TREE_PUBLIC (newdecl
) = TREE_PUBLIC (olddecl
);
2502 if (!DECL_EXTERNAL (newdecl
))
2504 DECL_CONTEXT (newdecl
) = DECL_CONTEXT (olddecl
);
2505 DECL_COMMON (newdecl
) = DECL_COMMON (olddecl
);
2510 TREE_STATIC (olddecl
) = TREE_STATIC (newdecl
);
2511 TREE_PUBLIC (olddecl
) = TREE_PUBLIC (newdecl
);
2514 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2516 /* If we're redefining a function previously defined as extern
2517 inline, make sure we emit debug info for the inline before we
2518 throw it away, in case it was inlined into a function that
2519 hasn't been written out yet. */
2520 if (new_is_definition
&& DECL_INITIAL (olddecl
))
2521 /* The new defn must not be inline. */
2522 DECL_UNINLINABLE (newdecl
) = 1;
2525 /* If either decl says `inline', this fn is inline, unless
2526 its definition was passed already. */
2527 if (DECL_DECLARED_INLINE_P (newdecl
)
2528 || DECL_DECLARED_INLINE_P (olddecl
))
2529 DECL_DECLARED_INLINE_P (newdecl
) = 1;
2531 DECL_UNINLINABLE (newdecl
) = DECL_UNINLINABLE (olddecl
)
2532 = (DECL_UNINLINABLE (newdecl
) || DECL_UNINLINABLE (olddecl
));
2534 DECL_DISREGARD_INLINE_LIMITS (newdecl
)
2535 = DECL_DISREGARD_INLINE_LIMITS (olddecl
)
2536 = (DECL_DISREGARD_INLINE_LIMITS (newdecl
)
2537 || DECL_DISREGARD_INLINE_LIMITS (olddecl
));
2540 if (DECL_BUILT_IN (olddecl
))
2542 /* If redeclaring a builtin function, it stays built in.
2543 But it gets tagged as having been declared. */
2544 DECL_BUILT_IN_CLASS (newdecl
) = DECL_BUILT_IN_CLASS (olddecl
);
2545 DECL_FUNCTION_CODE (newdecl
) = DECL_FUNCTION_CODE (olddecl
);
2546 C_DECL_DECLARED_BUILTIN (newdecl
) = 1;
2547 if (new_is_prototype
)
2549 C_DECL_BUILTIN_PROTOTYPE (newdecl
) = 0;
2550 if (DECL_BUILT_IN_CLASS (newdecl
) == BUILT_IN_NORMAL
)
2552 enum built_in_function fncode
= DECL_FUNCTION_CODE (newdecl
);
2555 /* If a compatible prototype of these builtin functions
2556 is seen, assume the runtime implements it with the
2557 expected semantics. */
2558 case BUILT_IN_STPCPY
:
2559 if (builtin_decl_explicit_p (fncode
))
2560 set_builtin_decl_implicit_p (fncode
, true);
2563 if (builtin_decl_explicit_p (fncode
))
2564 set_builtin_decl_declared_p (fncode
, true);
2570 C_DECL_BUILTIN_PROTOTYPE (newdecl
)
2571 = C_DECL_BUILTIN_PROTOTYPE (olddecl
);
2574 /* Preserve function specific target and optimization options */
2575 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl
)
2576 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl
))
2577 DECL_FUNCTION_SPECIFIC_TARGET (newdecl
)
2578 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl
);
2580 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl
)
2581 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl
))
2582 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl
)
2583 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl
);
2585 /* Also preserve various other info from the definition. */
2586 if (!new_is_definition
)
2589 DECL_RESULT (newdecl
) = DECL_RESULT (olddecl
);
2590 DECL_INITIAL (newdecl
) = DECL_INITIAL (olddecl
);
2591 DECL_STRUCT_FUNCTION (newdecl
) = DECL_STRUCT_FUNCTION (olddecl
);
2592 DECL_SAVED_TREE (newdecl
) = DECL_SAVED_TREE (olddecl
);
2593 DECL_ARGUMENTS (newdecl
) = copy_list (DECL_ARGUMENTS (olddecl
));
2594 for (t
= DECL_ARGUMENTS (newdecl
); t
; t
= DECL_CHAIN (t
))
2595 DECL_CONTEXT (t
) = newdecl
;
2597 /* See if we've got a function to instantiate from. */
2598 if (DECL_SAVED_TREE (olddecl
))
2599 DECL_ABSTRACT_ORIGIN (newdecl
)
2600 = DECL_ABSTRACT_ORIGIN (olddecl
);
2604 /* Merge the USED information. */
2605 if (TREE_USED (olddecl
))
2606 TREE_USED (newdecl
) = 1;
2607 else if (TREE_USED (newdecl
))
2608 TREE_USED (olddecl
) = 1;
2609 if (VAR_P (olddecl
) || TREE_CODE (olddecl
) == PARM_DECL
)
2610 DECL_READ_P (newdecl
) |= DECL_READ_P (olddecl
);
2611 if (DECL_PRESERVE_P (olddecl
))
2612 DECL_PRESERVE_P (newdecl
) = 1;
2613 else if (DECL_PRESERVE_P (newdecl
))
2614 DECL_PRESERVE_P (olddecl
) = 1;
2616 /* Merge DECL_COMMON */
2617 if (VAR_P (olddecl
) && VAR_P (newdecl
)
2618 && !lookup_attribute ("common", DECL_ATTRIBUTES (newdecl
))
2619 && !lookup_attribute ("nocommon", DECL_ATTRIBUTES (newdecl
)))
2620 DECL_COMMON (newdecl
) = DECL_COMMON (newdecl
) && DECL_COMMON (olddecl
);
2622 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
2623 But preserve OLDDECL's DECL_UID, DECL_CONTEXT and
2624 DECL_ARGUMENTS (if appropriate). */
2626 unsigned olddecl_uid
= DECL_UID (olddecl
);
2627 tree olddecl_context
= DECL_CONTEXT (olddecl
);
2628 tree olddecl_arguments
= NULL
;
2629 if (TREE_CODE (olddecl
) == FUNCTION_DECL
)
2630 olddecl_arguments
= DECL_ARGUMENTS (olddecl
);
2632 memcpy ((char *) olddecl
+ sizeof (struct tree_common
),
2633 (char *) newdecl
+ sizeof (struct tree_common
),
2634 sizeof (struct tree_decl_common
) - sizeof (struct tree_common
));
2635 DECL_USER_ALIGN (olddecl
) = DECL_USER_ALIGN (newdecl
);
2636 switch (TREE_CODE (olddecl
))
2641 struct symtab_node
*snode
= olddecl
->decl_with_vis
.symtab_node
;
2643 memcpy ((char *) olddecl
+ sizeof (struct tree_decl_common
),
2644 (char *) newdecl
+ sizeof (struct tree_decl_common
),
2645 tree_code_size (TREE_CODE (olddecl
)) - sizeof (struct tree_decl_common
));
2646 olddecl
->decl_with_vis
.symtab_node
= snode
;
2648 if ((DECL_EXTERNAL (olddecl
)
2649 || TREE_PUBLIC (olddecl
)
2650 || TREE_STATIC (olddecl
))
2651 && DECL_SECTION_NAME (newdecl
) != NULL
)
2652 set_decl_section_name (olddecl
, DECL_SECTION_NAME (newdecl
));
2654 /* This isn't quite correct for something like
2655 int __thread x attribute ((tls_model ("local-exec")));
2656 extern int __thread x;
2657 as we'll lose the "local-exec" model. */
2658 if (VAR_P (olddecl
) && DECL_THREAD_LOCAL_P (newdecl
))
2659 set_decl_tls_model (olddecl
, DECL_TLS_MODEL (newdecl
));
2669 memcpy ((char *) olddecl
+ sizeof (struct tree_decl_common
),
2670 (char *) newdecl
+ sizeof (struct tree_decl_common
),
2671 tree_code_size (TREE_CODE (olddecl
)) - sizeof (struct tree_decl_common
));
2676 memcpy ((char *) olddecl
+ sizeof (struct tree_decl_common
),
2677 (char *) newdecl
+ sizeof (struct tree_decl_common
),
2678 sizeof (struct tree_decl_non_common
) - sizeof (struct tree_decl_common
));
2680 DECL_UID (olddecl
) = olddecl_uid
;
2681 DECL_CONTEXT (olddecl
) = olddecl_context
;
2682 if (TREE_CODE (olddecl
) == FUNCTION_DECL
)
2683 DECL_ARGUMENTS (olddecl
) = olddecl_arguments
;
2686 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
2687 so that encode_section_info has a chance to look at the new decl
2688 flags and attributes. */
2689 if (DECL_RTL_SET_P (olddecl
)
2690 && (TREE_CODE (olddecl
) == FUNCTION_DECL
2691 || (VAR_P (olddecl
) && TREE_STATIC (olddecl
))))
2692 make_decl_rtl (olddecl
);
2695 /* Handle when a new declaration NEWDECL has the same name as an old
2696 one OLDDECL in the same binding contour. Prints an error message
2699 If safely possible, alter OLDDECL to look like NEWDECL, and return
2700 true. Otherwise, return false. */
2703 duplicate_decls (tree newdecl
, tree olddecl
)
2705 tree newtype
= NULL
, oldtype
= NULL
;
2707 if (!diagnose_mismatched_decls (newdecl
, olddecl
, &newtype
, &oldtype
))
2709 /* Avoid `unused variable' and other warnings for OLDDECL. */
2710 TREE_NO_WARNING (olddecl
) = 1;
2714 merge_decls (newdecl
, olddecl
, newtype
, oldtype
);
2716 /* The NEWDECL will no longer be needed.
2718 Before releasing the node, be sure to remove function from symbol
2719 table that might have been inserted there to record comdat group.
2720 Be sure to however do not free DECL_STRUCT_FUNCTION because this
2721 structure is shared in between NEWDECL and OLDECL. */
2722 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2723 DECL_STRUCT_FUNCTION (newdecl
) = NULL
;
2724 if (VAR_OR_FUNCTION_DECL_P (newdecl
))
2726 struct symtab_node
*snode
= symtab_node::get (newdecl
);
2735 /* Check whether decl-node NEW_DECL shadows an existing declaration. */
2737 warn_if_shadowing (tree new_decl
)
2739 struct c_binding
*b
;
2741 /* Shadow warnings wanted? */
2743 || warn_shadow_local
2744 || warn_shadow_compatible_local
)
2745 /* No shadow warnings for internally generated vars. */
2746 || DECL_IS_BUILTIN (new_decl
)
2747 /* No shadow warnings for vars made for inlining. */
2748 || DECL_FROM_INLINE (new_decl
))
2751 /* Is anything being shadowed? Invisible decls do not count. */
2752 for (b
= I_SYMBOL_BINDING (DECL_NAME (new_decl
)); b
; b
= b
->shadowed
)
2753 if (b
->decl
&& b
->decl
!= new_decl
&& !b
->invisible
2754 && (b
->decl
== error_mark_node
2755 || diagnostic_report_warnings_p (global_dc
,
2756 DECL_SOURCE_LOCATION (b
->decl
))))
2758 tree old_decl
= b
->decl
;
2759 bool warned
= false;
2761 if (old_decl
== error_mark_node
)
2763 warning (OPT_Wshadow
, "declaration of %q+D shadows previous "
2764 "non-variable", new_decl
);
2767 else if (TREE_CODE (old_decl
) == PARM_DECL
)
2769 enum opt_code warning_code
;
2771 /* If '-Wshadow=compatible-local' is specified without other
2772 -Wshadow= flags, we will warn only when the types of the
2773 shadowing variable (i.e. new_decl) and the shadowed variable
2774 (old_decl) are compatible. */
2776 warning_code
= OPT_Wshadow
;
2777 else if (comptypes (TREE_TYPE (old_decl
), TREE_TYPE (new_decl
)))
2778 warning_code
= OPT_Wshadow_compatible_local
;
2780 warning_code
= OPT_Wshadow_local
;
2781 warned
= warning_at (DECL_SOURCE_LOCATION (new_decl
), warning_code
,
2782 "declaration of %qD shadows a parameter",
2785 else if (DECL_FILE_SCOPE_P (old_decl
))
2787 /* Do not warn if a variable shadows a function, unless
2788 the variable is a function or a pointer-to-function. */
2789 if (TREE_CODE (old_decl
) == FUNCTION_DECL
2790 && TREE_CODE (new_decl
) != FUNCTION_DECL
2791 && !FUNCTION_POINTER_TYPE_P (TREE_TYPE (new_decl
)))
2794 warned
= warning_at (DECL_SOURCE_LOCATION (new_decl
), OPT_Wshadow
,
2795 "declaration of %qD shadows a global "
2799 else if (TREE_CODE (old_decl
) == FUNCTION_DECL
2800 && DECL_BUILT_IN (old_decl
))
2802 warning (OPT_Wshadow
, "declaration of %q+D shadows "
2803 "a built-in function", new_decl
);
2808 enum opt_code warning_code
;
2810 /* If '-Wshadow=compatible-local' is specified without other
2811 -Wshadow= flags, we will warn only when the types of the
2812 shadowing variable (i.e. new_decl) and the shadowed variable
2813 (old_decl) are compatible. */
2815 warning_code
= OPT_Wshadow
;
2816 else if (comptypes (TREE_TYPE (old_decl
), TREE_TYPE (new_decl
)))
2817 warning_code
= OPT_Wshadow_compatible_local
;
2819 warning_code
= OPT_Wshadow_local
;
2820 warned
= warning_at (DECL_SOURCE_LOCATION (new_decl
), warning_code
,
2821 "declaration of %qD shadows a previous local",
2826 inform (DECL_SOURCE_LOCATION (old_decl
),
2827 "shadowed declaration is here");
2833 /* Record a decl-node X as belonging to the current lexical scope.
2834 Check for errors (such as an incompatible declaration for the same
2835 name already seen in the same scope).
2837 Returns either X or an old decl for the same name.
2838 If an old decl is returned, it may have been smashed
2839 to agree with what X says. */
2844 tree name
= DECL_NAME (x
);
2845 struct c_scope
*scope
= current_scope
;
2846 struct c_binding
*b
;
2847 bool nested
= false;
2848 location_t locus
= DECL_SOURCE_LOCATION (x
);
2850 /* Must set DECL_CONTEXT for everything not at file scope or
2851 DECL_FILE_SCOPE_P won't work. Local externs don't count
2852 unless they have initializers (which generate code). */
2853 if (current_function_decl
2854 && (!VAR_OR_FUNCTION_DECL_P (x
)
2855 || DECL_INITIAL (x
) || !DECL_EXTERNAL (x
)))
2856 DECL_CONTEXT (x
) = current_function_decl
;
2858 /* Anonymous decls are just inserted in the scope. */
2861 bind (name
, x
, scope
, /*invisible=*/false, /*nested=*/false,
2866 /* First, see if there is another declaration with the same name in
2867 the current scope. If there is, duplicate_decls may do all the
2868 work for us. If duplicate_decls returns false, that indicates
2869 two incompatible decls in the same scope; we are to silently
2870 replace the old one (duplicate_decls has issued all appropriate
2871 diagnostics). In particular, we should not consider possible
2872 duplicates in the external scope, or shadowing. */
2873 b
= I_SYMBOL_BINDING (name
);
2874 if (b
&& B_IN_SCOPE (b
, scope
))
2876 struct c_binding
*b_ext
, *b_use
;
2877 tree type
= TREE_TYPE (x
);
2878 tree visdecl
= b
->decl
;
2879 tree vistype
= TREE_TYPE (visdecl
);
2880 if (TREE_CODE (TREE_TYPE (x
)) == ARRAY_TYPE
2881 && COMPLETE_TYPE_P (TREE_TYPE (x
)))
2882 b
->inner_comp
= false;
2885 /* If this is an external linkage declaration, we should check
2886 for compatibility with the type in the external scope before
2887 setting the type at this scope based on the visible
2888 information only. */
2889 if (TREE_PUBLIC (x
) && TREE_PUBLIC (visdecl
))
2891 while (b_ext
&& !B_IN_EXTERNAL_SCOPE (b_ext
))
2892 b_ext
= b_ext
->shadowed
;
2897 TREE_TYPE (b_use
->decl
) = b_use
->u
.type
;
2900 if (duplicate_decls (x
, b_use
->decl
))
2904 /* Save the updated type in the external scope and
2905 restore the proper type for this scope. */
2907 if (comptypes (vistype
, type
))
2908 thistype
= composite_type (vistype
, type
);
2910 thistype
= TREE_TYPE (b_use
->decl
);
2911 b_use
->u
.type
= TREE_TYPE (b_use
->decl
);
2912 if (TREE_CODE (b_use
->decl
) == FUNCTION_DECL
2913 && DECL_BUILT_IN (b_use
->decl
))
2915 = build_type_attribute_variant (thistype
,
2918 TREE_TYPE (b_use
->decl
) = thistype
;
2923 goto skip_external_and_shadow_checks
;
2926 /* All declarations with external linkage, and all external
2927 references, go in the external scope, no matter what scope is
2928 current. However, the binding in that scope is ignored for
2929 purposes of normal name lookup. A separate binding structure is
2930 created in the requested scope; this governs the normal
2931 visibility of the symbol.
2933 The binding in the externals scope is used exclusively for
2934 detecting duplicate declarations of the same object, no matter
2935 what scope they are in; this is what we do here. (C99 6.2.7p2:
2936 All declarations that refer to the same object or function shall
2937 have compatible type; otherwise, the behavior is undefined.) */
2938 if (DECL_EXTERNAL (x
) || scope
== file_scope
)
2940 tree type
= TREE_TYPE (x
);
2943 bool type_saved
= false;
2944 if (b
&& !B_IN_EXTERNAL_SCOPE (b
)
2945 && VAR_OR_FUNCTION_DECL_P (b
->decl
)
2946 && DECL_FILE_SCOPE_P (b
->decl
))
2949 vistype
= TREE_TYPE (visdecl
);
2951 if (scope
!= file_scope
2952 && !DECL_IN_SYSTEM_HEADER (x
))
2953 warning_at (locus
, OPT_Wnested_externs
,
2954 "nested extern declaration of %qD", x
);
2956 while (b
&& !B_IN_EXTERNAL_SCOPE (b
))
2958 /* If this decl might be modified, save its type. This is
2959 done here rather than when the decl is first bound
2960 because the type may change after first binding, through
2961 being completed or through attributes being added. If we
2962 encounter multiple such decls, only the first should have
2963 its type saved; the others will already have had their
2964 proper types saved and the types will not have changed as
2965 their scopes will not have been re-entered. */
2966 if (DECL_P (b
->decl
) && DECL_FILE_SCOPE_P (b
->decl
) && !type_saved
)
2968 b
->u
.type
= TREE_TYPE (b
->decl
);
2971 if (B_IN_FILE_SCOPE (b
)
2973 && TREE_STATIC (b
->decl
)
2974 && TREE_CODE (TREE_TYPE (b
->decl
)) == ARRAY_TYPE
2975 && !TYPE_DOMAIN (TREE_TYPE (b
->decl
))
2976 && TREE_CODE (type
) == ARRAY_TYPE
2977 && TYPE_DOMAIN (type
)
2978 && TYPE_MAX_VALUE (TYPE_DOMAIN (type
))
2979 && !integer_zerop (TYPE_MAX_VALUE (TYPE_DOMAIN (type
))))
2981 /* Array type completed in inner scope, which should be
2982 diagnosed if the completion does not have size 1 and
2983 it does not get completed in the file scope. */
2984 b
->inner_comp
= true;
2989 /* If a matching external declaration has been found, set its
2990 type to the composite of all the types of that declaration.
2991 After the consistency checks, it will be reset to the
2992 composite of the visible types only. */
2993 if (b
&& (TREE_PUBLIC (x
) || same_translation_unit_p (x
, b
->decl
))
2995 TREE_TYPE (b
->decl
) = b
->u
.type
;
2997 /* The point of the same_translation_unit_p check here is,
2998 we want to detect a duplicate decl for a construct like
2999 foo() { extern bar(); } ... static bar(); but not if
3000 they are in different translation units. In any case,
3001 the static does not go in the externals scope. */
3003 && (TREE_PUBLIC (x
) || same_translation_unit_p (x
, b
->decl
))
3004 && duplicate_decls (x
, b
->decl
))
3009 if (comptypes (vistype
, type
))
3010 thistype
= composite_type (vistype
, type
);
3012 thistype
= TREE_TYPE (b
->decl
);
3016 b
->u
.type
= TREE_TYPE (b
->decl
);
3017 if (TREE_CODE (b
->decl
) == FUNCTION_DECL
&& DECL_BUILT_IN (b
->decl
))
3019 = build_type_attribute_variant (thistype
,
3020 TYPE_ATTRIBUTES (b
->u
.type
));
3021 TREE_TYPE (b
->decl
) = thistype
;
3022 bind (name
, b
->decl
, scope
, /*invisible=*/false, /*nested=*/true,
3026 else if (TREE_PUBLIC (x
))
3028 if (visdecl
&& !b
&& duplicate_decls (x
, visdecl
))
3030 /* An external declaration at block scope referring to a
3031 visible entity with internal linkage. The composite
3032 type will already be correct for this scope, so we
3033 just need to fall through to make the declaration in
3040 bind (name
, x
, external_scope
, /*invisible=*/true,
3041 /*nested=*/false, locus
);
3047 if (TREE_CODE (x
) != PARM_DECL
)
3048 warn_if_shadowing (x
);
3050 skip_external_and_shadow_checks
:
3051 if (TREE_CODE (x
) == TYPE_DECL
)
3053 /* So this is a typedef, set its underlying type. */
3054 set_underlying_type (x
);
3056 /* If X is a typedef defined in the current function, record it
3057 for the purpose of implementing the -Wunused-local-typedefs
3059 record_locally_defined_typedef (x
);
3062 bind (name
, x
, scope
, /*invisible=*/false, nested
, locus
);
3064 /* If x's type is incomplete because it's based on a
3065 structure or union which has not yet been fully declared,
3066 attach it to that structure or union type, so we can go
3067 back and complete the variable declaration later, if the
3068 structure or union gets fully declared.
3070 If the input is erroneous, we can have error_mark in the type
3071 slot (e.g. "f(void a, ...)") - that doesn't count as an
3073 if (TREE_TYPE (x
) != error_mark_node
3074 && !COMPLETE_TYPE_P (TREE_TYPE (x
)))
3076 tree element
= TREE_TYPE (x
);
3078 while (TREE_CODE (element
) == ARRAY_TYPE
)
3079 element
= TREE_TYPE (element
);
3080 element
= TYPE_MAIN_VARIANT (element
);
3082 if (RECORD_OR_UNION_TYPE_P (element
)
3083 && (TREE_CODE (x
) != TYPE_DECL
3084 || TREE_CODE (TREE_TYPE (x
)) == ARRAY_TYPE
)
3085 && !COMPLETE_TYPE_P (element
))
3086 C_TYPE_INCOMPLETE_VARS (element
)
3087 = tree_cons (NULL_TREE
, x
, C_TYPE_INCOMPLETE_VARS (element
));
3092 /* Record X as belonging to file scope.
3093 This is used only internally by the Objective-C front end,
3094 and is limited to its needs. duplicate_decls is not called;
3095 if there is any preexisting decl for this identifier, it is an ICE. */
3098 pushdecl_top_level (tree x
)
3101 bool nested
= false;
3102 gcc_assert (VAR_P (x
) || TREE_CODE (x
) == CONST_DECL
);
3104 name
= DECL_NAME (x
);
3106 gcc_assert (TREE_CODE (x
) == CONST_DECL
|| !I_SYMBOL_BINDING (name
));
3108 if (TREE_PUBLIC (x
))
3110 bind (name
, x
, external_scope
, /*invisible=*/true, /*nested=*/false,
3115 bind (name
, x
, file_scope
, /*invisible=*/false, nested
, UNKNOWN_LOCATION
);
3121 implicit_decl_warning (location_t loc
, tree id
, tree olddecl
)
3123 if (warn_implicit_function_declaration
)
3126 const char *hint
= NULL
;
3128 hint
= lookup_name_fuzzy (id
, FUZZY_LOOKUP_FUNCTION_NAME
);
3133 gcc_rich_location
richloc (loc
);
3134 richloc
.add_fixit_replace (hint
);
3135 warned
= pedwarn_at_rich_loc
3136 (&richloc
, OPT_Wimplicit_function_declaration
,
3137 "implicit declaration of function %qE; did you mean %qs?",
3141 warned
= pedwarn (loc
, OPT_Wimplicit_function_declaration
,
3142 "implicit declaration of function %qE", id
);
3146 gcc_rich_location
richloc (loc
);
3147 richloc
.add_fixit_replace (hint
);
3148 warned
= warning_at_rich_loc
3149 (&richloc
, OPT_Wimplicit_function_declaration
,
3150 G_("implicit declaration of function %qE;did you mean %qs?"),
3154 warned
= warning_at (loc
, OPT_Wimplicit_function_declaration
,
3155 G_("implicit declaration of function %qE"), id
);
3156 if (olddecl
&& warned
)
3157 locate_old_decl (olddecl
);
3161 /* This function represents mapping of a function code FCODE
3162 to its respective header. */
3165 header_for_builtin_fn (enum built_in_function fcode
)
3169 CASE_FLT_FN (BUILT_IN_ACOS
):
3170 CASE_FLT_FN (BUILT_IN_ACOSH
):
3171 CASE_FLT_FN (BUILT_IN_ASIN
):
3172 CASE_FLT_FN (BUILT_IN_ASINH
):
3173 CASE_FLT_FN (BUILT_IN_ATAN
):
3174 CASE_FLT_FN (BUILT_IN_ATANH
):
3175 CASE_FLT_FN (BUILT_IN_ATAN2
):
3176 CASE_FLT_FN (BUILT_IN_CBRT
):
3177 CASE_FLT_FN (BUILT_IN_CEIL
):
3178 CASE_FLT_FN (BUILT_IN_COPYSIGN
):
3179 CASE_FLT_FN (BUILT_IN_COS
):
3180 CASE_FLT_FN (BUILT_IN_COSH
):
3181 CASE_FLT_FN (BUILT_IN_ERF
):
3182 CASE_FLT_FN (BUILT_IN_ERFC
):
3183 CASE_FLT_FN (BUILT_IN_EXP
):
3184 CASE_FLT_FN (BUILT_IN_EXP2
):
3185 CASE_FLT_FN (BUILT_IN_EXPM1
):
3186 CASE_FLT_FN (BUILT_IN_FABS
):
3187 CASE_FLT_FN (BUILT_IN_FDIM
):
3188 CASE_FLT_FN (BUILT_IN_FLOOR
):
3189 CASE_FLT_FN (BUILT_IN_FMA
):
3190 CASE_FLT_FN (BUILT_IN_FMAX
):
3191 CASE_FLT_FN (BUILT_IN_FMIN
):
3192 CASE_FLT_FN (BUILT_IN_FMOD
):
3193 CASE_FLT_FN (BUILT_IN_FREXP
):
3194 CASE_FLT_FN (BUILT_IN_HYPOT
):
3195 CASE_FLT_FN (BUILT_IN_ILOGB
):
3196 CASE_FLT_FN (BUILT_IN_LDEXP
):
3197 CASE_FLT_FN (BUILT_IN_LGAMMA
):
3198 CASE_FLT_FN (BUILT_IN_LLRINT
):
3199 CASE_FLT_FN (BUILT_IN_LLROUND
):
3200 CASE_FLT_FN (BUILT_IN_LOG
):
3201 CASE_FLT_FN (BUILT_IN_LOG10
):
3202 CASE_FLT_FN (BUILT_IN_LOG1P
):
3203 CASE_FLT_FN (BUILT_IN_LOG2
):
3204 CASE_FLT_FN (BUILT_IN_LOGB
):
3205 CASE_FLT_FN (BUILT_IN_LRINT
):
3206 CASE_FLT_FN (BUILT_IN_LROUND
):
3207 CASE_FLT_FN (BUILT_IN_MODF
):
3208 CASE_FLT_FN (BUILT_IN_NAN
):
3209 CASE_FLT_FN (BUILT_IN_NEARBYINT
):
3210 CASE_FLT_FN (BUILT_IN_NEXTAFTER
):
3211 CASE_FLT_FN (BUILT_IN_NEXTTOWARD
):
3212 CASE_FLT_FN (BUILT_IN_POW
):
3213 CASE_FLT_FN (BUILT_IN_REMAINDER
):
3214 CASE_FLT_FN (BUILT_IN_REMQUO
):
3215 CASE_FLT_FN (BUILT_IN_RINT
):
3216 CASE_FLT_FN (BUILT_IN_ROUND
):
3217 CASE_FLT_FN (BUILT_IN_SCALBLN
):
3218 CASE_FLT_FN (BUILT_IN_SCALBN
):
3219 CASE_FLT_FN (BUILT_IN_SIN
):
3220 CASE_FLT_FN (BUILT_IN_SINH
):
3221 CASE_FLT_FN (BUILT_IN_SINCOS
):
3222 CASE_FLT_FN (BUILT_IN_SQRT
):
3223 CASE_FLT_FN (BUILT_IN_TAN
):
3224 CASE_FLT_FN (BUILT_IN_TANH
):
3225 CASE_FLT_FN (BUILT_IN_TGAMMA
):
3226 CASE_FLT_FN (BUILT_IN_TRUNC
):
3227 case BUILT_IN_ISINF
:
3228 case BUILT_IN_ISNAN
:
3230 CASE_FLT_FN (BUILT_IN_CABS
):
3231 CASE_FLT_FN (BUILT_IN_CACOS
):
3232 CASE_FLT_FN (BUILT_IN_CACOSH
):
3233 CASE_FLT_FN (BUILT_IN_CARG
):
3234 CASE_FLT_FN (BUILT_IN_CASIN
):
3235 CASE_FLT_FN (BUILT_IN_CASINH
):
3236 CASE_FLT_FN (BUILT_IN_CATAN
):
3237 CASE_FLT_FN (BUILT_IN_CATANH
):
3238 CASE_FLT_FN (BUILT_IN_CCOS
):
3239 CASE_FLT_FN (BUILT_IN_CCOSH
):
3240 CASE_FLT_FN (BUILT_IN_CEXP
):
3241 CASE_FLT_FN (BUILT_IN_CIMAG
):
3242 CASE_FLT_FN (BUILT_IN_CLOG
):
3243 CASE_FLT_FN (BUILT_IN_CONJ
):
3244 CASE_FLT_FN (BUILT_IN_CPOW
):
3245 CASE_FLT_FN (BUILT_IN_CPROJ
):
3246 CASE_FLT_FN (BUILT_IN_CREAL
):
3247 CASE_FLT_FN (BUILT_IN_CSIN
):
3248 CASE_FLT_FN (BUILT_IN_CSINH
):
3249 CASE_FLT_FN (BUILT_IN_CSQRT
):
3250 CASE_FLT_FN (BUILT_IN_CTAN
):
3251 CASE_FLT_FN (BUILT_IN_CTANH
):
3252 return "<complex.h>";
3253 case BUILT_IN_MEMCHR
:
3254 case BUILT_IN_MEMCMP
:
3255 case BUILT_IN_MEMCPY
:
3256 case BUILT_IN_MEMMOVE
:
3257 case BUILT_IN_MEMSET
:
3258 case BUILT_IN_STRCAT
:
3259 case BUILT_IN_STRCHR
:
3260 case BUILT_IN_STRCMP
:
3261 case BUILT_IN_STRCPY
:
3262 case BUILT_IN_STRCSPN
:
3263 case BUILT_IN_STRLEN
:
3264 case BUILT_IN_STRNCAT
:
3265 case BUILT_IN_STRNCMP
:
3266 case BUILT_IN_STRNCPY
:
3267 case BUILT_IN_STRPBRK
:
3268 case BUILT_IN_STRRCHR
:
3269 case BUILT_IN_STRSPN
:
3270 case BUILT_IN_STRSTR
:
3271 return "<string.h>";
3272 case BUILT_IN_FPRINTF
:
3274 case BUILT_IN_FPUTC
:
3275 case BUILT_IN_FPUTS
:
3276 case BUILT_IN_FSCANF
:
3277 case BUILT_IN_FWRITE
:
3278 case BUILT_IN_PRINTF
:
3279 case BUILT_IN_PUTCHAR
:
3281 case BUILT_IN_SCANF
:
3282 case BUILT_IN_SNPRINTF
:
3283 case BUILT_IN_SPRINTF
:
3284 case BUILT_IN_SSCANF
:
3285 case BUILT_IN_VFPRINTF
:
3286 case BUILT_IN_VFSCANF
:
3287 case BUILT_IN_VPRINTF
:
3288 case BUILT_IN_VSCANF
:
3289 case BUILT_IN_VSNPRINTF
:
3290 case BUILT_IN_VSPRINTF
:
3291 case BUILT_IN_VSSCANF
:
3293 case BUILT_IN_ISALNUM
:
3294 case BUILT_IN_ISALPHA
:
3295 case BUILT_IN_ISBLANK
:
3296 case BUILT_IN_ISCNTRL
:
3297 case BUILT_IN_ISDIGIT
:
3298 case BUILT_IN_ISGRAPH
:
3299 case BUILT_IN_ISLOWER
:
3300 case BUILT_IN_ISPRINT
:
3301 case BUILT_IN_ISPUNCT
:
3302 case BUILT_IN_ISSPACE
:
3303 case BUILT_IN_ISUPPER
:
3304 case BUILT_IN_ISXDIGIT
:
3305 case BUILT_IN_TOLOWER
:
3306 case BUILT_IN_TOUPPER
:
3308 case BUILT_IN_ISWALNUM
:
3309 case BUILT_IN_ISWALPHA
:
3310 case BUILT_IN_ISWBLANK
:
3311 case BUILT_IN_ISWCNTRL
:
3312 case BUILT_IN_ISWDIGIT
:
3313 case BUILT_IN_ISWGRAPH
:
3314 case BUILT_IN_ISWLOWER
:
3315 case BUILT_IN_ISWPRINT
:
3316 case BUILT_IN_ISWPUNCT
:
3317 case BUILT_IN_ISWSPACE
:
3318 case BUILT_IN_ISWUPPER
:
3319 case BUILT_IN_ISWXDIGIT
:
3320 case BUILT_IN_TOWLOWER
:
3321 case BUILT_IN_TOWUPPER
:
3322 return "<wctype.h>";
3323 case BUILT_IN_ABORT
:
3325 case BUILT_IN_CALLOC
:
3329 case BUILT_IN_LLABS
:
3330 case BUILT_IN_MALLOC
:
3331 case BUILT_IN_REALLOC
:
3332 case BUILT_IN__EXIT2
:
3333 case BUILT_IN_ALIGNED_ALLOC
:
3334 return "<stdlib.h>";
3335 case BUILT_IN_IMAXABS
:
3336 return "<inttypes.h>";
3337 case BUILT_IN_STRFTIME
:
3344 /* Generate an implicit declaration for identifier FUNCTIONID at LOC as a
3345 function of type int (). */
3348 implicitly_declare (location_t loc
, tree functionid
)
3350 struct c_binding
*b
;
3354 for (b
= I_SYMBOL_BINDING (functionid
); b
; b
= b
->shadowed
)
3356 if (B_IN_SCOPE (b
, external_scope
))
3365 if (TREE_CODE (decl
) != FUNCTION_DECL
)
3368 /* FIXME: Objective-C has weird not-really-builtin functions
3369 which are supposed to be visible automatically. They wind up
3370 in the external scope because they're pushed before the file
3371 scope gets created. Catch this here and rebind them into the
3373 if (!DECL_BUILT_IN (decl
) && DECL_IS_BUILTIN (decl
))
3375 bind (functionid
, decl
, file_scope
,
3376 /*invisible=*/false, /*nested=*/true,
3377 DECL_SOURCE_LOCATION (decl
));
3382 tree newtype
= default_function_type
;
3384 TREE_TYPE (decl
) = b
->u
.type
;
3385 /* Implicit declaration of a function already declared
3386 (somehow) in a different scope, or as a built-in.
3387 If this is the first time this has happened, warn;
3388 then recycle the old declaration but with the new type. */
3389 if (!C_DECL_IMPLICIT (decl
))
3391 implicit_decl_warning (loc
, functionid
, decl
);
3392 C_DECL_IMPLICIT (decl
) = 1;
3394 if (DECL_BUILT_IN (decl
))
3396 newtype
= build_type_attribute_variant (newtype
,
3398 (TREE_TYPE (decl
)));
3399 if (!comptypes (newtype
, TREE_TYPE (decl
)))
3401 bool warned
= warning_at (loc
, 0, "incompatible implicit "
3402 "declaration of built-in "
3403 "function %qD", decl
);
3404 /* See if we can hint which header to include. */
3406 = header_for_builtin_fn (DECL_FUNCTION_CODE (decl
));
3407 if (header
!= NULL
&& warned
)
3408 inform (loc
, "include %qs or provide a declaration of %qD",
3410 newtype
= TREE_TYPE (decl
);
3415 if (!comptypes (newtype
, TREE_TYPE (decl
)))
3417 error_at (loc
, "incompatible implicit declaration of "
3418 "function %qD", decl
);
3419 locate_old_decl (decl
);
3422 b
->u
.type
= TREE_TYPE (decl
);
3423 TREE_TYPE (decl
) = newtype
;
3424 bind (functionid
, decl
, current_scope
,
3425 /*invisible=*/false, /*nested=*/true,
3426 DECL_SOURCE_LOCATION (decl
));
3431 /* Not seen before. */
3432 decl
= build_decl (loc
, FUNCTION_DECL
, functionid
, default_function_type
);
3433 DECL_EXTERNAL (decl
) = 1;
3434 TREE_PUBLIC (decl
) = 1;
3435 C_DECL_IMPLICIT (decl
) = 1;
3436 implicit_decl_warning (loc
, functionid
, 0);
3437 asmspec_tree
= maybe_apply_renaming_pragma (decl
, /*asmname=*/NULL
);
3439 set_user_assembler_name (decl
, TREE_STRING_POINTER (asmspec_tree
));
3441 /* C89 says implicit declarations are in the innermost block.
3442 So we record the decl in the standard fashion. */
3443 decl
= pushdecl (decl
);
3445 /* No need to call objc_check_decl here - it's a function type. */
3446 rest_of_decl_compilation (decl
, 0, 0);
3448 /* Write a record describing this implicit function declaration
3449 to the prototypes file (if requested). */
3450 gen_aux_info_record (decl
, 0, 1, 0);
3452 /* Possibly apply some default attributes to this implicit declaration. */
3453 decl_attributes (&decl
, NULL_TREE
, 0);
3458 /* Issue an error message for a reference to an undeclared variable
3459 ID, including a reference to a builtin outside of function-call
3460 context. Establish a binding of the identifier to error_mark_node
3461 in an appropriate scope, which will suppress further errors for the
3462 same identifier. The error message should be given location LOC. */
3464 undeclared_variable (location_t loc
, tree id
)
3466 static bool already
= false;
3467 struct c_scope
*scope
;
3469 if (current_function_decl
== 0)
3471 const char *guessed_id
= lookup_name_fuzzy (id
, FUZZY_LOOKUP_NAME
);
3474 gcc_rich_location
richloc (loc
);
3475 richloc
.add_fixit_replace (guessed_id
);
3476 error_at_rich_loc (&richloc
,
3477 "%qE undeclared here (not in a function);"
3478 " did you mean %qs?",
3482 error_at (loc
, "%qE undeclared here (not in a function)", id
);
3483 scope
= current_scope
;
3487 if (!objc_diagnose_private_ivar (id
))
3489 const char *guessed_id
= lookup_name_fuzzy (id
, FUZZY_LOOKUP_NAME
);
3492 gcc_rich_location
richloc (loc
);
3493 richloc
.add_fixit_replace (guessed_id
);
3496 "%qE undeclared (first use in this function);"
3497 " did you mean %qs?",
3501 error_at (loc
, "%qE undeclared (first use in this function)", id
);
3505 inform (loc
, "each undeclared identifier is reported only"
3506 " once for each function it appears in");
3510 /* If we are parsing old-style parameter decls, current_function_decl
3511 will be nonnull but current_function_scope will be null. */
3512 scope
= current_function_scope
? current_function_scope
: current_scope
;
3514 bind (id
, error_mark_node
, scope
, /*invisible=*/false, /*nested=*/false,
3518 /* Subroutine of lookup_label, declare_label, define_label: construct a
3519 LABEL_DECL with all the proper frills. Also create a struct
3520 c_label_vars initialized for the current scope. */
3523 make_label (location_t location
, tree name
, bool defining
,
3524 struct c_label_vars
**p_label_vars
)
3526 tree label
= build_decl (location
, LABEL_DECL
, name
, void_type_node
);
3527 DECL_CONTEXT (label
) = current_function_decl
;
3528 SET_DECL_MODE (label
, VOIDmode
);
3530 c_label_vars
*label_vars
= ggc_alloc
<c_label_vars
> ();
3531 label_vars
->shadowed
= NULL
;
3532 set_spot_bindings (&label_vars
->label_bindings
, defining
);
3533 label_vars
->decls_in_scope
= make_tree_vector ();
3534 label_vars
->gotos
= NULL
;
3535 *p_label_vars
= label_vars
;
3540 /* Get the LABEL_DECL corresponding to identifier NAME as a label.
3541 Create one if none exists so far for the current function.
3542 This is called when a label is used in a goto expression or
3543 has its address taken. */
3546 lookup_label (tree name
)
3549 struct c_label_vars
*label_vars
;
3551 if (current_function_scope
== 0)
3553 error ("label %qE referenced outside of any function", name
);
3557 /* Use a label already defined or ref'd with this name, but not if
3558 it is inherited from a containing function and wasn't declared
3560 label
= I_LABEL_DECL (name
);
3561 if (label
&& (DECL_CONTEXT (label
) == current_function_decl
3562 || C_DECLARED_LABEL_FLAG (label
)))
3564 /* If the label has only been declared, update its apparent
3565 location to point here, for better diagnostics if it
3566 turns out not to have been defined. */
3567 if (DECL_INITIAL (label
) == NULL_TREE
)
3568 DECL_SOURCE_LOCATION (label
) = input_location
;
3572 /* No label binding for that identifier; make one. */
3573 label
= make_label (input_location
, name
, false, &label_vars
);
3575 /* Ordinary labels go in the current function scope. */
3576 bind_label (name
, label
, current_function_scope
, label_vars
);
3581 /* Issue a warning about DECL for a goto statement at GOTO_LOC going
3585 warn_about_goto (location_t goto_loc
, tree label
, tree decl
)
3587 if (variably_modified_type_p (TREE_TYPE (decl
), NULL_TREE
))
3589 "jump into scope of identifier with variably modified type");
3591 warning_at (goto_loc
, OPT_Wjump_misses_init
,
3592 "jump skips variable initialization");
3593 inform (DECL_SOURCE_LOCATION (label
), "label %qD defined here", label
);
3594 inform (DECL_SOURCE_LOCATION (decl
), "%qD declared here", decl
);
3597 /* Look up a label because of a goto statement. This is like
3598 lookup_label, but also issues any appropriate warnings. */
3601 lookup_label_for_goto (location_t loc
, tree name
)
3604 struct c_label_vars
*label_vars
;
3608 label
= lookup_label (name
);
3609 if (label
== NULL_TREE
)
3612 /* If we are jumping to a different function, we can't issue any
3614 if (DECL_CONTEXT (label
) != current_function_decl
)
3616 gcc_assert (C_DECLARED_LABEL_FLAG (label
));
3620 label_vars
= I_LABEL_BINDING (name
)->u
.label
;
3622 /* If the label has not yet been defined, then push this goto on a
3623 list for possible later warnings. */
3624 if (label_vars
->label_bindings
.scope
== NULL
)
3626 c_goto_bindings
*g
= ggc_alloc
<c_goto_bindings
> ();
3629 set_spot_bindings (&g
->goto_bindings
, true);
3630 vec_safe_push (label_vars
->gotos
, g
);
3634 /* If there are any decls in label_vars->decls_in_scope, then this
3635 goto has missed the declaration of the decl. This happens for a
3641 Issue a warning or error. */
3642 FOR_EACH_VEC_SAFE_ELT (label_vars
->decls_in_scope
, ix
, decl
)
3643 warn_about_goto (loc
, label
, decl
);
3645 if (label_vars
->label_bindings
.left_stmt_expr
)
3647 error_at (loc
, "jump into statement expression");
3648 inform (DECL_SOURCE_LOCATION (label
), "label %qD defined here", label
);
3654 /* Make a label named NAME in the current function, shadowing silently
3655 any that may be inherited from containing functions or containing
3656 scopes. This is called for __label__ declarations. */
3659 declare_label (tree name
)
3661 struct c_binding
*b
= I_LABEL_BINDING (name
);
3663 struct c_label_vars
*label_vars
;
3665 /* Check to make sure that the label hasn't already been declared
3667 if (b
&& B_IN_CURRENT_SCOPE (b
))
3669 error ("duplicate label declaration %qE", name
);
3670 locate_old_decl (b
->decl
);
3672 /* Just use the previous declaration. */
3676 label
= make_label (input_location
, name
, false, &label_vars
);
3677 C_DECLARED_LABEL_FLAG (label
) = 1;
3679 /* Declared labels go in the current scope. */
3680 bind_label (name
, label
, current_scope
, label_vars
);
3685 /* When we define a label, issue any appropriate warnings if there are
3686 any gotos earlier in the function which jump to this label. */
3689 check_earlier_gotos (tree label
, struct c_label_vars
* label_vars
)
3692 struct c_goto_bindings
*g
;
3694 FOR_EACH_VEC_SAFE_ELT (label_vars
->gotos
, ix
, g
)
3696 struct c_binding
*b
;
3697 struct c_scope
*scope
;
3699 /* We have a goto to this label. The goto is going forward. In
3700 g->scope, the goto is going to skip any binding which was
3701 defined after g->bindings_in_scope. */
3702 if (g
->goto_bindings
.scope
->has_jump_unsafe_decl
)
3704 for (b
= g
->goto_bindings
.scope
->bindings
;
3705 b
!= g
->goto_bindings
.bindings_in_scope
;
3708 if (decl_jump_unsafe (b
->decl
))
3709 warn_about_goto (g
->loc
, label
, b
->decl
);
3713 /* We also need to warn about decls defined in any scopes
3714 between the scope of the label and the scope of the goto. */
3715 for (scope
= label_vars
->label_bindings
.scope
;
3716 scope
!= g
->goto_bindings
.scope
;
3717 scope
= scope
->outer
)
3719 gcc_assert (scope
!= NULL
);
3720 if (scope
->has_jump_unsafe_decl
)
3722 if (scope
== label_vars
->label_bindings
.scope
)
3723 b
= label_vars
->label_bindings
.bindings_in_scope
;
3725 b
= scope
->bindings
;
3726 for (; b
!= NULL
; b
= b
->prev
)
3728 if (decl_jump_unsafe (b
->decl
))
3729 warn_about_goto (g
->loc
, label
, b
->decl
);
3734 if (g
->goto_bindings
.stmt_exprs
> 0)
3736 error_at (g
->loc
, "jump into statement expression");
3737 inform (DECL_SOURCE_LOCATION (label
), "label %qD defined here",
3742 /* Now that the label is defined, we will issue warnings about
3743 subsequent gotos to this label when we see them. */
3744 vec_safe_truncate (label_vars
->gotos
, 0);
3745 label_vars
->gotos
= NULL
;
3748 /* Define a label, specifying the location in the source file.
3749 Return the LABEL_DECL node for the label, if the definition is valid.
3750 Otherwise return 0. */
3753 define_label (location_t location
, tree name
)
3755 /* Find any preexisting label with this name. It is an error
3756 if that label has already been defined in this function, or
3757 if there is a containing function with a declared label with
3759 tree label
= I_LABEL_DECL (name
);
3762 && ((DECL_CONTEXT (label
) == current_function_decl
3763 && DECL_INITIAL (label
) != 0)
3764 || (DECL_CONTEXT (label
) != current_function_decl
3765 && C_DECLARED_LABEL_FLAG (label
))))
3767 error_at (location
, "duplicate label %qD", label
);
3768 locate_old_decl (label
);
3771 else if (label
&& DECL_CONTEXT (label
) == current_function_decl
)
3773 struct c_label_vars
*label_vars
= I_LABEL_BINDING (name
)->u
.label
;
3775 /* The label has been used or declared already in this function,
3776 but not defined. Update its location to point to this
3778 DECL_SOURCE_LOCATION (label
) = location
;
3779 set_spot_bindings (&label_vars
->label_bindings
, true);
3781 /* Issue warnings as required about any goto statements from
3782 earlier in the function. */
3783 check_earlier_gotos (label
, label_vars
);
3787 struct c_label_vars
*label_vars
;
3789 /* No label binding for that identifier; make one. */
3790 label
= make_label (location
, name
, true, &label_vars
);
3792 /* Ordinary labels go in the current function scope. */
3793 bind_label (name
, label
, current_function_scope
, label_vars
);
3796 if (!in_system_header_at (input_location
) && lookup_name (name
))
3797 warning_at (location
, OPT_Wtraditional
,
3798 "traditional C lacks a separate namespace "
3799 "for labels, identifier %qE conflicts", name
);
3801 /* Mark label as having been defined. */
3802 DECL_INITIAL (label
) = error_mark_node
;
3806 /* Get the bindings for a new switch statement. This is used to issue
3807 warnings as appropriate for jumps from the switch to case or
3810 struct c_spot_bindings
*
3811 c_get_switch_bindings (void)
3813 struct c_spot_bindings
*switch_bindings
;
3815 switch_bindings
= XNEW (struct c_spot_bindings
);
3816 set_spot_bindings (switch_bindings
, true);
3817 return switch_bindings
;
3821 c_release_switch_bindings (struct c_spot_bindings
*bindings
)
3823 gcc_assert (bindings
->stmt_exprs
== 0 && !bindings
->left_stmt_expr
);
3827 /* This is called at the point of a case or default label to issue
3828 warnings about decls as needed. It returns true if it found an
3829 error, not just a warning. */
3832 c_check_switch_jump_warnings (struct c_spot_bindings
*switch_bindings
,
3833 location_t switch_loc
, location_t case_loc
)
3836 struct c_scope
*scope
;
3839 for (scope
= current_scope
;
3840 scope
!= switch_bindings
->scope
;
3841 scope
= scope
->outer
)
3843 struct c_binding
*b
;
3845 gcc_assert (scope
!= NULL
);
3847 if (!scope
->has_jump_unsafe_decl
)
3850 for (b
= scope
->bindings
; b
!= NULL
; b
= b
->prev
)
3852 if (decl_jump_unsafe (b
->decl
))
3854 if (variably_modified_type_p (TREE_TYPE (b
->decl
), NULL_TREE
))
3858 ("switch jumps into scope of identifier with "
3859 "variably modified type"));
3862 warning_at (case_loc
, OPT_Wjump_misses_init
,
3863 "switch jumps over variable initialization");
3864 inform (switch_loc
, "switch starts here");
3865 inform (DECL_SOURCE_LOCATION (b
->decl
), "%qD declared here",
3871 if (switch_bindings
->stmt_exprs
> 0)
3874 error_at (case_loc
, "switch jumps into statement expression");
3875 inform (switch_loc
, "switch starts here");
3881 /* Given NAME, an IDENTIFIER_NODE,
3882 return the structure (or union or enum) definition for that name.
3883 If THISLEVEL_ONLY is nonzero, searches only the current_scope.
3884 CODE says which kind of type the caller wants;
3885 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
3886 If PLOC is not NULL and this returns non-null, it sets *PLOC to the
3887 location where the tag was defined.
3888 If the wrong kind of type is found, an error is reported. */
3891 lookup_tag (enum tree_code code
, tree name
, bool thislevel_only
,
3894 struct c_binding
*b
= I_TAG_BINDING (name
);
3895 bool thislevel
= false;
3900 /* We only care about whether it's in this level if
3901 thislevel_only was set or it might be a type clash. */
3902 if (thislevel_only
|| TREE_CODE (b
->decl
) != code
)
3904 /* For our purposes, a tag in the external scope is the same as
3905 a tag in the file scope. (Primarily relevant to Objective-C
3906 and its builtin structure tags, which get pushed before the
3907 file scope is created.) */
3908 if (B_IN_CURRENT_SCOPE (b
)
3909 || (current_scope
== file_scope
&& B_IN_EXTERNAL_SCOPE (b
)))
3913 if (thislevel_only
&& !thislevel
)
3916 if (TREE_CODE (b
->decl
) != code
)
3918 /* Definition isn't the kind we were looking for. */
3919 pending_invalid_xref
= name
;
3920 pending_invalid_xref_location
= input_location
;
3922 /* If in the same binding level as a declaration as a tag
3923 of a different type, this must not be allowed to
3924 shadow that tag, so give the error immediately.
3925 (For example, "struct foo; union foo;" is invalid.) */
3927 pending_xref_error ();
3936 /* Return true if a definition exists for NAME with code CODE. */
3939 tag_exists_p (enum tree_code code
, tree name
)
3941 struct c_binding
*b
= I_TAG_BINDING (name
);
3943 if (b
== NULL
|| b
->decl
== NULL_TREE
)
3945 return TREE_CODE (b
->decl
) == code
;
3948 /* Print an error message now
3949 for a recent invalid struct, union or enum cross reference.
3950 We don't print them immediately because they are not invalid
3951 when used in the `struct foo;' construct for shadowing. */
3954 pending_xref_error (void)
3956 if (pending_invalid_xref
!= 0)
3957 error_at (pending_invalid_xref_location
, "%qE defined as wrong kind of tag",
3958 pending_invalid_xref
);
3959 pending_invalid_xref
= 0;
3963 /* Look up NAME in the current scope and its superiors
3964 in the namespace of variables, functions and typedefs.
3965 Return a ..._DECL node of some kind representing its definition,
3966 or return 0 if it is undefined. */
3969 lookup_name (tree name
)
3971 struct c_binding
*b
= I_SYMBOL_BINDING (name
);
3972 if (b
&& !b
->invisible
)
3974 maybe_record_typedef_use (b
->decl
);
3980 /* Similar to `lookup_name' but look only at the indicated scope. */
3983 lookup_name_in_scope (tree name
, struct c_scope
*scope
)
3985 struct c_binding
*b
;
3987 for (b
= I_SYMBOL_BINDING (name
); b
; b
= b
->shadowed
)
3988 if (B_IN_SCOPE (b
, scope
))
3993 /* Look for the closest match for NAME within the currently valid
3996 This finds the identifier with the lowest Levenshtein distance to
3997 NAME. If there are multiple candidates with equal minimal distance,
3998 the first one found is returned. Scopes are searched from innermost
3999 outwards, and within a scope in reverse order of declaration, thus
4000 benefiting candidates "near" to the current scope.
4002 The function also looks for similar macro names to NAME, since a
4003 misspelled macro name will not be expanded, and hence looks like an
4004 identifier to the C frontend.
4006 It also looks for start_typename keywords, to detect "singed" vs "signed"
4010 lookup_name_fuzzy (tree name
, enum lookup_name_fuzzy_kind kind
)
4012 gcc_assert (TREE_CODE (name
) == IDENTIFIER_NODE
);
4014 best_match
<tree
, tree
> bm (name
);
4016 /* Look within currently valid scopes. */
4017 for (c_scope
*scope
= current_scope
; scope
; scope
= scope
->outer
)
4018 for (c_binding
*binding
= scope
->bindings
; binding
; binding
= binding
->prev
)
4020 if (!binding
->id
|| binding
->invisible
)
4022 /* Don't use bindings from implicitly declared functions,
4023 as they were likely misspellings themselves. */
4024 if (TREE_CODE (binding
->decl
) == FUNCTION_DECL
)
4025 if (C_DECL_IMPLICIT (binding
->decl
))
4029 case FUZZY_LOOKUP_TYPENAME
:
4030 if (TREE_CODE (binding
->decl
) != TYPE_DECL
)
4034 case FUZZY_LOOKUP_FUNCTION_NAME
:
4035 if (TREE_CODE (binding
->decl
) != FUNCTION_DECL
)
4037 /* Allow function pointers. */
4038 if ((VAR_P (binding
->decl
)
4039 || TREE_CODE (binding
->decl
) == PARM_DECL
)
4040 && TREE_CODE (TREE_TYPE (binding
->decl
)) == POINTER_TYPE
4041 && (TREE_CODE (TREE_TYPE (TREE_TYPE (binding
->decl
)))
4051 bm
.consider (binding
->id
);
4054 /* Consider macros: if the user misspelled a macro name e.g. "SOME_MACRO"
4056 x = SOME_OTHER_MACRO (y);
4057 then "SOME_OTHER_MACRO" will survive to the frontend and show up
4058 as a misspelled identifier.
4060 Use the best distance so far so that a candidate is only set if
4061 a macro is better than anything so far. This allows early rejection
4062 (without calculating the edit distance) of macro names that must have
4063 distance >= bm.get_best_distance (), and means that we only get a
4064 non-NULL result for best_macro_match if it's better than any of
4065 the identifiers already checked, which avoids needless creation
4066 of identifiers for macro hashnodes. */
4067 best_macro_match
bmm (name
, bm
.get_best_distance (), parse_in
);
4068 cpp_hashnode
*best_macro
= bmm
.get_best_meaningful_candidate ();
4069 /* If a macro is the closest so far to NAME, use it, creating an
4070 identifier tree node for it. */
4073 const char *id
= (const char *)best_macro
->ident
.str
;
4074 tree macro_as_identifier
4075 = get_identifier_with_length (id
, best_macro
->ident
.len
);
4076 bm
.set_best_so_far (macro_as_identifier
,
4077 bmm
.get_best_distance (),
4078 bmm
.get_best_candidate_length ());
4081 /* Try the "start_typename" keywords to detect
4082 "singed" vs "signed" typos. */
4083 if (kind
== FUZZY_LOOKUP_TYPENAME
)
4085 for (unsigned i
= 0; i
< num_c_common_reswords
; i
++)
4087 const c_common_resword
*resword
= &c_common_reswords
[i
];
4088 if (!c_keyword_starts_typename (resword
->rid
))
4090 tree resword_identifier
= ridpointers
[resword
->rid
];
4091 if (!resword_identifier
)
4093 gcc_assert (TREE_CODE (resword_identifier
) == IDENTIFIER_NODE
);
4094 bm
.consider (resword_identifier
);
4098 tree best
= bm
.get_best_meaningful_candidate ();
4100 return IDENTIFIER_POINTER (best
);
4106 /* Create the predefined scalar types of C,
4107 and some nodes representing standard constants (0, 1, (void *) 0).
4108 Initialize the global scope.
4109 Make definitions for built-in primitive functions. */
4112 c_init_decl_processing (void)
4114 location_t save_loc
= input_location
;
4116 /* Initialize reserved words for parser. */
4119 current_function_decl
= 0;
4121 gcc_obstack_init (&parser_obstack
);
4123 /* Make the externals scope. */
4125 external_scope
= current_scope
;
4127 /* Declarations from c_common_nodes_and_builtins must not be associated
4128 with this input file, lest we get differences between using and not
4129 using preprocessed headers. */
4130 input_location
= BUILTINS_LOCATION
;
4132 c_common_nodes_and_builtins ();
4134 /* In C, comparisons and TRUTH_* expressions have type int. */
4135 truthvalue_type_node
= integer_type_node
;
4136 truthvalue_true_node
= integer_one_node
;
4137 truthvalue_false_node
= integer_zero_node
;
4139 /* Even in C99, which has a real boolean type. */
4140 pushdecl (build_decl (UNKNOWN_LOCATION
, TYPE_DECL
, get_identifier ("_Bool"),
4141 boolean_type_node
));
4143 input_location
= save_loc
;
4145 make_fname_decl
= c_make_fname_decl
;
4146 start_fname_decls ();
4149 /* Create the VAR_DECL at LOC for __FUNCTION__ etc. ID is the name to
4150 give the decl, NAME is the initialization string and TYPE_DEP
4151 indicates whether NAME depended on the type of the function. As we
4152 don't yet implement delayed emission of static data, we mark the
4153 decl as emitted so it is not placed in the output. Anything using
4154 it must therefore pull out the STRING_CST initializer directly.
4158 c_make_fname_decl (location_t loc
, tree id
, int type_dep
)
4160 const char *name
= fname_as_string (type_dep
);
4161 tree decl
, type
, init
;
4162 size_t length
= strlen (name
);
4164 type
= build_array_type (char_type_node
,
4165 build_index_type (size_int (length
)));
4166 type
= c_build_qualified_type (type
, TYPE_QUAL_CONST
);
4168 decl
= build_decl (loc
, VAR_DECL
, id
, type
);
4170 TREE_STATIC (decl
) = 1;
4171 TREE_READONLY (decl
) = 1;
4172 DECL_ARTIFICIAL (decl
) = 1;
4174 init
= build_string (length
+ 1, name
);
4175 free (CONST_CAST (char *, name
));
4176 TREE_TYPE (init
) = type
;
4177 DECL_INITIAL (decl
) = init
;
4179 TREE_USED (decl
) = 1;
4181 if (current_function_decl
4182 /* For invalid programs like this:
4185 const char* p = __FUNCTION__;
4187 the __FUNCTION__ is believed to appear in K&R style function
4188 parameter declarator. In that case we still don't have
4190 && current_function_scope
)
4192 DECL_CONTEXT (decl
) = current_function_decl
;
4193 bind (id
, decl
, current_function_scope
,
4194 /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION
);
4197 finish_decl (decl
, loc
, init
, NULL_TREE
, NULL_TREE
);
4203 c_builtin_function (tree decl
)
4205 tree type
= TREE_TYPE (decl
);
4206 tree id
= DECL_NAME (decl
);
4208 const char *name
= IDENTIFIER_POINTER (id
);
4209 C_DECL_BUILTIN_PROTOTYPE (decl
) = prototype_p (type
);
4211 /* Should never be called on a symbol with a preexisting meaning. */
4212 gcc_assert (!I_SYMBOL_BINDING (id
));
4214 bind (id
, decl
, external_scope
, /*invisible=*/true, /*nested=*/false,
4217 /* Builtins in the implementation namespace are made visible without
4218 needing to be explicitly declared. See push_file_scope. */
4219 if (name
[0] == '_' && (name
[1] == '_' || ISUPPER (name
[1])))
4221 DECL_CHAIN (decl
) = visible_builtins
;
4222 visible_builtins
= decl
;
4229 c_builtin_function_ext_scope (tree decl
)
4231 tree type
= TREE_TYPE (decl
);
4232 tree id
= DECL_NAME (decl
);
4234 const char *name
= IDENTIFIER_POINTER (id
);
4235 C_DECL_BUILTIN_PROTOTYPE (decl
) = prototype_p (type
);
4238 bind (id
, decl
, external_scope
, /*invisible=*/false, /*nested=*/false,
4241 /* Builtins in the implementation namespace are made visible without
4242 needing to be explicitly declared. See push_file_scope. */
4243 if (name
[0] == '_' && (name
[1] == '_' || ISUPPER (name
[1])))
4245 DECL_CHAIN (decl
) = visible_builtins
;
4246 visible_builtins
= decl
;
4252 /* Called when a declaration is seen that contains no names to declare.
4253 If its type is a reference to a structure, union or enum inherited
4254 from a containing scope, shadow that tag name for the current scope
4255 with a forward reference.
4256 If its type defines a new named structure or union
4257 or defines an enum, it is valid but we need not do anything here.
4258 Otherwise, it is an error. */
4261 shadow_tag (const struct c_declspecs
*declspecs
)
4263 shadow_tag_warned (declspecs
, 0);
4266 /* WARNED is 1 if we have done a pedwarn, 2 if we have done a warning,
4269 shadow_tag_warned (const struct c_declspecs
*declspecs
, int warned
)
4271 bool found_tag
= false;
4273 if (declspecs
->type
&& !declspecs
->default_int_p
&& !declspecs
->typedef_p
)
4275 tree value
= declspecs
->type
;
4276 enum tree_code code
= TREE_CODE (value
);
4278 if (code
== RECORD_TYPE
|| code
== UNION_TYPE
|| code
== ENUMERAL_TYPE
)
4279 /* Used to test also that TYPE_SIZE (value) != 0.
4280 That caused warning for `struct foo;' at top level in the file. */
4282 tree name
= TYPE_NAME (value
);
4287 if (declspecs
->restrict_p
)
4289 error ("invalid use of %<restrict%>");
4295 if (warned
!= 1 && code
!= ENUMERAL_TYPE
)
4296 /* Empty unnamed enum OK */
4298 pedwarn (input_location
, 0,
4299 "unnamed struct/union that defines no instances");
4303 else if (declspecs
->typespec_kind
!= ctsk_tagdef
4304 && declspecs
->typespec_kind
!= ctsk_tagfirstref
4305 && declspecs
->storage_class
!= csc_none
)
4308 pedwarn (input_location
, 0,
4309 "empty declaration with storage class specifier "
4310 "does not redeclare tag");
4312 pending_xref_error ();
4314 else if (declspecs
->typespec_kind
!= ctsk_tagdef
4315 && declspecs
->typespec_kind
!= ctsk_tagfirstref
4316 && (declspecs
->const_p
4317 || declspecs
->volatile_p
4318 || declspecs
->atomic_p
4319 || declspecs
->restrict_p
4320 || declspecs
->address_space
))
4323 pedwarn (input_location
, 0,
4324 "empty declaration with type qualifier "
4325 "does not redeclare tag");
4327 pending_xref_error ();
4329 else if (declspecs
->typespec_kind
!= ctsk_tagdef
4330 && declspecs
->typespec_kind
!= ctsk_tagfirstref
4331 && declspecs
->alignas_p
)
4334 pedwarn (input_location
, 0,
4335 "empty declaration with %<_Alignas%> "
4336 "does not redeclare tag");
4338 pending_xref_error ();
4342 pending_invalid_xref
= 0;
4343 t
= lookup_tag (code
, name
, true, NULL
);
4347 t
= make_node (code
);
4348 pushtag (input_location
, name
, t
);
4354 if (warned
!= 1 && !in_system_header_at (input_location
))
4356 pedwarn (input_location
, 0,
4357 "useless type name in empty declaration");
4362 else if (warned
!= 1 && !in_system_header_at (input_location
)
4363 && declspecs
->typedef_p
)
4365 pedwarn (input_location
, 0, "useless type name in empty declaration");
4369 pending_invalid_xref
= 0;
4371 if (declspecs
->inline_p
)
4373 error ("%<inline%> in empty declaration");
4377 if (declspecs
->noreturn_p
)
4379 error ("%<_Noreturn%> in empty declaration");
4383 if (current_scope
== file_scope
&& declspecs
->storage_class
== csc_auto
)
4385 error ("%<auto%> in file-scope empty declaration");
4389 if (current_scope
== file_scope
&& declspecs
->storage_class
== csc_register
)
4391 error ("%<register%> in file-scope empty declaration");
4395 if (!warned
&& !in_system_header_at (input_location
)
4396 && declspecs
->storage_class
!= csc_none
)
4398 warning (0, "useless storage class specifier in empty declaration");
4402 if (!warned
&& !in_system_header_at (input_location
) && declspecs
->thread_p
)
4404 warning (0, "useless %qs in empty declaration",
4405 declspecs
->thread_gnu_p
? "__thread" : "_Thread_local");
4410 && !in_system_header_at (input_location
)
4411 && (declspecs
->const_p
4412 || declspecs
->volatile_p
4413 || declspecs
->atomic_p
4414 || declspecs
->restrict_p
4415 || declspecs
->address_space
))
4417 warning (0, "useless type qualifier in empty declaration");
4421 if (!warned
&& !in_system_header_at (input_location
)
4422 && declspecs
->alignas_p
)
4424 warning (0, "useless %<_Alignas%> in empty declaration");
4431 pedwarn (input_location
, 0, "empty declaration");
4436 /* Return the qualifiers from SPECS as a bitwise OR of TYPE_QUAL_*
4437 bits. SPECS represents declaration specifiers that the grammar
4438 only permits to contain type qualifiers and attributes. */
4441 quals_from_declspecs (const struct c_declspecs
*specs
)
4443 int quals
= ((specs
->const_p
? TYPE_QUAL_CONST
: 0)
4444 | (specs
->volatile_p
? TYPE_QUAL_VOLATILE
: 0)
4445 | (specs
->restrict_p
? TYPE_QUAL_RESTRICT
: 0)
4446 | (specs
->atomic_p
? TYPE_QUAL_ATOMIC
: 0)
4447 | (ENCODE_QUAL_ADDR_SPACE (specs
->address_space
)));
4448 gcc_assert (!specs
->type
4449 && !specs
->decl_attr
4450 && specs
->typespec_word
== cts_none
4451 && specs
->storage_class
== csc_none
4452 && !specs
->typedef_p
4453 && !specs
->explicit_signed_p
4454 && !specs
->deprecated_p
4456 && !specs
->long_long_p
4459 && !specs
->unsigned_p
4460 && !specs
->complex_p
4462 && !specs
->noreturn_p
4463 && !specs
->thread_p
);
4467 /* Construct an array declarator. LOC is the location of the
4468 beginning of the array (usually the opening brace). EXPR is the
4469 expression inside [], or NULL_TREE. QUALS are the type qualifiers
4470 inside the [] (to be applied to the pointer to which a parameter
4471 array is converted). STATIC_P is true if "static" is inside the
4472 [], false otherwise. VLA_UNSPEC_P is true if the array is [*], a
4473 VLA of unspecified length which is nevertheless a complete type,
4474 false otherwise. The field for the contained declarator is left to
4475 be filled in by set_array_declarator_inner. */
4477 struct c_declarator
*
4478 build_array_declarator (location_t loc
,
4479 tree expr
, struct c_declspecs
*quals
, bool static_p
,
4482 struct c_declarator
*declarator
= XOBNEW (&parser_obstack
,
4483 struct c_declarator
);
4484 declarator
->id_loc
= loc
;
4485 declarator
->kind
= cdk_array
;
4486 declarator
->declarator
= 0;
4487 declarator
->u
.array
.dimen
= expr
;
4490 declarator
->u
.array
.attrs
= quals
->attrs
;
4491 declarator
->u
.array
.quals
= quals_from_declspecs (quals
);
4495 declarator
->u
.array
.attrs
= NULL_TREE
;
4496 declarator
->u
.array
.quals
= 0;
4498 declarator
->u
.array
.static_p
= static_p
;
4499 declarator
->u
.array
.vla_unspec_p
= vla_unspec_p
;
4500 if (static_p
|| quals
!= NULL
)
4501 pedwarn_c90 (loc
, OPT_Wpedantic
,
4502 "ISO C90 does not support %<static%> or type "
4503 "qualifiers in parameter array declarators");
4505 pedwarn_c90 (loc
, OPT_Wpedantic
,
4506 "ISO C90 does not support %<[*]%> array declarators");
4509 if (!current_scope
->parm_flag
)
4512 error_at (loc
, "%<[*]%> not allowed in other than "
4513 "function prototype scope");
4514 declarator
->u
.array
.vla_unspec_p
= false;
4517 current_scope
->had_vla_unspec
= true;
4522 /* Set the contained declarator of an array declarator. DECL is the
4523 declarator, as constructed by build_array_declarator; INNER is what
4524 appears on the left of the []. */
4526 struct c_declarator
*
4527 set_array_declarator_inner (struct c_declarator
*decl
,
4528 struct c_declarator
*inner
)
4530 decl
->declarator
= inner
;
4534 /* INIT is a constructor that forms DECL's initializer. If the final
4535 element initializes a flexible array field, add the size of that
4536 initializer to DECL's size. */
4539 add_flexible_array_elts_to_size (tree decl
, tree init
)
4543 if (vec_safe_is_empty (CONSTRUCTOR_ELTS (init
)))
4546 elt
= CONSTRUCTOR_ELTS (init
)->last ().value
;
4547 type
= TREE_TYPE (elt
);
4548 if (TREE_CODE (type
) == ARRAY_TYPE
4549 && TYPE_SIZE (type
) == NULL_TREE
4550 && TYPE_DOMAIN (type
) != NULL_TREE
4551 && TYPE_MAX_VALUE (TYPE_DOMAIN (type
)) == NULL_TREE
)
4553 complete_array_type (&type
, elt
, false);
4555 = size_binop (PLUS_EXPR
, DECL_SIZE (decl
), TYPE_SIZE (type
));
4556 DECL_SIZE_UNIT (decl
)
4557 = size_binop (PLUS_EXPR
, DECL_SIZE_UNIT (decl
), TYPE_SIZE_UNIT (type
));
4561 /* Decode a "typename", such as "int **", returning a ..._TYPE node.
4562 Set *EXPR, if EXPR not NULL, to any expression to be evaluated
4563 before the type name, and set *EXPR_CONST_OPERANDS, if
4564 EXPR_CONST_OPERANDS not NULL, to indicate whether the type name may
4565 appear in a constant expression. */
4568 groktypename (struct c_type_name
*type_name
, tree
*expr
,
4569 bool *expr_const_operands
)
4572 tree attrs
= type_name
->specs
->attrs
;
4574 type_name
->specs
->attrs
= NULL_TREE
;
4576 type
= grokdeclarator (type_name
->declarator
, type_name
->specs
, TYPENAME
,
4577 false, NULL
, &attrs
, expr
, expr_const_operands
,
4580 /* Apply attributes. */
4581 decl_attributes (&type
, attrs
, 0);
4586 /* Wrapper for decl_attributes that adds some implicit attributes
4587 to VAR_DECLs or FUNCTION_DECLs. */
4590 c_decl_attributes (tree
*node
, tree attributes
, int flags
)
4592 /* Add implicit "omp declare target" attribute if requested. */
4593 if (current_omp_declare_target_attribute
4594 && ((VAR_P (*node
) && is_global_var (*node
))
4595 || TREE_CODE (*node
) == FUNCTION_DECL
))
4598 && !lang_hooks
.types
.omp_mappable_type (TREE_TYPE (*node
)))
4599 error ("%q+D in declare target directive does not have mappable type",
4602 attributes
= tree_cons (get_identifier ("omp declare target"),
4603 NULL_TREE
, attributes
);
4605 return decl_attributes (node
, attributes
, flags
);
4609 /* Decode a declarator in an ordinary declaration or data definition.
4610 This is called as soon as the type information and variable name
4611 have been parsed, before parsing the initializer if any.
4612 Here we create the ..._DECL node, fill in its type,
4613 and put it on the list of decls for the current context.
4614 The ..._DECL node is returned as the value.
4616 Exception: for arrays where the length is not specified,
4617 the type is left null, to be filled in by `finish_decl'.
4619 Function definitions do not come here; they go to start_function
4620 instead. However, external and forward declarations of functions
4621 do go through here. Structure field declarations are done by
4622 grokfield and not through here. */
4625 start_decl (struct c_declarator
*declarator
, struct c_declspecs
*declspecs
,
4626 bool initialized
, tree attributes
)
4630 tree expr
= NULL_TREE
;
4631 enum deprecated_states deprecated_state
= DEPRECATED_NORMAL
;
4633 /* An object declared as __attribute__((deprecated)) suppresses
4634 warnings of uses of other deprecated items. */
4635 if (lookup_attribute ("deprecated", attributes
))
4636 deprecated_state
= DEPRECATED_SUPPRESS
;
4638 decl
= grokdeclarator (declarator
, declspecs
,
4639 NORMAL
, initialized
, NULL
, &attributes
, &expr
, NULL
,
4641 if (!decl
|| decl
== error_mark_node
)
4645 add_stmt (fold_convert (void_type_node
, expr
));
4647 if (TREE_CODE (decl
) != FUNCTION_DECL
&& MAIN_NAME_P (DECL_NAME (decl
)))
4648 warning (OPT_Wmain
, "%q+D is usually a function", decl
);
4651 /* Is it valid for this decl to have an initializer at all?
4652 If not, set INITIALIZED to zero, which will indirectly
4653 tell 'finish_decl' to ignore the initializer once it is parsed. */
4654 switch (TREE_CODE (decl
))
4657 error ("typedef %qD is initialized (use __typeof__ instead)", decl
);
4662 error ("function %qD is initialized like a variable", decl
);
4667 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
4668 error ("parameter %qD is initialized", decl
);
4673 /* Don't allow initializations for incomplete types except for
4674 arrays which might be completed by the initialization. */
4676 /* This can happen if the array size is an undefined macro.
4677 We already gave a warning, so we don't need another one. */
4678 if (TREE_TYPE (decl
) == error_mark_node
)
4680 else if (COMPLETE_TYPE_P (TREE_TYPE (decl
)))
4682 /* A complete type is ok if size is fixed. */
4684 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl
))) != INTEGER_CST
4685 || C_DECL_VARIABLE_SIZE (decl
))
4687 error ("variable-sized object may not be initialized");
4691 else if (TREE_CODE (TREE_TYPE (decl
)) != ARRAY_TYPE
)
4693 error ("variable %qD has initializer but incomplete type", decl
);
4696 else if (C_DECL_VARIABLE_SIZE (decl
))
4698 /* Although C99 is unclear about whether incomplete arrays
4699 of VLAs themselves count as VLAs, it does not make
4700 sense to permit them to be initialized given that
4701 ordinary VLAs may not be initialized. */
4702 error ("variable-sized object may not be initialized");
4709 if (current_scope
== file_scope
)
4710 TREE_STATIC (decl
) = 1;
4712 /* Tell 'pushdecl' this is an initialized decl
4713 even though we don't yet have the initializer expression.
4714 Also tell 'finish_decl' it may store the real initializer. */
4715 DECL_INITIAL (decl
) = error_mark_node
;
4718 /* If this is a function declaration, write a record describing it to the
4719 prototypes file (if requested). */
4721 if (TREE_CODE (decl
) == FUNCTION_DECL
)
4722 gen_aux_info_record (decl
, 0, 0, prototype_p (TREE_TYPE (decl
)));
4724 /* ANSI specifies that a tentative definition which is not merged with
4725 a non-tentative definition behaves exactly like a definition with an
4726 initializer equal to zero. (Section 3.7.2)
4728 -fno-common gives strict ANSI behavior, though this tends to break
4729 a large body of code that grew up without this rule.
4731 Thread-local variables are never common, since there's no entrenched
4732 body of code to break, and it allows more efficient variable references
4733 in the presence of dynamic linking. */
4737 && TREE_PUBLIC (decl
)
4738 && !DECL_THREAD_LOCAL_P (decl
)
4740 DECL_COMMON (decl
) = 1;
4742 /* Set attributes here so if duplicate decl, will have proper attributes. */
4743 c_decl_attributes (&decl
, attributes
, 0);
4745 /* Handle gnu_inline attribute. */
4746 if (declspecs
->inline_p
4747 && !flag_gnu89_inline
4748 && TREE_CODE (decl
) == FUNCTION_DECL
4749 && (lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl
))
4750 || current_function_decl
))
4752 if (declspecs
->storage_class
== csc_auto
&& current_scope
!= file_scope
)
4754 else if (declspecs
->storage_class
!= csc_static
)
4755 DECL_EXTERNAL (decl
) = !DECL_EXTERNAL (decl
);
4758 if (TREE_CODE (decl
) == FUNCTION_DECL
4759 && targetm
.calls
.promote_prototypes (TREE_TYPE (decl
)))
4761 struct c_declarator
*ce
= declarator
;
4763 if (ce
->kind
== cdk_pointer
)
4764 ce
= declarator
->declarator
;
4765 if (ce
->kind
== cdk_function
)
4767 tree args
= ce
->u
.arg_info
->parms
;
4768 for (; args
; args
= DECL_CHAIN (args
))
4770 tree type
= TREE_TYPE (args
);
4771 if (type
&& INTEGRAL_TYPE_P (type
)
4772 && TYPE_PRECISION (type
) < TYPE_PRECISION (integer_type_node
))
4773 DECL_ARG_TYPE (args
) = c_type_promotes_to (type
);
4778 if (TREE_CODE (decl
) == FUNCTION_DECL
4779 && DECL_DECLARED_INLINE_P (decl
)
4780 && DECL_UNINLINABLE (decl
)
4781 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl
)))
4782 warning (OPT_Wattributes
, "inline function %q+D given attribute noinline",
4785 /* C99 6.7.4p3: An inline definition of a function with external
4786 linkage shall not contain a definition of a modifiable object
4787 with static storage duration... */
4789 && current_scope
!= file_scope
4790 && TREE_STATIC (decl
)
4791 && !TREE_READONLY (decl
)
4792 && DECL_DECLARED_INLINE_P (current_function_decl
)
4793 && DECL_EXTERNAL (current_function_decl
))
4794 record_inline_static (input_location
, current_function_decl
,
4795 decl
, csi_modifiable
);
4797 if (c_dialect_objc ()
4798 && VAR_OR_FUNCTION_DECL_P (decl
))
4799 objc_check_global_decl (decl
);
4801 /* Add this decl to the current scope.
4802 TEM may equal DECL or it may be a previous decl of the same name. */
4803 tem
= pushdecl (decl
);
4805 if (initialized
&& DECL_EXTERNAL (tem
))
4807 DECL_EXTERNAL (tem
) = 0;
4808 TREE_STATIC (tem
) = 1;
4814 /* Subroutine of finish_decl. TYPE is the type of an uninitialized object
4815 DECL or the non-array element type if DECL is an uninitialized array.
4816 If that type has a const member, diagnose this. */
4819 diagnose_uninitialized_cst_member (tree decl
, tree type
)
4822 for (field
= TYPE_FIELDS (type
); field
; field
= TREE_CHAIN (field
))
4825 if (TREE_CODE (field
) != FIELD_DECL
)
4827 field_type
= strip_array_types (TREE_TYPE (field
));
4829 if (TYPE_QUALS (field_type
) & TYPE_QUAL_CONST
)
4831 warning_at (DECL_SOURCE_LOCATION (decl
), OPT_Wc___compat
,
4832 "uninitialized const member in %qT is invalid in C++",
4833 strip_array_types (TREE_TYPE (decl
)));
4834 inform (DECL_SOURCE_LOCATION (field
), "%qD should be initialized", field
);
4837 if (RECORD_OR_UNION_TYPE_P (field_type
))
4838 diagnose_uninitialized_cst_member (decl
, field_type
);
4842 /* Finish processing of a declaration;
4843 install its initial value.
4844 If ORIGTYPE is not NULL_TREE, it is the original type of INIT.
4845 If the length of an array type is not known before,
4846 it must be determined now, from the initial value, or it is an error.
4848 INIT_LOC is the location of the initial value. */
4851 finish_decl (tree decl
, location_t init_loc
, tree init
,
4852 tree origtype
, tree asmspec_tree
)
4855 bool was_incomplete
= (DECL_SIZE (decl
) == 0);
4856 const char *asmspec
= 0;
4858 /* If a name was specified, get the string. */
4859 if (VAR_OR_FUNCTION_DECL_P (decl
)
4860 && DECL_FILE_SCOPE_P (decl
))
4861 asmspec_tree
= maybe_apply_renaming_pragma (decl
, asmspec_tree
);
4863 asmspec
= TREE_STRING_POINTER (asmspec_tree
);
4866 && TREE_STATIC (decl
)
4867 && global_bindings_p ())
4868 /* So decl is a global variable. Record the types it uses
4869 so that we can decide later to emit debug info for them. */
4870 record_types_used_by_current_var_decl (decl
);
4872 /* If `start_decl' didn't like having an initialization, ignore it now. */
4873 if (init
!= 0 && DECL_INITIAL (decl
) == 0)
4876 /* Don't crash if parm is initialized. */
4877 if (TREE_CODE (decl
) == PARM_DECL
)
4881 store_init_value (init_loc
, decl
, init
, origtype
);
4883 if (c_dialect_objc () && (VAR_OR_FUNCTION_DECL_P (decl
)
4884 || TREE_CODE (decl
) == FIELD_DECL
))
4885 objc_check_decl (decl
);
4887 type
= TREE_TYPE (decl
);
4889 /* Deduce size of array from initialization, if not already known. */
4890 if (TREE_CODE (type
) == ARRAY_TYPE
4891 && TYPE_DOMAIN (type
) == 0
4892 && TREE_CODE (decl
) != TYPE_DECL
)
4895 = (TREE_STATIC (decl
)
4896 /* Even if pedantic, an external linkage array
4897 may have incomplete type at first. */
4898 ? pedantic
&& !TREE_PUBLIC (decl
)
4899 : !DECL_EXTERNAL (decl
));
4901 = complete_array_type (&TREE_TYPE (decl
), DECL_INITIAL (decl
),
4904 /* Get the completed type made by complete_array_type. */
4905 type
= TREE_TYPE (decl
);
4910 error ("initializer fails to determine size of %q+D", decl
);
4915 error ("array size missing in %q+D", decl
);
4916 /* If a `static' var's size isn't known,
4917 make it extern as well as static, so it does not get
4919 If it is not `static', then do not mark extern;
4920 finish_incomplete_decl will give it a default size
4921 and it will get allocated. */
4922 else if (!pedantic
&& TREE_STATIC (decl
) && !TREE_PUBLIC (decl
))
4923 DECL_EXTERNAL (decl
) = 1;
4927 error ("zero or negative size array %q+D", decl
);
4931 /* For global variables, update the copy of the type that
4932 exists in the binding. */
4933 if (TREE_PUBLIC (decl
))
4935 struct c_binding
*b_ext
= I_SYMBOL_BINDING (DECL_NAME (decl
));
4936 while (b_ext
&& !B_IN_EXTERNAL_SCOPE (b_ext
))
4937 b_ext
= b_ext
->shadowed
;
4938 if (b_ext
&& TREE_CODE (decl
) == TREE_CODE (b_ext
->decl
))
4940 if (b_ext
->u
.type
&& comptypes (b_ext
->u
.type
, type
))
4941 b_ext
->u
.type
= composite_type (b_ext
->u
.type
, type
);
4943 b_ext
->u
.type
= type
;
4952 if (DECL_INITIAL (decl
))
4953 TREE_TYPE (DECL_INITIAL (decl
)) = type
;
4955 relayout_decl (decl
);
4960 if (init
&& TREE_CODE (init
) == CONSTRUCTOR
)
4961 add_flexible_array_elts_to_size (decl
, init
);
4963 if (DECL_SIZE (decl
) == 0 && TREE_TYPE (decl
) != error_mark_node
4964 && COMPLETE_TYPE_P (TREE_TYPE (decl
)))
4965 layout_decl (decl
, 0);
4967 if (DECL_SIZE (decl
) == 0
4968 /* Don't give an error if we already gave one earlier. */
4969 && TREE_TYPE (decl
) != error_mark_node
4970 && (TREE_STATIC (decl
)
4971 /* A static variable with an incomplete type
4972 is an error if it is initialized.
4973 Also if it is not file scope.
4974 Otherwise, let it through, but if it is not `extern'
4975 then it may cause an error message later. */
4976 ? (DECL_INITIAL (decl
) != 0
4977 || !DECL_FILE_SCOPE_P (decl
))
4978 /* An automatic variable with an incomplete type
4980 : !DECL_EXTERNAL (decl
)))
4982 error ("storage size of %q+D isn%'t known", decl
);
4983 TREE_TYPE (decl
) = error_mark_node
;
4986 if ((RECORD_OR_UNION_TYPE_P (TREE_TYPE (decl
))
4987 || TREE_CODE (TREE_TYPE (decl
)) == ENUMERAL_TYPE
)
4988 && DECL_SIZE (decl
) == NULL_TREE
4989 && TREE_STATIC (decl
))
4990 incomplete_record_decls
.safe_push (decl
);
4992 if (is_global_var (decl
) && DECL_SIZE (decl
) != 0)
4994 if (TREE_CODE (DECL_SIZE (decl
)) == INTEGER_CST
)
4995 constant_expression_warning (DECL_SIZE (decl
));
4998 error ("storage size of %q+D isn%'t constant", decl
);
4999 TREE_TYPE (decl
) = error_mark_node
;
5003 if (TREE_USED (type
))
5005 TREE_USED (decl
) = 1;
5006 DECL_READ_P (decl
) = 1;
5010 /* If this is a function and an assembler name is specified, reset DECL_RTL
5011 so we can give it its new name. Also, update builtin_decl if it
5012 was a normal built-in. */
5013 if (TREE_CODE (decl
) == FUNCTION_DECL
&& asmspec
)
5015 if (DECL_BUILT_IN_CLASS (decl
) == BUILT_IN_NORMAL
)
5016 set_builtin_user_assembler_name (decl
, asmspec
);
5017 set_user_assembler_name (decl
, asmspec
);
5020 /* If #pragma weak was used, mark the decl weak now. */
5021 maybe_apply_pragma_weak (decl
);
5023 /* Output the assembler code and/or RTL code for variables and functions,
5024 unless the type is an undefined structure or union.
5025 If not, it will get done when the type is completed. */
5027 if (VAR_OR_FUNCTION_DECL_P (decl
))
5029 /* Determine the ELF visibility. */
5030 if (TREE_PUBLIC (decl
))
5031 c_determine_visibility (decl
);
5033 /* This is a no-op in c-lang.c or something real in objc-act.c. */
5034 if (c_dialect_objc ())
5035 objc_check_decl (decl
);
5039 /* If this is not a static variable, issue a warning.
5040 It doesn't make any sense to give an ASMSPEC for an
5041 ordinary, non-register local variable. Historically,
5042 GCC has accepted -- but ignored -- the ASMSPEC in
5044 if (!DECL_FILE_SCOPE_P (decl
)
5046 && !C_DECL_REGISTER (decl
)
5047 && !TREE_STATIC (decl
))
5048 warning (0, "ignoring asm-specifier for non-static local "
5049 "variable %q+D", decl
);
5051 set_user_assembler_name (decl
, asmspec
);
5054 if (DECL_FILE_SCOPE_P (decl
))
5056 if (DECL_INITIAL (decl
) == NULL_TREE
5057 || DECL_INITIAL (decl
) == error_mark_node
)
5058 /* Don't output anything
5059 when a tentative file-scope definition is seen.
5060 But at end of compilation, do output code for them. */
5061 DECL_DEFER_OUTPUT (decl
) = 1;
5062 if (asmspec
&& C_DECL_REGISTER (decl
))
5063 DECL_HARD_REGISTER (decl
) = 1;
5064 rest_of_decl_compilation (decl
, true, 0);
5068 /* In conjunction with an ASMSPEC, the `register'
5069 keyword indicates that we should place the variable
5070 in a particular register. */
5071 if (asmspec
&& C_DECL_REGISTER (decl
))
5073 DECL_HARD_REGISTER (decl
) = 1;
5074 /* This cannot be done for a structure with volatile
5075 fields, on which DECL_REGISTER will have been
5077 if (!DECL_REGISTER (decl
))
5078 error ("cannot put object with volatile field into register");
5081 if (TREE_CODE (decl
) != FUNCTION_DECL
)
5083 /* If we're building a variable sized type, and we might be
5084 reachable other than via the top of the current binding
5085 level, then create a new BIND_EXPR so that we deallocate
5086 the object at the right time. */
5087 /* Note that DECL_SIZE can be null due to errors. */
5088 if (DECL_SIZE (decl
)
5089 && !TREE_CONSTANT (DECL_SIZE (decl
))
5090 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list
))
5093 bind
= build3 (BIND_EXPR
, void_type_node
, NULL
, NULL
, NULL
);
5094 TREE_SIDE_EFFECTS (bind
) = 1;
5096 BIND_EXPR_BODY (bind
) = push_stmt_list ();
5098 add_stmt (build_stmt (DECL_SOURCE_LOCATION (decl
),
5104 if (!DECL_FILE_SCOPE_P (decl
))
5106 /* Recompute the RTL of a local array now
5107 if it used to be an incomplete type. */
5108 if (was_incomplete
&& !is_global_var (decl
))
5110 /* If we used it already as memory, it must stay in memory. */
5111 TREE_ADDRESSABLE (decl
) = TREE_USED (decl
);
5112 /* If it's still incomplete now, no init will save it. */
5113 if (DECL_SIZE (decl
) == 0)
5114 DECL_INITIAL (decl
) = 0;
5119 if (TREE_CODE (decl
) == TYPE_DECL
)
5121 if (!DECL_FILE_SCOPE_P (decl
)
5122 && variably_modified_type_p (TREE_TYPE (decl
), NULL_TREE
))
5123 add_stmt (build_stmt (DECL_SOURCE_LOCATION (decl
), DECL_EXPR
, decl
));
5125 rest_of_decl_compilation (decl
, DECL_FILE_SCOPE_P (decl
), 0);
5128 /* Install a cleanup (aka destructor) if one was given. */
5129 if (VAR_P (decl
) && !TREE_STATIC (decl
))
5131 tree attr
= lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl
));
5134 tree cleanup_id
= TREE_VALUE (TREE_VALUE (attr
));
5135 tree cleanup_decl
= lookup_name (cleanup_id
);
5137 vec
<tree
, va_gc
> *v
;
5139 /* Build "cleanup(&decl)" for the destructor. */
5140 cleanup
= build_unary_op (input_location
, ADDR_EXPR
, decl
, false);
5142 v
->quick_push (cleanup
);
5143 cleanup
= c_build_function_call_vec (DECL_SOURCE_LOCATION (decl
),
5144 vNULL
, cleanup_decl
, v
, NULL
);
5147 /* Don't warn about decl unused; the cleanup uses it. */
5148 TREE_USED (decl
) = 1;
5149 TREE_USED (cleanup_decl
) = 1;
5150 DECL_READ_P (decl
) = 1;
5152 push_cleanup (decl
, cleanup
, false);
5158 && !DECL_EXTERNAL (decl
)
5159 && DECL_INITIAL (decl
) == NULL_TREE
)
5161 type
= strip_array_types (type
);
5162 if (TREE_READONLY (decl
))
5163 warning_at (DECL_SOURCE_LOCATION (decl
), OPT_Wc___compat
,
5164 "uninitialized const %qD is invalid in C++", decl
);
5165 else if (RECORD_OR_UNION_TYPE_P (type
)
5166 && C_TYPE_FIELDS_READONLY (type
))
5167 diagnose_uninitialized_cst_member (decl
, type
);
5170 invoke_plugin_callbacks (PLUGIN_FINISH_DECL
, decl
);
5173 /* Given a parsed parameter declaration, decode it into a PARM_DECL.
5174 EXPR is NULL or a pointer to an expression that needs to be
5175 evaluated for the side effects of array size expressions in the
5179 grokparm (const struct c_parm
*parm
, tree
*expr
)
5181 tree attrs
= parm
->attrs
;
5182 tree decl
= grokdeclarator (parm
->declarator
, parm
->specs
, PARM
, false,
5183 NULL
, &attrs
, expr
, NULL
, DEPRECATED_NORMAL
);
5185 decl_attributes (&decl
, attrs
, 0);
5190 /* Given a parsed parameter declaration, decode it into a PARM_DECL
5191 and push that on the current scope. EXPR is a pointer to an
5192 expression that needs to be evaluated for the side effects of array
5193 size expressions in the parameters. */
5196 push_parm_decl (const struct c_parm
*parm
, tree
*expr
)
5198 tree attrs
= parm
->attrs
;
5201 decl
= grokdeclarator (parm
->declarator
, parm
->specs
, PARM
, false, NULL
,
5202 &attrs
, expr
, NULL
, DEPRECATED_NORMAL
);
5203 decl_attributes (&decl
, attrs
, 0);
5205 decl
= pushdecl (decl
);
5207 finish_decl (decl
, input_location
, NULL_TREE
, NULL_TREE
, NULL_TREE
);
5210 /* Mark all the parameter declarations to date as forward decls.
5211 Also diagnose use of this extension. */
5214 mark_forward_parm_decls (void)
5216 struct c_binding
*b
;
5218 if (pedantic
&& !current_scope
->warned_forward_parm_decls
)
5220 pedwarn (input_location
, OPT_Wpedantic
,
5221 "ISO C forbids forward parameter declarations");
5222 current_scope
->warned_forward_parm_decls
= true;
5225 for (b
= current_scope
->bindings
; b
; b
= b
->prev
)
5226 if (TREE_CODE (b
->decl
) == PARM_DECL
)
5227 TREE_ASM_WRITTEN (b
->decl
) = 1;
5230 /* Build a COMPOUND_LITERAL_EXPR. TYPE is the type given in the compound
5231 literal, which may be an incomplete array type completed by the
5232 initializer; INIT is a CONSTRUCTOR at LOC that initializes the compound
5233 literal. NON_CONST is true if the initializers contain something
5234 that cannot occur in a constant expression. */
5237 build_compound_literal (location_t loc
, tree type
, tree init
, bool non_const
)
5239 /* We do not use start_decl here because we have a type, not a declarator;
5240 and do not use finish_decl because the decl should be stored inside
5241 the COMPOUND_LITERAL_EXPR rather than added elsewhere as a DECL_EXPR. */
5246 if (type
== error_mark_node
5247 || init
== error_mark_node
)
5248 return error_mark_node
;
5250 decl
= build_decl (loc
, VAR_DECL
, NULL_TREE
, type
);
5251 DECL_EXTERNAL (decl
) = 0;
5252 TREE_PUBLIC (decl
) = 0;
5253 TREE_STATIC (decl
) = (current_scope
== file_scope
);
5254 DECL_CONTEXT (decl
) = current_function_decl
;
5255 TREE_USED (decl
) = 1;
5256 DECL_READ_P (decl
) = 1;
5257 TREE_TYPE (decl
) = type
;
5258 TREE_READONLY (decl
) = (TYPE_READONLY (type
)
5259 || (TREE_CODE (type
) == ARRAY_TYPE
5260 && TYPE_READONLY (TREE_TYPE (type
))));
5261 store_init_value (loc
, decl
, init
, NULL_TREE
);
5263 if (TREE_CODE (type
) == ARRAY_TYPE
&& !COMPLETE_TYPE_P (type
))
5265 int failure
= complete_array_type (&TREE_TYPE (decl
),
5266 DECL_INITIAL (decl
), true);
5267 /* If complete_array_type returns 3, it means that the
5268 initial value of the compound literal is empty. Allow it. */
5269 gcc_assert (failure
== 0 || failure
== 3);
5271 type
= TREE_TYPE (decl
);
5272 TREE_TYPE (DECL_INITIAL (decl
)) = type
;
5275 if (type
== error_mark_node
|| !COMPLETE_TYPE_P (type
))
5277 c_incomplete_type_error (loc
, NULL_TREE
, type
);
5278 return error_mark_node
;
5281 stmt
= build_stmt (DECL_SOURCE_LOCATION (decl
), DECL_EXPR
, decl
);
5282 complit
= build1 (COMPOUND_LITERAL_EXPR
, type
, stmt
);
5283 TREE_SIDE_EFFECTS (complit
) = 1;
5285 layout_decl (decl
, 0);
5287 if (TREE_STATIC (decl
))
5289 /* This decl needs a name for the assembler output. */
5290 set_compound_literal_name (decl
);
5291 DECL_DEFER_OUTPUT (decl
) = 1;
5292 DECL_COMDAT (decl
) = 1;
5293 DECL_ARTIFICIAL (decl
) = 1;
5294 DECL_IGNORED_P (decl
) = 1;
5296 rest_of_decl_compilation (decl
, 1, 0);
5301 complit
= build2 (C_MAYBE_CONST_EXPR
, type
, NULL
, complit
);
5302 C_MAYBE_CONST_EXPR_NON_CONST (complit
) = 1;
5308 /* Check the type of a compound literal. Here we just check that it
5309 is valid for C++. */
5312 check_compound_literal_type (location_t loc
, struct c_type_name
*type_name
)
5315 && (type_name
->specs
->typespec_kind
== ctsk_tagdef
5316 || type_name
->specs
->typespec_kind
== ctsk_tagfirstref
))
5317 warning_at (loc
, OPT_Wc___compat
,
5318 "defining a type in a compound literal is invalid in C++");
5321 /* Determine whether TYPE is a structure with a flexible array member,
5322 or a union containing such a structure (possibly recursively). */
5325 flexible_array_type_p (tree type
)
5328 switch (TREE_CODE (type
))
5331 x
= TYPE_FIELDS (type
);
5334 while (DECL_CHAIN (x
) != NULL_TREE
)
5336 if (TREE_CODE (TREE_TYPE (x
)) == ARRAY_TYPE
5337 && TYPE_SIZE (TREE_TYPE (x
)) == NULL_TREE
5338 && TYPE_DOMAIN (TREE_TYPE (x
)) != NULL_TREE
5339 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x
))) == NULL_TREE
)
5343 for (x
= TYPE_FIELDS (type
); x
!= NULL_TREE
; x
= DECL_CHAIN (x
))
5345 if (flexible_array_type_p (TREE_TYPE (x
)))
5354 /* Performs sanity checks on the TYPE and WIDTH of the bit-field NAME,
5355 replacing with appropriate values if they are invalid. */
5358 check_bitfield_type_and_width (location_t loc
, tree
*type
, tree
*width
,
5362 unsigned int max_width
;
5363 unsigned HOST_WIDE_INT w
;
5364 const char *name
= (orig_name
5365 ? identifier_to_locale (IDENTIFIER_POINTER (orig_name
))
5366 : _("<anonymous>"));
5368 /* Detect and ignore out of range field width and process valid
5370 if (!INTEGRAL_TYPE_P (TREE_TYPE (*width
)))
5372 error_at (loc
, "bit-field %qs width not an integer constant", name
);
5373 *width
= integer_one_node
;
5377 if (TREE_CODE (*width
) != INTEGER_CST
)
5379 *width
= c_fully_fold (*width
, false, NULL
);
5380 if (TREE_CODE (*width
) == INTEGER_CST
)
5381 pedwarn (loc
, OPT_Wpedantic
,
5382 "bit-field %qs width not an integer constant expression",
5385 if (TREE_CODE (*width
) != INTEGER_CST
)
5387 error_at (loc
, "bit-field %qs width not an integer constant", name
);
5388 *width
= integer_one_node
;
5390 constant_expression_warning (*width
);
5391 if (tree_int_cst_sgn (*width
) < 0)
5393 error_at (loc
, "negative width in bit-field %qs", name
);
5394 *width
= integer_one_node
;
5396 else if (integer_zerop (*width
) && orig_name
)
5398 error_at (loc
, "zero width for bit-field %qs", name
);
5399 *width
= integer_one_node
;
5403 /* Detect invalid bit-field type. */
5404 if (TREE_CODE (*type
) != INTEGER_TYPE
5405 && TREE_CODE (*type
) != BOOLEAN_TYPE
5406 && TREE_CODE (*type
) != ENUMERAL_TYPE
)
5408 error_at (loc
, "bit-field %qs has invalid type", name
);
5409 *type
= unsigned_type_node
;
5412 type_mv
= TYPE_MAIN_VARIANT (*type
);
5413 if (!in_system_header_at (input_location
)
5414 && type_mv
!= integer_type_node
5415 && type_mv
!= unsigned_type_node
5416 && type_mv
!= boolean_type_node
)
5417 pedwarn_c90 (loc
, OPT_Wpedantic
,
5418 "type of bit-field %qs is a GCC extension", name
);
5420 max_width
= TYPE_PRECISION (*type
);
5422 if (0 < compare_tree_int (*width
, max_width
))
5424 error_at (loc
, "width of %qs exceeds its type", name
);
5426 *width
= build_int_cst (integer_type_node
, w
);
5429 w
= tree_to_uhwi (*width
);
5431 if (TREE_CODE (*type
) == ENUMERAL_TYPE
)
5433 struct lang_type
*lt
= TYPE_LANG_SPECIFIC (*type
);
5435 || w
< tree_int_cst_min_precision (lt
->enum_min
, TYPE_SIGN (*type
))
5436 || w
< tree_int_cst_min_precision (lt
->enum_max
, TYPE_SIGN (*type
)))
5437 warning_at (loc
, 0, "%qs is narrower than values of its type", name
);
5443 /* Print warning about variable length array if necessary. */
5446 warn_variable_length_array (tree name
, tree size
)
5448 if (TREE_CONSTANT (size
))
5451 pedwarn_c90 (input_location
, OPT_Wvla
,
5452 "ISO C90 forbids array %qE whose size "
5453 "can%'t be evaluated", name
);
5455 pedwarn_c90 (input_location
, OPT_Wvla
, "ISO C90 forbids array "
5456 "whose size can%'t be evaluated");
5461 pedwarn_c90 (input_location
, OPT_Wvla
,
5462 "ISO C90 forbids variable length array %qE", name
);
5464 pedwarn_c90 (input_location
, OPT_Wvla
, "ISO C90 forbids variable "
5469 /* Print warning about defaulting to int if necessary. */
5472 warn_defaults_to (location_t location
, int opt
, const char *gmsgid
, ...)
5474 diagnostic_info diagnostic
;
5476 rich_location
richloc (line_table
, location
);
5478 va_start (ap
, gmsgid
);
5479 diagnostic_set_info (&diagnostic
, gmsgid
, &ap
, &richloc
,
5480 flag_isoc99
? DK_PEDWARN
: DK_WARNING
);
5481 diagnostic
.option_index
= opt
;
5482 report_diagnostic (&diagnostic
);
5486 /* Returns the smallest location != UNKNOWN_LOCATION in LOCATIONS,
5487 considering only those c_declspec_words found in LIST, which
5488 must be terminated by cdw_number_of_elements. */
5491 smallest_type_quals_location (const location_t
*locations
,
5492 const c_declspec_word
*list
)
5494 location_t loc
= UNKNOWN_LOCATION
;
5495 while (*list
!= cdw_number_of_elements
)
5497 location_t newloc
= locations
[*list
];
5498 if (loc
== UNKNOWN_LOCATION
5499 || (newloc
!= UNKNOWN_LOCATION
&& newloc
< loc
))
5507 /* Given declspecs and a declarator,
5508 determine the name and type of the object declared
5509 and construct a ..._DECL node for it.
5510 (In one case we can return a ..._TYPE node instead.
5511 For invalid input we sometimes return 0.)
5513 DECLSPECS is a c_declspecs structure for the declaration specifiers.
5515 DECL_CONTEXT says which syntactic context this declaration is in:
5516 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
5517 FUNCDEF for a function definition. Like NORMAL but a few different
5518 error messages in each case. Return value may be zero meaning
5519 this definition is too screwy to try to parse.
5520 PARM for a parameter declaration (either within a function prototype
5521 or before a function body). Make a PARM_DECL, or return void_type_node.
5522 TYPENAME if for a typename (in a cast or sizeof).
5523 Don't make a DECL node; just return the ..._TYPE node.
5524 FIELD for a struct or union field; make a FIELD_DECL.
5525 INITIALIZED is true if the decl has an initializer.
5526 WIDTH is non-NULL for bit-fields, and is a pointer to an INTEGER_CST node
5527 representing the width of the bit-field.
5528 DECL_ATTRS points to the list of attributes that should be added to this
5529 decl. Any nested attributes that belong on the decl itself will be
5531 If EXPR is not NULL, any expressions that need to be evaluated as
5532 part of evaluating variably modified types will be stored in *EXPR.
5533 If EXPR_CONST_OPERANDS is not NULL, *EXPR_CONST_OPERANDS will be
5534 set to indicate whether operands in *EXPR can be used in constant
5536 DEPRECATED_STATE is a deprecated_states value indicating whether
5537 deprecation warnings should be suppressed.
5539 In the TYPENAME case, DECLARATOR is really an absolute declarator.
5540 It may also be so in the PARM case, for a prototype where the
5541 argument type is specified but not the name.
5543 This function is where the complicated C meanings of `static'
5544 and `extern' are interpreted. */
5547 grokdeclarator (const struct c_declarator
*declarator
,
5548 struct c_declspecs
*declspecs
,
5549 enum decl_context decl_context
, bool initialized
, tree
*width
,
5550 tree
*decl_attrs
, tree
*expr
, bool *expr_const_operands
,
5551 enum deprecated_states deprecated_state
)
5553 tree type
= declspecs
->type
;
5554 bool threadp
= declspecs
->thread_p
;
5555 enum c_storage_class storage_class
= declspecs
->storage_class
;
5560 int type_quals
= TYPE_UNQUALIFIED
;
5561 tree name
= NULL_TREE
;
5562 bool funcdef_flag
= false;
5563 bool funcdef_syntax
= false;
5564 bool size_varies
= false;
5565 tree decl_attr
= declspecs
->decl_attr
;
5566 int array_ptr_quals
= TYPE_UNQUALIFIED
;
5567 tree array_ptr_attrs
= NULL_TREE
;
5568 int array_parm_static
= 0;
5569 bool array_parm_vla_unspec_p
= false;
5570 tree returned_attrs
= NULL_TREE
;
5571 bool bitfield
= width
!= NULL
;
5573 tree orig_qual_type
= NULL
;
5574 size_t orig_qual_indirect
= 0;
5575 struct c_arg_info
*arg_info
= 0;
5576 addr_space_t as1
, as2
, address_space
;
5577 location_t loc
= UNKNOWN_LOCATION
;
5579 bool expr_const_operands_dummy
;
5580 enum c_declarator_kind first_non_attr_kind
;
5581 unsigned int alignas_align
= 0;
5583 if (TREE_CODE (type
) == ERROR_MARK
)
5584 return error_mark_node
;
5588 expr_dummy
= NULL_TREE
;
5590 if (expr_const_operands
== NULL
)
5591 expr_const_operands
= &expr_const_operands_dummy
;
5593 if (declspecs
->expr
)
5596 *expr
= build2 (COMPOUND_EXPR
, TREE_TYPE (declspecs
->expr
), *expr
,
5599 *expr
= declspecs
->expr
;
5601 *expr_const_operands
= declspecs
->expr_const_operands
;
5603 if (decl_context
== FUNCDEF
)
5604 funcdef_flag
= true, decl_context
= NORMAL
;
5606 /* Look inside a declarator for the name being declared
5607 and get it as an IDENTIFIER_NODE, for an error message. */
5609 const struct c_declarator
*decl
= declarator
;
5611 first_non_attr_kind
= cdk_attrs
;
5621 funcdef_syntax
= (decl
->kind
== cdk_function
);
5622 if (first_non_attr_kind
== cdk_attrs
)
5623 first_non_attr_kind
= decl
->kind
;
5624 decl
= decl
->declarator
;
5628 decl
= decl
->declarator
;
5635 if (first_non_attr_kind
== cdk_attrs
)
5636 first_non_attr_kind
= decl
->kind
;
5645 gcc_assert (decl_context
== PARM
5646 || decl_context
== TYPENAME
5647 || (decl_context
== FIELD
5648 && declarator
->kind
== cdk_id
));
5649 gcc_assert (!initialized
);
5653 /* A function definition's declarator must have the form of
5654 a function declarator. */
5656 if (funcdef_flag
&& !funcdef_syntax
)
5659 /* If this looks like a function definition, make it one,
5660 even if it occurs where parms are expected.
5661 Then store_parm_decls will reject it and not use it as a parm. */
5662 if (decl_context
== NORMAL
&& !funcdef_flag
&& current_scope
->parm_flag
)
5663 decl_context
= PARM
;
5665 if (declspecs
->deprecated_p
&& deprecated_state
!= DEPRECATED_SUPPRESS
)
5666 warn_deprecated_use (declspecs
->type
, declspecs
->decl_attr
);
5668 if ((decl_context
== NORMAL
|| decl_context
== FIELD
)
5669 && current_scope
== file_scope
5670 && variably_modified_type_p (type
, NULL_TREE
))
5673 error_at (loc
, "variably modified %qE at file scope", name
);
5675 error_at (loc
, "variably modified field at file scope");
5676 type
= integer_type_node
;
5679 size_varies
= C_TYPE_VARIABLE_SIZE (type
) != 0;
5681 /* Diagnose defaulting to "int". */
5683 if (declspecs
->default_int_p
&& !in_system_header_at (input_location
))
5685 /* Issue a warning if this is an ISO C 99 program or if
5686 -Wreturn-type and this is a function, or if -Wimplicit;
5687 prefer the former warning since it is more explicit. */
5688 if ((warn_implicit_int
|| warn_return_type
|| flag_isoc99
)
5690 warn_about_return_type
= 1;
5694 warn_defaults_to (loc
, OPT_Wimplicit_int
,
5695 "type defaults to %<int%> in declaration "
5698 warn_defaults_to (loc
, OPT_Wimplicit_int
,
5699 "type defaults to %<int%> in type name");
5703 /* Adjust the type if a bit-field is being declared,
5704 -funsigned-bitfields applied and the type is not explicitly
5706 if (bitfield
&& !flag_signed_bitfields
&& !declspecs
->explicit_signed_p
5707 && TREE_CODE (type
) == INTEGER_TYPE
)
5708 type
= unsigned_type_for (type
);
5710 /* Figure out the type qualifiers for the declaration. There are
5711 two ways a declaration can become qualified. One is something
5712 like `const int i' where the `const' is explicit. Another is
5713 something like `typedef const int CI; CI i' where the type of the
5714 declaration contains the `const'. A third possibility is that
5715 there is a type qualifier on the element type of a typedefed
5716 array type, in which case we should extract that qualifier so
5717 that c_apply_type_quals_to_decl receives the full list of
5718 qualifiers to work with (C90 is not entirely clear about whether
5719 duplicate qualifiers should be diagnosed in this case, but it
5720 seems most appropriate to do so). */
5721 element_type
= strip_array_types (type
);
5722 constp
= declspecs
->const_p
+ TYPE_READONLY (element_type
);
5723 restrictp
= declspecs
->restrict_p
+ TYPE_RESTRICT (element_type
);
5724 volatilep
= declspecs
->volatile_p
+ TYPE_VOLATILE (element_type
);
5725 atomicp
= declspecs
->atomic_p
+ TYPE_ATOMIC (element_type
);
5726 as1
= declspecs
->address_space
;
5727 as2
= TYPE_ADDR_SPACE (element_type
);
5728 address_space
= ADDR_SPACE_GENERIC_P (as1
)? as2
: as1
;
5731 pedwarn_c90 (loc
, OPT_Wpedantic
, "duplicate %<const%>");
5733 pedwarn_c90 (loc
, OPT_Wpedantic
, "duplicate %<restrict%>");
5735 pedwarn_c90 (loc
, OPT_Wpedantic
, "duplicate %<volatile%>");
5737 pedwarn_c90 (loc
, OPT_Wpedantic
, "duplicate %<_Atomic%>");
5739 if (!ADDR_SPACE_GENERIC_P (as1
) && !ADDR_SPACE_GENERIC_P (as2
) && as1
!= as2
)
5740 error_at (loc
, "conflicting named address spaces (%s vs %s)",
5741 c_addr_space_name (as1
), c_addr_space_name (as2
));
5743 if ((TREE_CODE (type
) == ARRAY_TYPE
5744 || first_non_attr_kind
== cdk_array
)
5745 && TYPE_QUALS (element_type
))
5747 orig_qual_type
= type
;
5748 type
= TYPE_MAIN_VARIANT (type
);
5750 type_quals
= ((constp
? TYPE_QUAL_CONST
: 0)
5751 | (restrictp
? TYPE_QUAL_RESTRICT
: 0)
5752 | (volatilep
? TYPE_QUAL_VOLATILE
: 0)
5753 | (atomicp
? TYPE_QUAL_ATOMIC
: 0)
5754 | ENCODE_QUAL_ADDR_SPACE (address_space
));
5755 if (type_quals
!= TYPE_QUALS (element_type
))
5756 orig_qual_type
= NULL_TREE
;
5758 /* Applying the _Atomic qualifier to an array type (through the use
5759 of typedefs or typeof) must be detected here. If the qualifier
5760 is introduced later, any appearance of applying it to an array is
5761 actually applying it to an element of that array. */
5762 if (atomicp
&& TREE_CODE (type
) == ARRAY_TYPE
)
5763 error_at (loc
, "%<_Atomic%>-qualified array type");
5765 /* Warn about storage classes that are invalid for certain
5766 kinds of declarations (parameters, typenames, etc.). */
5770 || storage_class
== csc_auto
5771 || storage_class
== csc_register
5772 || storage_class
== csc_typedef
))
5774 if (storage_class
== csc_auto
)
5776 (current_scope
== file_scope
) ? 0 : OPT_Wpedantic
,
5777 "function definition declared %<auto%>");
5778 if (storage_class
== csc_register
)
5779 error_at (loc
, "function definition declared %<register%>");
5780 if (storage_class
== csc_typedef
)
5781 error_at (loc
, "function definition declared %<typedef%>");
5783 error_at (loc
, "function definition declared %qs",
5784 declspecs
->thread_gnu_p
? "__thread" : "_Thread_local");
5786 if (storage_class
== csc_auto
5787 || storage_class
== csc_register
5788 || storage_class
== csc_typedef
)
5789 storage_class
= csc_none
;
5791 else if (decl_context
!= NORMAL
&& (storage_class
!= csc_none
|| threadp
))
5793 if (decl_context
== PARM
&& storage_class
== csc_register
)
5797 switch (decl_context
)
5801 error_at (loc
, "storage class specified for structure "
5804 error_at (loc
, "storage class specified for structure field");
5808 error_at (loc
, "storage class specified for parameter %qE",
5811 error_at (loc
, "storage class specified for unnamed parameter");
5814 error_at (loc
, "storage class specified for typename");
5817 storage_class
= csc_none
;
5821 else if (storage_class
== csc_extern
5825 /* 'extern' with initialization is invalid if not at file scope. */
5826 if (current_scope
== file_scope
)
5828 /* It is fine to have 'extern const' when compiling at C
5829 and C++ intersection. */
5830 if (!(warn_cxx_compat
&& constp
))
5831 warning_at (loc
, 0, "%qE initialized and declared %<extern%>",
5835 error_at (loc
, "%qE has both %<extern%> and initializer", name
);
5837 else if (current_scope
== file_scope
)
5839 if (storage_class
== csc_auto
)
5840 error_at (loc
, "file-scope declaration of %qE specifies %<auto%>",
5842 if (pedantic
&& storage_class
== csc_register
)
5843 pedwarn (input_location
, OPT_Wpedantic
,
5844 "file-scope declaration of %qE specifies %<register%>", name
);
5848 if (storage_class
== csc_extern
&& funcdef_flag
)
5849 error_at (loc
, "nested function %qE declared %<extern%>", name
);
5850 else if (threadp
&& storage_class
== csc_none
)
5852 error_at (loc
, "function-scope %qE implicitly auto and declared "
5854 declspecs
->thread_gnu_p
? "__thread" : "_Thread_local");
5859 /* Now figure out the structure of the declarator proper.
5860 Descend through it, creating more complex types, until we reach
5861 the declared identifier (or NULL_TREE, in an absolute declarator).
5862 At each stage we maintain an unqualified version of the type
5863 together with any qualifiers that should be applied to it with
5864 c_build_qualified_type; this way, array types including
5865 multidimensional array types are first built up in unqualified
5866 form and then the qualified form is created with
5867 TYPE_MAIN_VARIANT pointing to the unqualified form. */
5869 while (declarator
&& declarator
->kind
!= cdk_id
)
5871 if (type
== error_mark_node
)
5873 declarator
= declarator
->declarator
;
5877 /* Each level of DECLARATOR is either a cdk_array (for ...[..]),
5878 a cdk_pointer (for *...),
5879 a cdk_function (for ...(...)),
5880 a cdk_attrs (for nested attributes),
5881 or a cdk_id (for the name being declared
5882 or the place in an absolute declarator
5883 where the name was omitted).
5884 For the last case, we have just exited the loop.
5886 At this point, TYPE is the type of elements of an array,
5887 or for a function to return, or for a pointer to point to.
5888 After this sequence of ifs, TYPE is the type of the
5889 array or function or pointer, and DECLARATOR has had its
5890 outermost layer removed. */
5892 if (array_ptr_quals
!= TYPE_UNQUALIFIED
5893 || array_ptr_attrs
!= NULL_TREE
5894 || array_parm_static
)
5896 /* Only the innermost declarator (making a parameter be of
5897 array type which is converted to pointer type)
5898 may have static or type qualifiers. */
5899 error_at (loc
, "static or type qualifiers in non-parameter array declarator");
5900 array_ptr_quals
= TYPE_UNQUALIFIED
;
5901 array_ptr_attrs
= NULL_TREE
;
5902 array_parm_static
= 0;
5905 switch (declarator
->kind
)
5909 /* A declarator with embedded attributes. */
5910 tree attrs
= declarator
->u
.attrs
;
5911 const struct c_declarator
*inner_decl
;
5913 declarator
= declarator
->declarator
;
5914 inner_decl
= declarator
;
5915 while (inner_decl
->kind
== cdk_attrs
)
5916 inner_decl
= inner_decl
->declarator
;
5917 if (inner_decl
->kind
== cdk_id
)
5918 attr_flags
|= (int) ATTR_FLAG_DECL_NEXT
;
5919 else if (inner_decl
->kind
== cdk_function
)
5920 attr_flags
|= (int) ATTR_FLAG_FUNCTION_NEXT
;
5921 else if (inner_decl
->kind
== cdk_array
)
5922 attr_flags
|= (int) ATTR_FLAG_ARRAY_NEXT
;
5923 returned_attrs
= decl_attributes (&type
,
5924 chainon (returned_attrs
, attrs
),
5930 tree itype
= NULL_TREE
;
5931 tree size
= declarator
->u
.array
.dimen
;
5932 /* The index is a signed object `sizetype' bits wide. */
5933 tree index_type
= c_common_signed_type (sizetype
);
5935 array_ptr_quals
= declarator
->u
.array
.quals
;
5936 array_ptr_attrs
= declarator
->u
.array
.attrs
;
5937 array_parm_static
= declarator
->u
.array
.static_p
;
5938 array_parm_vla_unspec_p
= declarator
->u
.array
.vla_unspec_p
;
5940 declarator
= declarator
->declarator
;
5942 /* Check for some types that there cannot be arrays of. */
5944 if (VOID_TYPE_P (type
))
5947 error_at (loc
, "declaration of %qE as array of voids", name
);
5949 error_at (loc
, "declaration of type name as array of voids");
5950 type
= error_mark_node
;
5953 if (TREE_CODE (type
) == FUNCTION_TYPE
)
5956 error_at (loc
, "declaration of %qE as array of functions",
5959 error_at (loc
, "declaration of type name as array of "
5961 type
= error_mark_node
;
5964 if (pedantic
&& !in_system_header_at (input_location
)
5965 && flexible_array_type_p (type
))
5966 pedwarn (loc
, OPT_Wpedantic
,
5967 "invalid use of structure with flexible array member");
5969 if (size
== error_mark_node
)
5970 type
= error_mark_node
;
5972 if (type
== error_mark_node
)
5975 /* If size was specified, set ITYPE to a range-type for
5976 that size. Otherwise, ITYPE remains null. finish_decl
5977 may figure it out from an initial value. */
5981 bool size_maybe_const
= true;
5982 bool size_int_const
= (TREE_CODE (size
) == INTEGER_CST
5983 && !TREE_OVERFLOW (size
));
5984 bool this_size_varies
= false;
5986 /* Strip NON_LVALUE_EXPRs since we aren't using as an
5988 STRIP_TYPE_NOPS (size
);
5990 if (!INTEGRAL_TYPE_P (TREE_TYPE (size
)))
5993 error_at (loc
, "size of array %qE has non-integer type",
5997 "size of unnamed array has non-integer type");
5998 size
= integer_one_node
;
6000 /* This can happen with enum forward declaration. */
6001 else if (!COMPLETE_TYPE_P (TREE_TYPE (size
)))
6004 error_at (loc
, "size of array %qE has incomplete type",
6007 error_at (loc
, "size of unnamed array has incomplete "
6009 size
= integer_one_node
;
6012 size
= c_fully_fold (size
, false, &size_maybe_const
);
6014 if (pedantic
&& size_maybe_const
&& integer_zerop (size
))
6017 pedwarn (loc
, OPT_Wpedantic
,
6018 "ISO C forbids zero-size array %qE", name
);
6020 pedwarn (loc
, OPT_Wpedantic
,
6021 "ISO C forbids zero-size array");
6024 if (TREE_CODE (size
) == INTEGER_CST
&& size_maybe_const
)
6026 constant_expression_warning (size
);
6027 if (tree_int_cst_sgn (size
) < 0)
6030 error_at (loc
, "size of array %qE is negative", name
);
6032 error_at (loc
, "size of unnamed array is negative");
6033 size
= integer_one_node
;
6035 /* Handle a size folded to an integer constant but
6036 not an integer constant expression. */
6037 if (!size_int_const
)
6039 /* If this is a file scope declaration of an
6040 ordinary identifier, this is invalid code;
6041 diagnosing it here and not subsequently
6042 treating the type as variable-length avoids
6043 more confusing diagnostics later. */
6044 if ((decl_context
== NORMAL
|| decl_context
== FIELD
)
6045 && current_scope
== file_scope
)
6046 pedwarn (input_location
, 0,
6047 "variably modified %qE at file scope",
6050 this_size_varies
= size_varies
= true;
6051 warn_variable_length_array (name
, size
);
6054 else if ((decl_context
== NORMAL
|| decl_context
== FIELD
)
6055 && current_scope
== file_scope
)
6057 error_at (loc
, "variably modified %qE at file scope", name
);
6058 size
= integer_one_node
;
6062 /* Make sure the array size remains visibly
6063 nonconstant even if it is (eg) a const variable
6064 with known value. */
6065 this_size_varies
= size_varies
= true;
6066 warn_variable_length_array (name
, size
);
6067 if (flag_sanitize
& SANITIZE_VLA
6068 && decl_context
== NORMAL
6069 && do_ubsan_in_current_function ())
6071 /* Evaluate the array size only once. */
6072 size
= c_save_expr (size
);
6073 size
= c_fully_fold (size
, false, NULL
);
6074 size
= fold_build2 (COMPOUND_EXPR
, TREE_TYPE (size
),
6075 ubsan_instrument_vla (loc
, size
),
6080 if (integer_zerop (size
) && !this_size_varies
)
6082 /* A zero-length array cannot be represented with
6083 an unsigned index type, which is what we'll
6084 get with build_index_type. Create an
6085 open-ended range instead. */
6086 itype
= build_range_type (sizetype
, size
, NULL_TREE
);
6090 /* Arrange for the SAVE_EXPR on the inside of the
6091 MINUS_EXPR, which allows the -1 to get folded
6092 with the +1 that happens when building TYPE_SIZE. */
6094 size
= save_expr (size
);
6095 if (this_size_varies
&& TREE_CODE (size
) == INTEGER_CST
)
6096 size
= build2 (COMPOUND_EXPR
, TREE_TYPE (size
),
6097 integer_zero_node
, size
);
6099 /* Compute the maximum valid index, that is, size
6100 - 1. Do the calculation in index_type, so that
6101 if it is a variable the computations will be
6102 done in the proper mode. */
6103 itype
= fold_build2_loc (loc
, MINUS_EXPR
, index_type
,
6104 convert (index_type
, size
),
6105 convert (index_type
,
6108 /* The above overflows when size does not fit
6110 ??? While a size of INT_MAX+1 technically shouldn't
6111 cause an overflow (because we subtract 1), handling
6112 this case seems like an unnecessary complication. */
6113 if (TREE_CODE (size
) == INTEGER_CST
6114 && !int_fits_type_p (size
, index_type
))
6117 error_at (loc
, "size of array %qE is too large",
6120 error_at (loc
, "size of unnamed array is too large");
6121 type
= error_mark_node
;
6125 itype
= build_index_type (itype
);
6127 if (this_size_varies
)
6130 *expr
= build2 (COMPOUND_EXPR
, TREE_TYPE (size
),
6134 *expr_const_operands
&= size_maybe_const
;
6137 else if (decl_context
== FIELD
)
6139 bool flexible_array_member
= false;
6140 if (array_parm_vla_unspec_p
)
6141 /* Field names can in fact have function prototype
6142 scope so [*] is disallowed here through making
6143 the field variably modified, not through being
6144 something other than a declaration with function
6149 const struct c_declarator
*t
= declarator
;
6150 while (t
->kind
== cdk_attrs
)
6152 flexible_array_member
= (t
->kind
== cdk_id
);
6154 if (flexible_array_member
6155 && !in_system_header_at (input_location
))
6156 pedwarn_c90 (loc
, OPT_Wpedantic
, "ISO C90 does not "
6157 "support flexible array members");
6159 /* ISO C99 Flexible array members are effectively
6160 identical to GCC's zero-length array extension. */
6161 if (flexible_array_member
|| array_parm_vla_unspec_p
)
6162 itype
= build_range_type (sizetype
, size_zero_node
,
6165 else if (decl_context
== PARM
)
6167 if (array_parm_vla_unspec_p
)
6169 itype
= build_range_type (sizetype
, size_zero_node
, NULL_TREE
);
6173 else if (decl_context
== TYPENAME
)
6175 if (array_parm_vla_unspec_p
)
6178 warning (0, "%<[*]%> not in a declaration");
6179 /* We use this to avoid messing up with incomplete
6180 array types of the same type, that would
6181 otherwise be modified below. */
6182 itype
= build_range_type (sizetype
, size_zero_node
,
6188 /* Complain about arrays of incomplete types. */
6189 if (!COMPLETE_TYPE_P (type
))
6191 error_at (loc
, "array type has incomplete element type %qT",
6193 /* See if we can be more helpful. */
6194 if (TREE_CODE (type
) == ARRAY_TYPE
)
6197 inform (loc
, "declaration of %qE as multidimensional "
6198 "array must have bounds for all dimensions "
6199 "except the first", name
);
6201 inform (loc
, "declaration of multidimensional array "
6202 "must have bounds for all dimensions except "
6205 type
= error_mark_node
;
6208 /* When itype is NULL, a shared incomplete array type is
6209 returned for all array of a given type. Elsewhere we
6210 make sure we don't complete that type before copying
6211 it, but here we want to make sure we don't ever
6212 modify the shared type, so we gcc_assert (itype)
6215 addr_space_t as
= DECODE_QUAL_ADDR_SPACE (type_quals
);
6216 if (!ADDR_SPACE_GENERIC_P (as
) && as
!= TYPE_ADDR_SPACE (type
))
6217 type
= build_qualified_type (type
,
6218 ENCODE_QUAL_ADDR_SPACE (as
));
6220 type
= build_array_type (type
, itype
);
6223 if (type
!= error_mark_node
)
6227 /* It is ok to modify type here even if itype is
6228 NULL: if size_varies, we're in a
6229 multi-dimensional array and the inner type has
6230 variable size, so the enclosing shared array type
6232 if (size
&& TREE_CODE (size
) == INTEGER_CST
)
6234 = build_distinct_type_copy (TYPE_MAIN_VARIANT (type
));
6235 C_TYPE_VARIABLE_SIZE (type
) = 1;
6238 /* The GCC extension for zero-length arrays differs from
6239 ISO flexible array members in that sizeof yields
6241 if (size
&& integer_zerop (size
))
6244 type
= build_distinct_type_copy (TYPE_MAIN_VARIANT (type
));
6245 TYPE_SIZE (type
) = bitsize_zero_node
;
6246 TYPE_SIZE_UNIT (type
) = size_zero_node
;
6247 SET_TYPE_STRUCTURAL_EQUALITY (type
);
6249 if (array_parm_vla_unspec_p
)
6252 /* The type is complete. C99 6.7.5.2p4 */
6253 type
= build_distinct_type_copy (TYPE_MAIN_VARIANT (type
));
6254 TYPE_SIZE (type
) = bitsize_zero_node
;
6255 TYPE_SIZE_UNIT (type
) = size_zero_node
;
6256 SET_TYPE_STRUCTURAL_EQUALITY (type
);
6259 if (!valid_array_size_p (loc
, type
, name
))
6260 type
= error_mark_node
;
6263 if (decl_context
!= PARM
6264 && (array_ptr_quals
!= TYPE_UNQUALIFIED
6265 || array_ptr_attrs
!= NULL_TREE
6266 || array_parm_static
))
6268 error_at (loc
, "static or type qualifiers in non-parameter "
6269 "array declarator");
6270 array_ptr_quals
= TYPE_UNQUALIFIED
;
6271 array_ptr_attrs
= NULL_TREE
;
6272 array_parm_static
= 0;
6274 orig_qual_indirect
++;
6279 /* Say it's a definition only for the declarator closest
6280 to the identifier, apart possibly from some
6282 bool really_funcdef
= false;
6284 orig_qual_type
= NULL_TREE
;
6287 const struct c_declarator
*t
= declarator
->declarator
;
6288 while (t
->kind
== cdk_attrs
)
6290 really_funcdef
= (t
->kind
== cdk_id
);
6293 /* Declaring a function type. Make sure we have a valid
6294 type for the function to return. */
6295 if (type
== error_mark_node
)
6298 size_varies
= false;
6300 /* Warn about some types functions can't return. */
6301 if (TREE_CODE (type
) == FUNCTION_TYPE
)
6304 error_at (loc
, "%qE declared as function returning a "
6307 error_at (loc
, "type name declared as function "
6308 "returning a function");
6309 type
= integer_type_node
;
6311 if (TREE_CODE (type
) == ARRAY_TYPE
)
6314 error_at (loc
, "%qE declared as function returning an array",
6317 error_at (loc
, "type name declared as function returning "
6319 type
= integer_type_node
;
6322 /* Construct the function type and go to the next
6323 inner layer of declarator. */
6324 arg_info
= declarator
->u
.arg_info
;
6325 arg_types
= grokparms (arg_info
, really_funcdef
);
6327 /* Type qualifiers before the return type of the function
6328 qualify the return type, not the function type. */
6331 const enum c_declspec_word ignored_quals_list
[] =
6333 cdw_const
, cdw_volatile
, cdw_restrict
, cdw_address_space
,
6334 cdw_atomic
, cdw_number_of_elements
6336 location_t specs_loc
6337 = smallest_type_quals_location (declspecs
->locations
,
6338 ignored_quals_list
);
6339 if (specs_loc
== UNKNOWN_LOCATION
)
6340 specs_loc
= declspecs
->locations
[cdw_typedef
];
6341 if (specs_loc
== UNKNOWN_LOCATION
)
6344 /* Type qualifiers on a function return type are
6345 normally permitted by the standard but have no
6346 effect, so give a warning at -Wreturn-type.
6347 Qualifiers on a void return type are banned on
6348 function definitions in ISO C; GCC used to used
6349 them for noreturn functions. The resolution of C11
6350 DR#423 means qualifiers (other than _Atomic) are
6351 actually removed from the return type when
6352 determining the function type. */
6353 int quals_used
= type_quals
;
6355 quals_used
&= TYPE_QUAL_ATOMIC
;
6356 if (quals_used
&& VOID_TYPE_P (type
) && really_funcdef
)
6357 pedwarn (specs_loc
, 0,
6358 "function definition has qualified void return type");
6360 warning_at (specs_loc
, OPT_Wignored_qualifiers
,
6361 "type qualifiers ignored on function return type");
6363 /* Ensure an error for restrict on invalid types; the
6364 DR#423 resolution is not entirely clear about
6367 && (type_quals
& TYPE_QUAL_RESTRICT
)
6368 && (!POINTER_TYPE_P (type
)
6369 || !C_TYPE_OBJECT_OR_INCOMPLETE_P (TREE_TYPE (type
))))
6370 error_at (loc
, "invalid use of %<restrict%>");
6372 type
= c_build_qualified_type (type
, quals_used
);
6374 type_quals
= TYPE_UNQUALIFIED
;
6376 type
= build_function_type (type
, arg_types
);
6377 declarator
= declarator
->declarator
;
6379 /* Set the TYPE_CONTEXTs for each tagged type which is local to
6380 the formal parameter list of this FUNCTION_TYPE to point to
6381 the FUNCTION_TYPE node itself. */
6386 FOR_EACH_VEC_SAFE_ELT_REVERSE (arg_info
->tags
, ix
, tag
)
6387 TYPE_CONTEXT (tag
->type
) = type
;
6393 /* Merge any constancy or volatility into the target type
6395 if ((type_quals
& TYPE_QUAL_ATOMIC
)
6396 && TREE_CODE (type
) == FUNCTION_TYPE
)
6399 "%<_Atomic%>-qualified function type");
6400 type_quals
&= ~TYPE_QUAL_ATOMIC
;
6402 else if (pedantic
&& TREE_CODE (type
) == FUNCTION_TYPE
6404 pedwarn (loc
, OPT_Wpedantic
,
6405 "ISO C forbids qualified function types");
6407 type
= c_build_qualified_type (type
, type_quals
, orig_qual_type
,
6408 orig_qual_indirect
);
6409 orig_qual_type
= NULL_TREE
;
6410 size_varies
= false;
6412 /* When the pointed-to type involves components of variable size,
6413 care must be taken to ensure that the size evaluation code is
6414 emitted early enough to dominate all the possible later uses
6415 and late enough for the variables on which it depends to have
6418 This is expected to happen automatically when the pointed-to
6419 type has a name/declaration of it's own, but special attention
6420 is required if the type is anonymous.
6422 We handle the NORMAL and FIELD contexts here by attaching an
6423 artificial TYPE_DECL to such pointed-to type. This forces the
6424 sizes evaluation at a safe point and ensures it is not deferred
6425 until e.g. within a deeper conditional context.
6427 We expect nothing to be needed here for PARM or TYPENAME.
6428 Pushing a TYPE_DECL at this point for TYPENAME would actually
6429 be incorrect, as we might be in the middle of an expression
6430 with side effects on the pointed-to type size "arguments" prior
6431 to the pointer declaration point and the fake TYPE_DECL in the
6432 enclosing context would force the size evaluation prior to the
6435 if (!TYPE_NAME (type
)
6436 && (decl_context
== NORMAL
|| decl_context
== FIELD
)
6437 && variably_modified_type_p (type
, NULL_TREE
))
6439 tree decl
= build_decl (loc
, TYPE_DECL
, NULL_TREE
, type
);
6440 DECL_ARTIFICIAL (decl
) = 1;
6442 finish_decl (decl
, loc
, NULL_TREE
, NULL_TREE
, NULL_TREE
);
6443 TYPE_NAME (type
) = decl
;
6446 type
= c_build_pointer_type (type
);
6448 /* Process type qualifiers (such as const or volatile)
6449 that were given inside the `*'. */
6450 type_quals
= declarator
->u
.pointer_quals
;
6452 declarator
= declarator
->declarator
;
6459 *decl_attrs
= chainon (returned_attrs
, *decl_attrs
);
6461 /* Now TYPE has the actual type, apart from any qualifiers in
6464 /* Warn about address space used for things other than static memory or
6466 address_space
= DECODE_QUAL_ADDR_SPACE (type_quals
);
6467 if (!ADDR_SPACE_GENERIC_P (address_space
))
6469 if (decl_context
== NORMAL
)
6471 switch (storage_class
)
6474 error ("%qs combined with %<auto%> qualifier for %qE",
6475 c_addr_space_name (address_space
), name
);
6478 error ("%qs combined with %<register%> qualifier for %qE",
6479 c_addr_space_name (address_space
), name
);
6482 if (current_function_scope
)
6484 error ("%qs specified for auto variable %qE",
6485 c_addr_space_name (address_space
), name
);
6497 else if (decl_context
== PARM
&& TREE_CODE (type
) != ARRAY_TYPE
)
6500 error ("%qs specified for parameter %qE",
6501 c_addr_space_name (address_space
), name
);
6503 error ("%qs specified for unnamed parameter",
6504 c_addr_space_name (address_space
));
6506 else if (decl_context
== FIELD
)
6509 error ("%qs specified for structure field %qE",
6510 c_addr_space_name (address_space
), name
);
6512 error ("%qs specified for structure field",
6513 c_addr_space_name (address_space
));
6517 /* Check the type and width of a bit-field. */
6520 check_bitfield_type_and_width (loc
, &type
, width
, name
);
6521 /* C11 makes it implementation-defined (6.7.2.1#5) whether
6522 atomic types are permitted for bit-fields; we have no code to
6523 make bit-field accesses atomic, so disallow them. */
6524 if (type_quals
& TYPE_QUAL_ATOMIC
)
6527 error_at (loc
, "bit-field %qE has atomic type", name
);
6529 error_at (loc
, "bit-field has atomic type");
6530 type_quals
&= ~TYPE_QUAL_ATOMIC
;
6534 /* Reject invalid uses of _Alignas. */
6535 if (declspecs
->alignas_p
)
6537 if (storage_class
== csc_typedef
)
6538 error_at (loc
, "alignment specified for typedef %qE", name
);
6539 else if (storage_class
== csc_register
)
6540 error_at (loc
, "alignment specified for %<register%> object %qE",
6542 else if (decl_context
== PARM
)
6545 error_at (loc
, "alignment specified for parameter %qE", name
);
6547 error_at (loc
, "alignment specified for unnamed parameter");
6552 error_at (loc
, "alignment specified for bit-field %qE", name
);
6554 error_at (loc
, "alignment specified for unnamed bit-field");
6556 else if (TREE_CODE (type
) == FUNCTION_TYPE
)
6557 error_at (loc
, "alignment specified for function %qE", name
);
6558 else if (declspecs
->align_log
!= -1 && TYPE_P (type
))
6560 alignas_align
= 1U << declspecs
->align_log
;
6561 if (alignas_align
< min_align_of_type (type
))
6564 error_at (loc
, "%<_Alignas%> specifiers cannot reduce "
6565 "alignment of %qE", name
);
6567 error_at (loc
, "%<_Alignas%> specifiers cannot reduce "
6568 "alignment of unnamed field");
6574 /* If this is declaring a typedef name, return a TYPE_DECL. */
6576 if (storage_class
== csc_typedef
)
6579 if ((type_quals
& TYPE_QUAL_ATOMIC
)
6580 && TREE_CODE (type
) == FUNCTION_TYPE
)
6583 "%<_Atomic%>-qualified function type");
6584 type_quals
&= ~TYPE_QUAL_ATOMIC
;
6586 else if (pedantic
&& TREE_CODE (type
) == FUNCTION_TYPE
6588 pedwarn (loc
, OPT_Wpedantic
,
6589 "ISO C forbids qualified function types");
6591 type
= c_build_qualified_type (type
, type_quals
, orig_qual_type
,
6592 orig_qual_indirect
);
6593 decl
= build_decl (declarator
->id_loc
,
6594 TYPE_DECL
, declarator
->u
.id
, type
);
6595 if (declspecs
->explicit_signed_p
)
6596 C_TYPEDEF_EXPLICITLY_SIGNED (decl
) = 1;
6597 if (declspecs
->inline_p
)
6598 pedwarn (loc
, 0,"typedef %q+D declared %<inline%>", decl
);
6599 if (declspecs
->noreturn_p
)
6600 pedwarn (loc
, 0,"typedef %q+D declared %<_Noreturn%>", decl
);
6602 if (warn_cxx_compat
&& declarator
->u
.id
!= NULL_TREE
)
6604 struct c_binding
*b
= I_TAG_BINDING (declarator
->u
.id
);
6607 && b
->decl
!= NULL_TREE
6608 && (B_IN_CURRENT_SCOPE (b
)
6609 || (current_scope
== file_scope
&& B_IN_EXTERNAL_SCOPE (b
)))
6610 && TYPE_MAIN_VARIANT (b
->decl
) != TYPE_MAIN_VARIANT (type
))
6612 warning_at (declarator
->id_loc
, OPT_Wc___compat
,
6613 ("using %qD as both a typedef and a tag is "
6616 if (b
->locus
!= UNKNOWN_LOCATION
)
6617 inform (b
->locus
, "originally defined here");
6624 /* If this is a type name (such as, in a cast or sizeof),
6625 compute the type and return it now. */
6627 if (decl_context
== TYPENAME
)
6629 /* Note that the grammar rejects storage classes in typenames
6631 gcc_assert (storage_class
== csc_none
&& !threadp
6632 && !declspecs
->inline_p
&& !declspecs
->noreturn_p
);
6633 if ((type_quals
& TYPE_QUAL_ATOMIC
)
6634 && TREE_CODE (type
) == FUNCTION_TYPE
)
6637 "%<_Atomic%>-qualified function type");
6638 type_quals
&= ~TYPE_QUAL_ATOMIC
;
6640 else if (pedantic
&& TREE_CODE (type
) == FUNCTION_TYPE
6642 pedwarn (loc
, OPT_Wpedantic
,
6643 "ISO C forbids const or volatile function types");
6645 type
= c_build_qualified_type (type
, type_quals
, orig_qual_type
,
6646 orig_qual_indirect
);
6650 if (pedantic
&& decl_context
== FIELD
6651 && variably_modified_type_p (type
, NULL_TREE
))
6654 pedwarn (loc
, OPT_Wpedantic
, "a member of a structure or union cannot "
6655 "have a variably modified type");
6658 /* Aside from typedefs and type names (handle above),
6659 `void' at top level (not within pointer)
6660 is allowed only in public variables.
6661 We don't complain about parms either, but that is because
6662 a better error message can be made later. */
6664 if (VOID_TYPE_P (type
) && decl_context
!= PARM
6665 && !((decl_context
!= FIELD
&& TREE_CODE (type
) != FUNCTION_TYPE
)
6666 && (storage_class
== csc_extern
6667 || (current_scope
== file_scope
6668 && !(storage_class
== csc_static
6669 || storage_class
== csc_register
)))))
6671 error_at (loc
, "variable or field %qE declared void", name
);
6672 type
= integer_type_node
;
6675 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
6676 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
6681 if (decl_context
== PARM
)
6684 bool array_parameter_p
= false;
6686 /* A parameter declared as an array of T is really a pointer to T.
6687 One declared as a function is really a pointer to a function. */
6689 if (TREE_CODE (type
) == ARRAY_TYPE
)
6691 /* Transfer const-ness of array into that of type pointed to. */
6692 type
= TREE_TYPE (type
);
6693 if (orig_qual_type
!= NULL_TREE
)
6695 if (orig_qual_indirect
== 0)
6696 orig_qual_type
= TREE_TYPE (orig_qual_type
);
6698 orig_qual_indirect
--;
6701 type
= c_build_qualified_type (type
, type_quals
, orig_qual_type
,
6702 orig_qual_indirect
);
6703 type
= c_build_pointer_type (type
);
6704 type_quals
= array_ptr_quals
;
6706 type
= c_build_qualified_type (type
, type_quals
);
6708 /* We don't yet implement attributes in this context. */
6709 if (array_ptr_attrs
!= NULL_TREE
)
6710 warning_at (loc
, OPT_Wattributes
,
6711 "attributes in parameter array declarator ignored");
6713 size_varies
= false;
6714 array_parameter_p
= true;
6716 else if (TREE_CODE (type
) == FUNCTION_TYPE
)
6718 if (type_quals
& TYPE_QUAL_ATOMIC
)
6721 "%<_Atomic%>-qualified function type");
6722 type_quals
&= ~TYPE_QUAL_ATOMIC
;
6724 else if (type_quals
)
6725 pedwarn (loc
, OPT_Wpedantic
,
6726 "ISO C forbids qualified function types");
6728 type
= c_build_qualified_type (type
, type_quals
);
6729 type
= c_build_pointer_type (type
);
6730 type_quals
= TYPE_UNQUALIFIED
;
6732 else if (type_quals
)
6733 type
= c_build_qualified_type (type
, type_quals
);
6735 decl
= build_decl (declarator
->id_loc
,
6736 PARM_DECL
, declarator
->u
.id
, type
);
6738 C_DECL_VARIABLE_SIZE (decl
) = 1;
6739 C_ARRAY_PARAMETER (decl
) = array_parameter_p
;
6741 /* Compute the type actually passed in the parmlist,
6742 for the case where there is no prototype.
6743 (For example, shorts and chars are passed as ints.)
6744 When there is a prototype, this is overridden later. */
6746 if (type
== error_mark_node
)
6747 promoted_type
= type
;
6749 promoted_type
= c_type_promotes_to (type
);
6751 DECL_ARG_TYPE (decl
) = promoted_type
;
6752 if (declspecs
->inline_p
)
6753 pedwarn (loc
, 0, "parameter %q+D declared %<inline%>", decl
);
6754 if (declspecs
->noreturn_p
)
6755 pedwarn (loc
, 0, "parameter %q+D declared %<_Noreturn%>", decl
);
6757 else if (decl_context
== FIELD
)
6759 /* Note that the grammar rejects storage classes in typenames
6761 gcc_assert (storage_class
== csc_none
&& !threadp
6762 && !declspecs
->inline_p
&& !declspecs
->noreturn_p
);
6764 /* Structure field. It may not be a function. */
6766 if (TREE_CODE (type
) == FUNCTION_TYPE
)
6768 error_at (loc
, "field %qE declared as a function", name
);
6769 type
= build_pointer_type (type
);
6771 else if (TREE_CODE (type
) != ERROR_MARK
6772 && !COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (type
))
6775 error_at (loc
, "field %qE has incomplete type", name
);
6777 error_at (loc
, "unnamed field has incomplete type");
6778 type
= error_mark_node
;
6780 else if (TREE_CODE (type
) == ARRAY_TYPE
6781 && TYPE_DOMAIN (type
) == NULL_TREE
)
6783 /* We have a flexible array member through a typedef.
6784 Set suitable range. Whether this is a correct position
6785 for a flexible array member will be determined elsewhere. */
6786 if (!in_system_header_at (input_location
))
6787 pedwarn_c90 (loc
, OPT_Wpedantic
, "ISO C90 does not "
6788 "support flexible array members");
6789 type
= build_distinct_type_copy (TYPE_MAIN_VARIANT (type
));
6790 TYPE_DOMAIN (type
) = build_range_type (sizetype
, size_zero_node
,
6792 if (orig_qual_indirect
== 0)
6793 orig_qual_type
= NULL_TREE
;
6795 type
= c_build_qualified_type (type
, type_quals
, orig_qual_type
,
6796 orig_qual_indirect
);
6797 decl
= build_decl (declarator
->id_loc
,
6798 FIELD_DECL
, declarator
->u
.id
, type
);
6799 DECL_NONADDRESSABLE_P (decl
) = bitfield
;
6800 if (bitfield
&& !declarator
->u
.id
)
6801 TREE_NO_WARNING (decl
) = 1;
6804 C_DECL_VARIABLE_SIZE (decl
) = 1;
6806 else if (TREE_CODE (type
) == FUNCTION_TYPE
)
6808 if (storage_class
== csc_register
|| threadp
)
6810 error_at (loc
, "invalid storage class for function %qE", name
);
6812 else if (current_scope
!= file_scope
)
6814 /* Function declaration not at file scope. Storage
6815 classes other than `extern' are not allowed, C99
6816 6.7.1p5, and `extern' makes no difference. However,
6817 GCC allows 'auto', perhaps with 'inline', to support
6818 nested functions. */
6819 if (storage_class
== csc_auto
)
6820 pedwarn (loc
, OPT_Wpedantic
,
6821 "invalid storage class for function %qE", name
);
6822 else if (storage_class
== csc_static
)
6824 error_at (loc
, "invalid storage class for function %qE", name
);
6826 storage_class
= declspecs
->storage_class
= csc_none
;
6832 decl
= build_decl (declarator
->id_loc
,
6833 FUNCTION_DECL
, declarator
->u
.id
, type
);
6834 decl
= build_decl_attribute_variant (decl
, decl_attr
);
6836 if (type_quals
& TYPE_QUAL_ATOMIC
)
6839 "%<_Atomic%>-qualified function type");
6840 type_quals
&= ~TYPE_QUAL_ATOMIC
;
6842 else if (pedantic
&& type_quals
&& !DECL_IN_SYSTEM_HEADER (decl
))
6843 pedwarn (loc
, OPT_Wpedantic
,
6844 "ISO C forbids qualified function types");
6846 /* Every function declaration is an external reference
6847 (DECL_EXTERNAL) except for those which are not at file
6848 scope and are explicitly declared "auto". This is
6849 forbidden by standard C (C99 6.7.1p5) and is interpreted by
6850 GCC to signify a forward declaration of a nested function. */
6851 if (storage_class
== csc_auto
&& current_scope
!= file_scope
)
6852 DECL_EXTERNAL (decl
) = 0;
6853 /* In C99, a function which is declared 'inline' with 'extern'
6854 is not an external reference (which is confusing). It
6855 means that the later definition of the function must be output
6856 in this file, C99 6.7.4p6. In GNU C89, a function declared
6857 'extern inline' is an external reference. */
6858 else if (declspecs
->inline_p
&& storage_class
!= csc_static
)
6859 DECL_EXTERNAL (decl
) = ((storage_class
== csc_extern
)
6860 == flag_gnu89_inline
);
6862 DECL_EXTERNAL (decl
) = !initialized
;
6864 /* Record absence of global scope for `static' or `auto'. */
6866 = !(storage_class
== csc_static
|| storage_class
== csc_auto
);
6868 /* For a function definition, record the argument information
6869 block where store_parm_decls will look for it. */
6871 current_function_arg_info
= arg_info
;
6873 if (declspecs
->default_int_p
)
6874 C_FUNCTION_IMPLICIT_INT (decl
) = 1;
6876 /* Record presence of `inline' and `_Noreturn', if it is
6878 if (flag_hosted
&& MAIN_NAME_P (declarator
->u
.id
))
6880 if (declspecs
->inline_p
)
6881 pedwarn (loc
, 0, "cannot inline function %<main%>");
6882 if (declspecs
->noreturn_p
)
6883 pedwarn (loc
, 0, "%<main%> declared %<_Noreturn%>");
6887 if (declspecs
->inline_p
)
6888 /* Record that the function is declared `inline'. */
6889 DECL_DECLARED_INLINE_P (decl
) = 1;
6890 if (declspecs
->noreturn_p
)
6893 pedwarn_c99 (loc
, OPT_Wpedantic
,
6894 "ISO C99 does not support %<_Noreturn%>");
6896 pedwarn_c99 (loc
, OPT_Wpedantic
,
6897 "ISO C90 does not support %<_Noreturn%>");
6898 TREE_THIS_VOLATILE (decl
) = 1;
6904 /* It's a variable. */
6905 /* An uninitialized decl with `extern' is a reference. */
6906 int extern_ref
= !initialized
&& storage_class
== csc_extern
;
6908 type
= c_build_qualified_type (type
, type_quals
, orig_qual_type
,
6909 orig_qual_indirect
);
6911 /* C99 6.2.2p7: It is invalid (compile-time undefined
6912 behavior) to create an 'extern' declaration for a
6913 variable if there is a global declaration that is
6914 'static' and the global declaration is not visible.
6915 (If the static declaration _is_ currently visible,
6916 the 'extern' declaration is taken to refer to that decl.) */
6917 if (extern_ref
&& current_scope
!= file_scope
)
6919 tree global_decl
= identifier_global_value (declarator
->u
.id
);
6920 tree visible_decl
= lookup_name (declarator
->u
.id
);
6923 && global_decl
!= visible_decl
6924 && VAR_P (global_decl
)
6925 && !TREE_PUBLIC (global_decl
))
6926 error_at (loc
, "variable previously declared %<static%> "
6927 "redeclared %<extern%>");
6930 decl
= build_decl (declarator
->id_loc
,
6931 VAR_DECL
, declarator
->u
.id
, type
);
6933 C_DECL_VARIABLE_SIZE (decl
) = 1;
6935 if (declspecs
->inline_p
)
6936 pedwarn (loc
, 0, "variable %q+D declared %<inline%>", decl
);
6937 if (declspecs
->noreturn_p
)
6938 pedwarn (loc
, 0, "variable %q+D declared %<_Noreturn%>", decl
);
6940 /* At file scope, an initialized extern declaration may follow
6941 a static declaration. In that case, DECL_EXTERNAL will be
6942 reset later in start_decl. */
6943 DECL_EXTERNAL (decl
) = (storage_class
== csc_extern
);
6945 /* At file scope, the presence of a `static' or `register' storage
6946 class specifier, or the absence of all storage class specifiers
6947 makes this declaration a definition (perhaps tentative). Also,
6948 the absence of `static' makes it public. */
6949 if (current_scope
== file_scope
)
6951 TREE_PUBLIC (decl
) = storage_class
!= csc_static
;
6952 TREE_STATIC (decl
) = !extern_ref
;
6954 /* Not at file scope, only `static' makes a static definition. */
6957 TREE_STATIC (decl
) = (storage_class
== csc_static
);
6958 TREE_PUBLIC (decl
) = extern_ref
;
6962 set_decl_tls_model (decl
, decl_default_tls_model (decl
));
6965 if ((storage_class
== csc_extern
6966 || (storage_class
== csc_none
6967 && TREE_CODE (type
) == FUNCTION_TYPE
6969 && variably_modified_type_p (type
, NULL_TREE
))
6972 if (TREE_CODE (type
) == FUNCTION_TYPE
)
6973 error_at (loc
, "non-nested function with variably modified type");
6975 error_at (loc
, "object with variably modified type must have "
6979 /* Record `register' declaration for warnings on &
6980 and in case doing stupid register allocation. */
6982 if (storage_class
== csc_register
)
6984 C_DECL_REGISTER (decl
) = 1;
6985 DECL_REGISTER (decl
) = 1;
6988 /* Record constancy and volatility. */
6989 c_apply_type_quals_to_decl (type_quals
, decl
);
6991 /* Apply _Alignas specifiers. */
6994 SET_DECL_ALIGN (decl
, alignas_align
* BITS_PER_UNIT
);
6995 DECL_USER_ALIGN (decl
) = 1;
6998 /* If a type has volatile components, it should be stored in memory.
6999 Otherwise, the fact that those components are volatile
7000 will be ignored, and would even crash the compiler.
7001 Of course, this only makes sense on VAR,PARM, and RESULT decl's. */
7002 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl
))
7003 && (VAR_P (decl
) || TREE_CODE (decl
) == PARM_DECL
7004 || TREE_CODE (decl
) == RESULT_DECL
))
7006 /* It is not an error for a structure with volatile fields to
7007 be declared register, but reset DECL_REGISTER since it
7008 cannot actually go in a register. */
7009 int was_reg
= C_DECL_REGISTER (decl
);
7010 C_DECL_REGISTER (decl
) = 0;
7011 DECL_REGISTER (decl
) = 0;
7012 c_mark_addressable (decl
);
7013 C_DECL_REGISTER (decl
) = was_reg
;
7016 /* This is the earliest point at which we might know the assembler
7017 name of a variable. Thus, if it's known before this, die horribly. */
7018 gcc_assert (!DECL_ASSEMBLER_NAME_SET_P (decl
));
7022 && TREE_PUBLIC (decl
)
7023 && TREE_STATIC (decl
)
7024 && (RECORD_OR_UNION_TYPE_P (TREE_TYPE (decl
))
7025 || TREE_CODE (TREE_TYPE (decl
)) == ENUMERAL_TYPE
)
7026 && TYPE_NAME (TREE_TYPE (decl
)) == NULL_TREE
)
7027 warning_at (DECL_SOURCE_LOCATION (decl
), OPT_Wc___compat
,
7028 ("non-local variable %qD with anonymous type is "
7029 "questionable in C++"),
7036 /* Decode the parameter-list info for a function type or function definition.
7037 The argument is the value returned by `get_parm_info' (or made in c-parse.c
7038 if there is an identifier list instead of a parameter decl list).
7039 These two functions are separate because when a function returns
7040 or receives functions then each is called multiple times but the order
7041 of calls is different. The last call to `grokparms' is always the one
7042 that contains the formal parameter names of a function definition.
7044 Return a list of arg types to use in the FUNCTION_TYPE for this function.
7046 FUNCDEF_FLAG is true for a function definition, false for
7047 a mere declaration. A nonempty identifier-list gets an error message
7048 when FUNCDEF_FLAG is false. */
7051 grokparms (struct c_arg_info
*arg_info
, bool funcdef_flag
)
7053 tree arg_types
= arg_info
->types
;
7055 if (funcdef_flag
&& arg_info
->had_vla_unspec
)
7057 /* A function definition isn't function prototype scope C99 6.2.1p4. */
7059 error ("%<[*]%> not allowed in other than function prototype scope");
7062 if (arg_types
== 0 && !funcdef_flag
7063 && !in_system_header_at (input_location
))
7064 warning (OPT_Wstrict_prototypes
,
7065 "function declaration isn%'t a prototype");
7067 if (arg_types
== error_mark_node
)
7068 return 0; /* don't set TYPE_ARG_TYPES in this case */
7070 else if (arg_types
&& TREE_CODE (TREE_VALUE (arg_types
)) == IDENTIFIER_NODE
)
7074 pedwarn (input_location
, 0, "parameter names (without types) in function declaration");
7075 arg_info
->parms
= NULL_TREE
;
7078 arg_info
->parms
= arg_info
->types
;
7080 arg_info
->types
= 0;
7085 tree parm
, type
, typelt
;
7086 unsigned int parmno
;
7088 /* If there is a parameter of incomplete type in a definition,
7089 this is an error. In a declaration this is valid, and a
7090 struct or union type may be completed later, before any calls
7091 or definition of the function. In the case where the tag was
7092 first declared within the parameter list, a warning has
7093 already been given. If a parameter has void type, then
7094 however the function cannot be defined or called, so
7097 for (parm
= arg_info
->parms
, typelt
= arg_types
, parmno
= 1;
7099 parm
= DECL_CHAIN (parm
), typelt
= TREE_CHAIN (typelt
), parmno
++)
7101 type
= TREE_VALUE (typelt
);
7102 if (type
== error_mark_node
)
7105 if (!COMPLETE_TYPE_P (type
))
7109 if (DECL_NAME (parm
))
7110 error_at (input_location
,
7111 "parameter %u (%q+D) has incomplete type",
7114 error_at (DECL_SOURCE_LOCATION (parm
),
7115 "parameter %u has incomplete type",
7118 TREE_VALUE (typelt
) = error_mark_node
;
7119 TREE_TYPE (parm
) = error_mark_node
;
7120 arg_types
= NULL_TREE
;
7122 else if (VOID_TYPE_P (type
))
7124 if (DECL_NAME (parm
))
7125 warning_at (input_location
, 0,
7126 "parameter %u (%q+D) has void type",
7129 warning_at (DECL_SOURCE_LOCATION (parm
), 0,
7130 "parameter %u has void type",
7135 if (DECL_NAME (parm
) && TREE_USED (parm
))
7136 warn_if_shadowing (parm
);
7142 /* Allocate and initialize a c_arg_info structure from the parser's
7146 build_arg_info (void)
7148 struct c_arg_info
*ret
= XOBNEW (&parser_obstack
, struct c_arg_info
);
7149 ret
->parms
= NULL_TREE
;
7151 ret
->types
= NULL_TREE
;
7152 ret
->others
= NULL_TREE
;
7153 ret
->pending_sizes
= NULL
;
7154 ret
->had_vla_unspec
= 0;
7158 /* Take apart the current scope and return a c_arg_info structure with
7159 info on a parameter list just parsed.
7161 This structure is later fed to 'grokparms' and 'store_parm_decls'.
7163 ELLIPSIS being true means the argument list ended in '...' so don't
7164 append a sentinel (void_list_node) to the end of the type-list.
7166 EXPR is NULL or an expression that needs to be evaluated for the
7167 side effects of array size expressions in the parameters. */
7170 get_parm_info (bool ellipsis
, tree expr
)
7172 struct c_binding
*b
= current_scope
->bindings
;
7173 struct c_arg_info
*arg_info
= build_arg_info ();
7176 vec
<c_arg_tag
, va_gc
> *tags
= NULL
;
7180 bool gave_void_only_once_err
= false;
7182 arg_info
->had_vla_unspec
= current_scope
->had_vla_unspec
;
7184 /* The bindings in this scope must not get put into a block.
7185 We will take care of deleting the binding nodes. */
7186 current_scope
->bindings
= 0;
7188 /* This function is only called if there was *something* on the
7192 /* A parameter list consisting solely of 'void' indicates that the
7193 function takes no arguments. But if the 'void' is qualified
7194 (by 'const' or 'volatile'), or has a storage class specifier
7195 ('register'), then the behavior is undefined; issue an error.
7196 Typedefs for 'void' are OK (see DR#157). */
7197 if (b
->prev
== 0 /* one binding */
7198 && TREE_CODE (b
->decl
) == PARM_DECL
/* which is a parameter */
7199 && !DECL_NAME (b
->decl
) /* anonymous */
7200 && VOID_TYPE_P (TREE_TYPE (b
->decl
))) /* of void type */
7202 if (TYPE_QUALS (TREE_TYPE (b
->decl
)) != TYPE_UNQUALIFIED
7203 || C_DECL_REGISTER (b
->decl
))
7204 error_at (b
->locus
, "%<void%> as only parameter may not be qualified");
7206 /* There cannot be an ellipsis. */
7208 error_at (b
->locus
, "%<void%> must be the only parameter");
7210 arg_info
->types
= void_list_node
;
7215 types
= void_list_node
;
7217 /* Break up the bindings list into parms, tags, types, and others;
7218 apply sanity checks; purge the name-to-decl bindings. */
7221 tree decl
= b
->decl
;
7222 tree type
= TREE_TYPE (decl
);
7224 const char *keyword
;
7226 switch (TREE_CODE (decl
))
7231 gcc_assert (I_SYMBOL_BINDING (b
->id
) == b
);
7232 I_SYMBOL_BINDING (b
->id
) = b
->shadowed
;
7235 /* Check for forward decls that never got their actual decl. */
7236 if (TREE_ASM_WRITTEN (decl
))
7238 "parameter %q+D has just a forward declaration", decl
);
7239 /* Check for (..., void, ...) and issue an error. */
7240 else if (VOID_TYPE_P (type
) && !DECL_NAME (decl
))
7242 if (!gave_void_only_once_err
)
7244 error_at (b
->locus
, "%<void%> must be the only parameter");
7245 gave_void_only_once_err
= true;
7250 /* Valid parameter, add it to the list. */
7251 DECL_CHAIN (decl
) = parms
;
7254 /* Since there is a prototype, args are passed in their
7255 declared types. The back end may override this later. */
7256 DECL_ARG_TYPE (decl
) = type
;
7257 types
= tree_cons (0, type
, types
);
7261 case ENUMERAL_TYPE
: keyword
= "enum"; goto tag
;
7262 case UNION_TYPE
: keyword
= "union"; goto tag
;
7263 case RECORD_TYPE
: keyword
= "struct"; goto tag
;
7265 /* Types may not have tag-names, in which case the type
7266 appears in the bindings list with b->id NULL. */
7269 gcc_assert (I_TAG_BINDING (b
->id
) == b
);
7270 I_TAG_BINDING (b
->id
) = b
->shadowed
;
7273 /* Warn about any struct, union or enum tags defined in a
7274 parameter list. The scope of such types is limited to
7275 the parameter list, which is rarely if ever desirable
7276 (it's impossible to call such a function with type-
7277 correct arguments). An anonymous union parm type is
7278 meaningful as a GNU extension, so don't warn for that. */
7279 if (TREE_CODE (decl
) != UNION_TYPE
|| b
->id
!= 0)
7282 /* The %s will be one of 'struct', 'union', or 'enum'. */
7283 warning_at (b
->locus
, 0,
7284 "%<%s %E%> declared inside parameter list"
7285 " will not be visible outside of this definition or"
7286 " declaration", keyword
, b
->id
);
7288 /* The %s will be one of 'struct', 'union', or 'enum'. */
7289 warning_at (b
->locus
, 0,
7290 "anonymous %s declared inside parameter list"
7291 " will not be visible outside of this definition or"
7292 " declaration", keyword
);
7297 vec_safe_push (tags
, tag
);
7301 /* FUNCTION_DECLs appear when there is an implicit function
7302 declaration in the parameter list. */
7303 gcc_assert (b
->nested
|| seen_error ());
7308 /* CONST_DECLs appear here when we have an embedded enum,
7309 and TYPE_DECLs appear here when we have an embedded struct
7310 or union. No warnings for this - we already warned about the
7313 /* When we reinsert this decl in the function body, we need
7314 to reconstruct whether it was marked as nested. */
7315 gcc_assert (!b
->nested
);
7316 DECL_CHAIN (decl
) = others
;
7322 /* error_mark_node appears here when we have an undeclared
7323 variable. Just throw it away. */
7326 gcc_assert (I_SYMBOL_BINDING (b
->id
) == b
);
7327 I_SYMBOL_BINDING (b
->id
) = b
->shadowed
;
7331 /* Other things that might be encountered. */
7338 b
= free_binding_and_advance (b
);
7341 arg_info
->parms
= parms
;
7342 arg_info
->tags
= tags
;
7343 arg_info
->types
= types
;
7344 arg_info
->others
= others
;
7345 arg_info
->pending_sizes
= expr
;
7349 /* Get the struct, enum or union (CODE says which) with tag NAME.
7350 Define the tag as a forward-reference with location LOC if it is
7351 not defined. Return a c_typespec structure for the type
7355 parser_xref_tag (location_t loc
, enum tree_code code
, tree name
)
7357 struct c_typespec ret
;
7361 ret
.expr
= NULL_TREE
;
7362 ret
.expr_const_operands
= true;
7364 /* If a cross reference is requested, look up the type
7365 already defined for this tag and return it. */
7367 ref
= lookup_tag (code
, name
, false, &refloc
);
7368 /* If this is the right type of tag, return what we found.
7369 (This reference will be shadowed by shadow_tag later if appropriate.)
7370 If this is the wrong type of tag, do not return it. If it was the
7371 wrong type in the same scope, we will have had an error
7372 message already; if in a different scope and declaring
7373 a name, pending_xref_error will give an error message; but if in a
7374 different scope and not declaring a name, this tag should
7375 shadow the previous declaration of a different type of tag, and
7376 this would not work properly if we return the reference found.
7377 (For example, with "struct foo" in an outer scope, "union foo;"
7378 must shadow that tag with a new one of union type.) */
7379 ret
.kind
= (ref
? ctsk_tagref
: ctsk_tagfirstref
);
7380 if (ref
&& TREE_CODE (ref
) == code
)
7382 if (C_TYPE_DEFINED_IN_STRUCT (ref
)
7383 && loc
!= UNKNOWN_LOCATION
7389 warning_at (loc
, OPT_Wc___compat
,
7390 ("enum type defined in struct or union "
7391 "is not visible in C++"));
7392 inform (refloc
, "enum type defined here");
7395 warning_at (loc
, OPT_Wc___compat
,
7396 ("struct defined in struct or union "
7397 "is not visible in C++"));
7398 inform (refloc
, "struct defined here");
7401 warning_at (loc
, OPT_Wc___compat
,
7402 ("union defined in struct or union "
7403 "is not visible in C++"));
7404 inform (refloc
, "union defined here");
7415 /* If no such tag is yet defined, create a forward-reference node
7416 and record it as the "definition".
7417 When a real declaration of this type is found,
7418 the forward-reference will be altered into a real type. */
7420 ref
= make_node (code
);
7421 if (code
== ENUMERAL_TYPE
)
7423 /* Give the type a default layout like unsigned int
7424 to avoid crashing if it does not get defined. */
7425 SET_TYPE_MODE (ref
, TYPE_MODE (unsigned_type_node
));
7426 SET_TYPE_ALIGN (ref
, TYPE_ALIGN (unsigned_type_node
));
7427 TYPE_USER_ALIGN (ref
) = 0;
7428 TYPE_UNSIGNED (ref
) = 1;
7429 TYPE_PRECISION (ref
) = TYPE_PRECISION (unsigned_type_node
);
7430 TYPE_MIN_VALUE (ref
) = TYPE_MIN_VALUE (unsigned_type_node
);
7431 TYPE_MAX_VALUE (ref
) = TYPE_MAX_VALUE (unsigned_type_node
);
7434 pushtag (loc
, name
, ref
);
7440 /* Get the struct, enum or union (CODE says which) with tag NAME.
7441 Define the tag as a forward-reference if it is not defined.
7442 Return a tree for the type. */
7445 xref_tag (enum tree_code code
, tree name
)
7447 return parser_xref_tag (input_location
, code
, name
).spec
;
7450 /* Make sure that the tag NAME is defined *in the current scope*
7451 at least as a forward reference.
7452 LOC is the location of the struct's definition.
7453 CODE says which kind of tag NAME ought to be.
7455 This stores the current value of the file static STRUCT_PARSE_INFO
7456 in *ENCLOSING_STRUCT_PARSE_INFO, and points STRUCT_PARSE_INFO at a
7457 new c_struct_parse_info structure. The old value of
7458 STRUCT_PARSE_INFO is restored in finish_struct. */
7461 start_struct (location_t loc
, enum tree_code code
, tree name
,
7462 struct c_struct_parse_info
**enclosing_struct_parse_info
)
7464 /* If there is already a tag defined at this scope
7465 (as a forward reference), just return it. */
7467 tree ref
= NULL_TREE
;
7468 location_t refloc
= UNKNOWN_LOCATION
;
7470 if (name
!= NULL_TREE
)
7471 ref
= lookup_tag (code
, name
, true, &refloc
);
7472 if (ref
&& TREE_CODE (ref
) == code
)
7474 if (TYPE_SIZE (ref
))
7476 if (code
== UNION_TYPE
)
7477 error_at (loc
, "redefinition of %<union %E%>", name
);
7479 error_at (loc
, "redefinition of %<struct %E%>", name
);
7480 if (refloc
!= UNKNOWN_LOCATION
)
7481 inform (refloc
, "originally defined here");
7482 /* Don't create structures using a name already in use. */
7485 else if (C_TYPE_BEING_DEFINED (ref
))
7487 if (code
== UNION_TYPE
)
7488 error_at (loc
, "nested redefinition of %<union %E%>", name
);
7490 error_at (loc
, "nested redefinition of %<struct %E%>", name
);
7491 /* Don't bother to report "originally defined here" for a
7492 nested redefinition; the original definition should be
7494 /* Don't create structures that contain themselves. */
7499 /* Otherwise create a forward-reference just so the tag is in scope. */
7501 if (ref
== NULL_TREE
|| TREE_CODE (ref
) != code
)
7503 ref
= make_node (code
);
7504 pushtag (loc
, name
, ref
);
7507 C_TYPE_BEING_DEFINED (ref
) = 1;
7508 for (tree v
= TYPE_MAIN_VARIANT (ref
); v
; v
= TYPE_NEXT_VARIANT (v
))
7509 TYPE_PACKED (v
) = flag_pack_struct
;
7511 *enclosing_struct_parse_info
= struct_parse_info
;
7512 struct_parse_info
= new c_struct_parse_info ();
7514 /* FIXME: This will issue a warning for a use of a type defined
7515 within a statement expr used within sizeof, et. al. This is not
7516 terribly serious as C++ doesn't permit statement exprs within
7518 if (warn_cxx_compat
&& (in_sizeof
|| in_typeof
|| in_alignof
))
7519 warning_at (loc
, OPT_Wc___compat
,
7520 "defining type in %qs expression is invalid in C++",
7523 : (in_typeof
? "typeof" : "alignof")));
7528 /* Process the specs, declarator and width (NULL if omitted)
7529 of a structure component, returning a FIELD_DECL node.
7530 WIDTH is non-NULL for bit-fields only, and is an INTEGER_CST node.
7531 DECL_ATTRS is as for grokdeclarator.
7533 LOC is the location of the structure component.
7535 This is done during the parsing of the struct declaration.
7536 The FIELD_DECL nodes are chained together and the lot of them
7537 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
7540 grokfield (location_t loc
,
7541 struct c_declarator
*declarator
, struct c_declspecs
*declspecs
,
7542 tree width
, tree
*decl_attrs
)
7546 if (declarator
->kind
== cdk_id
&& declarator
->u
.id
== NULL_TREE
7547 && width
== NULL_TREE
)
7549 /* This is an unnamed decl.
7551 If we have something of the form "union { list } ;" then this
7552 is the anonymous union extension. Similarly for struct.
7554 If this is something of the form "struct foo;", then
7555 If MS or Plan 9 extensions are enabled, this is handled as
7556 an anonymous struct.
7557 Otherwise this is a forward declaration of a structure tag.
7559 If this is something of the form "foo;" and foo is a TYPE_DECL, then
7560 If foo names a structure or union without a tag, then this
7561 is an anonymous struct (this is permitted by C11).
7562 If MS or Plan 9 extensions are enabled and foo names a
7563 structure, then again this is an anonymous struct.
7564 Otherwise this is an error.
7566 Oh what a horrid tangled web we weave. I wonder if MS consciously
7567 took this from Plan 9 or if it was an accident of implementation
7568 that took root before someone noticed the bug... */
7570 tree type
= declspecs
->type
;
7571 bool type_ok
= RECORD_OR_UNION_TYPE_P (type
);
7575 && (flag_ms_extensions
7576 || flag_plan9_extensions
7577 || !declspecs
->typedef_p
))
7579 if (flag_ms_extensions
|| flag_plan9_extensions
)
7581 else if (TYPE_NAME (type
) == NULL
)
7588 pedwarn (loc
, 0, "declaration does not declare anything");
7592 pedwarn_c99 (loc
, OPT_Wpedantic
,
7593 "ISO C99 doesn%'t support unnamed structs/unions");
7595 pedwarn_c99 (loc
, OPT_Wpedantic
,
7596 "ISO C90 doesn%'t support unnamed structs/unions");
7599 value
= grokdeclarator (declarator
, declspecs
, FIELD
, false,
7600 width
? &width
: NULL
, decl_attrs
, NULL
, NULL
,
7603 finish_decl (value
, loc
, NULL_TREE
, NULL_TREE
, NULL_TREE
);
7604 DECL_INITIAL (value
) = width
;
7606 if (warn_cxx_compat
&& DECL_NAME (value
) != NULL_TREE
)
7608 /* If we currently have a binding for this field, set the
7609 in_struct field in the binding, so that we warn about lookups
7611 struct c_binding
*b
= I_SYMBOL_BINDING (DECL_NAME (value
));
7614 /* If the in_struct field is not yet set, push it on a list
7615 to be cleared when this struct is finished. */
7618 struct_parse_info
->fields
.safe_push (b
);
7627 /* Subroutine of detect_field_duplicates: return whether X and Y,
7628 which are both fields in the same struct, have duplicate field
7632 is_duplicate_field (tree x
, tree y
)
7634 if (DECL_NAME (x
) != NULL_TREE
&& DECL_NAME (x
) == DECL_NAME (y
))
7637 /* When using -fplan9-extensions, an anonymous field whose name is a
7638 typedef can duplicate a field name. */
7639 if (flag_plan9_extensions
7640 && (DECL_NAME (x
) == NULL_TREE
|| DECL_NAME (y
) == NULL_TREE
))
7642 tree xt
, xn
, yt
, yn
;
7645 if (DECL_NAME (x
) != NULL_TREE
)
7647 else if (RECORD_OR_UNION_TYPE_P (xt
)
7648 && TYPE_NAME (xt
) != NULL_TREE
7649 && TREE_CODE (TYPE_NAME (xt
)) == TYPE_DECL
)
7650 xn
= DECL_NAME (TYPE_NAME (xt
));
7655 if (DECL_NAME (y
) != NULL_TREE
)
7657 else if (RECORD_OR_UNION_TYPE_P (yt
)
7658 && TYPE_NAME (yt
) != NULL_TREE
7659 && TREE_CODE (TYPE_NAME (yt
)) == TYPE_DECL
)
7660 yn
= DECL_NAME (TYPE_NAME (yt
));
7664 if (xn
!= NULL_TREE
&& xn
== yn
)
7671 /* Subroutine of detect_field_duplicates: add the fields of FIELDLIST
7672 to HTAB, giving errors for any duplicates. */
7675 detect_field_duplicates_hash (tree fieldlist
,
7676 hash_table
<nofree_ptr_hash
<tree_node
> > *htab
)
7681 for (x
= fieldlist
; x
; x
= DECL_CHAIN (x
))
7682 if ((y
= DECL_NAME (x
)) != 0)
7684 slot
= htab
->find_slot (y
, INSERT
);
7687 error ("duplicate member %q+D", x
);
7688 DECL_NAME (x
) = NULL_TREE
;
7692 else if (RECORD_OR_UNION_TYPE_P (TREE_TYPE (x
)))
7694 detect_field_duplicates_hash (TYPE_FIELDS (TREE_TYPE (x
)), htab
);
7696 /* When using -fplan9-extensions, an anonymous field whose
7697 name is a typedef can duplicate a field name. */
7698 if (flag_plan9_extensions
7699 && TYPE_NAME (TREE_TYPE (x
)) != NULL_TREE
7700 && TREE_CODE (TYPE_NAME (TREE_TYPE (x
))) == TYPE_DECL
)
7702 tree xn
= DECL_NAME (TYPE_NAME (TREE_TYPE (x
)));
7703 slot
= htab
->find_slot (xn
, INSERT
);
7705 error ("duplicate member %q+D", TYPE_NAME (TREE_TYPE (x
)));
7711 /* Generate an error for any duplicate field names in FIELDLIST. Munge
7712 the list such that this does not present a problem later. */
7715 detect_field_duplicates (tree fieldlist
)
7720 /* If the struct is the list of instance variables of an Objective-C
7721 class, then we need to check all the instance variables of
7722 superclasses when checking for duplicates (since you can't have
7723 an instance variable in a subclass with the same name as an
7724 instance variable in a superclass). We pass on this job to the
7725 Objective-C compiler. objc_detect_field_duplicates() will return
7726 false if we are not checking the list of instance variables and
7727 the C frontend should proceed with the standard field duplicate
7728 checks. If we are checking the list of instance variables, the
7729 ObjC frontend will do the check, emit the errors if needed, and
7730 then return true. */
7731 if (c_dialect_objc ())
7732 if (objc_detect_field_duplicates (false))
7735 /* First, see if there are more than "a few" fields.
7736 This is trivially true if there are zero or one fields. */
7737 if (!fieldlist
|| !DECL_CHAIN (fieldlist
))
7742 if (DECL_NAME (x
) == NULL_TREE
7743 && RECORD_OR_UNION_TYPE_P (TREE_TYPE (x
)))
7746 } while (timeout
> 0 && x
);
7748 /* If there were "few" fields and no anonymous structures or unions,
7749 avoid the overhead of allocating a hash table. Instead just do
7750 the nested traversal thing. */
7753 for (x
= DECL_CHAIN (fieldlist
); x
; x
= DECL_CHAIN (x
))
7754 /* When using -fplan9-extensions, we can have duplicates
7755 between typedef names and fields. */
7757 || (flag_plan9_extensions
7758 && DECL_NAME (x
) == NULL_TREE
7759 && RECORD_OR_UNION_TYPE_P (TREE_TYPE (x
))
7760 && TYPE_NAME (TREE_TYPE (x
)) != NULL_TREE
7761 && TREE_CODE (TYPE_NAME (TREE_TYPE (x
))) == TYPE_DECL
))
7763 for (y
= fieldlist
; y
!= x
; y
= TREE_CHAIN (y
))
7764 if (is_duplicate_field (y
, x
))
7766 error ("duplicate member %q+D", x
);
7767 DECL_NAME (x
) = NULL_TREE
;
7773 hash_table
<nofree_ptr_hash
<tree_node
> > htab (37);
7774 detect_field_duplicates_hash (fieldlist
, &htab
);
7778 /* Finish up struct info used by -Wc++-compat. */
7781 warn_cxx_compat_finish_struct (tree fieldlist
, enum tree_code code
,
7782 location_t record_loc
)
7786 struct c_binding
*b
;
7788 if (fieldlist
== NULL_TREE
)
7790 if (code
== RECORD_TYPE
)
7791 warning_at (record_loc
, OPT_Wc___compat
,
7792 "empty struct has size 0 in C, size 1 in C++");
7794 warning_at (record_loc
, OPT_Wc___compat
,
7795 "empty union has size 0 in C, size 1 in C++");
7798 /* Set the C_TYPE_DEFINED_IN_STRUCT flag for each type defined in
7799 the current struct. We do this now at the end of the struct
7800 because the flag is used to issue visibility warnings, and we
7801 only want to issue those warnings if the type is referenced
7802 outside of the struct declaration. */
7803 FOR_EACH_VEC_ELT (struct_parse_info
->struct_types
, ix
, x
)
7804 C_TYPE_DEFINED_IN_STRUCT (x
) = 1;
7806 /* The TYPEDEFS_SEEN field of STRUCT_PARSE_INFO is a list of
7807 typedefs used when declaring fields in this struct. If the name
7808 of any of the fields is also a typedef name then the struct would
7809 not parse in C++, because the C++ lookup rules say that the
7810 typedef name would be looked up in the context of the struct, and
7811 would thus be the field rather than the typedef. */
7812 if (!struct_parse_info
->typedefs_seen
.is_empty ()
7813 && fieldlist
!= NULL_TREE
)
7815 /* Use a hash_set<tree> using the name of the typedef. We can use
7816 a hash_set<tree> because identifiers are interned. */
7817 hash_set
<tree
> tset
;
7819 FOR_EACH_VEC_ELT (struct_parse_info
->typedefs_seen
, ix
, x
)
7820 tset
.add (DECL_NAME (x
));
7822 for (x
= fieldlist
; x
!= NULL_TREE
; x
= DECL_CHAIN (x
))
7824 if (DECL_NAME (x
) != NULL_TREE
7825 && tset
.contains (DECL_NAME (x
)))
7827 warning_at (DECL_SOURCE_LOCATION (x
), OPT_Wc___compat
,
7828 ("using %qD as both field and typedef name is "
7831 /* FIXME: It would be nice to report the location where
7832 the typedef name is used. */
7837 /* For each field which has a binding and which was not defined in
7838 an enclosing struct, clear the in_struct field. */
7839 FOR_EACH_VEC_ELT (struct_parse_info
->fields
, ix
, b
)
7843 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
7844 LOC is the location of the RECORD_TYPE or UNION_TYPE's definition.
7845 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
7846 ATTRIBUTES are attributes to be applied to the structure.
7848 ENCLOSING_STRUCT_PARSE_INFO is the value of STRUCT_PARSE_INFO when
7849 the struct was started. */
7852 finish_struct (location_t loc
, tree t
, tree fieldlist
, tree attributes
,
7853 struct c_struct_parse_info
*enclosing_struct_parse_info
)
7856 bool toplevel
= file_scope
== current_scope
;
7857 int saw_named_field
;
7859 /* If this type was previously laid out as a forward reference,
7860 make sure we lay it out again. */
7864 decl_attributes (&t
, attributes
, (int) ATTR_FLAG_TYPE_IN_PLACE
);
7868 for (x
= fieldlist
; x
; x
= DECL_CHAIN (x
))
7870 if (DECL_NAME (x
) != 0)
7872 if (flag_isoc11
&& RECORD_OR_UNION_TYPE_P (TREE_TYPE (x
)))
7878 if (TREE_CODE (t
) == UNION_TYPE
)
7881 pedwarn (loc
, OPT_Wpedantic
, "union has no named members");
7883 pedwarn (loc
, OPT_Wpedantic
, "union has no members");
7888 pedwarn (loc
, OPT_Wpedantic
, "struct has no named members");
7890 pedwarn (loc
, OPT_Wpedantic
, "struct has no members");
7895 /* Install struct as DECL_CONTEXT of each field decl.
7896 Also process specified field sizes, found in the DECL_INITIAL,
7897 storing 0 there after the type has been changed to precision equal
7898 to its width, rather than the precision of the specified standard
7899 type. (Correct layout requires the original type to have been preserved
7902 saw_named_field
= 0;
7903 for (x
= fieldlist
; x
; x
= DECL_CHAIN (x
))
7905 if (TREE_TYPE (x
) == error_mark_node
)
7908 DECL_CONTEXT (x
) = t
;
7910 /* If any field is const, the structure type is pseudo-const. */
7911 if (TREE_READONLY (x
))
7912 C_TYPE_FIELDS_READONLY (t
) = 1;
7915 /* A field that is pseudo-const makes the structure likewise. */
7916 tree t1
= strip_array_types (TREE_TYPE (x
));
7917 if (RECORD_OR_UNION_TYPE_P (t1
) && C_TYPE_FIELDS_READONLY (t1
))
7918 C_TYPE_FIELDS_READONLY (t
) = 1;
7921 /* Any field that is volatile means variables of this type must be
7922 treated in some ways as volatile. */
7923 if (TREE_THIS_VOLATILE (x
))
7924 C_TYPE_FIELDS_VOLATILE (t
) = 1;
7926 /* Any field of nominal variable size implies structure is too. */
7927 if (C_DECL_VARIABLE_SIZE (x
))
7928 C_TYPE_VARIABLE_SIZE (t
) = 1;
7930 if (DECL_INITIAL (x
))
7932 unsigned HOST_WIDE_INT width
= tree_to_uhwi (DECL_INITIAL (x
));
7933 DECL_SIZE (x
) = bitsize_int (width
);
7934 DECL_BIT_FIELD (x
) = 1;
7935 SET_DECL_C_BIT_FIELD (x
);
7939 && (DECL_BIT_FIELD (x
)
7940 || TYPE_ALIGN (TREE_TYPE (x
)) > BITS_PER_UNIT
))
7941 DECL_PACKED (x
) = 1;
7943 /* Detect flexible array member in an invalid context. */
7944 if (TREE_CODE (TREE_TYPE (x
)) == ARRAY_TYPE
7945 && TYPE_SIZE (TREE_TYPE (x
)) == NULL_TREE
7946 && TYPE_DOMAIN (TREE_TYPE (x
)) != NULL_TREE
7947 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x
))) == NULL_TREE
)
7949 if (TREE_CODE (t
) == UNION_TYPE
)
7951 error_at (DECL_SOURCE_LOCATION (x
),
7952 "flexible array member in union");
7953 TREE_TYPE (x
) = error_mark_node
;
7955 else if (DECL_CHAIN (x
) != NULL_TREE
)
7957 error_at (DECL_SOURCE_LOCATION (x
),
7958 "flexible array member not at end of struct");
7959 TREE_TYPE (x
) = error_mark_node
;
7961 else if (!saw_named_field
)
7963 error_at (DECL_SOURCE_LOCATION (x
),
7964 "flexible array member in a struct with no named "
7966 TREE_TYPE (x
) = error_mark_node
;
7970 if (pedantic
&& TREE_CODE (t
) == RECORD_TYPE
7971 && flexible_array_type_p (TREE_TYPE (x
)))
7972 pedwarn (DECL_SOURCE_LOCATION (x
), OPT_Wpedantic
,
7973 "invalid use of structure with flexible array member");
7976 || RECORD_OR_UNION_TYPE_P (TREE_TYPE (x
)))
7977 saw_named_field
= 1;
7980 detect_field_duplicates (fieldlist
);
7982 /* Now we have the nearly final fieldlist. Record it,
7983 then lay out the structure or union (including the fields). */
7985 TYPE_FIELDS (t
) = fieldlist
;
7987 maybe_apply_pragma_scalar_storage_order (t
);
7991 if (TYPE_SIZE_UNIT (t
)
7992 && TREE_CODE (TYPE_SIZE_UNIT (t
)) == INTEGER_CST
7993 && !TREE_OVERFLOW (TYPE_SIZE_UNIT (t
))
7994 && !valid_constant_size_p (TYPE_SIZE_UNIT (t
)))
7995 error ("type %qT is too large", t
);
7997 /* Give bit-fields their proper types and rewrite the type of array fields
7998 with scalar component if the enclosing type has reverse storage order. */
7999 for (tree field
= fieldlist
; field
; field
= DECL_CHAIN (field
))
8001 if (TREE_CODE (field
) == FIELD_DECL
8002 && DECL_INITIAL (field
)
8003 && TREE_TYPE (field
) != error_mark_node
)
8005 unsigned HOST_WIDE_INT width
8006 = tree_to_uhwi (DECL_INITIAL (field
));
8007 tree type
= TREE_TYPE (field
);
8008 if (width
!= TYPE_PRECISION (type
))
8011 = c_build_bitfield_integer_type (width
, TYPE_UNSIGNED (type
));
8012 SET_DECL_MODE (field
, TYPE_MODE (TREE_TYPE (field
)));
8014 DECL_INITIAL (field
) = 0;
8016 else if (TYPE_REVERSE_STORAGE_ORDER (t
)
8017 && TREE_CODE (field
) == FIELD_DECL
8018 && TREE_CODE (TREE_TYPE (field
)) == ARRAY_TYPE
)
8020 tree ftype
= TREE_TYPE (field
);
8021 tree ctype
= strip_array_types (ftype
);
8022 if (!RECORD_OR_UNION_TYPE_P (ctype
) && TYPE_MODE (ctype
) != QImode
)
8024 tree fmain_type
= TYPE_MAIN_VARIANT (ftype
);
8025 tree
*typep
= &fmain_type
;
8027 *typep
= build_distinct_type_copy (*typep
);
8028 TYPE_REVERSE_STORAGE_ORDER (*typep
) = 1;
8029 typep
= &TREE_TYPE (*typep
);
8030 } while (TREE_CODE (*typep
) == ARRAY_TYPE
);
8032 = c_build_qualified_type (fmain_type
, TYPE_QUALS (ftype
));
8037 /* Now we have the truly final field list.
8038 Store it in this type and in the variants. */
8040 TYPE_FIELDS (t
) = fieldlist
;
8042 /* If there are lots of fields, sort so we can look through them fast.
8043 We arbitrarily consider 16 or more elts to be "a lot". */
8048 for (x
= fieldlist
; x
; x
= DECL_CHAIN (x
))
8050 if (len
> 15 || DECL_NAME (x
) == NULL
)
8058 struct lang_type
*space
;
8059 struct sorted_fields_type
*space2
;
8061 len
+= list_length (x
);
8063 /* Use the same allocation policy here that make_node uses, to
8064 ensure that this lives as long as the rest of the struct decl.
8065 All decls in an inline function need to be saved. */
8067 space
= ggc_cleared_alloc
<struct lang_type
> ();
8068 space2
= (sorted_fields_type
*) ggc_internal_alloc
8069 (sizeof (struct sorted_fields_type
) + len
* sizeof (tree
));
8073 field_array
= &space2
->elts
[0];
8074 for (x
= fieldlist
; x
; x
= DECL_CHAIN (x
))
8076 field_array
[len
++] = x
;
8078 /* If there is anonymous struct or union, break out of the loop. */
8079 if (DECL_NAME (x
) == NULL
)
8082 /* Found no anonymous struct/union. Add the TYPE_LANG_SPECIFIC. */
8085 TYPE_LANG_SPECIFIC (t
) = space
;
8086 TYPE_LANG_SPECIFIC (t
)->s
->len
= len
;
8087 field_array
= TYPE_LANG_SPECIFIC (t
)->s
->elts
;
8088 qsort (field_array
, len
, sizeof (tree
), field_decl_cmp
);
8093 /* Note: C_TYPE_INCOMPLETE_VARS overloads TYPE_VFIELD which is used
8094 in dwarf2out via rest_of_decl_compilation below and means
8095 something totally different. Since we will be clearing
8096 C_TYPE_INCOMPLETE_VARS shortly after we iterate through them,
8097 clear it ahead of time and avoid problems in dwarf2out. Ideally,
8098 C_TYPE_INCOMPLETE_VARS should use some language specific
8100 tree incomplete_vars
= C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t
));
8101 for (x
= TYPE_MAIN_VARIANT (t
); x
; x
= TYPE_NEXT_VARIANT (x
))
8103 TYPE_FIELDS (x
) = TYPE_FIELDS (t
);
8104 TYPE_LANG_SPECIFIC (x
) = TYPE_LANG_SPECIFIC (t
);
8105 C_TYPE_FIELDS_READONLY (x
) = C_TYPE_FIELDS_READONLY (t
);
8106 C_TYPE_FIELDS_VOLATILE (x
) = C_TYPE_FIELDS_VOLATILE (t
);
8107 C_TYPE_VARIABLE_SIZE (x
) = C_TYPE_VARIABLE_SIZE (t
);
8108 C_TYPE_INCOMPLETE_VARS (x
) = NULL_TREE
;
8111 /* If this was supposed to be a transparent union, but we can't
8112 make it one, warn and turn off the flag. */
8113 if (TREE_CODE (t
) == UNION_TYPE
8114 && TYPE_TRANSPARENT_AGGR (t
)
8115 && (!TYPE_FIELDS (t
) || TYPE_MODE (t
) != DECL_MODE (TYPE_FIELDS (t
))))
8117 TYPE_TRANSPARENT_AGGR (t
) = 0;
8118 warning_at (loc
, 0, "union cannot be made transparent");
8121 /* If this structure or union completes the type of any previous
8122 variable declaration, lay it out and output its rtl. */
8123 for (x
= incomplete_vars
; x
; x
= TREE_CHAIN (x
))
8125 tree decl
= TREE_VALUE (x
);
8126 if (TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
)
8127 layout_array_type (TREE_TYPE (decl
));
8128 if (TREE_CODE (decl
) != TYPE_DECL
)
8130 layout_decl (decl
, 0);
8131 if (c_dialect_objc ())
8132 objc_check_decl (decl
);
8133 rest_of_decl_compilation (decl
, toplevel
, 0);
8137 /* Update type location to the one of the definition, instead of e.g.
8138 a forward declaration. */
8139 if (TYPE_STUB_DECL (t
))
8140 DECL_SOURCE_LOCATION (TYPE_STUB_DECL (t
)) = loc
;
8142 /* Finish debugging output for this type. */
8143 rest_of_type_compilation (t
, toplevel
);
8145 /* If we're inside a function proper, i.e. not file-scope and not still
8146 parsing parameters, then arrange for the size of a variable sized type
8148 if (building_stmt_list_p () && variably_modified_type_p (t
, NULL_TREE
))
8149 add_stmt (build_stmt (loc
,
8150 DECL_EXPR
, build_decl (loc
, TYPE_DECL
, NULL
, t
)));
8152 if (warn_cxx_compat
)
8153 warn_cxx_compat_finish_struct (fieldlist
, TREE_CODE (t
), loc
);
8155 delete struct_parse_info
;
8157 struct_parse_info
= enclosing_struct_parse_info
;
8159 /* If this struct is defined inside a struct, add it to
8162 && struct_parse_info
!= NULL
8163 && !in_sizeof
&& !in_typeof
&& !in_alignof
)
8164 struct_parse_info
->struct_types
.safe_push (t
);
8169 /* Lay out the type T, and its element type, and so on. */
8172 layout_array_type (tree t
)
8174 if (TREE_CODE (TREE_TYPE (t
)) == ARRAY_TYPE
)
8175 layout_array_type (TREE_TYPE (t
));
8179 /* Begin compiling the definition of an enumeration type.
8180 NAME is its name (or null if anonymous).
8181 LOC is the enum's location.
8182 Returns the type object, as yet incomplete.
8183 Also records info about it so that build_enumerator
8184 may be used to declare the individual values as they are read. */
8187 start_enum (location_t loc
, struct c_enum_contents
*the_enum
, tree name
)
8189 tree enumtype
= NULL_TREE
;
8190 location_t enumloc
= UNKNOWN_LOCATION
;
8192 /* If this is the real definition for a previous forward reference,
8193 fill in the contents in the same object that used to be the
8194 forward reference. */
8196 if (name
!= NULL_TREE
)
8197 enumtype
= lookup_tag (ENUMERAL_TYPE
, name
, true, &enumloc
);
8199 if (enumtype
== NULL_TREE
|| TREE_CODE (enumtype
) != ENUMERAL_TYPE
)
8201 enumtype
= make_node (ENUMERAL_TYPE
);
8202 pushtag (loc
, name
, enumtype
);
8205 if (C_TYPE_BEING_DEFINED (enumtype
))
8206 error_at (loc
, "nested redefinition of %<enum %E%>", name
);
8208 C_TYPE_BEING_DEFINED (enumtype
) = 1;
8210 if (TYPE_VALUES (enumtype
) != 0)
8212 /* This enum is a named one that has been declared already. */
8213 error_at (loc
, "redeclaration of %<enum %E%>", name
);
8214 if (enumloc
!= UNKNOWN_LOCATION
)
8215 inform (enumloc
, "originally defined here");
8217 /* Completely replace its old definition.
8218 The old enumerators remain defined, however. */
8219 TYPE_VALUES (enumtype
) = 0;
8222 the_enum
->enum_next_value
= integer_zero_node
;
8223 the_enum
->enum_overflow
= 0;
8225 if (flag_short_enums
)
8226 for (tree v
= TYPE_MAIN_VARIANT (enumtype
); v
; v
= TYPE_NEXT_VARIANT (v
))
8227 TYPE_PACKED (v
) = 1;
8229 /* FIXME: This will issue a warning for a use of a type defined
8230 within sizeof in a statement expr. This is not terribly serious
8231 as C++ doesn't permit statement exprs within sizeof anyhow. */
8232 if (warn_cxx_compat
&& (in_sizeof
|| in_typeof
|| in_alignof
))
8233 warning_at (loc
, OPT_Wc___compat
,
8234 "defining type in %qs expression is invalid in C++",
8237 : (in_typeof
? "typeof" : "alignof")));
8242 /* After processing and defining all the values of an enumeration type,
8243 install their decls in the enumeration type and finish it off.
8244 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
8245 and ATTRIBUTES are the specified attributes.
8246 Returns ENUMTYPE. */
8249 finish_enum (tree enumtype
, tree values
, tree attributes
)
8252 tree minnode
= 0, maxnode
= 0;
8255 bool toplevel
= (file_scope
== current_scope
);
8256 struct lang_type
*lt
;
8258 decl_attributes (&enumtype
, attributes
, (int) ATTR_FLAG_TYPE_IN_PLACE
);
8260 /* Calculate the maximum value of any enumerator in this type. */
8262 if (values
== error_mark_node
)
8263 minnode
= maxnode
= integer_zero_node
;
8266 minnode
= maxnode
= TREE_VALUE (values
);
8267 for (pair
= TREE_CHAIN (values
); pair
; pair
= TREE_CHAIN (pair
))
8269 tree value
= TREE_VALUE (pair
);
8270 if (tree_int_cst_lt (maxnode
, value
))
8272 if (tree_int_cst_lt (value
, minnode
))
8277 /* Construct the final type of this enumeration. It is the same
8278 as one of the integral types - the narrowest one that fits, except
8279 that normally we only go as narrow as int - and signed iff any of
8280 the values are negative. */
8281 sign
= (tree_int_cst_sgn (minnode
) >= 0) ? UNSIGNED
: SIGNED
;
8282 precision
= MAX (tree_int_cst_min_precision (minnode
, sign
),
8283 tree_int_cst_min_precision (maxnode
, sign
));
8285 /* If the precision of the type was specified with an attribute and it
8286 was too small, give an error. Otherwise, use it. */
8287 if (TYPE_PRECISION (enumtype
) && lookup_attribute ("mode", attributes
))
8289 if (precision
> TYPE_PRECISION (enumtype
))
8291 TYPE_PRECISION (enumtype
) = 0;
8292 error ("specified mode too small for enumeral values");
8295 precision
= TYPE_PRECISION (enumtype
);
8298 TYPE_PRECISION (enumtype
) = 0;
8300 if (TYPE_PACKED (enumtype
)
8301 || precision
> TYPE_PRECISION (integer_type_node
)
8302 || TYPE_PRECISION (enumtype
))
8304 tem
= c_common_type_for_size (precision
, sign
== UNSIGNED
? 1 : 0);
8307 warning (0, "enumeration values exceed range of largest integer");
8308 tem
= long_long_integer_type_node
;
8312 tem
= sign
== UNSIGNED
? unsigned_type_node
: integer_type_node
;
8314 TYPE_MIN_VALUE (enumtype
) = TYPE_MIN_VALUE (tem
);
8315 TYPE_MAX_VALUE (enumtype
) = TYPE_MAX_VALUE (tem
);
8316 TYPE_UNSIGNED (enumtype
) = TYPE_UNSIGNED (tem
);
8317 SET_TYPE_ALIGN (enumtype
, TYPE_ALIGN (tem
));
8318 TYPE_SIZE (enumtype
) = 0;
8319 TYPE_PRECISION (enumtype
) = TYPE_PRECISION (tem
);
8321 layout_type (enumtype
);
8323 if (values
!= error_mark_node
)
8325 /* Change the type of the enumerators to be the enum type. We
8326 need to do this irrespective of the size of the enum, for
8327 proper type checking. Replace the DECL_INITIALs of the
8328 enumerators, and the value slots of the list, with copies
8329 that have the enum type; they cannot be modified in place
8330 because they may be shared (e.g. integer_zero_node) Finally,
8331 change the purpose slots to point to the names of the decls. */
8332 for (pair
= values
; pair
; pair
= TREE_CHAIN (pair
))
8334 tree enu
= TREE_PURPOSE (pair
);
8335 tree ini
= DECL_INITIAL (enu
);
8337 TREE_TYPE (enu
) = enumtype
;
8339 /* The ISO C Standard mandates enumerators to have type int,
8340 even though the underlying type of an enum type is
8341 unspecified. However, GCC allows enumerators of any
8342 integer type as an extensions. build_enumerator()
8343 converts any enumerators that fit in an int to type int,
8344 to avoid promotions to unsigned types when comparing
8345 integers with enumerators that fit in the int range.
8346 When -pedantic is given, build_enumerator() would have
8347 already warned about those that don't fit. Here we
8348 convert the rest to the enumerator type. */
8349 if (TREE_TYPE (ini
) != integer_type_node
)
8350 ini
= convert (enumtype
, ini
);
8352 DECL_INITIAL (enu
) = ini
;
8353 TREE_PURPOSE (pair
) = DECL_NAME (enu
);
8354 TREE_VALUE (pair
) = ini
;
8357 TYPE_VALUES (enumtype
) = values
;
8360 /* Record the min/max values so that we can warn about bit-field
8361 enumerations that are too small for the values. */
8362 lt
= ggc_cleared_alloc
<struct lang_type
> ();
8363 lt
->enum_min
= minnode
;
8364 lt
->enum_max
= maxnode
;
8365 TYPE_LANG_SPECIFIC (enumtype
) = lt
;
8367 /* Fix up all variant types of this enum type. */
8368 for (tem
= TYPE_MAIN_VARIANT (enumtype
); tem
; tem
= TYPE_NEXT_VARIANT (tem
))
8370 if (tem
== enumtype
)
8372 TYPE_VALUES (tem
) = TYPE_VALUES (enumtype
);
8373 TYPE_MIN_VALUE (tem
) = TYPE_MIN_VALUE (enumtype
);
8374 TYPE_MAX_VALUE (tem
) = TYPE_MAX_VALUE (enumtype
);
8375 TYPE_SIZE (tem
) = TYPE_SIZE (enumtype
);
8376 TYPE_SIZE_UNIT (tem
) = TYPE_SIZE_UNIT (enumtype
);
8377 SET_TYPE_MODE (tem
, TYPE_MODE (enumtype
));
8378 TYPE_PRECISION (tem
) = TYPE_PRECISION (enumtype
);
8379 SET_TYPE_ALIGN (tem
, TYPE_ALIGN (enumtype
));
8380 TYPE_USER_ALIGN (tem
) = TYPE_USER_ALIGN (enumtype
);
8381 TYPE_UNSIGNED (tem
) = TYPE_UNSIGNED (enumtype
);
8382 TYPE_LANG_SPECIFIC (tem
) = TYPE_LANG_SPECIFIC (enumtype
);
8385 /* Finish debugging output for this type. */
8386 rest_of_type_compilation (enumtype
, toplevel
);
8388 /* If this enum is defined inside a struct, add it to
8391 && struct_parse_info
!= NULL
8392 && !in_sizeof
&& !in_typeof
&& !in_alignof
)
8393 struct_parse_info
->struct_types
.safe_push (enumtype
);
8398 /* Build and install a CONST_DECL for one value of the
8399 current enumeration type (one that was begun with start_enum).
8400 DECL_LOC is the location of the enumerator.
8401 LOC is the location of the '=' operator if any, DECL_LOC otherwise.
8402 Return a tree-list containing the CONST_DECL and its value.
8403 Assignment of sequential values by default is handled here. */
8406 build_enumerator (location_t decl_loc
, location_t loc
,
8407 struct c_enum_contents
*the_enum
, tree name
, tree value
)
8411 /* Validate and default VALUE. */
8415 /* Don't issue more errors for error_mark_node (i.e. an
8416 undeclared identifier) - just ignore the value expression. */
8417 if (value
== error_mark_node
)
8419 else if (!INTEGRAL_TYPE_P (TREE_TYPE (value
)))
8421 error_at (loc
, "enumerator value for %qE is not an integer constant",
8427 if (TREE_CODE (value
) != INTEGER_CST
)
8429 value
= c_fully_fold (value
, false, NULL
);
8430 if (TREE_CODE (value
) == INTEGER_CST
)
8431 pedwarn (loc
, OPT_Wpedantic
,
8432 "enumerator value for %qE is not an integer "
8433 "constant expression", name
);
8435 if (TREE_CODE (value
) != INTEGER_CST
)
8437 error ("enumerator value for %qE is not an integer constant",
8443 value
= default_conversion (value
);
8444 constant_expression_warning (value
);
8449 /* Default based on previous value. */
8450 /* It should no longer be possible to have NON_LVALUE_EXPR
8454 value
= the_enum
->enum_next_value
;
8455 if (the_enum
->enum_overflow
)
8456 error_at (loc
, "overflow in enumeration values");
8458 /* Even though the underlying type of an enum is unspecified, the
8459 type of enumeration constants is explicitly defined as int
8460 (6.4.4.3/2 in the C99 Standard). GCC allows any integer type as
8462 else if (!int_fits_type_p (value
, integer_type_node
))
8463 pedwarn (loc
, OPT_Wpedantic
,
8464 "ISO C restricts enumerator values to range of %<int%>");
8466 /* The ISO C Standard mandates enumerators to have type int, even
8467 though the underlying type of an enum type is unspecified.
8468 However, GCC allows enumerators of any integer type as an
8469 extensions. Here we convert any enumerators that fit in an int
8470 to type int, to avoid promotions to unsigned types when comparing
8471 integers with enumerators that fit in the int range. When
8472 -pedantic is given, we would have already warned about those that
8473 don't fit. We have to do this here rather than in finish_enum
8474 because this value may be used to define more enumerators. */
8475 if (int_fits_type_p (value
, integer_type_node
))
8476 value
= convert (integer_type_node
, value
);
8478 /* Set basis for default for next value. */
8479 the_enum
->enum_next_value
8480 = build_binary_op (EXPR_LOC_OR_LOC (value
, input_location
),
8481 PLUS_EXPR
, value
, integer_one_node
, 0);
8482 the_enum
->enum_overflow
= tree_int_cst_lt (the_enum
->enum_next_value
, value
);
8484 /* Now create a declaration for the enum value name. */
8486 type
= TREE_TYPE (value
);
8487 type
= c_common_type_for_size (MAX (TYPE_PRECISION (type
),
8488 TYPE_PRECISION (integer_type_node
)),
8489 (TYPE_PRECISION (type
)
8490 >= TYPE_PRECISION (integer_type_node
)
8491 && TYPE_UNSIGNED (type
)));
8493 decl
= build_decl (decl_loc
, CONST_DECL
, name
, type
);
8494 DECL_INITIAL (decl
) = convert (type
, value
);
8497 return tree_cons (decl
, value
, NULL_TREE
);
8501 /* Create the FUNCTION_DECL for a function definition.
8502 DECLSPECS, DECLARATOR and ATTRIBUTES are the parts of
8503 the declaration; they describe the function's name and the type it returns,
8504 but twisted together in a fashion that parallels the syntax of C.
8506 This function creates a binding context for the function body
8507 as well as setting up the FUNCTION_DECL in current_function_decl.
8509 Returns 1 on success. If the DECLARATOR is not suitable for a function
8510 (it defines a datum instead), we return 0, which tells
8511 yyparse to report a parse error. */
8514 start_function (struct c_declspecs
*declspecs
, struct c_declarator
*declarator
,
8517 tree decl1
, old_decl
;
8518 tree restype
, resdecl
;
8521 current_function_returns_value
= 0; /* Assume, until we see it does. */
8522 current_function_returns_null
= 0;
8523 current_function_returns_abnormally
= 0;
8524 warn_about_return_type
= 0;
8525 c_switch_stack
= NULL
;
8527 /* Indicate no valid break/continue context by setting these variables
8528 to some non-null, non-label value. We'll notice and emit the proper
8529 error message in c_finish_bc_stmt. */
8530 c_break_label
= c_cont_label
= size_zero_node
;
8532 decl1
= grokdeclarator (declarator
, declspecs
, FUNCDEF
, true, NULL
,
8533 &attributes
, NULL
, NULL
, DEPRECATED_NORMAL
);
8534 invoke_plugin_callbacks (PLUGIN_START_PARSE_FUNCTION
, decl1
);
8536 /* If the declarator is not suitable for a function definition,
8537 cause a syntax error. */
8539 || TREE_CODE (decl1
) != FUNCTION_DECL
)
8542 loc
= DECL_SOURCE_LOCATION (decl1
);
8544 c_decl_attributes (&decl1
, attributes
, 0);
8546 if (DECL_DECLARED_INLINE_P (decl1
)
8547 && DECL_UNINLINABLE (decl1
)
8548 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl1
)))
8549 warning_at (loc
, OPT_Wattributes
,
8550 "inline function %qD given attribute noinline",
8553 /* Handle gnu_inline attribute. */
8554 if (declspecs
->inline_p
8555 && !flag_gnu89_inline
8556 && TREE_CODE (decl1
) == FUNCTION_DECL
8557 && (lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl1
))
8558 || current_function_decl
))
8560 if (declspecs
->storage_class
!= csc_static
)
8561 DECL_EXTERNAL (decl1
) = !DECL_EXTERNAL (decl1
);
8564 announce_function (decl1
);
8566 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl1
))))
8568 error_at (loc
, "return type is an incomplete type");
8569 /* Make it return void instead. */
8571 = build_function_type (void_type_node
,
8572 TYPE_ARG_TYPES (TREE_TYPE (decl1
)));
8575 if (warn_about_return_type
)
8576 warn_defaults_to (loc
, flag_isoc99
? OPT_Wimplicit_int
8577 : (warn_return_type
? OPT_Wreturn_type
8578 : OPT_Wimplicit_int
),
8579 "return type defaults to %<int%>");
8581 /* Make the init_value nonzero so pushdecl knows this is not tentative.
8582 error_mark_node is replaced below (in pop_scope) with the BLOCK. */
8583 DECL_INITIAL (decl1
) = error_mark_node
;
8585 /* A nested function is not global. */
8586 if (current_function_decl
!= 0)
8587 TREE_PUBLIC (decl1
) = 0;
8589 /* If this definition isn't a prototype and we had a prototype declaration
8590 before, copy the arg type info from that prototype. */
8591 old_decl
= lookup_name_in_scope (DECL_NAME (decl1
), current_scope
);
8592 if (old_decl
&& TREE_CODE (old_decl
) != FUNCTION_DECL
)
8594 current_function_prototype_locus
= UNKNOWN_LOCATION
;
8595 current_function_prototype_built_in
= false;
8596 current_function_prototype_arg_types
= NULL_TREE
;
8597 if (!prototype_p (TREE_TYPE (decl1
)))
8599 if (old_decl
!= 0 && TREE_CODE (TREE_TYPE (old_decl
)) == FUNCTION_TYPE
8600 && comptypes (TREE_TYPE (TREE_TYPE (decl1
)),
8601 TREE_TYPE (TREE_TYPE (old_decl
))))
8603 if (stdarg_p (TREE_TYPE (old_decl
)))
8605 warning_at (loc
, 0, "%q+D defined as variadic function "
8606 "without prototype", decl1
);
8607 locate_old_decl (old_decl
);
8609 TREE_TYPE (decl1
) = composite_type (TREE_TYPE (old_decl
),
8611 current_function_prototype_locus
= DECL_SOURCE_LOCATION (old_decl
);
8612 current_function_prototype_built_in
8613 = C_DECL_BUILTIN_PROTOTYPE (old_decl
);
8614 current_function_prototype_arg_types
8615 = TYPE_ARG_TYPES (TREE_TYPE (decl1
));
8617 if (TREE_PUBLIC (decl1
))
8619 /* If there is an external prototype declaration of this
8620 function, record its location but do not copy information
8621 to this decl. This may be an invisible declaration
8622 (built-in or in a scope which has finished) or simply
8623 have more refined argument types than any declaration
8625 struct c_binding
*b
;
8626 for (b
= I_SYMBOL_BINDING (DECL_NAME (decl1
)); b
; b
= b
->shadowed
)
8627 if (B_IN_SCOPE (b
, external_scope
))
8631 tree ext_decl
, ext_type
;
8633 ext_type
= b
->u
.type
? b
->u
.type
: TREE_TYPE (ext_decl
);
8634 if (TREE_CODE (ext_type
) == FUNCTION_TYPE
8635 && comptypes (TREE_TYPE (TREE_TYPE (decl1
)),
8636 TREE_TYPE (ext_type
)))
8638 current_function_prototype_locus
8639 = DECL_SOURCE_LOCATION (ext_decl
);
8640 current_function_prototype_built_in
8641 = C_DECL_BUILTIN_PROTOTYPE (ext_decl
);
8642 current_function_prototype_arg_types
8643 = TYPE_ARG_TYPES (ext_type
);
8649 /* Optionally warn of old-fashioned def with no previous prototype. */
8650 if (warn_strict_prototypes
8651 && old_decl
!= error_mark_node
8652 && !prototype_p (TREE_TYPE (decl1
))
8653 && C_DECL_ISNT_PROTOTYPE (old_decl
))
8654 warning_at (loc
, OPT_Wstrict_prototypes
,
8655 "function declaration isn%'t a prototype");
8656 /* Optionally warn of any global def with no previous prototype. */
8657 else if (warn_missing_prototypes
8658 && old_decl
!= error_mark_node
8659 && TREE_PUBLIC (decl1
)
8660 && !MAIN_NAME_P (DECL_NAME (decl1
))
8661 && C_DECL_ISNT_PROTOTYPE (old_decl
)
8662 && !DECL_DECLARED_INLINE_P (decl1
))
8663 warning_at (loc
, OPT_Wmissing_prototypes
,
8664 "no previous prototype for %qD", decl1
);
8665 /* Optionally warn of any def with no previous prototype
8666 if the function has already been used. */
8667 else if (warn_missing_prototypes
8669 && old_decl
!= error_mark_node
8670 && TREE_USED (old_decl
)
8671 && !prototype_p (TREE_TYPE (old_decl
)))
8672 warning_at (loc
, OPT_Wmissing_prototypes
,
8673 "%qD was used with no prototype before its definition", decl1
);
8674 /* Optionally warn of any global def with no previous declaration. */
8675 else if (warn_missing_declarations
8676 && TREE_PUBLIC (decl1
)
8678 && !MAIN_NAME_P (DECL_NAME (decl1
))
8679 && !DECL_DECLARED_INLINE_P (decl1
))
8680 warning_at (loc
, OPT_Wmissing_declarations
,
8681 "no previous declaration for %qD",
8683 /* Optionally warn of any def with no previous declaration
8684 if the function has already been used. */
8685 else if (warn_missing_declarations
8687 && old_decl
!= error_mark_node
8688 && TREE_USED (old_decl
)
8689 && C_DECL_IMPLICIT (old_decl
))
8690 warning_at (loc
, OPT_Wmissing_declarations
,
8691 "%qD was used with no declaration before its definition", decl1
);
8693 /* This function exists in static storage.
8694 (This does not mean `static' in the C sense!) */
8695 TREE_STATIC (decl1
) = 1;
8697 /* This is the earliest point at which we might know the assembler
8698 name of the function. Thus, if it's set before this, die horribly. */
8699 gcc_assert (!DECL_ASSEMBLER_NAME_SET_P (decl1
));
8701 /* If #pragma weak was used, mark the decl weak now. */
8702 if (current_scope
== file_scope
)
8703 maybe_apply_pragma_weak (decl1
);
8705 /* Warn for unlikely, improbable, or stupid declarations of `main'. */
8706 if (warn_main
&& MAIN_NAME_P (DECL_NAME (decl1
)))
8708 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1
)))
8709 != integer_type_node
)
8710 pedwarn (loc
, OPT_Wmain
, "return type of %qD is not %<int%>", decl1
);
8711 else if (TYPE_ATOMIC (TREE_TYPE (TREE_TYPE (decl1
))))
8712 pedwarn (loc
, OPT_Wmain
, "%<_Atomic%>-qualified return type of %qD",
8715 check_main_parameter_types (decl1
);
8717 if (!TREE_PUBLIC (decl1
))
8718 pedwarn (loc
, OPT_Wmain
,
8719 "%qD is normally a non-static function", decl1
);
8722 /* Record the decl so that the function name is defined.
8723 If we already have a decl for this name, and it is a FUNCTION_DECL,
8724 use the old decl. */
8726 current_function_decl
= pushdecl (decl1
);
8729 declare_parm_level ();
8731 restype
= TREE_TYPE (TREE_TYPE (current_function_decl
));
8732 resdecl
= build_decl (loc
, RESULT_DECL
, NULL_TREE
, restype
);
8733 DECL_ARTIFICIAL (resdecl
) = 1;
8734 DECL_IGNORED_P (resdecl
) = 1;
8735 DECL_RESULT (current_function_decl
) = resdecl
;
8737 start_fname_decls ();
8742 /* Subroutine of store_parm_decls which handles new-style function
8743 definitions (prototype format). The parms already have decls, so we
8744 need only record them as in effect and complain if any redundant
8745 old-style parm decls were written. */
8747 store_parm_decls_newstyle (tree fndecl
, const struct c_arg_info
*arg_info
)
8753 if (current_scope
->bindings
)
8755 error_at (DECL_SOURCE_LOCATION (fndecl
),
8756 "old-style parameter declarations in prototyped "
8757 "function definition");
8759 /* Get rid of the old-style declarations. */
8763 /* Don't issue this warning for nested functions, and don't issue this
8764 warning if we got here because ARG_INFO_TYPES was error_mark_node
8765 (this happens when a function definition has just an ellipsis in
8766 its parameter list). */
8767 else if (!in_system_header_at (input_location
)
8768 && !current_function_scope
8769 && arg_info
->types
!= error_mark_node
)
8770 warning_at (DECL_SOURCE_LOCATION (fndecl
), OPT_Wtraditional
,
8771 "traditional C rejects ISO C style function definitions");
8773 /* Now make all the parameter declarations visible in the function body.
8774 We can bypass most of the grunt work of pushdecl. */
8775 for (decl
= arg_info
->parms
; decl
; decl
= DECL_CHAIN (decl
))
8777 DECL_CONTEXT (decl
) = current_function_decl
;
8778 if (DECL_NAME (decl
))
8780 bind (DECL_NAME (decl
), decl
, current_scope
,
8781 /*invisible=*/false, /*nested=*/false,
8783 if (!TREE_USED (decl
))
8784 warn_if_shadowing (decl
);
8787 error_at (DECL_SOURCE_LOCATION (decl
), "parameter name omitted");
8790 /* Record the parameter list in the function declaration. */
8791 DECL_ARGUMENTS (fndecl
) = arg_info
->parms
;
8793 /* Now make all the ancillary declarations visible, likewise. */
8794 for (decl
= arg_info
->others
; decl
; decl
= DECL_CHAIN (decl
))
8796 DECL_CONTEXT (decl
) = current_function_decl
;
8797 if (DECL_NAME (decl
))
8798 bind (DECL_NAME (decl
), decl
, current_scope
,
8799 /*invisible=*/false,
8800 /*nested=*/(TREE_CODE (decl
) == FUNCTION_DECL
),
8804 /* And all the tag declarations. */
8805 FOR_EACH_VEC_SAFE_ELT_REVERSE (arg_info
->tags
, ix
, tag
)
8807 bind (tag
->id
, tag
->type
, current_scope
,
8808 /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION
);
8811 /* Subroutine of store_parm_decls which handles old-style function
8812 definitions (separate parameter list and declarations). */
8815 store_parm_decls_oldstyle (tree fndecl
, const struct c_arg_info
*arg_info
)
8817 struct c_binding
*b
;
8818 tree parm
, decl
, last
;
8819 tree parmids
= arg_info
->parms
;
8820 hash_set
<tree
> seen_args
;
8822 if (!in_system_header_at (input_location
))
8823 warning_at (DECL_SOURCE_LOCATION (fndecl
),
8824 OPT_Wold_style_definition
, "old-style function definition");
8826 /* Match each formal parameter name with its declaration. Save each
8827 decl in the appropriate TREE_PURPOSE slot of the parmids chain. */
8828 for (parm
= parmids
; parm
; parm
= TREE_CHAIN (parm
))
8830 if (TREE_VALUE (parm
) == 0)
8832 error_at (DECL_SOURCE_LOCATION (fndecl
),
8833 "parameter name missing from parameter list");
8834 TREE_PURPOSE (parm
) = 0;
8838 b
= I_SYMBOL_BINDING (TREE_VALUE (parm
));
8839 if (b
&& B_IN_CURRENT_SCOPE (b
))
8842 /* Skip erroneous parameters. */
8843 if (decl
== error_mark_node
)
8845 /* If we got something other than a PARM_DECL it is an error. */
8846 if (TREE_CODE (decl
) != PARM_DECL
)
8848 error_at (DECL_SOURCE_LOCATION (decl
),
8849 "%qD declared as a non-parameter", decl
);
8852 /* If the declaration is already marked, we have a duplicate
8853 name. Complain and ignore the duplicate. */
8854 else if (seen_args
.contains (decl
))
8856 error_at (DECL_SOURCE_LOCATION (decl
),
8857 "multiple parameters named %qD", decl
);
8858 TREE_PURPOSE (parm
) = 0;
8861 /* If the declaration says "void", complain and turn it into
8863 else if (VOID_TYPE_P (TREE_TYPE (decl
)))
8865 error_at (DECL_SOURCE_LOCATION (decl
),
8866 "parameter %qD declared with void type", decl
);
8867 TREE_TYPE (decl
) = integer_type_node
;
8868 DECL_ARG_TYPE (decl
) = integer_type_node
;
8869 layout_decl (decl
, 0);
8871 warn_if_shadowing (decl
);
8873 /* If no declaration found, default to int. */
8876 /* FIXME diagnostics: This should be the location of the argument,
8877 not the FNDECL. E.g., for an old-style declaration
8879 int f10(v) { blah; }
8881 We should use the location of the V, not the F10.
8882 Unfortunately, the V is an IDENTIFIER_NODE which has no
8883 location. In the future we need locations for c_arg_info
8886 See gcc.dg/Wshadow-3.c for an example of this problem. */
8887 decl
= build_decl (DECL_SOURCE_LOCATION (fndecl
),
8888 PARM_DECL
, TREE_VALUE (parm
), integer_type_node
);
8889 DECL_ARG_TYPE (decl
) = TREE_TYPE (decl
);
8891 warn_if_shadowing (decl
);
8894 pedwarn (DECL_SOURCE_LOCATION (decl
),
8895 OPT_Wimplicit_int
, "type of %qD defaults to %<int%>",
8898 warning_at (DECL_SOURCE_LOCATION (decl
),
8899 OPT_Wmissing_parameter_type
,
8900 "type of %qD defaults to %<int%>", decl
);
8903 TREE_PURPOSE (parm
) = decl
;
8904 seen_args
.add (decl
);
8907 /* Now examine the parms chain for incomplete declarations
8908 and declarations with no corresponding names. */
8910 for (b
= current_scope
->bindings
; b
; b
= b
->prev
)
8913 if (TREE_CODE (parm
) != PARM_DECL
)
8916 if (TREE_TYPE (parm
) != error_mark_node
8917 && !COMPLETE_TYPE_P (TREE_TYPE (parm
)))
8919 error_at (DECL_SOURCE_LOCATION (parm
),
8920 "parameter %qD has incomplete type", parm
);
8921 TREE_TYPE (parm
) = error_mark_node
;
8924 if (!seen_args
.contains (parm
))
8926 error_at (DECL_SOURCE_LOCATION (parm
),
8927 "declaration for parameter %qD but no such parameter",
8930 /* Pretend the parameter was not missing.
8931 This gets us to a standard state and minimizes
8932 further error messages. */
8933 parmids
= chainon (parmids
, tree_cons (parm
, 0, 0));
8937 /* Chain the declarations together in the order of the list of
8938 names. Store that chain in the function decl, replacing the
8939 list of names. Update the current scope to match. */
8940 DECL_ARGUMENTS (fndecl
) = 0;
8942 for (parm
= parmids
; parm
; parm
= TREE_CHAIN (parm
))
8943 if (TREE_PURPOSE (parm
))
8945 if (parm
&& TREE_PURPOSE (parm
))
8947 last
= TREE_PURPOSE (parm
);
8948 DECL_ARGUMENTS (fndecl
) = last
;
8950 for (parm
= TREE_CHAIN (parm
); parm
; parm
= TREE_CHAIN (parm
))
8951 if (TREE_PURPOSE (parm
))
8953 DECL_CHAIN (last
) = TREE_PURPOSE (parm
);
8954 last
= TREE_PURPOSE (parm
);
8956 DECL_CHAIN (last
) = 0;
8959 /* If there was a previous prototype,
8960 set the DECL_ARG_TYPE of each argument according to
8961 the type previously specified, and report any mismatches. */
8963 if (current_function_prototype_arg_types
)
8966 for (parm
= DECL_ARGUMENTS (fndecl
),
8967 type
= current_function_prototype_arg_types
;
8968 parm
|| (type
&& TREE_VALUE (type
) != error_mark_node
8969 && (TYPE_MAIN_VARIANT (TREE_VALUE (type
)) != void_type_node
));
8970 parm
= DECL_CHAIN (parm
), type
= TREE_CHAIN (type
))
8972 if (parm
== 0 || type
== 0
8973 || TYPE_MAIN_VARIANT (TREE_VALUE (type
)) == void_type_node
)
8975 if (current_function_prototype_built_in
)
8976 warning_at (DECL_SOURCE_LOCATION (fndecl
),
8977 0, "number of arguments doesn%'t match "
8978 "built-in prototype");
8981 /* FIXME diagnostics: This should be the location of
8982 FNDECL, but there is bug when a prototype is
8983 declared inside function context, but defined
8984 outside of it (e.g., gcc.dg/pr15698-2.c). In
8985 which case FNDECL gets the location of the
8986 prototype, not the definition. */
8987 error_at (input_location
,
8988 "number of arguments doesn%'t match prototype");
8990 error_at (current_function_prototype_locus
,
8991 "prototype declaration");
8995 /* Type for passing arg must be consistent with that
8996 declared for the arg. ISO C says we take the unqualified
8997 type for parameters declared with qualified type. */
8998 if (TREE_TYPE (parm
) != error_mark_node
8999 && TREE_TYPE (type
) != error_mark_node
9000 && ((TYPE_ATOMIC (DECL_ARG_TYPE (parm
))
9001 != TYPE_ATOMIC (TREE_VALUE (type
)))
9002 || !comptypes (TYPE_MAIN_VARIANT (DECL_ARG_TYPE (parm
)),
9003 TYPE_MAIN_VARIANT (TREE_VALUE (type
)))))
9005 if ((TYPE_ATOMIC (DECL_ARG_TYPE (parm
))
9006 == TYPE_ATOMIC (TREE_VALUE (type
)))
9007 && (TYPE_MAIN_VARIANT (TREE_TYPE (parm
))
9008 == TYPE_MAIN_VARIANT (TREE_VALUE (type
))))
9010 /* Adjust argument to match prototype. E.g. a previous
9011 `int foo(float);' prototype causes
9012 `int foo(x) float x; {...}' to be treated like
9013 `int foo(float x) {...}'. This is particularly
9014 useful for argument types like uid_t. */
9015 DECL_ARG_TYPE (parm
) = TREE_TYPE (parm
);
9017 if (targetm
.calls
.promote_prototypes (TREE_TYPE (current_function_decl
))
9018 && INTEGRAL_TYPE_P (TREE_TYPE (parm
))
9019 && TYPE_PRECISION (TREE_TYPE (parm
))
9020 < TYPE_PRECISION (integer_type_node
))
9021 DECL_ARG_TYPE (parm
)
9022 = c_type_promotes_to (TREE_TYPE (parm
));
9024 /* ??? Is it possible to get here with a
9025 built-in prototype or will it always have
9026 been diagnosed as conflicting with an
9027 old-style definition and discarded? */
9028 if (current_function_prototype_built_in
)
9029 warning_at (DECL_SOURCE_LOCATION (parm
),
9030 OPT_Wpedantic
, "promoted argument %qD "
9031 "doesn%'t match built-in prototype", parm
);
9034 pedwarn (DECL_SOURCE_LOCATION (parm
),
9035 OPT_Wpedantic
, "promoted argument %qD "
9036 "doesn%'t match prototype", parm
);
9037 pedwarn (current_function_prototype_locus
, OPT_Wpedantic
,
9038 "prototype declaration");
9043 if (current_function_prototype_built_in
)
9044 warning_at (DECL_SOURCE_LOCATION (parm
),
9045 0, "argument %qD doesn%'t match "
9046 "built-in prototype", parm
);
9049 error_at (DECL_SOURCE_LOCATION (parm
),
9050 "argument %qD doesn%'t match prototype", parm
);
9051 error_at (current_function_prototype_locus
,
9052 "prototype declaration");
9057 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl
)) = 0;
9060 /* Otherwise, create a prototype that would match. */
9064 tree actual
= 0, last
= 0, type
;
9066 for (parm
= DECL_ARGUMENTS (fndecl
); parm
; parm
= DECL_CHAIN (parm
))
9068 type
= tree_cons (NULL_TREE
, DECL_ARG_TYPE (parm
), NULL_TREE
);
9070 TREE_CHAIN (last
) = type
;
9075 type
= tree_cons (NULL_TREE
, void_type_node
, NULL_TREE
);
9077 TREE_CHAIN (last
) = type
;
9081 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
9082 of the type of this function, but we need to avoid having this
9083 affect the types of other similarly-typed functions, so we must
9084 first force the generation of an identical (but separate) type
9085 node for the relevant function type. The new node we create
9086 will be a variant of the main variant of the original function
9089 TREE_TYPE (fndecl
) = build_variant_type_copy (TREE_TYPE (fndecl
));
9091 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl
)) = actual
;
9095 /* Store parameter declarations passed in ARG_INFO into the current
9096 function declaration. */
9099 store_parm_decls_from (struct c_arg_info
*arg_info
)
9101 current_function_arg_info
= arg_info
;
9102 store_parm_decls ();
9105 /* Called by walk_tree to look for and update context-less labels. */
9108 set_labels_context_r (tree
*tp
, int *walk_subtrees
, void *data
)
9110 if (TREE_CODE (*tp
) == LABEL_EXPR
9111 && DECL_CONTEXT (LABEL_EXPR_LABEL (*tp
)) == NULL_TREE
)
9113 DECL_CONTEXT (LABEL_EXPR_LABEL (*tp
)) = static_cast<tree
>(data
);
9120 /* Store the parameter declarations into the current function declaration.
9121 This is called after parsing the parameter declarations, before
9122 digesting the body of the function.
9124 For an old-style definition, construct a prototype out of the old-style
9125 parameter declarations and inject it into the function's type. */
9128 store_parm_decls (void)
9130 tree fndecl
= current_function_decl
;
9133 /* The argument information block for FNDECL. */
9134 struct c_arg_info
*arg_info
= current_function_arg_info
;
9135 current_function_arg_info
= 0;
9137 /* True if this definition is written with a prototype. Note:
9138 despite C99 6.7.5.3p14, we can *not* treat an empty argument
9139 list in a function definition as equivalent to (void) -- an
9140 empty argument list specifies the function has no parameters,
9141 but only (void) sets up a prototype for future calls. */
9142 proto
= arg_info
->types
!= 0;
9145 store_parm_decls_newstyle (fndecl
, arg_info
);
9147 store_parm_decls_oldstyle (fndecl
, arg_info
);
9149 /* The next call to push_scope will be a function body. */
9151 next_is_function_body
= true;
9153 /* Write a record describing this function definition to the prototypes
9154 file (if requested). */
9156 gen_aux_info_record (fndecl
, 1, 0, proto
);
9158 /* Initialize the RTL code for the function. */
9159 allocate_struct_function (fndecl
, false);
9161 if (warn_unused_local_typedefs
)
9162 cfun
->language
= ggc_cleared_alloc
<language_function
> ();
9164 /* Begin the statement tree for this function. */
9165 DECL_SAVED_TREE (fndecl
) = push_stmt_list ();
9167 /* ??? Insert the contents of the pending sizes list into the function
9168 to be evaluated. The only reason left to have this is
9169 void foo(int n, int array[n++])
9170 because we throw away the array type in favor of a pointer type, and
9171 thus won't naturally see the SAVE_EXPR containing the increment. All
9172 other pending sizes would be handled by gimplify_parameters. */
9173 if (arg_info
->pending_sizes
)
9175 /* In very special circumstances, e.g. for code like
9177 void f (int a[i += 2]) {}
9178 we need to execute the atomic assignment on function entry.
9179 But in this case, it is not just a straight store, it has the
9180 op= form, which means that build_atomic_assign has generated
9181 gotos, labels, etc. Because at that time the function decl
9182 for F has not been created yet, those labels do not have any
9183 function context. But we have the fndecl now, so update the
9184 labels accordingly. gimplify_expr would crash otherwise. */
9185 walk_tree_without_duplicates (&arg_info
->pending_sizes
,
9186 set_labels_context_r
, fndecl
);
9187 add_stmt (arg_info
->pending_sizes
);
9191 /* Store PARM_DECLs in PARMS into scope temporarily. Used for
9192 c_finish_omp_declare_simd for function prototypes. No diagnostics
9196 temp_store_parm_decls (tree fndecl
, tree parms
)
9199 for (tree p
= parms
; p
; p
= DECL_CHAIN (p
))
9201 DECL_CONTEXT (p
) = fndecl
;
9203 bind (DECL_NAME (p
), p
, current_scope
,
9204 /*invisible=*/false, /*nested=*/false,
9209 /* Undo what temp_store_parm_decls did. */
9212 temp_pop_parm_decls (void)
9214 /* Clear all bindings in this temporary scope, so that
9215 pop_scope doesn't create a BLOCK. */
9216 struct c_binding
*b
= current_scope
->bindings
;
9217 current_scope
->bindings
= NULL
;
9218 for (; b
; b
= free_binding_and_advance (b
))
9220 gcc_assert (TREE_CODE (b
->decl
) == PARM_DECL
9221 || b
->decl
== error_mark_node
);
9222 gcc_assert (I_SYMBOL_BINDING (b
->id
) == b
);
9223 I_SYMBOL_BINDING (b
->id
) = b
->shadowed
;
9224 if (b
->shadowed
&& b
->shadowed
->u
.type
)
9225 TREE_TYPE (b
->shadowed
->decl
) = b
->shadowed
->u
.type
;
9231 /* Finish up a function declaration and compile that function
9232 all the way to assembler language output. Then free the storage
9233 for the function definition.
9235 This is called after parsing the body of the function definition. */
9238 finish_function (void)
9240 tree fndecl
= current_function_decl
;
9242 if (c_dialect_objc ())
9243 objc_finish_function ();
9245 if (TREE_CODE (fndecl
) == FUNCTION_DECL
9246 && targetm
.calls
.promote_prototypes (TREE_TYPE (fndecl
)))
9248 tree args
= DECL_ARGUMENTS (fndecl
);
9249 for (; args
; args
= DECL_CHAIN (args
))
9251 tree type
= TREE_TYPE (args
);
9252 if (INTEGRAL_TYPE_P (type
)
9253 && TYPE_PRECISION (type
) < TYPE_PRECISION (integer_type_node
))
9254 DECL_ARG_TYPE (args
) = c_type_promotes_to (type
);
9258 if (DECL_INITIAL (fndecl
) && DECL_INITIAL (fndecl
) != error_mark_node
)
9259 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl
)) = fndecl
;
9261 /* Must mark the RESULT_DECL as being in this function. */
9263 if (DECL_RESULT (fndecl
) && DECL_RESULT (fndecl
) != error_mark_node
)
9264 DECL_CONTEXT (DECL_RESULT (fndecl
)) = fndecl
;
9266 if (MAIN_NAME_P (DECL_NAME (fndecl
)) && flag_hosted
9267 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl
)))
9268 == integer_type_node
&& flag_isoc99
)
9270 /* Hack. We don't want the middle-end to warn that this return
9271 is unreachable, so we mark its location as special. Using
9272 UNKNOWN_LOCATION has the problem that it gets clobbered in
9273 annotate_one_with_locus. A cleaner solution might be to
9274 ensure ! should_carry_locus_p (stmt), but that needs a flag.
9276 c_finish_return (BUILTINS_LOCATION
, integer_zero_node
, NULL_TREE
);
9279 /* Tie off the statement tree for this function. */
9280 DECL_SAVED_TREE (fndecl
) = pop_stmt_list (DECL_SAVED_TREE (fndecl
));
9282 /* If the function has _Cilk_spawn in front of a function call inside it
9283 i.e. it is a spawning function, then add the appropriate Cilk plus
9284 functions inside. */
9285 if (fn_contains_cilk_spawn_p (cfun
))
9286 cfun
->cilk_frame_decl
= insert_cilk_frame (fndecl
);
9288 finish_fname_decls ();
9290 /* Complain if there's just no return statement. */
9291 if (warn_return_type
9292 && TREE_CODE (TREE_TYPE (TREE_TYPE (fndecl
))) != VOID_TYPE
9293 && !current_function_returns_value
&& !current_function_returns_null
9294 /* Don't complain if we are no-return. */
9295 && !current_function_returns_abnormally
9296 /* Don't complain if we are declared noreturn. */
9297 && !TREE_THIS_VOLATILE (fndecl
)
9298 /* Don't warn for main(). */
9299 && !MAIN_NAME_P (DECL_NAME (fndecl
))
9300 /* Or if they didn't actually specify a return type. */
9301 && !C_FUNCTION_IMPLICIT_INT (fndecl
)
9302 /* Normally, with -Wreturn-type, flow will complain, but we might
9303 optimize out static functions. */
9304 && !TREE_PUBLIC (fndecl
))
9306 warning (OPT_Wreturn_type
,
9307 "no return statement in function returning non-void");
9308 TREE_NO_WARNING (fndecl
) = 1;
9311 /* Complain about parameters that are only set, but never otherwise used. */
9312 if (warn_unused_but_set_parameter
)
9316 for (decl
= DECL_ARGUMENTS (fndecl
);
9318 decl
= DECL_CHAIN (decl
))
9319 if (TREE_USED (decl
)
9320 && TREE_CODE (decl
) == PARM_DECL
9321 && !DECL_READ_P (decl
)
9323 && !DECL_ARTIFICIAL (decl
)
9324 && !TREE_NO_WARNING (decl
))
9325 warning_at (DECL_SOURCE_LOCATION (decl
),
9326 OPT_Wunused_but_set_parameter
,
9327 "parameter %qD set but not used", decl
);
9330 /* Complain about locally defined typedefs that are not used in this
9332 maybe_warn_unused_local_typedefs ();
9334 /* Possibly warn about unused parameters. */
9335 if (warn_unused_parameter
)
9336 do_warn_unused_parameter (fndecl
);
9338 /* Store the end of the function, so that we get good line number
9339 info for the epilogue. */
9340 cfun
->function_end_locus
= input_location
;
9342 /* Finalize the ELF visibility for the function. */
9343 c_determine_visibility (fndecl
);
9345 /* For GNU C extern inline functions disregard inline limits. */
9346 if (DECL_EXTERNAL (fndecl
)
9347 && DECL_DECLARED_INLINE_P (fndecl
)
9348 && (flag_gnu89_inline
9349 || lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (fndecl
))))
9350 DECL_DISREGARD_INLINE_LIMITS (fndecl
) = 1;
9352 /* Genericize before inlining. Delay genericizing nested functions
9353 until their parent function is genericized. Since finalizing
9354 requires GENERIC, delay that as well. */
9356 if (DECL_INITIAL (fndecl
) && DECL_INITIAL (fndecl
) != error_mark_node
9357 && !undef_nested_function
)
9359 if (!decl_function_context (fndecl
))
9361 invoke_plugin_callbacks (PLUGIN_PRE_GENERICIZE
, fndecl
);
9362 c_genericize (fndecl
);
9364 /* ??? Objc emits functions after finalizing the compilation unit.
9365 This should be cleaned up later and this conditional removed. */
9366 if (symtab
->global_info_ready
)
9368 cgraph_node::add_new_function (fndecl
, false);
9371 cgraph_node::finalize_function (fndecl
, false);
9375 /* Register this function with cgraph just far enough to get it
9376 added to our parent's nested function list. Handy, since the
9377 C front end doesn't have such a list. */
9378 (void) cgraph_node::get_create (fndecl
);
9382 if (!decl_function_context (fndecl
))
9383 undef_nested_function
= false;
9385 if (cfun
->language
!= NULL
)
9387 ggc_free (cfun
->language
);
9388 cfun
->language
= NULL
;
9391 /* We're leaving the context of this function, so zap cfun.
9392 It's still in DECL_STRUCT_FUNCTION, and we'll restore it in
9393 tree_rest_of_compilation. */
9395 invoke_plugin_callbacks (PLUGIN_FINISH_PARSE_FUNCTION
, current_function_decl
);
9396 current_function_decl
= NULL
;
9399 /* Check the declarations given in a for-loop for satisfying the C99
9400 constraints. If exactly one such decl is found, return it. LOC is
9401 the location of the opening parenthesis of the for loop. The last
9402 parameter allows you to control the "for loop initial declarations
9403 are only allowed in C99 mode". Normally, you should pass
9404 flag_isoc99 as that parameter. But in some cases (Objective-C
9405 foreach loop, for example) we want to run the checks in this
9406 function even if not in C99 mode, so we allow the caller to turn
9407 off the error about not being in C99 mode.
9411 check_for_loop_decls (location_t loc
, bool turn_off_iso_c99_error
)
9413 struct c_binding
*b
;
9414 tree one_decl
= NULL_TREE
;
9417 if (!turn_off_iso_c99_error
)
9419 static bool hint
= true;
9420 /* If we get here, declarations have been used in a for loop without
9421 the C99 for loop scope. This doesn't make much sense, so don't
9423 error_at (loc
, "%<for%> loop initial declarations "
9424 "are only allowed in C99 or C11 mode");
9428 "use option -std=c99, -std=gnu99, -std=c11 or -std=gnu11 "
9429 "to compile your code");
9434 /* C99 subclause 6.8.5 paragraph 3:
9436 [#3] The declaration part of a for statement shall only
9437 declare identifiers for objects having storage class auto or
9440 It isn't clear whether, in this sentence, "identifiers" binds to
9441 "shall only declare" or to "objects" - that is, whether all identifiers
9442 declared must be identifiers for objects, or whether the restriction
9443 only applies to those that are. (A question on this in comp.std.c
9444 in November 2000 received no answer.) We implement the strictest
9445 interpretation, to avoid creating an extension which later causes
9448 for (b
= current_scope
->bindings
; b
; b
= b
->prev
)
9451 tree decl
= b
->decl
;
9456 switch (TREE_CODE (decl
))
9460 location_t decl_loc
= DECL_SOURCE_LOCATION (decl
);
9461 if (TREE_STATIC (decl
))
9463 "declaration of static variable %qD in %<for%> loop "
9464 "initial declaration", decl
);
9465 else if (DECL_EXTERNAL (decl
))
9467 "declaration of %<extern%> variable %qD in %<for%> loop "
9468 "initial declaration", decl
);
9474 "%<struct %E%> declared in %<for%> loop initial "
9479 "%<union %E%> declared in %<for%> loop initial declaration",
9483 error_at (loc
, "%<enum %E%> declared in %<for%> loop "
9484 "initial declaration", id
);
9487 error_at (loc
, "declaration of non-variable "
9488 "%qD in %<for%> loop initial declaration", decl
);
9495 return n_decls
== 1 ? one_decl
: NULL_TREE
;
9498 /* Save and reinitialize the variables
9499 used during compilation of a C function. */
9502 c_push_function_context (void)
9504 struct language_function
*p
= cfun
->language
;
9505 /* cfun->language might have been already allocated by the use of
9506 -Wunused-local-typedefs. In that case, just re-use it. */
9508 cfun
->language
= p
= ggc_cleared_alloc
<language_function
> ();
9510 p
->base
.x_stmt_tree
= c_stmt_tree
;
9511 c_stmt_tree
.x_cur_stmt_list
= vec_safe_copy (c_stmt_tree
.x_cur_stmt_list
);
9512 p
->x_break_label
= c_break_label
;
9513 p
->x_cont_label
= c_cont_label
;
9514 p
->x_switch_stack
= c_switch_stack
;
9515 p
->arg_info
= current_function_arg_info
;
9516 p
->returns_value
= current_function_returns_value
;
9517 p
->returns_null
= current_function_returns_null
;
9518 p
->returns_abnormally
= current_function_returns_abnormally
;
9519 p
->warn_about_return_type
= warn_about_return_type
;
9521 push_function_context ();
9524 /* Restore the variables used during compilation of a C function. */
9527 c_pop_function_context (void)
9529 struct language_function
*p
;
9531 pop_function_context ();
9534 /* When -Wunused-local-typedefs is in effect, cfun->languages is
9535 used to store data throughout the life time of the current cfun,
9536 So don't deallocate it. */
9537 if (!warn_unused_local_typedefs
)
9538 cfun
->language
= NULL
;
9540 if (DECL_STRUCT_FUNCTION (current_function_decl
) == 0
9541 && DECL_SAVED_TREE (current_function_decl
) == NULL_TREE
)
9543 /* Stop pointing to the local nodes about to be freed. */
9544 /* But DECL_INITIAL must remain nonzero so we know this
9545 was an actual function definition. */
9546 DECL_INITIAL (current_function_decl
) = error_mark_node
;
9547 DECL_ARGUMENTS (current_function_decl
) = 0;
9550 c_stmt_tree
= p
->base
.x_stmt_tree
;
9551 p
->base
.x_stmt_tree
.x_cur_stmt_list
= NULL
;
9552 c_break_label
= p
->x_break_label
;
9553 c_cont_label
= p
->x_cont_label
;
9554 c_switch_stack
= p
->x_switch_stack
;
9555 current_function_arg_info
= p
->arg_info
;
9556 current_function_returns_value
= p
->returns_value
;
9557 current_function_returns_null
= p
->returns_null
;
9558 current_function_returns_abnormally
= p
->returns_abnormally
;
9559 warn_about_return_type
= p
->warn_about_return_type
;
9562 /* The functions below are required for functionality of doing
9563 function at once processing in the C front end. Currently these
9564 functions are not called from anywhere in the C front end, but as
9565 these changes continue, that will change. */
9567 /* Returns the stmt_tree (if any) to which statements are currently
9568 being added. If there is no active statement-tree, NULL is
9572 current_stmt_tree (void)
9574 return &c_stmt_tree
;
9577 /* Return the global value of T as a symbol. */
9580 identifier_global_value (tree t
)
9582 struct c_binding
*b
;
9584 for (b
= I_SYMBOL_BINDING (t
); b
; b
= b
->shadowed
)
9585 if (B_IN_FILE_SCOPE (b
) || B_IN_EXTERNAL_SCOPE (b
))
9591 /* In C, the only C-linkage public declaration is at file scope. */
9594 c_linkage_bindings (tree name
)
9596 return identifier_global_value (name
);
9599 /* Record a builtin type for C. If NAME is non-NULL, it is the name used;
9600 otherwise the name is found in ridpointers from RID_INDEX. */
9603 record_builtin_type (enum rid rid_index
, const char *name
, tree type
)
9607 id
= ridpointers
[(int) rid_index
];
9609 id
= get_identifier (name
);
9610 decl
= build_decl (UNKNOWN_LOCATION
, TYPE_DECL
, id
, type
);
9612 if (debug_hooks
->type_decl
)
9613 debug_hooks
->type_decl (decl
, false);
9616 /* Build the void_list_node (void_type_node having been created). */
9618 build_void_list_node (void)
9620 tree t
= build_tree_list (NULL_TREE
, void_type_node
);
9624 /* Return a c_parm structure with the given SPECS, ATTRS and DECLARATOR. */
9627 build_c_parm (struct c_declspecs
*specs
, tree attrs
,
9628 struct c_declarator
*declarator
)
9630 struct c_parm
*ret
= XOBNEW (&parser_obstack
, struct c_parm
);
9633 ret
->declarator
= declarator
;
9637 /* Return a declarator with nested attributes. TARGET is the inner
9638 declarator to which these attributes apply. ATTRS are the
9641 struct c_declarator
*
9642 build_attrs_declarator (tree attrs
, struct c_declarator
*target
)
9644 struct c_declarator
*ret
= XOBNEW (&parser_obstack
, struct c_declarator
);
9645 ret
->kind
= cdk_attrs
;
9646 ret
->declarator
= target
;
9647 ret
->u
.attrs
= attrs
;
9651 /* Return a declarator for a function with arguments specified by ARGS
9652 and return type specified by TARGET. */
9654 struct c_declarator
*
9655 build_function_declarator (struct c_arg_info
*args
,
9656 struct c_declarator
*target
)
9658 struct c_declarator
*ret
= XOBNEW (&parser_obstack
, struct c_declarator
);
9659 ret
->kind
= cdk_function
;
9660 ret
->declarator
= target
;
9661 ret
->u
.arg_info
= args
;
9665 /* Return a declarator for the identifier IDENT (which may be
9666 NULL_TREE for an abstract declarator). */
9668 struct c_declarator
*
9669 build_id_declarator (tree ident
)
9671 struct c_declarator
*ret
= XOBNEW (&parser_obstack
, struct c_declarator
);
9673 ret
->declarator
= 0;
9675 /* Default value - may get reset to a more precise location. */
9676 ret
->id_loc
= input_location
;
9680 /* Return something to represent absolute declarators containing a *.
9681 TARGET is the absolute declarator that the * contains.
9682 TYPE_QUALS_ATTRS is a structure for type qualifiers and attributes
9683 to apply to the pointer type. */
9685 struct c_declarator
*
9686 make_pointer_declarator (struct c_declspecs
*type_quals_attrs
,
9687 struct c_declarator
*target
)
9691 struct c_declarator
*itarget
= target
;
9692 struct c_declarator
*ret
= XOBNEW (&parser_obstack
, struct c_declarator
);
9693 if (type_quals_attrs
)
9695 attrs
= type_quals_attrs
->attrs
;
9696 quals
= quals_from_declspecs (type_quals_attrs
);
9697 if (attrs
!= NULL_TREE
)
9698 itarget
= build_attrs_declarator (attrs
, target
);
9700 ret
->kind
= cdk_pointer
;
9701 ret
->declarator
= itarget
;
9702 ret
->u
.pointer_quals
= quals
;
9706 /* Return a pointer to a structure for an empty list of declaration
9709 struct c_declspecs
*
9710 build_null_declspecs (void)
9712 struct c_declspecs
*ret
= XOBNEW (&parser_obstack
, struct c_declspecs
);
9713 memset (ret
, 0, sizeof *ret
);
9714 ret
->align_log
= -1;
9715 ret
->typespec_word
= cts_none
;
9716 ret
->storage_class
= csc_none
;
9717 ret
->expr_const_operands
= true;
9718 ret
->typespec_kind
= ctsk_none
;
9719 ret
->address_space
= ADDR_SPACE_GENERIC
;
9723 /* Add the address space ADDRSPACE to the declaration specifiers
9724 SPECS, returning SPECS. */
9726 struct c_declspecs
*
9727 declspecs_add_addrspace (source_location location
,
9728 struct c_declspecs
*specs
, addr_space_t as
)
9730 specs
->non_sc_seen_p
= true;
9731 specs
->declspecs_seen_p
= true;
9733 if (!ADDR_SPACE_GENERIC_P (specs
->address_space
)
9734 && specs
->address_space
!= as
)
9735 error ("incompatible address space qualifiers %qs and %qs",
9736 c_addr_space_name (as
),
9737 c_addr_space_name (specs
->address_space
));
9740 specs
->address_space
= as
;
9741 specs
->locations
[cdw_address_space
] = location
;
9746 /* Add the type qualifier QUAL to the declaration specifiers SPECS,
9749 struct c_declspecs
*
9750 declspecs_add_qual (source_location loc
,
9751 struct c_declspecs
*specs
, tree qual
)
9755 specs
->non_sc_seen_p
= true;
9756 specs
->declspecs_seen_p
= true;
9757 gcc_assert (TREE_CODE (qual
) == IDENTIFIER_NODE
9758 && C_IS_RESERVED_WORD (qual
));
9759 i
= C_RID_CODE (qual
);
9760 location_t prev_loc
= 0;
9764 dupe
= specs
->const_p
;
9765 specs
->const_p
= true;
9766 prev_loc
= specs
->locations
[cdw_const
];
9767 specs
->locations
[cdw_const
] = loc
;
9770 dupe
= specs
->volatile_p
;
9771 specs
->volatile_p
= true;
9772 prev_loc
= specs
->locations
[cdw_volatile
];
9773 specs
->locations
[cdw_volatile
] = loc
;
9776 dupe
= specs
->restrict_p
;
9777 specs
->restrict_p
= true;
9778 prev_loc
= specs
->locations
[cdw_restrict
];
9779 specs
->locations
[cdw_restrict
] = loc
;
9782 dupe
= specs
->atomic_p
;
9783 specs
->atomic_p
= true;
9784 prev_loc
= specs
->locations
[cdw_atomic
];
9785 specs
->locations
[cdw_atomic
] = loc
;
9792 bool warned
= pedwarn_c90 (loc
, OPT_Wpedantic
,
9793 "duplicate %qE declaration specifier", qual
);
9795 && warn_duplicate_decl_specifier
9796 && prev_loc
>= RESERVED_LOCATION_COUNT
9797 && !from_macro_expansion_at (prev_loc
)
9798 && !from_macro_expansion_at (loc
))
9799 warning_at (loc
, OPT_Wduplicate_decl_specifier
,
9800 "duplicate %qE declaration specifier", qual
);
9805 /* Add the type specifier TYPE to the declaration specifiers SPECS,
9808 struct c_declspecs
*
9809 declspecs_add_type (location_t loc
, struct c_declspecs
*specs
,
9810 struct c_typespec spec
)
9812 tree type
= spec
.spec
;
9813 specs
->non_sc_seen_p
= true;
9814 specs
->declspecs_seen_p
= true;
9815 specs
->typespec_kind
= spec
.kind
;
9816 if (TREE_DEPRECATED (type
))
9817 specs
->deprecated_p
= true;
9819 /* Handle type specifier keywords. */
9820 if (TREE_CODE (type
) == IDENTIFIER_NODE
9821 && C_IS_RESERVED_WORD (type
)
9822 && C_RID_CODE (type
) != RID_CXX_COMPAT_WARN
)
9824 enum rid i
= C_RID_CODE (type
);
9827 error_at (loc
, "two or more data types in declaration specifiers");
9830 if ((int) i
<= (int) RID_LAST_MODIFIER
)
9832 /* "long", "short", "signed", "unsigned", "_Complex" or "_Sat". */
9837 if (specs
->long_long_p
)
9839 error_at (loc
, "%<long long long%> is too long for GCC");
9844 if (specs
->typespec_word
== cts_double
)
9847 ("both %<long long%> and %<double%> in "
9848 "declaration specifiers"));
9851 pedwarn_c90 (loc
, OPT_Wlong_long
,
9852 "ISO C90 does not support %<long long%>");
9853 specs
->long_long_p
= 1;
9854 specs
->locations
[cdw_long_long
] = loc
;
9859 ("both %<long%> and %<short%> in "
9860 "declaration specifiers"));
9861 else if (specs
->typespec_word
== cts_auto_type
)
9863 ("both %<long%> and %<__auto_type%> in "
9864 "declaration specifiers"));
9865 else if (specs
->typespec_word
== cts_void
)
9867 ("both %<long%> and %<void%> in "
9868 "declaration specifiers"));
9869 else if (specs
->typespec_word
== cts_int_n
)
9871 ("both %<long%> and %<__int%d%> in "
9872 "declaration specifiers"),
9873 int_n_data
[specs
->int_n_idx
].bitsize
);
9874 else if (specs
->typespec_word
== cts_bool
)
9876 ("both %<long%> and %<_Bool%> in "
9877 "declaration specifiers"));
9878 else if (specs
->typespec_word
== cts_char
)
9880 ("both %<long%> and %<char%> in "
9881 "declaration specifiers"));
9882 else if (specs
->typespec_word
== cts_float
)
9884 ("both %<long%> and %<float%> in "
9885 "declaration specifiers"));
9886 else if (specs
->typespec_word
== cts_floatn_nx
)
9888 ("both %<long%> and %<_Float%d%s%> in "
9889 "declaration specifiers"),
9890 floatn_nx_types
[specs
->floatn_nx_idx
].n
,
9891 (floatn_nx_types
[specs
->floatn_nx_idx
].extended
9894 else if (specs
->typespec_word
== cts_dfloat32
)
9896 ("both %<long%> and %<_Decimal32%> in "
9897 "declaration specifiers"));
9898 else if (specs
->typespec_word
== cts_dfloat64
)
9900 ("both %<long%> and %<_Decimal64%> in "
9901 "declaration specifiers"));
9902 else if (specs
->typespec_word
== cts_dfloat128
)
9904 ("both %<long%> and %<_Decimal128%> in "
9905 "declaration specifiers"));
9908 specs
->long_p
= true;
9909 specs
->locations
[cdw_long
] = loc
;
9913 dupe
= specs
->short_p
;
9916 ("both %<long%> and %<short%> in "
9917 "declaration specifiers"));
9918 else if (specs
->typespec_word
== cts_auto_type
)
9920 ("both %<short%> and %<__auto_type%> in "
9921 "declaration specifiers"));
9922 else if (specs
->typespec_word
== cts_void
)
9924 ("both %<short%> and %<void%> in "
9925 "declaration specifiers"));
9926 else if (specs
->typespec_word
== cts_int_n
)
9928 ("both %<short%> and %<__int%d%> in "
9929 "declaration specifiers"),
9930 int_n_data
[specs
->int_n_idx
].bitsize
);
9931 else if (specs
->typespec_word
== cts_bool
)
9933 ("both %<short%> and %<_Bool%> in "
9934 "declaration specifiers"));
9935 else if (specs
->typespec_word
== cts_char
)
9937 ("both %<short%> and %<char%> in "
9938 "declaration specifiers"));
9939 else if (specs
->typespec_word
== cts_float
)
9941 ("both %<short%> and %<float%> in "
9942 "declaration specifiers"));
9943 else if (specs
->typespec_word
== cts_double
)
9945 ("both %<short%> and %<double%> in "
9946 "declaration specifiers"));
9947 else if (specs
->typespec_word
== cts_floatn_nx
)
9949 ("both %<short%> and %<_Float%d%s%> in "
9950 "declaration specifiers"),
9951 floatn_nx_types
[specs
->floatn_nx_idx
].n
,
9952 (floatn_nx_types
[specs
->floatn_nx_idx
].extended
9955 else if (specs
->typespec_word
== cts_dfloat32
)
9957 ("both %<short%> and %<_Decimal32%> in "
9958 "declaration specifiers"));
9959 else if (specs
->typespec_word
== cts_dfloat64
)
9961 ("both %<short%> and %<_Decimal64%> in "
9962 "declaration specifiers"));
9963 else if (specs
->typespec_word
== cts_dfloat128
)
9965 ("both %<short%> and %<_Decimal128%> in "
9966 "declaration specifiers"));
9969 specs
->short_p
= true;
9970 specs
->locations
[cdw_short
] = loc
;
9974 dupe
= specs
->signed_p
;
9975 if (specs
->unsigned_p
)
9977 ("both %<signed%> and %<unsigned%> in "
9978 "declaration specifiers"));
9979 else if (specs
->typespec_word
== cts_auto_type
)
9981 ("both %<signed%> and %<__auto_type%> in "
9982 "declaration specifiers"));
9983 else if (specs
->typespec_word
== cts_void
)
9985 ("both %<signed%> and %<void%> in "
9986 "declaration specifiers"));
9987 else if (specs
->typespec_word
== cts_bool
)
9989 ("both %<signed%> and %<_Bool%> in "
9990 "declaration specifiers"));
9991 else if (specs
->typespec_word
== cts_float
)
9993 ("both %<signed%> and %<float%> in "
9994 "declaration specifiers"));
9995 else if (specs
->typespec_word
== cts_double
)
9997 ("both %<signed%> and %<double%> in "
9998 "declaration specifiers"));
9999 else if (specs
->typespec_word
== cts_floatn_nx
)
10001 ("both %<signed%> and %<_Float%d%s%> in "
10002 "declaration specifiers"),
10003 floatn_nx_types
[specs
->floatn_nx_idx
].n
,
10004 (floatn_nx_types
[specs
->floatn_nx_idx
].extended
10007 else if (specs
->typespec_word
== cts_dfloat32
)
10009 ("both %<signed%> and %<_Decimal32%> in "
10010 "declaration specifiers"));
10011 else if (specs
->typespec_word
== cts_dfloat64
)
10013 ("both %<signed%> and %<_Decimal64%> in "
10014 "declaration specifiers"));
10015 else if (specs
->typespec_word
== cts_dfloat128
)
10017 ("both %<signed%> and %<_Decimal128%> in "
10018 "declaration specifiers"));
10021 specs
->signed_p
= true;
10022 specs
->locations
[cdw_signed
] = loc
;
10026 dupe
= specs
->unsigned_p
;
10027 if (specs
->signed_p
)
10029 ("both %<signed%> and %<unsigned%> in "
10030 "declaration specifiers"));
10031 else if (specs
->typespec_word
== cts_auto_type
)
10033 ("both %<unsigned%> and %<__auto_type%> in "
10034 "declaration specifiers"));
10035 else if (specs
->typespec_word
== cts_void
)
10037 ("both %<unsigned%> and %<void%> in "
10038 "declaration specifiers"));
10039 else if (specs
->typespec_word
== cts_bool
)
10041 ("both %<unsigned%> and %<_Bool%> in "
10042 "declaration specifiers"));
10043 else if (specs
->typespec_word
== cts_float
)
10045 ("both %<unsigned%> and %<float%> in "
10046 "declaration specifiers"));
10047 else if (specs
->typespec_word
== cts_double
)
10049 ("both %<unsigned%> and %<double%> in "
10050 "declaration specifiers"));
10051 else if (specs
->typespec_word
== cts_floatn_nx
)
10053 ("both %<unsigned%> and %<_Float%d%s%> in "
10054 "declaration specifiers"),
10055 floatn_nx_types
[specs
->floatn_nx_idx
].n
,
10056 (floatn_nx_types
[specs
->floatn_nx_idx
].extended
10059 else if (specs
->typespec_word
== cts_dfloat32
)
10061 ("both %<unsigned%> and %<_Decimal32%> in "
10062 "declaration specifiers"));
10063 else if (specs
->typespec_word
== cts_dfloat64
)
10065 ("both %<unsigned%> and %<_Decimal64%> in "
10066 "declaration specifiers"));
10067 else if (specs
->typespec_word
== cts_dfloat128
)
10069 ("both %<unsigned%> and %<_Decimal128%> in "
10070 "declaration specifiers"));
10073 specs
->unsigned_p
= true;
10074 specs
->locations
[cdw_unsigned
] = loc
;
10078 dupe
= specs
->complex_p
;
10079 if (!in_system_header_at (loc
))
10080 pedwarn_c90 (loc
, OPT_Wpedantic
,
10081 "ISO C90 does not support complex types");
10082 if (specs
->typespec_word
== cts_auto_type
)
10084 ("both %<complex%> and %<__auto_type%> in "
10085 "declaration specifiers"));
10086 else if (specs
->typespec_word
== cts_void
)
10088 ("both %<complex%> and %<void%> in "
10089 "declaration specifiers"));
10090 else if (specs
->typespec_word
== cts_bool
)
10092 ("both %<complex%> and %<_Bool%> in "
10093 "declaration specifiers"));
10094 else if (specs
->typespec_word
== cts_dfloat32
)
10096 ("both %<complex%> and %<_Decimal32%> in "
10097 "declaration specifiers"));
10098 else if (specs
->typespec_word
== cts_dfloat64
)
10100 ("both %<complex%> and %<_Decimal64%> in "
10101 "declaration specifiers"));
10102 else if (specs
->typespec_word
== cts_dfloat128
)
10104 ("both %<complex%> and %<_Decimal128%> in "
10105 "declaration specifiers"));
10106 else if (specs
->typespec_word
== cts_fract
)
10108 ("both %<complex%> and %<_Fract%> in "
10109 "declaration specifiers"));
10110 else if (specs
->typespec_word
== cts_accum
)
10112 ("both %<complex%> and %<_Accum%> in "
10113 "declaration specifiers"));
10114 else if (specs
->saturating_p
)
10116 ("both %<complex%> and %<_Sat%> in "
10117 "declaration specifiers"));
10120 specs
->complex_p
= true;
10121 specs
->locations
[cdw_complex
] = loc
;
10125 dupe
= specs
->saturating_p
;
10126 pedwarn (loc
, OPT_Wpedantic
,
10127 "ISO C does not support saturating types");
10128 if (specs
->typespec_word
== cts_int_n
)
10131 ("both %<_Sat%> and %<__int%d%> in "
10132 "declaration specifiers"),
10133 int_n_data
[specs
->int_n_idx
].bitsize
);
10135 else if (specs
->typespec_word
== cts_auto_type
)
10137 ("both %<_Sat%> and %<__auto_type%> in "
10138 "declaration specifiers"));
10139 else if (specs
->typespec_word
== cts_void
)
10141 ("both %<_Sat%> and %<void%> in "
10142 "declaration specifiers"));
10143 else if (specs
->typespec_word
== cts_bool
)
10145 ("both %<_Sat%> and %<_Bool%> in "
10146 "declaration specifiers"));
10147 else if (specs
->typespec_word
== cts_char
)
10149 ("both %<_Sat%> and %<char%> in "
10150 "declaration specifiers"));
10151 else if (specs
->typespec_word
== cts_int
)
10153 ("both %<_Sat%> and %<int%> in "
10154 "declaration specifiers"));
10155 else if (specs
->typespec_word
== cts_float
)
10157 ("both %<_Sat%> and %<float%> in "
10158 "declaration specifiers"));
10159 else if (specs
->typespec_word
== cts_double
)
10161 ("both %<_Sat%> and %<double%> in "
10162 "declaration specifiers"));
10163 else if (specs
->typespec_word
== cts_floatn_nx
)
10165 ("both %<_Sat%> and %<_Float%d%s%> in "
10166 "declaration specifiers"),
10167 floatn_nx_types
[specs
->floatn_nx_idx
].n
,
10168 (floatn_nx_types
[specs
->floatn_nx_idx
].extended
10171 else if (specs
->typespec_word
== cts_dfloat32
)
10173 ("both %<_Sat%> and %<_Decimal32%> in "
10174 "declaration specifiers"));
10175 else if (specs
->typespec_word
== cts_dfloat64
)
10177 ("both %<_Sat%> and %<_Decimal64%> in "
10178 "declaration specifiers"));
10179 else if (specs
->typespec_word
== cts_dfloat128
)
10181 ("both %<_Sat%> and %<_Decimal128%> in "
10182 "declaration specifiers"));
10183 else if (specs
->complex_p
)
10185 ("both %<_Sat%> and %<complex%> in "
10186 "declaration specifiers"));
10189 specs
->saturating_p
= true;
10190 specs
->locations
[cdw_saturating
] = loc
;
10194 gcc_unreachable ();
10198 error_at (loc
, "duplicate %qE", type
);
10204 /* "void", "_Bool", "char", "int", "float", "double",
10205 "_FloatN", "_FloatNx", "_Decimal32", "__intN",
10206 "_Decimal64", "_Decimal128", "_Fract", "_Accum" or
10208 if (specs
->typespec_word
!= cts_none
)
10211 "two or more data types in declaration specifiers");
10216 case RID_AUTO_TYPE
:
10219 ("both %<long%> and %<__auto_type%> in "
10220 "declaration specifiers"));
10221 else if (specs
->short_p
)
10223 ("both %<short%> and %<__auto_type%> in "
10224 "declaration specifiers"));
10225 else if (specs
->signed_p
)
10227 ("both %<signed%> and %<__auto_type%> in "
10228 "declaration specifiers"));
10229 else if (specs
->unsigned_p
)
10231 ("both %<unsigned%> and %<__auto_type%> in "
10232 "declaration specifiers"));
10233 else if (specs
->complex_p
)
10235 ("both %<complex%> and %<__auto_type%> in "
10236 "declaration specifiers"));
10237 else if (specs
->saturating_p
)
10239 ("both %<_Sat%> and %<__auto_type%> in "
10240 "declaration specifiers"));
10243 specs
->typespec_word
= cts_auto_type
;
10244 specs
->locations
[cdw_typespec
] = loc
;
10251 specs
->int_n_idx
= i
- RID_INT_N_0
;
10252 if (!in_system_header_at (input_location
))
10253 pedwarn (loc
, OPT_Wpedantic
,
10254 "ISO C does not support %<__int%d%> types",
10255 int_n_data
[specs
->int_n_idx
].bitsize
);
10259 ("both %<__int%d%> and %<long%> in "
10260 "declaration specifiers"),
10261 int_n_data
[specs
->int_n_idx
].bitsize
);
10262 else if (specs
->saturating_p
)
10264 ("both %<_Sat%> and %<__int%d%> in "
10265 "declaration specifiers"),
10266 int_n_data
[specs
->int_n_idx
].bitsize
);
10267 else if (specs
->short_p
)
10269 ("both %<__int%d%> and %<short%> in "
10270 "declaration specifiers"),
10271 int_n_data
[specs
->int_n_idx
].bitsize
);
10272 else if (! int_n_enabled_p
[specs
->int_n_idx
])
10274 specs
->typespec_word
= cts_int_n
;
10276 "%<__int%d%> is not supported on this target",
10277 int_n_data
[specs
->int_n_idx
].bitsize
);
10281 specs
->typespec_word
= cts_int_n
;
10282 specs
->locations
[cdw_typespec
] = loc
;
10288 ("both %<long%> and %<void%> in "
10289 "declaration specifiers"));
10290 else if (specs
->short_p
)
10292 ("both %<short%> and %<void%> in "
10293 "declaration specifiers"));
10294 else if (specs
->signed_p
)
10296 ("both %<signed%> and %<void%> in "
10297 "declaration specifiers"));
10298 else if (specs
->unsigned_p
)
10300 ("both %<unsigned%> and %<void%> in "
10301 "declaration specifiers"));
10302 else if (specs
->complex_p
)
10304 ("both %<complex%> and %<void%> in "
10305 "declaration specifiers"));
10306 else if (specs
->saturating_p
)
10308 ("both %<_Sat%> and %<void%> in "
10309 "declaration specifiers"));
10312 specs
->typespec_word
= cts_void
;
10313 specs
->locations
[cdw_typespec
] = loc
;
10317 if (!in_system_header_at (loc
))
10318 pedwarn_c90 (loc
, OPT_Wpedantic
,
10319 "ISO C90 does not support boolean types");
10322 ("both %<long%> and %<_Bool%> in "
10323 "declaration specifiers"));
10324 else if (specs
->short_p
)
10326 ("both %<short%> and %<_Bool%> in "
10327 "declaration specifiers"));
10328 else if (specs
->signed_p
)
10330 ("both %<signed%> and %<_Bool%> in "
10331 "declaration specifiers"));
10332 else if (specs
->unsigned_p
)
10334 ("both %<unsigned%> and %<_Bool%> in "
10335 "declaration specifiers"));
10336 else if (specs
->complex_p
)
10338 ("both %<complex%> and %<_Bool%> in "
10339 "declaration specifiers"));
10340 else if (specs
->saturating_p
)
10342 ("both %<_Sat%> and %<_Bool%> in "
10343 "declaration specifiers"));
10346 specs
->typespec_word
= cts_bool
;
10347 specs
->locations
[cdw_typespec
] = loc
;
10353 ("both %<long%> and %<char%> in "
10354 "declaration specifiers"));
10355 else if (specs
->short_p
)
10357 ("both %<short%> and %<char%> in "
10358 "declaration specifiers"));
10359 else if (specs
->saturating_p
)
10361 ("both %<_Sat%> and %<char%> in "
10362 "declaration specifiers"));
10365 specs
->typespec_word
= cts_char
;
10366 specs
->locations
[cdw_typespec
] = loc
;
10370 if (specs
->saturating_p
)
10372 ("both %<_Sat%> and %<int%> in "
10373 "declaration specifiers"));
10376 specs
->typespec_word
= cts_int
;
10377 specs
->locations
[cdw_typespec
] = loc
;
10383 ("both %<long%> and %<float%> in "
10384 "declaration specifiers"));
10385 else if (specs
->short_p
)
10387 ("both %<short%> and %<float%> in "
10388 "declaration specifiers"));
10389 else if (specs
->signed_p
)
10391 ("both %<signed%> and %<float%> in "
10392 "declaration specifiers"));
10393 else if (specs
->unsigned_p
)
10395 ("both %<unsigned%> and %<float%> in "
10396 "declaration specifiers"));
10397 else if (specs
->saturating_p
)
10399 ("both %<_Sat%> and %<float%> in "
10400 "declaration specifiers"));
10403 specs
->typespec_word
= cts_float
;
10404 specs
->locations
[cdw_typespec
] = loc
;
10408 if (specs
->long_long_p
)
10410 ("both %<long long%> and %<double%> in "
10411 "declaration specifiers"));
10412 else if (specs
->short_p
)
10414 ("both %<short%> and %<double%> in "
10415 "declaration specifiers"));
10416 else if (specs
->signed_p
)
10418 ("both %<signed%> and %<double%> in "
10419 "declaration specifiers"));
10420 else if (specs
->unsigned_p
)
10422 ("both %<unsigned%> and %<double%> in "
10423 "declaration specifiers"));
10424 else if (specs
->saturating_p
)
10426 ("both %<_Sat%> and %<double%> in "
10427 "declaration specifiers"));
10430 specs
->typespec_word
= cts_double
;
10431 specs
->locations
[cdw_typespec
] = loc
;
10434 CASE_RID_FLOATN_NX
:
10435 specs
->floatn_nx_idx
= i
- RID_FLOATN_NX_FIRST
;
10436 if (!in_system_header_at (input_location
))
10437 pedwarn (loc
, OPT_Wpedantic
,
10438 "ISO C does not support the %<_Float%d%s%> type",
10439 floatn_nx_types
[specs
->floatn_nx_idx
].n
,
10440 (floatn_nx_types
[specs
->floatn_nx_idx
].extended
10446 ("both %<long%> and %<_Float%d%s%> in "
10447 "declaration specifiers"),
10448 floatn_nx_types
[specs
->floatn_nx_idx
].n
,
10449 (floatn_nx_types
[specs
->floatn_nx_idx
].extended
10452 else if (specs
->short_p
)
10454 ("both %<short%> and %<_Float%d%s%> in "
10455 "declaration specifiers"),
10456 floatn_nx_types
[specs
->floatn_nx_idx
].n
,
10457 (floatn_nx_types
[specs
->floatn_nx_idx
].extended
10460 else if (specs
->signed_p
)
10462 ("both %<signed%> and %<_Float%d%s%> in "
10463 "declaration specifiers"),
10464 floatn_nx_types
[specs
->floatn_nx_idx
].n
,
10465 (floatn_nx_types
[specs
->floatn_nx_idx
].extended
10468 else if (specs
->unsigned_p
)
10470 ("both %<unsigned%> and %<_Float%d%s%> in "
10471 "declaration specifiers"),
10472 floatn_nx_types
[specs
->floatn_nx_idx
].n
,
10473 (floatn_nx_types
[specs
->floatn_nx_idx
].extended
10476 else if (specs
->saturating_p
)
10478 ("both %<_Sat%> and %<_Float%d%s%> in "
10479 "declaration specifiers"),
10480 floatn_nx_types
[specs
->floatn_nx_idx
].n
,
10481 (floatn_nx_types
[specs
->floatn_nx_idx
].extended
10484 else if (FLOATN_NX_TYPE_NODE (specs
->floatn_nx_idx
) == NULL_TREE
)
10486 specs
->typespec_word
= cts_floatn_nx
;
10488 "%<_Float%d%s%> is not supported on this target",
10489 floatn_nx_types
[specs
->floatn_nx_idx
].n
,
10490 (floatn_nx_types
[specs
->floatn_nx_idx
].extended
10496 specs
->typespec_word
= cts_floatn_nx
;
10497 specs
->locations
[cdw_typespec
] = loc
;
10502 case RID_DFLOAT128
:
10505 if (i
== RID_DFLOAT32
)
10506 str
= "_Decimal32";
10507 else if (i
== RID_DFLOAT64
)
10508 str
= "_Decimal64";
10510 str
= "_Decimal128";
10511 if (specs
->long_long_p
)
10513 ("both %<long long%> and %<%s%> in "
10514 "declaration specifiers"),
10518 ("both %<long%> and %<%s%> in "
10519 "declaration specifiers"),
10521 else if (specs
->short_p
)
10523 ("both %<short%> and %<%s%> in "
10524 "declaration specifiers"),
10526 else if (specs
->signed_p
)
10528 ("both %<signed%> and %<%s%> in "
10529 "declaration specifiers"),
10531 else if (specs
->unsigned_p
)
10533 ("both %<unsigned%> and %<%s%> in "
10534 "declaration specifiers"),
10536 else if (specs
->complex_p
)
10538 ("both %<complex%> and %<%s%> in "
10539 "declaration specifiers"),
10541 else if (specs
->saturating_p
)
10543 ("both %<_Sat%> and %<%s%> in "
10544 "declaration specifiers"),
10546 else if (i
== RID_DFLOAT32
)
10547 specs
->typespec_word
= cts_dfloat32
;
10548 else if (i
== RID_DFLOAT64
)
10549 specs
->typespec_word
= cts_dfloat64
;
10551 specs
->typespec_word
= cts_dfloat128
;
10552 specs
->locations
[cdw_typespec
] = loc
;
10554 if (!targetm
.decimal_float_supported_p ())
10556 ("decimal floating point not supported "
10557 "for this target"));
10558 pedwarn (loc
, OPT_Wpedantic
,
10559 "ISO C does not support decimal floating point");
10565 if (i
== RID_FRACT
)
10569 if (specs
->complex_p
)
10571 ("both %<complex%> and %<%s%> in "
10572 "declaration specifiers"),
10574 else if (i
== RID_FRACT
)
10575 specs
->typespec_word
= cts_fract
;
10577 specs
->typespec_word
= cts_accum
;
10578 specs
->locations
[cdw_typespec
] = loc
;
10580 if (!targetm
.fixed_point_supported_p ())
10582 "fixed-point types not supported for this target");
10583 pedwarn (loc
, OPT_Wpedantic
,
10584 "ISO C does not support fixed-point types");
10587 /* ObjC reserved word "id", handled below. */
10593 /* Now we have a typedef (a TYPE_DECL node), an identifier (some
10594 form of ObjC type, cases such as "int" and "long" being handled
10595 above), a TYPE (struct, union, enum and typeof specifiers) or an
10596 ERROR_MARK. In none of these cases may there have previously
10597 been any type specifiers. */
10598 if (specs
->type
|| specs
->typespec_word
!= cts_none
10599 || specs
->long_p
|| specs
->short_p
|| specs
->signed_p
10600 || specs
->unsigned_p
|| specs
->complex_p
)
10601 error_at (loc
, "two or more data types in declaration specifiers");
10602 else if (TREE_CODE (type
) == TYPE_DECL
)
10604 if (TREE_TYPE (type
) == error_mark_node
)
10605 ; /* Allow the type to default to int to avoid cascading errors. */
10608 specs
->type
= TREE_TYPE (type
);
10609 specs
->decl_attr
= DECL_ATTRIBUTES (type
);
10610 specs
->typedef_p
= true;
10611 specs
->explicit_signed_p
= C_TYPEDEF_EXPLICITLY_SIGNED (type
);
10612 specs
->locations
[cdw_typedef
] = loc
;
10614 /* If this typedef name is defined in a struct, then a C++
10615 lookup would return a different value. */
10616 if (warn_cxx_compat
10617 && I_SYMBOL_BINDING (DECL_NAME (type
))->in_struct
)
10618 warning_at (loc
, OPT_Wc___compat
,
10619 "C++ lookup of %qD would return a field, not a type",
10622 /* If we are parsing a struct, record that a struct field
10624 if (warn_cxx_compat
&& struct_parse_info
!= NULL
)
10625 struct_parse_info
->typedefs_seen
.safe_push (type
);
10628 else if (TREE_CODE (type
) == IDENTIFIER_NODE
)
10630 tree t
= lookup_name (type
);
10631 if (!t
|| TREE_CODE (t
) != TYPE_DECL
)
10632 error_at (loc
, "%qE fails to be a typedef or built in type", type
);
10633 else if (TREE_TYPE (t
) == error_mark_node
)
10637 specs
->type
= TREE_TYPE (t
);
10638 specs
->locations
[cdw_typespec
] = loc
;
10643 if (TREE_CODE (type
) != ERROR_MARK
&& spec
.kind
== ctsk_typeof
)
10645 specs
->typedef_p
= true;
10646 specs
->locations
[cdw_typedef
] = loc
;
10650 specs
->expr
= build2 (COMPOUND_EXPR
, TREE_TYPE (spec
.expr
),
10651 specs
->expr
, spec
.expr
);
10653 specs
->expr
= spec
.expr
;
10654 specs
->expr_const_operands
&= spec
.expr_const_operands
;
10657 specs
->type
= type
;
10663 /* Add the storage class specifier or function specifier SCSPEC to the
10664 declaration specifiers SPECS, returning SPECS. */
10666 struct c_declspecs
*
10667 declspecs_add_scspec (source_location loc
,
10668 struct c_declspecs
*specs
,
10672 enum c_storage_class n
= csc_none
;
10674 specs
->declspecs_seen_p
= true;
10675 gcc_assert (TREE_CODE (scspec
) == IDENTIFIER_NODE
10676 && C_IS_RESERVED_WORD (scspec
));
10677 i
= C_RID_CODE (scspec
);
10678 if (specs
->non_sc_seen_p
)
10679 warning (OPT_Wold_style_declaration
,
10680 "%qE is not at beginning of declaration", scspec
);
10684 /* C99 permits duplicate inline. Although of doubtful utility,
10685 it seems simplest to permit it in gnu89 mode as well, as
10686 there is also little utility in maintaining this as a
10687 difference between gnu89 and C99 inline. */
10689 specs
->inline_p
= true;
10690 specs
->locations
[cdw_inline
] = loc
;
10693 /* Duplicate _Noreturn is permitted. */
10695 specs
->noreturn_p
= true;
10696 specs
->locations
[cdw_noreturn
] = loc
;
10699 dupe
= specs
->thread_p
;
10700 if (specs
->storage_class
== csc_auto
)
10701 error ("%qE used with %<auto%>", scspec
);
10702 else if (specs
->storage_class
== csc_register
)
10703 error ("%qE used with %<register%>", scspec
);
10704 else if (specs
->storage_class
== csc_typedef
)
10705 error ("%qE used with %<typedef%>", scspec
);
10708 specs
->thread_p
= true;
10709 specs
->thread_gnu_p
= (strcmp (IDENTIFIER_POINTER (scspec
),
10711 /* A diagnostic is not required for the use of this
10712 identifier in the implementation namespace; only diagnose
10713 it for the C11 spelling because of existing code using
10714 the other spelling. */
10715 if (!specs
->thread_gnu_p
)
10718 pedwarn_c99 (loc
, OPT_Wpedantic
,
10719 "ISO C99 does not support %qE", scspec
);
10721 pedwarn_c99 (loc
, OPT_Wpedantic
,
10722 "ISO C90 does not support %qE", scspec
);
10724 specs
->locations
[cdw_thread
] = loc
;
10732 /* Diagnose "__thread extern". */
10733 if (specs
->thread_p
&& specs
->thread_gnu_p
)
10734 error ("%<__thread%> before %<extern%>");
10741 /* Diagnose "__thread static". */
10742 if (specs
->thread_p
&& specs
->thread_gnu_p
)
10743 error ("%<__thread%> before %<static%>");
10749 gcc_unreachable ();
10751 if (n
!= csc_none
&& n
== specs
->storage_class
)
10755 if (i
== RID_THREAD
)
10756 error ("duplicate %<_Thread_local%> or %<__thread%>");
10758 error ("duplicate %qE", scspec
);
10762 if (specs
->storage_class
!= csc_none
&& n
!= specs
->storage_class
)
10764 error ("multiple storage classes in declaration specifiers");
10768 specs
->storage_class
= n
;
10769 specs
->locations
[cdw_storage_class
] = loc
;
10770 if (n
!= csc_extern
&& n
!= csc_static
&& specs
->thread_p
)
10772 error ("%qs used with %qE",
10773 specs
->thread_gnu_p
? "__thread" : "_Thread_local",
10775 specs
->thread_p
= false;
10782 /* Add the attributes ATTRS to the declaration specifiers SPECS,
10783 returning SPECS. */
10785 struct c_declspecs
*
10786 declspecs_add_attrs (source_location loc
, struct c_declspecs
*specs
, tree attrs
)
10788 specs
->attrs
= chainon (attrs
, specs
->attrs
);
10789 specs
->locations
[cdw_attributes
] = loc
;
10790 specs
->declspecs_seen_p
= true;
10794 /* Add an _Alignas specifier (expression ALIGN, or type whose
10795 alignment is ALIGN) to the declaration specifiers SPECS, returning
10797 struct c_declspecs
*
10798 declspecs_add_alignas (source_location loc
,
10799 struct c_declspecs
*specs
, tree align
)
10802 specs
->alignas_p
= true;
10803 specs
->locations
[cdw_alignas
] = loc
;
10804 if (align
== error_mark_node
)
10806 align_log
= check_user_alignment (align
, true);
10807 if (align_log
> specs
->align_log
)
10808 specs
->align_log
= align_log
;
10812 /* Combine "long", "short", "signed", "unsigned" and "_Complex" type
10813 specifiers with any other type specifier to determine the resulting
10814 type. This is where ISO C checks on complex types are made, since
10815 "_Complex long" is a prefix of the valid ISO C type "_Complex long
10818 struct c_declspecs
*
10819 finish_declspecs (struct c_declspecs
*specs
)
10821 /* If a type was specified as a whole, we have no modifiers and are
10823 if (specs
->type
!= NULL_TREE
)
10825 gcc_assert (!specs
->long_p
&& !specs
->long_long_p
&& !specs
->short_p
10826 && !specs
->signed_p
&& !specs
->unsigned_p
10827 && !specs
->complex_p
);
10829 /* Set a dummy type. */
10830 if (TREE_CODE (specs
->type
) == ERROR_MARK
)
10831 specs
->type
= integer_type_node
;
10835 /* If none of "void", "_Bool", "char", "int", "float" or "double"
10836 has been specified, treat it as "int" unless "_Complex" is
10837 present and there are no other specifiers. If we just have
10838 "_Complex", it is equivalent to "_Complex double", but e.g.
10839 "_Complex short" is equivalent to "_Complex short int". */
10840 if (specs
->typespec_word
== cts_none
)
10842 if (specs
->saturating_p
)
10844 error_at (specs
->locations
[cdw_saturating
],
10845 "%<_Sat%> is used without %<_Fract%> or %<_Accum%>");
10846 if (!targetm
.fixed_point_supported_p ())
10847 error_at (specs
->locations
[cdw_saturating
],
10848 "fixed-point types not supported for this target");
10849 specs
->typespec_word
= cts_fract
;
10851 else if (specs
->long_p
|| specs
->short_p
10852 || specs
->signed_p
|| specs
->unsigned_p
)
10854 specs
->typespec_word
= cts_int
;
10856 else if (specs
->complex_p
)
10858 specs
->typespec_word
= cts_double
;
10859 pedwarn (specs
->locations
[cdw_complex
], OPT_Wpedantic
,
10860 "ISO C does not support plain %<complex%> meaning "
10861 "%<double complex%>");
10865 specs
->typespec_word
= cts_int
;
10866 specs
->default_int_p
= true;
10867 /* We don't diagnose this here because grokdeclarator will
10868 give more specific diagnostics according to whether it is
10869 a function definition. */
10873 /* If "signed" was specified, record this to distinguish "int" and
10874 "signed int" in the case of a bit-field with
10875 -funsigned-bitfields. */
10876 specs
->explicit_signed_p
= specs
->signed_p
;
10878 /* Now compute the actual type. */
10879 switch (specs
->typespec_word
)
10881 case cts_auto_type
:
10882 gcc_assert (!specs
->long_p
&& !specs
->short_p
10883 && !specs
->signed_p
&& !specs
->unsigned_p
10884 && !specs
->complex_p
);
10885 /* Type to be filled in later. */
10888 gcc_assert (!specs
->long_p
&& !specs
->short_p
10889 && !specs
->signed_p
&& !specs
->unsigned_p
10890 && !specs
->complex_p
);
10891 specs
->type
= void_type_node
;
10894 gcc_assert (!specs
->long_p
&& !specs
->short_p
10895 && !specs
->signed_p
&& !specs
->unsigned_p
10896 && !specs
->complex_p
);
10897 specs
->type
= boolean_type_node
;
10900 gcc_assert (!specs
->long_p
&& !specs
->short_p
);
10901 gcc_assert (!(specs
->signed_p
&& specs
->unsigned_p
));
10902 if (specs
->signed_p
)
10903 specs
->type
= signed_char_type_node
;
10904 else if (specs
->unsigned_p
)
10905 specs
->type
= unsigned_char_type_node
;
10907 specs
->type
= char_type_node
;
10908 if (specs
->complex_p
)
10910 pedwarn (specs
->locations
[cdw_complex
], OPT_Wpedantic
,
10911 "ISO C does not support complex integer types");
10912 specs
->type
= build_complex_type (specs
->type
);
10916 gcc_assert (!specs
->long_p
&& !specs
->short_p
&& !specs
->long_long_p
);
10917 gcc_assert (!(specs
->signed_p
&& specs
->unsigned_p
));
10918 specs
->type
= (specs
->unsigned_p
10919 ? int_n_trees
[specs
->int_n_idx
].unsigned_type
10920 : int_n_trees
[specs
->int_n_idx
].signed_type
);
10921 if (specs
->complex_p
)
10923 pedwarn (specs
->locations
[cdw_complex
], OPT_Wpedantic
,
10924 "ISO C does not support complex integer types");
10925 specs
->type
= build_complex_type (specs
->type
);
10929 gcc_assert (!(specs
->long_p
&& specs
->short_p
));
10930 gcc_assert (!(specs
->signed_p
&& specs
->unsigned_p
));
10931 if (specs
->long_long_p
)
10932 specs
->type
= (specs
->unsigned_p
10933 ? long_long_unsigned_type_node
10934 : long_long_integer_type_node
);
10935 else if (specs
->long_p
)
10936 specs
->type
= (specs
->unsigned_p
10937 ? long_unsigned_type_node
10938 : long_integer_type_node
);
10939 else if (specs
->short_p
)
10940 specs
->type
= (specs
->unsigned_p
10941 ? short_unsigned_type_node
10942 : short_integer_type_node
);
10944 specs
->type
= (specs
->unsigned_p
10945 ? unsigned_type_node
10946 : integer_type_node
);
10947 if (specs
->complex_p
)
10949 pedwarn (specs
->locations
[cdw_complex
], OPT_Wpedantic
,
10950 "ISO C does not support complex integer types");
10951 specs
->type
= build_complex_type (specs
->type
);
10955 gcc_assert (!specs
->long_p
&& !specs
->short_p
10956 && !specs
->signed_p
&& !specs
->unsigned_p
);
10957 specs
->type
= (specs
->complex_p
10958 ? complex_float_type_node
10959 : float_type_node
);
10962 gcc_assert (!specs
->long_long_p
&& !specs
->short_p
10963 && !specs
->signed_p
&& !specs
->unsigned_p
);
10966 specs
->type
= (specs
->complex_p
10967 ? complex_long_double_type_node
10968 : long_double_type_node
);
10972 specs
->type
= (specs
->complex_p
10973 ? complex_double_type_node
10974 : double_type_node
);
10977 case cts_floatn_nx
:
10978 gcc_assert (!specs
->long_p
&& !specs
->short_p
10979 && !specs
->signed_p
&& !specs
->unsigned_p
);
10980 if (FLOATN_NX_TYPE_NODE (specs
->floatn_nx_idx
) == NULL_TREE
)
10981 specs
->type
= integer_type_node
;
10982 else if (specs
->complex_p
)
10983 specs
->type
= COMPLEX_FLOATN_NX_TYPE_NODE (specs
->floatn_nx_idx
);
10985 specs
->type
= FLOATN_NX_TYPE_NODE (specs
->floatn_nx_idx
);
10989 case cts_dfloat128
:
10990 gcc_assert (!specs
->long_p
&& !specs
->long_long_p
&& !specs
->short_p
10991 && !specs
->signed_p
&& !specs
->unsigned_p
&& !specs
->complex_p
);
10992 if (specs
->typespec_word
== cts_dfloat32
)
10993 specs
->type
= dfloat32_type_node
;
10994 else if (specs
->typespec_word
== cts_dfloat64
)
10995 specs
->type
= dfloat64_type_node
;
10997 specs
->type
= dfloat128_type_node
;
11000 gcc_assert (!specs
->complex_p
);
11001 if (!targetm
.fixed_point_supported_p ())
11002 specs
->type
= integer_type_node
;
11003 else if (specs
->saturating_p
)
11005 if (specs
->long_long_p
)
11006 specs
->type
= specs
->unsigned_p
11007 ? sat_unsigned_long_long_fract_type_node
11008 : sat_long_long_fract_type_node
;
11009 else if (specs
->long_p
)
11010 specs
->type
= specs
->unsigned_p
11011 ? sat_unsigned_long_fract_type_node
11012 : sat_long_fract_type_node
;
11013 else if (specs
->short_p
)
11014 specs
->type
= specs
->unsigned_p
11015 ? sat_unsigned_short_fract_type_node
11016 : sat_short_fract_type_node
;
11018 specs
->type
= specs
->unsigned_p
11019 ? sat_unsigned_fract_type_node
11020 : sat_fract_type_node
;
11024 if (specs
->long_long_p
)
11025 specs
->type
= specs
->unsigned_p
11026 ? unsigned_long_long_fract_type_node
11027 : long_long_fract_type_node
;
11028 else if (specs
->long_p
)
11029 specs
->type
= specs
->unsigned_p
11030 ? unsigned_long_fract_type_node
11031 : long_fract_type_node
;
11032 else if (specs
->short_p
)
11033 specs
->type
= specs
->unsigned_p
11034 ? unsigned_short_fract_type_node
11035 : short_fract_type_node
;
11037 specs
->type
= specs
->unsigned_p
11038 ? unsigned_fract_type_node
11043 gcc_assert (!specs
->complex_p
);
11044 if (!targetm
.fixed_point_supported_p ())
11045 specs
->type
= integer_type_node
;
11046 else if (specs
->saturating_p
)
11048 if (specs
->long_long_p
)
11049 specs
->type
= specs
->unsigned_p
11050 ? sat_unsigned_long_long_accum_type_node
11051 : sat_long_long_accum_type_node
;
11052 else if (specs
->long_p
)
11053 specs
->type
= specs
->unsigned_p
11054 ? sat_unsigned_long_accum_type_node
11055 : sat_long_accum_type_node
;
11056 else if (specs
->short_p
)
11057 specs
->type
= specs
->unsigned_p
11058 ? sat_unsigned_short_accum_type_node
11059 : sat_short_accum_type_node
;
11061 specs
->type
= specs
->unsigned_p
11062 ? sat_unsigned_accum_type_node
11063 : sat_accum_type_node
;
11067 if (specs
->long_long_p
)
11068 specs
->type
= specs
->unsigned_p
11069 ? unsigned_long_long_accum_type_node
11070 : long_long_accum_type_node
;
11071 else if (specs
->long_p
)
11072 specs
->type
= specs
->unsigned_p
11073 ? unsigned_long_accum_type_node
11074 : long_accum_type_node
;
11075 else if (specs
->short_p
)
11076 specs
->type
= specs
->unsigned_p
11077 ? unsigned_short_accum_type_node
11078 : short_accum_type_node
;
11080 specs
->type
= specs
->unsigned_p
11081 ? unsigned_accum_type_node
11086 gcc_unreachable ();
11092 /* Perform final processing on one file scope's declarations (or the
11093 external scope's declarations), GLOBALS. */
11096 c_write_global_declarations_1 (tree globals
)
11101 /* Process the decls in the order they were written. */
11102 for (decl
= globals
; decl
; decl
= DECL_CHAIN (decl
))
11104 /* Check for used but undefined static functions using the C
11105 standard's definition of "used", and set TREE_NO_WARNING so
11106 that check_global_declaration doesn't repeat the check. */
11107 if (TREE_CODE (decl
) == FUNCTION_DECL
11108 && DECL_INITIAL (decl
) == 0
11109 && DECL_EXTERNAL (decl
)
11110 && !TREE_PUBLIC (decl
))
11112 if (C_DECL_USED (decl
))
11114 pedwarn (input_location
, 0, "%q+F used but never defined", decl
);
11115 TREE_NO_WARNING (decl
) = 1;
11117 /* For -Wunused-function warn about unused static prototypes. */
11118 else if (warn_unused_function
11119 && ! DECL_ARTIFICIAL (decl
)
11120 && ! TREE_NO_WARNING (decl
))
11122 warning (OPT_Wunused_function
,
11123 "%q+F declared %<static%> but never defined", decl
);
11124 TREE_NO_WARNING (decl
) = 1;
11128 wrapup_global_declaration_1 (decl
);
11133 reconsider
= false;
11134 for (decl
= globals
; decl
; decl
= DECL_CHAIN (decl
))
11135 reconsider
|= wrapup_global_declaration_2 (decl
);
11137 while (reconsider
);
11140 /* Callback to collect a source_ref from a DECL. */
11143 collect_source_ref_cb (tree decl
)
11145 if (!DECL_IS_BUILTIN (decl
))
11146 collect_source_ref (LOCATION_FILE (decl_sloc (decl
, false)));
11149 /* Preserve the external declarations scope across a garbage collect. */
11150 static GTY(()) tree ext_block
;
11152 /* Collect all references relevant to SOURCE_FILE. */
11155 collect_all_refs (const char *source_file
)
11160 FOR_EACH_VEC_ELT (*all_translation_units
, i
, t
)
11161 collect_ada_nodes (BLOCK_VARS (DECL_INITIAL (t
)), source_file
);
11163 collect_ada_nodes (BLOCK_VARS (ext_block
), source_file
);
11166 /* Iterate over all global declarations and call CALLBACK. */
11169 for_each_global_decl (void (*callback
) (tree decl
))
11176 FOR_EACH_VEC_ELT (*all_translation_units
, i
, t
)
11178 decls
= DECL_INITIAL (t
);
11179 for (decl
= BLOCK_VARS (decls
); decl
; decl
= TREE_CHAIN (decl
))
11183 for (decl
= BLOCK_VARS (ext_block
); decl
; decl
= TREE_CHAIN (decl
))
11187 /* Perform any final parser cleanups and generate initial debugging
11191 c_parse_final_cleanups (void)
11196 /* We don't want to do this if generating a PCH. */
11200 timevar_stop (TV_PHASE_PARSING
);
11201 timevar_start (TV_PHASE_DEFERRED
);
11203 /* Do the Objective-C stuff. This is where all the Objective-C
11204 module stuff gets generated (symtab, class/protocol/selector
11206 if (c_dialect_objc ())
11207 objc_write_global_declarations ();
11209 /* Close the external scope. */
11210 ext_block
= pop_scope ();
11211 external_scope
= 0;
11212 gcc_assert (!current_scope
);
11214 /* Handle -fdump-ada-spec[-slim]. */
11215 if (flag_dump_ada_spec
|| flag_dump_ada_spec_slim
)
11217 /* Build a table of files to generate specs for */
11218 if (flag_dump_ada_spec_slim
)
11219 collect_source_ref (main_input_filename
);
11221 for_each_global_decl (collect_source_ref_cb
);
11223 dump_ada_specs (collect_all_refs
, NULL
);
11228 tree tmp
= BLOCK_VARS (ext_block
);
11230 FILE * stream
= dump_begin (TDI_tu
, &flags
);
11233 dump_node (tmp
, flags
& ~TDF_SLIM
, stream
);
11234 dump_end (TDI_tu
, stream
);
11238 /* Process all file scopes in this compilation, and the external_scope,
11239 through wrapup_global_declarations. */
11240 FOR_EACH_VEC_ELT (*all_translation_units
, i
, t
)
11241 c_write_global_declarations_1 (BLOCK_VARS (DECL_INITIAL (t
)));
11242 c_write_global_declarations_1 (BLOCK_VARS (ext_block
));
11244 timevar_stop (TV_PHASE_DEFERRED
);
11245 timevar_start (TV_PHASE_PARSING
);
11250 /* Register reserved keyword WORD as qualifier for address space AS. */
11253 c_register_addr_space (const char *word
, addr_space_t as
)
11255 int rid
= RID_FIRST_ADDR_SPACE
+ as
;
11258 /* Address space qualifiers are only supported
11259 in C with GNU extensions enabled. */
11260 if (c_dialect_objc () || flag_no_asm
)
11263 id
= get_identifier (word
);
11264 C_SET_RID_CODE (id
, rid
);
11265 C_IS_RESERVED_WORD (id
) = 1;
11266 ridpointers
[rid
] = id
;
11269 /* Return identifier to look up for omp declare reduction. */
11272 c_omp_reduction_id (enum tree_code reduction_code
, tree reduction_id
)
11274 const char *p
= NULL
;
11275 switch (reduction_code
)
11277 case PLUS_EXPR
: p
= "+"; break;
11278 case MULT_EXPR
: p
= "*"; break;
11279 case MINUS_EXPR
: p
= "-"; break;
11280 case BIT_AND_EXPR
: p
= "&"; break;
11281 case BIT_XOR_EXPR
: p
= "^"; break;
11282 case BIT_IOR_EXPR
: p
= "|"; break;
11283 case TRUTH_ANDIF_EXPR
: p
= "&&"; break;
11284 case TRUTH_ORIF_EXPR
: p
= "||"; break;
11285 case MIN_EXPR
: p
= "min"; break;
11286 case MAX_EXPR
: p
= "max"; break;
11293 if (TREE_CODE (reduction_id
) != IDENTIFIER_NODE
)
11294 return error_mark_node
;
11295 p
= IDENTIFIER_POINTER (reduction_id
);
11298 const char prefix
[] = "omp declare reduction ";
11299 size_t lenp
= sizeof (prefix
);
11300 size_t len
= strlen (p
);
11301 char *name
= XALLOCAVEC (char, lenp
+ len
);
11302 memcpy (name
, prefix
, lenp
- 1);
11303 memcpy (name
+ lenp
- 1, p
, len
+ 1);
11304 return get_identifier (name
);
11307 /* Lookup REDUCTION_ID in the current scope, or create an artificial
11308 VAR_DECL, bind it into the current scope and return it. */
11311 c_omp_reduction_decl (tree reduction_id
)
11313 struct c_binding
*b
= I_SYMBOL_BINDING (reduction_id
);
11314 if (b
!= NULL
&& B_IN_CURRENT_SCOPE (b
))
11317 tree decl
= build_decl (BUILTINS_LOCATION
, VAR_DECL
,
11318 reduction_id
, integer_type_node
);
11319 DECL_ARTIFICIAL (decl
) = 1;
11320 DECL_EXTERNAL (decl
) = 1;
11321 TREE_STATIC (decl
) = 1;
11322 TREE_PUBLIC (decl
) = 0;
11323 bind (reduction_id
, decl
, current_scope
, true, false, BUILTINS_LOCATION
);
11327 /* Lookup REDUCTION_ID in the first scope where it has entry for TYPE. */
11330 c_omp_reduction_lookup (tree reduction_id
, tree type
)
11332 struct c_binding
*b
= I_SYMBOL_BINDING (reduction_id
);
11336 for (t
= DECL_INITIAL (b
->decl
); t
; t
= TREE_CHAIN (t
))
11337 if (comptypes (TREE_PURPOSE (t
), type
))
11338 return TREE_VALUE (t
);
11341 return error_mark_node
;
11344 /* Helper function called via walk_tree, to diagnose invalid
11345 #pragma omp declare reduction combiners or initializers. */
11348 c_check_omp_declare_reduction_r (tree
*tp
, int *, void *data
)
11350 tree
*vars
= (tree
*) data
;
11351 if (SSA_VAR_P (*tp
)
11352 && !DECL_ARTIFICIAL (*tp
)
11356 location_t loc
= DECL_SOURCE_LOCATION (vars
[0]);
11357 if (strcmp (IDENTIFIER_POINTER (DECL_NAME (vars
[0])), "omp_out") == 0)
11358 error_at (loc
, "%<#pragma omp declare reduction%> combiner refers to "
11359 "variable %qD which is not %<omp_out%> nor %<omp_in%>",
11362 error_at (loc
, "%<#pragma omp declare reduction%> initializer refers "
11363 "to variable %qD which is not %<omp_priv%> nor "
11371 #include "gt-c-c-decl.h"