PR rtl-optimization/82913
[official-gcc.git] / gcc / c / c-decl.c
blobd95a2b6ea4f3237633156320436d281484308b98
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
9 version.
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
14 for more details.
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. */
27 #include "config.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "target.h"
31 #include "function.h"
32 #include "c-tree.h"
33 #include "timevar.h"
34 #include "stringpool.h"
35 #include "cgraph.h"
36 #include "intl.h"
37 #include "print-tree.h"
38 #include "stor-layout.h"
39 #include "varasm.h"
40 #include "attribs.h"
41 #include "toplev.h"
42 #include "debug.h"
43 #include "c-family/c-objc.h"
44 #include "c-family/c-pragma.h"
45 #include "c-family/c-ubsan.h"
46 #include "c-lang.h"
47 #include "langhooks.h"
48 #include "tree-iterator.h"
49 #include "dumpfile.h"
50 #include "plugin.h"
51 #include "c-family/c-ada-spec.h"
52 #include "cilk.h"
53 #include "builtins.h"
54 #include "spellcheck-tree.h"
55 #include "gcc-rich-location.h"
56 #include "asan.h"
58 /* In grokdeclarator, distinguish syntactic contexts of declarators. */
59 enum decl_context
60 { NORMAL, /* Ordinary declaration */
61 FUNCDEF, /* Function definition */
62 PARM, /* Declaration of parm before function body */
63 FIELD, /* Declaration inside struct or union */
64 TYPENAME}; /* Typename (inside cast or sizeof) */
66 /* States indicating how grokdeclarator() should handle declspecs marked
67 with __attribute__((deprecated)). An object declared as
68 __attribute__((deprecated)) suppresses warnings of uses of other
69 deprecated items. */
71 enum deprecated_states {
72 DEPRECATED_NORMAL,
73 DEPRECATED_SUPPRESS
77 /* Nonzero if we have seen an invalid cross reference
78 to a struct, union, or enum, but not yet printed the message. */
79 tree pending_invalid_xref;
81 /* File and line to appear in the eventual error message. */
82 location_t pending_invalid_xref_location;
84 /* The file and line that the prototype came from if this is an
85 old-style definition; used for diagnostics in
86 store_parm_decls_oldstyle. */
88 static location_t current_function_prototype_locus;
90 /* Whether this prototype was built-in. */
92 static bool current_function_prototype_built_in;
94 /* The argument type information of this prototype. */
96 static tree current_function_prototype_arg_types;
98 /* The argument information structure for the function currently being
99 defined. */
101 static struct c_arg_info *current_function_arg_info;
103 /* The obstack on which parser and related data structures, which are
104 not live beyond their top-level declaration or definition, are
105 allocated. */
106 struct obstack parser_obstack;
108 /* The current statement tree. */
110 static GTY(()) struct stmt_tree_s c_stmt_tree;
112 /* State saving variables. */
113 tree c_break_label;
114 tree c_cont_label;
116 /* A list of decls to be made automatically visible in each file scope. */
117 static GTY(()) tree visible_builtins;
119 /* Set to 0 at beginning of a function definition, set to 1 if
120 a return statement that specifies a return value is seen. */
122 int current_function_returns_value;
124 /* Set to 0 at beginning of a function definition, set to 1 if
125 a return statement with no argument is seen. */
127 int current_function_returns_null;
129 /* Set to 0 at beginning of a function definition, set to 1 if
130 a call to a noreturn function is seen. */
132 int current_function_returns_abnormally;
134 /* Set to nonzero by `grokdeclarator' for a function
135 whose return type is defaulted, if warnings for this are desired. */
137 static int warn_about_return_type;
139 /* Nonzero when the current toplevel function contains a declaration
140 of a nested function which is never defined. */
142 static bool undef_nested_function;
144 /* If non-zero, implicit "omp declare target" attribute is added into the
145 attribute lists. */
146 int current_omp_declare_target_attribute;
148 /* Each c_binding structure describes one binding of an identifier to
149 a decl. All the decls in a scope - irrespective of namespace - are
150 chained together by the ->prev field, which (as the name implies)
151 runs in reverse order. All the decls in a given namespace bound to
152 a given identifier are chained by the ->shadowed field, which runs
153 from inner to outer scopes.
155 The ->decl field usually points to a DECL node, but there are two
156 exceptions. In the namespace of type tags, the bound entity is a
157 RECORD_TYPE, UNION_TYPE, or ENUMERAL_TYPE node. If an undeclared
158 identifier is encountered, it is bound to error_mark_node to
159 suppress further errors about that identifier in the current
160 function.
162 The ->u.type field stores the type of the declaration in this scope;
163 if NULL, the type is the type of the ->decl field. This is only of
164 relevance for objects with external or internal linkage which may
165 be redeclared in inner scopes, forming composite types that only
166 persist for the duration of those scopes. In the external scope,
167 this stores the composite of all the types declared for this
168 object, visible or not. The ->inner_comp field (used only at file
169 scope) stores whether an incomplete array type at file scope was
170 completed at an inner scope to an array size other than 1.
172 The ->u.label field is used for labels. It points to a structure
173 which stores additional information used for warnings.
175 The depth field is copied from the scope structure that holds this
176 decl. It is used to preserve the proper ordering of the ->shadowed
177 field (see bind()) and also for a handful of special-case checks.
178 Finally, the invisible bit is true for a decl which should be
179 ignored for purposes of normal name lookup, and the nested bit is
180 true for a decl that's been bound a second time in an inner scope;
181 in all such cases, the binding in the outer scope will have its
182 invisible bit true. */
184 struct GTY((chain_next ("%h.prev"))) c_binding {
185 union GTY(()) { /* first so GTY desc can use decl */
186 tree GTY((tag ("0"))) type; /* the type in this scope */
187 struct c_label_vars * GTY((tag ("1"))) label; /* for warnings */
188 } GTY((desc ("TREE_CODE (%0.decl) == LABEL_DECL"))) u;
189 tree decl; /* the decl bound */
190 tree id; /* the identifier it's bound to */
191 struct c_binding *prev; /* the previous decl in this scope */
192 struct c_binding *shadowed; /* the innermost decl shadowed by this one */
193 unsigned int depth : 28; /* depth of this scope */
194 BOOL_BITFIELD invisible : 1; /* normal lookup should ignore this binding */
195 BOOL_BITFIELD nested : 1; /* do not set DECL_CONTEXT when popping */
196 BOOL_BITFIELD inner_comp : 1; /* incomplete array completed in inner scope */
197 BOOL_BITFIELD in_struct : 1; /* currently defined as struct field */
198 location_t locus; /* location for nested bindings */
200 #define B_IN_SCOPE(b1, b2) ((b1)->depth == (b2)->depth)
201 #define B_IN_CURRENT_SCOPE(b) ((b)->depth == current_scope->depth)
202 #define B_IN_FILE_SCOPE(b) ((b)->depth == 1 /*file_scope->depth*/)
203 #define B_IN_EXTERNAL_SCOPE(b) ((b)->depth == 0 /*external_scope->depth*/)
205 /* Each C symbol points to three linked lists of c_binding structures.
206 These describe the values of the identifier in the three different
207 namespaces defined by the language. */
209 struct GTY(()) lang_identifier {
210 struct c_common_identifier common_id;
211 struct c_binding *symbol_binding; /* vars, funcs, constants, typedefs */
212 struct c_binding *tag_binding; /* struct/union/enum tags */
213 struct c_binding *label_binding; /* labels */
216 /* Validate c-lang.c's assumptions. */
217 extern char C_SIZEOF_STRUCT_LANG_IDENTIFIER_isnt_accurate
218 [(sizeof(struct lang_identifier) == C_SIZEOF_STRUCT_LANG_IDENTIFIER) ? 1 : -1];
220 /* The binding oracle; see c-tree.h. */
221 void (*c_binding_oracle) (enum c_oracle_request, tree identifier);
223 /* This flag is set on an identifier if we have previously asked the
224 binding oracle for this identifier's symbol binding. */
225 #define I_SYMBOL_CHECKED(node) \
226 (TREE_LANG_FLAG_4 (IDENTIFIER_NODE_CHECK (node)))
228 static inline struct c_binding* *
229 i_symbol_binding (tree node)
231 struct lang_identifier *lid
232 = (struct lang_identifier *) IDENTIFIER_NODE_CHECK (node);
234 if (lid->symbol_binding == NULL
235 && c_binding_oracle != NULL
236 && !I_SYMBOL_CHECKED (node))
238 /* Set the "checked" flag first, to avoid infinite recursion
239 when the binding oracle calls back into gcc. */
240 I_SYMBOL_CHECKED (node) = 1;
241 c_binding_oracle (C_ORACLE_SYMBOL, node);
244 return &lid->symbol_binding;
247 #define I_SYMBOL_BINDING(node) (*i_symbol_binding (node))
249 #define I_SYMBOL_DECL(node) \
250 (I_SYMBOL_BINDING(node) ? I_SYMBOL_BINDING(node)->decl : 0)
252 /* This flag is set on an identifier if we have previously asked the
253 binding oracle for this identifier's tag binding. */
254 #define I_TAG_CHECKED(node) \
255 (TREE_LANG_FLAG_5 (IDENTIFIER_NODE_CHECK (node)))
257 static inline struct c_binding **
258 i_tag_binding (tree node)
260 struct lang_identifier *lid
261 = (struct lang_identifier *) IDENTIFIER_NODE_CHECK (node);
263 if (lid->tag_binding == NULL
264 && c_binding_oracle != NULL
265 && !I_TAG_CHECKED (node))
267 /* Set the "checked" flag first, to avoid infinite recursion
268 when the binding oracle calls back into gcc. */
269 I_TAG_CHECKED (node) = 1;
270 c_binding_oracle (C_ORACLE_TAG, node);
273 return &lid->tag_binding;
276 #define I_TAG_BINDING(node) (*i_tag_binding (node))
278 #define I_TAG_DECL(node) \
279 (I_TAG_BINDING(node) ? I_TAG_BINDING(node)->decl : 0)
281 /* This flag is set on an identifier if we have previously asked the
282 binding oracle for this identifier's label binding. */
283 #define I_LABEL_CHECKED(node) \
284 (TREE_LANG_FLAG_6 (IDENTIFIER_NODE_CHECK (node)))
286 static inline struct c_binding **
287 i_label_binding (tree node)
289 struct lang_identifier *lid
290 = (struct lang_identifier *) IDENTIFIER_NODE_CHECK (node);
292 if (lid->label_binding == NULL
293 && c_binding_oracle != NULL
294 && !I_LABEL_CHECKED (node))
296 /* Set the "checked" flag first, to avoid infinite recursion
297 when the binding oracle calls back into gcc. */
298 I_LABEL_CHECKED (node) = 1;
299 c_binding_oracle (C_ORACLE_LABEL, node);
302 return &lid->label_binding;
305 #define I_LABEL_BINDING(node) (*i_label_binding (node))
307 #define I_LABEL_DECL(node) \
308 (I_LABEL_BINDING(node) ? I_LABEL_BINDING(node)->decl : 0)
310 /* The resulting tree type. */
312 union GTY((desc ("TREE_CODE (&%h.generic) == IDENTIFIER_NODE"),
313 chain_next ("(union lang_tree_node *) c_tree_chain_next (&%h.generic)"))) lang_tree_node
315 union tree_node GTY ((tag ("0"),
316 desc ("tree_node_structure (&%h)")))
317 generic;
318 struct lang_identifier GTY ((tag ("1"))) identifier;
321 /* Track bindings and other things that matter for goto warnings. For
322 efficiency, we do not gather all the decls at the point of
323 definition. Instead, we point into the bindings structure. As
324 scopes are popped, we update these structures and gather the decls
325 that matter at that time. */
327 struct GTY(()) c_spot_bindings {
328 /* The currently open scope which holds bindings defined when the
329 label was defined or the goto statement was found. */
330 struct c_scope *scope;
331 /* The bindings in the scope field which were defined at the point
332 of the label or goto. This lets us look at older or newer
333 bindings in the scope, as appropriate. */
334 struct c_binding *bindings_in_scope;
335 /* The number of statement expressions that have started since this
336 label or goto statement was defined. This is zero if we are at
337 the same statement expression level. It is positive if we are in
338 a statement expression started since this spot. It is negative
339 if this spot was in a statement expression and we have left
340 it. */
341 int stmt_exprs;
342 /* Whether we started in a statement expression but are no longer in
343 it. This is set to true if stmt_exprs ever goes negative. */
344 bool left_stmt_expr;
347 /* This structure is used to keep track of bindings seen when a goto
348 statement is defined. This is only used if we see the goto
349 statement before we see the label. */
351 struct GTY(()) c_goto_bindings {
352 /* The location of the goto statement. */
353 location_t loc;
354 /* The bindings of the goto statement. */
355 struct c_spot_bindings goto_bindings;
358 typedef struct c_goto_bindings *c_goto_bindings_p;
360 /* The additional information we keep track of for a label binding.
361 These fields are updated as scopes are popped. */
363 struct GTY(()) c_label_vars {
364 /* The shadowed c_label_vars, when one label shadows another (which
365 can only happen using a __label__ declaration). */
366 struct c_label_vars *shadowed;
367 /* The bindings when the label was defined. */
368 struct c_spot_bindings label_bindings;
369 /* A list of decls that we care about: decls about which we should
370 warn if a goto branches to this label from later in the function.
371 Decls are added to this list as scopes are popped. We only add
372 the decls that matter. */
373 vec<tree, va_gc> *decls_in_scope;
374 /* A list of goto statements to this label. This is only used for
375 goto statements seen before the label was defined, so that we can
376 issue appropriate warnings for them. */
377 vec<c_goto_bindings_p, va_gc> *gotos;
380 /* Each c_scope structure describes the complete contents of one
381 scope. Four scopes are distinguished specially: the innermost or
382 current scope, the innermost function scope, the file scope (always
383 the second to outermost) and the outermost or external scope.
385 Most declarations are recorded in the current scope.
387 All normal label declarations are recorded in the innermost
388 function scope, as are bindings of undeclared identifiers to
389 error_mark_node. (GCC permits nested functions as an extension,
390 hence the 'innermost' qualifier.) Explicitly declared labels
391 (using the __label__ extension) appear in the current scope.
393 Being in the file scope (current_scope == file_scope) causes
394 special behavior in several places below. Also, under some
395 conditions the Objective-C front end records declarations in the
396 file scope even though that isn't the current scope.
398 All declarations with external linkage are recorded in the external
399 scope, even if they aren't visible there; this models the fact that
400 such declarations are visible to the entire program, and (with a
401 bit of cleverness, see pushdecl) allows diagnosis of some violations
402 of C99 6.2.2p7 and 6.2.7p2:
404 If, within the same translation unit, the same identifier appears
405 with both internal and external linkage, the behavior is
406 undefined.
408 All declarations that refer to the same object or function shall
409 have compatible type; otherwise, the behavior is undefined.
411 Initially only the built-in declarations, which describe compiler
412 intrinsic functions plus a subset of the standard library, are in
413 this scope.
415 The order of the blocks list matters, and it is frequently appended
416 to. To avoid having to walk all the way to the end of the list on
417 each insertion, or reverse the list later, we maintain a pointer to
418 the last list entry. (FIXME: It should be feasible to use a reversed
419 list here.)
421 The bindings list is strictly in reverse order of declarations;
422 pop_scope relies on this. */
425 struct GTY((chain_next ("%h.outer"))) c_scope {
426 /* The scope containing this one. */
427 struct c_scope *outer;
429 /* The next outermost function scope. */
430 struct c_scope *outer_function;
432 /* All bindings in this scope. */
433 struct c_binding *bindings;
435 /* For each scope (except the global one), a chain of BLOCK nodes
436 for all the scopes that were entered and exited one level down. */
437 tree blocks;
438 tree blocks_last;
440 /* The depth of this scope. Used to keep the ->shadowed chain of
441 bindings sorted innermost to outermost. */
442 unsigned int depth : 28;
444 /* True if we are currently filling this scope with parameter
445 declarations. */
446 BOOL_BITFIELD parm_flag : 1;
448 /* True if we saw [*] in this scope. Used to give an error messages
449 if these appears in a function definition. */
450 BOOL_BITFIELD had_vla_unspec : 1;
452 /* True if we already complained about forward parameter decls
453 in this scope. This prevents double warnings on
454 foo (int a; int b; ...) */
455 BOOL_BITFIELD warned_forward_parm_decls : 1;
457 /* True if this is the outermost block scope of a function body.
458 This scope contains the parameters, the local variables declared
459 in the outermost block, and all the labels (except those in
460 nested functions, or declared at block scope with __label__). */
461 BOOL_BITFIELD function_body : 1;
463 /* True means make a BLOCK for this scope no matter what. */
464 BOOL_BITFIELD keep : 1;
466 /* True means that an unsuffixed float constant is _Decimal64. */
467 BOOL_BITFIELD float_const_decimal64 : 1;
469 /* True if this scope has any label bindings. This is used to speed
470 up searching for labels when popping scopes, particularly since
471 labels are normally only found at function scope. */
472 BOOL_BITFIELD has_label_bindings : 1;
474 /* True if we should issue a warning if a goto statement crosses any
475 of the bindings. We still need to check the list of bindings to
476 find the specific ones we need to warn about. This is true if
477 decl_jump_unsafe would return true for any of the bindings. This
478 is used to avoid looping over all the bindings unnecessarily. */
479 BOOL_BITFIELD has_jump_unsafe_decl : 1;
482 /* The scope currently in effect. */
484 static GTY(()) struct c_scope *current_scope;
486 /* The innermost function scope. Ordinary (not explicitly declared)
487 labels, bindings to error_mark_node, and the lazily-created
488 bindings of __func__ and its friends get this scope. */
490 static GTY(()) struct c_scope *current_function_scope;
492 /* The C file scope. This is reset for each input translation unit. */
494 static GTY(()) struct c_scope *file_scope;
496 /* The outermost scope. This is used for all declarations with
497 external linkage, and only these, hence the name. */
499 static GTY(()) struct c_scope *external_scope;
501 /* A chain of c_scope structures awaiting reuse. */
503 static GTY((deletable)) struct c_scope *scope_freelist;
505 /* A chain of c_binding structures awaiting reuse. */
507 static GTY((deletable)) struct c_binding *binding_freelist;
509 /* Append VAR to LIST in scope SCOPE. */
510 #define SCOPE_LIST_APPEND(scope, list, decl) do { \
511 struct c_scope *s_ = (scope); \
512 tree d_ = (decl); \
513 if (s_->list##_last) \
514 BLOCK_CHAIN (s_->list##_last) = d_; \
515 else \
516 s_->list = d_; \
517 s_->list##_last = d_; \
518 } while (0)
520 /* Concatenate FROM in scope FSCOPE onto TO in scope TSCOPE. */
521 #define SCOPE_LIST_CONCAT(tscope, to, fscope, from) do { \
522 struct c_scope *t_ = (tscope); \
523 struct c_scope *f_ = (fscope); \
524 if (t_->to##_last) \
525 BLOCK_CHAIN (t_->to##_last) = f_->from; \
526 else \
527 t_->to = f_->from; \
528 t_->to##_last = f_->from##_last; \
529 } while (0)
531 /* A c_inline_static structure stores details of a static identifier
532 referenced in a definition of a function that may be an inline
533 definition if no subsequent declaration of that function uses
534 "extern" or does not use "inline". */
536 struct GTY((chain_next ("%h.next"))) c_inline_static {
537 /* The location for a diagnostic. */
538 location_t location;
540 /* The function that may be an inline definition. */
541 tree function;
543 /* The object or function referenced. */
544 tree static_decl;
546 /* What sort of reference this is. */
547 enum c_inline_static_type type;
549 /* The next such structure or NULL. */
550 struct c_inline_static *next;
553 /* List of static identifiers used or referenced in functions that may
554 be inline definitions. */
555 static GTY(()) struct c_inline_static *c_inline_statics;
557 /* True means unconditionally make a BLOCK for the next scope pushed. */
559 static bool keep_next_level_flag;
561 /* True means the next call to push_scope will be the outermost scope
562 of a function body, so do not push a new scope, merely cease
563 expecting parameter decls. */
565 static bool next_is_function_body;
567 /* A vector of pointers to c_binding structures. */
569 typedef struct c_binding *c_binding_ptr;
571 /* Information that we keep for a struct or union while it is being
572 parsed. */
574 struct c_struct_parse_info
576 /* If warn_cxx_compat, a list of types defined within this
577 struct. */
578 auto_vec<tree> struct_types;
579 /* If warn_cxx_compat, a list of field names which have bindings,
580 and which are defined in this struct, but which are not defined
581 in any enclosing struct. This is used to clear the in_struct
582 field of the c_bindings structure. */
583 auto_vec<c_binding_ptr> fields;
584 /* If warn_cxx_compat, a list of typedef names used when defining
585 fields in this struct. */
586 auto_vec<tree> typedefs_seen;
589 /* Information for the struct or union currently being parsed, or
590 NULL if not parsing a struct or union. */
591 static struct c_struct_parse_info *struct_parse_info;
593 /* Forward declarations. */
594 static tree lookup_name_in_scope (tree, struct c_scope *);
595 static tree c_make_fname_decl (location_t, tree, int);
596 static tree grokdeclarator (const struct c_declarator *,
597 struct c_declspecs *,
598 enum decl_context, bool, tree *, tree *, tree *,
599 bool *, enum deprecated_states);
600 static tree grokparms (struct c_arg_info *, bool);
601 static void layout_array_type (tree);
602 static void warn_defaults_to (location_t, int, const char *, ...)
603 ATTRIBUTE_GCC_DIAG(3,4);
605 /* T is a statement. Add it to the statement-tree. This is the
606 C/ObjC version--C++ has a slightly different version of this
607 function. */
609 tree
610 add_stmt (tree t)
612 enum tree_code code = TREE_CODE (t);
614 if (CAN_HAVE_LOCATION_P (t) && code != LABEL_EXPR)
616 if (!EXPR_HAS_LOCATION (t))
617 SET_EXPR_LOCATION (t, input_location);
620 if (code == LABEL_EXPR || code == CASE_LABEL_EXPR)
621 STATEMENT_LIST_HAS_LABEL (cur_stmt_list) = 1;
623 /* Add T to the statement-tree. Non-side-effect statements need to be
624 recorded during statement expressions. */
625 if (!building_stmt_list_p ())
626 push_stmt_list ();
627 append_to_statement_list_force (t, &cur_stmt_list);
629 return t;
632 /* Build a pointer type using the default pointer mode. */
634 static tree
635 c_build_pointer_type (tree to_type)
637 addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
638 : TYPE_ADDR_SPACE (to_type);
639 machine_mode pointer_mode;
641 if (as != ADDR_SPACE_GENERIC || c_default_pointer_mode == VOIDmode)
642 pointer_mode = targetm.addr_space.pointer_mode (as);
643 else
644 pointer_mode = c_default_pointer_mode;
645 return build_pointer_type_for_mode (to_type, pointer_mode, false);
649 /* Return true if we will want to say something if a goto statement
650 crosses DECL. */
652 static bool
653 decl_jump_unsafe (tree decl)
655 if (error_operand_p (decl))
656 return false;
658 /* Always warn about crossing variably modified types. */
659 if ((VAR_P (decl) || TREE_CODE (decl) == TYPE_DECL)
660 && variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
661 return true;
663 /* Otherwise, only warn if -Wgoto-misses-init and this is an
664 initialized automatic decl. */
665 if (warn_jump_misses_init
666 && VAR_P (decl)
667 && !TREE_STATIC (decl)
668 && DECL_INITIAL (decl) != NULL_TREE)
669 return true;
671 return false;
675 void
676 c_print_identifier (FILE *file, tree node, int indent)
678 void (*save) (enum c_oracle_request, tree identifier);
680 /* Temporarily hide any binding oracle. Without this, calls to
681 debug_tree from the debugger will end up calling into the oracle,
682 making for a confusing debug session. As the oracle isn't needed
683 here for normal operation, it's simplest to suppress it. */
684 save = c_binding_oracle;
685 c_binding_oracle = NULL;
687 print_node (file, "symbol", I_SYMBOL_DECL (node), indent + 4);
688 print_node (file, "tag", I_TAG_DECL (node), indent + 4);
689 print_node (file, "label", I_LABEL_DECL (node), indent + 4);
690 if (C_IS_RESERVED_WORD (node) && C_RID_CODE (node) != RID_CXX_COMPAT_WARN)
692 tree rid = ridpointers[C_RID_CODE (node)];
693 indent_to (file, indent + 4);
694 fprintf (file, "rid " HOST_PTR_PRINTF " \"%s\"",
695 (void *) rid, IDENTIFIER_POINTER (rid));
698 c_binding_oracle = save;
701 /* Establish a binding between NAME, an IDENTIFIER_NODE, and DECL,
702 which may be any of several kinds of DECL or TYPE or error_mark_node,
703 in the scope SCOPE. */
704 static void
705 bind (tree name, tree decl, struct c_scope *scope, bool invisible,
706 bool nested, location_t locus)
708 struct c_binding *b, **here;
710 if (binding_freelist)
712 b = binding_freelist;
713 binding_freelist = b->prev;
715 else
716 b = ggc_alloc<c_binding> ();
718 b->shadowed = 0;
719 b->decl = decl;
720 b->id = name;
721 b->depth = scope->depth;
722 b->invisible = invisible;
723 b->nested = nested;
724 b->inner_comp = 0;
725 b->in_struct = 0;
726 b->locus = locus;
728 b->u.type = NULL;
730 b->prev = scope->bindings;
731 scope->bindings = b;
733 if (decl_jump_unsafe (decl))
734 scope->has_jump_unsafe_decl = 1;
736 if (!name)
737 return;
739 switch (TREE_CODE (decl))
741 case LABEL_DECL: here = &I_LABEL_BINDING (name); break;
742 case ENUMERAL_TYPE:
743 case UNION_TYPE:
744 case RECORD_TYPE: here = &I_TAG_BINDING (name); break;
745 case VAR_DECL:
746 case FUNCTION_DECL:
747 case TYPE_DECL:
748 case CONST_DECL:
749 case PARM_DECL:
750 case ERROR_MARK: here = &I_SYMBOL_BINDING (name); break;
752 default:
753 gcc_unreachable ();
756 /* Locate the appropriate place in the chain of shadowed decls
757 to insert this binding. Normally, scope == current_scope and
758 this does nothing. */
759 while (*here && (*here)->depth > scope->depth)
760 here = &(*here)->shadowed;
762 b->shadowed = *here;
763 *here = b;
766 /* Clear the binding structure B, stick it on the binding_freelist,
767 and return the former value of b->prev. This is used by pop_scope
768 and get_parm_info to iterate destructively over all the bindings
769 from a given scope. */
770 static struct c_binding *
771 free_binding_and_advance (struct c_binding *b)
773 struct c_binding *prev = b->prev;
775 memset (b, 0, sizeof (struct c_binding));
776 b->prev = binding_freelist;
777 binding_freelist = b;
779 return prev;
782 /* Bind a label. Like bind, but skip fields which aren't used for
783 labels, and add the LABEL_VARS value. */
784 static void
785 bind_label (tree name, tree label, struct c_scope *scope,
786 struct c_label_vars *label_vars)
788 struct c_binding *b;
790 bind (name, label, scope, /*invisible=*/false, /*nested=*/false,
791 UNKNOWN_LOCATION);
793 scope->has_label_bindings = true;
795 b = scope->bindings;
796 gcc_assert (b->decl == label);
797 label_vars->shadowed = b->u.label;
798 b->u.label = label_vars;
801 /* Hook called at end of compilation to assume 1 elt
802 for a file-scope tentative array defn that wasn't complete before. */
804 void
805 c_finish_incomplete_decl (tree decl)
807 if (VAR_P (decl))
809 tree type = TREE_TYPE (decl);
810 if (type != error_mark_node
811 && TREE_CODE (type) == ARRAY_TYPE
812 && !DECL_EXTERNAL (decl)
813 && TYPE_DOMAIN (type) == NULL_TREE)
815 warning_at (DECL_SOURCE_LOCATION (decl),
816 0, "array %q+D assumed to have one element", decl);
818 complete_array_type (&TREE_TYPE (decl), NULL_TREE, true);
820 relayout_decl (decl);
825 /* Record that inline function FUNC contains a reference (location
826 LOC) to static DECL (file-scope or function-local according to
827 TYPE). */
829 void
830 record_inline_static (location_t loc, tree func, tree decl,
831 enum c_inline_static_type type)
833 c_inline_static *csi = ggc_alloc<c_inline_static> ();
834 csi->location = loc;
835 csi->function = func;
836 csi->static_decl = decl;
837 csi->type = type;
838 csi->next = c_inline_statics;
839 c_inline_statics = csi;
842 /* Check for references to static declarations in inline functions at
843 the end of the translation unit and diagnose them if the functions
844 are still inline definitions. */
846 static void
847 check_inline_statics (void)
849 struct c_inline_static *csi;
850 for (csi = c_inline_statics; csi; csi = csi->next)
852 if (DECL_EXTERNAL (csi->function))
853 switch (csi->type)
855 case csi_internal:
856 pedwarn (csi->location, 0,
857 "%qD is static but used in inline function %qD "
858 "which is not static", csi->static_decl, csi->function);
859 break;
860 case csi_modifiable:
861 pedwarn (csi->location, 0,
862 "%q+D is static but declared in inline function %qD "
863 "which is not static", csi->static_decl, csi->function);
864 break;
865 default:
866 gcc_unreachable ();
869 c_inline_statics = NULL;
872 /* Fill in a c_spot_bindings structure. If DEFINING is true, set it
873 for the current state, otherwise set it to uninitialized. */
875 static void
876 set_spot_bindings (struct c_spot_bindings *p, bool defining)
878 if (defining)
880 p->scope = current_scope;
881 p->bindings_in_scope = current_scope->bindings;
883 else
885 p->scope = NULL;
886 p->bindings_in_scope = NULL;
888 p->stmt_exprs = 0;
889 p->left_stmt_expr = false;
892 /* Update spot bindings P as we pop out of SCOPE. Return true if we
893 should push decls for a label. */
895 static bool
896 update_spot_bindings (struct c_scope *scope, struct c_spot_bindings *p)
898 if (p->scope != scope)
900 /* This label or goto is defined in some other scope, or it is a
901 label which is not yet defined. There is nothing to
902 update. */
903 return false;
906 /* Adjust the spot bindings to refer to the bindings already defined
907 in the enclosing scope. */
908 p->scope = scope->outer;
909 p->bindings_in_scope = p->scope->bindings;
911 return true;
914 /* The Objective-C front-end often needs to determine the current scope. */
916 void *
917 objc_get_current_scope (void)
919 return current_scope;
922 /* The following function is used only by Objective-C. It needs to live here
923 because it accesses the innards of c_scope. */
925 void
926 objc_mark_locals_volatile (void *enclosing_blk)
928 struct c_scope *scope;
929 struct c_binding *b;
931 for (scope = current_scope;
932 scope && scope != enclosing_blk;
933 scope = scope->outer)
935 for (b = scope->bindings; b; b = b->prev)
936 objc_volatilize_decl (b->decl);
938 /* Do not climb up past the current function. */
939 if (scope->function_body)
940 break;
944 /* Return true if we are in the global binding level. */
946 bool
947 global_bindings_p (void)
949 return current_scope == file_scope;
952 void
953 keep_next_level (void)
955 keep_next_level_flag = true;
958 /* Set the flag for the FLOAT_CONST_DECIMAL64 pragma being ON. */
960 void
961 set_float_const_decimal64 (void)
963 current_scope->float_const_decimal64 = true;
966 /* Clear the flag for the FLOAT_CONST_DECIMAL64 pragma. */
968 void
969 clear_float_const_decimal64 (void)
971 current_scope->float_const_decimal64 = false;
974 /* Return nonzero if an unsuffixed float constant is _Decimal64. */
976 bool
977 float_const_decimal64_p (void)
979 return current_scope->float_const_decimal64;
982 /* Identify this scope as currently being filled with parameters. */
984 void
985 declare_parm_level (void)
987 current_scope->parm_flag = true;
990 void
991 push_scope (void)
993 if (next_is_function_body)
995 /* This is the transition from the parameters to the top level
996 of the function body. These are the same scope
997 (C99 6.2.1p4,6) so we do not push another scope structure.
998 next_is_function_body is set only by store_parm_decls, which
999 in turn is called when and only when we are about to
1000 encounter the opening curly brace for the function body.
1002 The outermost block of a function always gets a BLOCK node,
1003 because the debugging output routines expect that each
1004 function has at least one BLOCK. */
1005 current_scope->parm_flag = false;
1006 current_scope->function_body = true;
1007 current_scope->keep = true;
1008 current_scope->outer_function = current_function_scope;
1009 current_function_scope = current_scope;
1011 keep_next_level_flag = false;
1012 next_is_function_body = false;
1014 /* The FLOAT_CONST_DECIMAL64 pragma applies to nested scopes. */
1015 if (current_scope->outer)
1016 current_scope->float_const_decimal64
1017 = current_scope->outer->float_const_decimal64;
1018 else
1019 current_scope->float_const_decimal64 = false;
1021 else
1023 struct c_scope *scope;
1024 if (scope_freelist)
1026 scope = scope_freelist;
1027 scope_freelist = scope->outer;
1029 else
1030 scope = ggc_cleared_alloc<c_scope> ();
1032 /* The FLOAT_CONST_DECIMAL64 pragma applies to nested scopes. */
1033 if (current_scope)
1034 scope->float_const_decimal64 = current_scope->float_const_decimal64;
1035 else
1036 scope->float_const_decimal64 = false;
1038 scope->keep = keep_next_level_flag;
1039 scope->outer = current_scope;
1040 scope->depth = current_scope ? (current_scope->depth + 1) : 0;
1042 /* Check for scope depth overflow. Unlikely (2^28 == 268,435,456) but
1043 possible. */
1044 if (current_scope && scope->depth == 0)
1046 scope->depth--;
1047 sorry ("GCC supports only %u nested scopes", scope->depth);
1050 current_scope = scope;
1051 keep_next_level_flag = false;
1055 /* This is called when we are leaving SCOPE. For each label defined
1056 in SCOPE, add any appropriate decls to its decls_in_scope fields.
1057 These are the decls whose initialization will be skipped by a goto
1058 later in the function. */
1060 static void
1061 update_label_decls (struct c_scope *scope)
1063 struct c_scope *s;
1065 s = scope;
1066 while (s != NULL)
1068 if (s->has_label_bindings)
1070 struct c_binding *b;
1072 for (b = s->bindings; b != NULL; b = b->prev)
1074 struct c_label_vars *label_vars;
1075 struct c_binding *b1;
1076 bool hjud;
1077 unsigned int ix;
1078 struct c_goto_bindings *g;
1080 if (TREE_CODE (b->decl) != LABEL_DECL)
1081 continue;
1082 label_vars = b->u.label;
1084 b1 = label_vars->label_bindings.bindings_in_scope;
1085 if (label_vars->label_bindings.scope == NULL)
1086 hjud = false;
1087 else
1088 hjud = label_vars->label_bindings.scope->has_jump_unsafe_decl;
1089 if (update_spot_bindings (scope, &label_vars->label_bindings))
1091 /* This label is defined in this scope. */
1092 if (hjud)
1094 for (; b1 != NULL; b1 = b1->prev)
1096 /* A goto from later in the function to this
1097 label will never see the initialization
1098 of B1, if any. Save it to issue a
1099 warning if needed. */
1100 if (decl_jump_unsafe (b1->decl))
1101 vec_safe_push(label_vars->decls_in_scope, b1->decl);
1106 /* Update the bindings of any goto statements associated
1107 with this label. */
1108 FOR_EACH_VEC_SAFE_ELT (label_vars->gotos, ix, g)
1109 update_spot_bindings (scope, &g->goto_bindings);
1113 /* Don't search beyond the current function. */
1114 if (s == current_function_scope)
1115 break;
1117 s = s->outer;
1121 /* Set the TYPE_CONTEXT of all of TYPE's variants to CONTEXT. */
1123 static void
1124 set_type_context (tree type, tree context)
1126 for (type = TYPE_MAIN_VARIANT (type); type;
1127 type = TYPE_NEXT_VARIANT (type))
1128 TYPE_CONTEXT (type) = context;
1131 /* Exit a scope. Restore the state of the identifier-decl mappings
1132 that were in effect when this scope was entered. Return a BLOCK
1133 node containing all the DECLs in this scope that are of interest
1134 to debug info generation. */
1136 tree
1137 pop_scope (void)
1139 struct c_scope *scope = current_scope;
1140 tree block, context, p;
1141 struct c_binding *b;
1143 bool functionbody = scope->function_body;
1144 bool keep = functionbody || scope->keep || scope->bindings;
1146 update_label_decls (scope);
1148 /* If appropriate, create a BLOCK to record the decls for the life
1149 of this function. */
1150 block = NULL_TREE;
1151 if (keep)
1153 block = make_node (BLOCK);
1154 BLOCK_SUBBLOCKS (block) = scope->blocks;
1155 TREE_USED (block) = 1;
1157 /* In each subblock, record that this is its superior. */
1158 for (p = scope->blocks; p; p = BLOCK_CHAIN (p))
1159 BLOCK_SUPERCONTEXT (p) = block;
1161 BLOCK_VARS (block) = NULL_TREE;
1164 /* The TYPE_CONTEXTs for all of the tagged types belonging to this
1165 scope must be set so that they point to the appropriate
1166 construct, i.e. either to the current FUNCTION_DECL node, or
1167 else to the BLOCK node we just constructed.
1169 Note that for tagged types whose scope is just the formal
1170 parameter list for some function type specification, we can't
1171 properly set their TYPE_CONTEXTs here, because we don't have a
1172 pointer to the appropriate FUNCTION_TYPE node readily available
1173 to us. For those cases, the TYPE_CONTEXTs of the relevant tagged
1174 type nodes get set in `grokdeclarator' as soon as we have created
1175 the FUNCTION_TYPE node which will represent the "scope" for these
1176 "parameter list local" tagged types. */
1177 if (scope->function_body)
1178 context = current_function_decl;
1179 else if (scope == file_scope)
1181 tree file_decl
1182 = build_translation_unit_decl (get_identifier (main_input_filename));
1183 context = file_decl;
1184 debug_hooks->register_main_translation_unit (file_decl);
1186 else
1187 context = block;
1189 /* Clear all bindings in this scope. */
1190 for (b = scope->bindings; b; b = free_binding_and_advance (b))
1192 p = b->decl;
1193 switch (TREE_CODE (p))
1195 case LABEL_DECL:
1196 /* Warnings for unused labels, errors for undefined labels. */
1197 if (TREE_USED (p) && !DECL_INITIAL (p))
1199 error ("label %q+D used but not defined", p);
1200 DECL_INITIAL (p) = error_mark_node;
1202 else
1203 warn_for_unused_label (p);
1205 /* Labels go in BLOCK_VARS. */
1206 DECL_CHAIN (p) = BLOCK_VARS (block);
1207 BLOCK_VARS (block) = p;
1208 gcc_assert (I_LABEL_BINDING (b->id) == b);
1209 I_LABEL_BINDING (b->id) = b->shadowed;
1211 /* Also pop back to the shadowed label_vars. */
1212 release_tree_vector (b->u.label->decls_in_scope);
1213 b->u.label = b->u.label->shadowed;
1214 break;
1216 case ENUMERAL_TYPE:
1217 case UNION_TYPE:
1218 case RECORD_TYPE:
1219 set_type_context (p, context);
1221 /* Types may not have tag-names, in which case the type
1222 appears in the bindings list with b->id NULL. */
1223 if (b->id)
1225 gcc_assert (I_TAG_BINDING (b->id) == b);
1226 I_TAG_BINDING (b->id) = b->shadowed;
1228 break;
1230 case FUNCTION_DECL:
1231 /* Propagate TREE_ADDRESSABLE from nested functions to their
1232 containing functions. */
1233 if (!TREE_ASM_WRITTEN (p)
1234 && DECL_INITIAL (p) != NULL_TREE
1235 && TREE_ADDRESSABLE (p)
1236 && DECL_ABSTRACT_ORIGIN (p) != NULL_TREE
1237 && DECL_ABSTRACT_ORIGIN (p) != p)
1238 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (p)) = 1;
1239 if (!DECL_EXTERNAL (p)
1240 && !DECL_INITIAL (p)
1241 && scope != file_scope
1242 && scope != external_scope)
1244 error ("nested function %q+D declared but never defined", p);
1245 undef_nested_function = true;
1247 else if (DECL_DECLARED_INLINE_P (p)
1248 && TREE_PUBLIC (p)
1249 && !DECL_INITIAL (p))
1251 /* C99 6.7.4p6: "a function with external linkage... declared
1252 with an inline function specifier ... shall also be defined
1253 in the same translation unit." */
1254 if (!flag_gnu89_inline
1255 && !lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (p))
1256 && scope != external_scope)
1257 pedwarn (input_location, 0,
1258 "inline function %q+D declared but never defined", p);
1259 DECL_EXTERNAL (p) = 1;
1262 goto common_symbol;
1264 case VAR_DECL:
1265 /* Warnings for unused variables. */
1266 if ((!TREE_USED (p) || !DECL_READ_P (p))
1267 && !TREE_NO_WARNING (p)
1268 && !DECL_IN_SYSTEM_HEADER (p)
1269 && DECL_NAME (p)
1270 && !DECL_ARTIFICIAL (p)
1271 && scope != file_scope
1272 && scope != external_scope)
1274 if (!TREE_USED (p))
1275 warning (OPT_Wunused_variable, "unused variable %q+D", p);
1276 else if (DECL_CONTEXT (p) == current_function_decl)
1277 warning_at (DECL_SOURCE_LOCATION (p),
1278 OPT_Wunused_but_set_variable,
1279 "variable %qD set but not used", p);
1282 if (b->inner_comp)
1284 error ("type of array %q+D completed incompatibly with"
1285 " implicit initialization", p);
1288 /* Fall through. */
1289 case TYPE_DECL:
1290 case CONST_DECL:
1291 common_symbol:
1292 /* All of these go in BLOCK_VARS, but only if this is the
1293 binding in the home scope. */
1294 if (!b->nested)
1296 DECL_CHAIN (p) = BLOCK_VARS (block);
1297 BLOCK_VARS (block) = p;
1299 else if (VAR_OR_FUNCTION_DECL_P (p) && scope != file_scope)
1301 /* For block local externs add a special
1302 DECL_EXTERNAL decl for debug info generation. */
1303 tree extp = copy_node (p);
1305 DECL_EXTERNAL (extp) = 1;
1306 TREE_STATIC (extp) = 0;
1307 TREE_PUBLIC (extp) = 1;
1308 DECL_INITIAL (extp) = NULL_TREE;
1309 DECL_LANG_SPECIFIC (extp) = NULL;
1310 DECL_CONTEXT (extp) = current_function_decl;
1311 if (TREE_CODE (p) == FUNCTION_DECL)
1313 DECL_RESULT (extp) = NULL_TREE;
1314 DECL_SAVED_TREE (extp) = NULL_TREE;
1315 DECL_STRUCT_FUNCTION (extp) = NULL;
1317 if (b->locus != UNKNOWN_LOCATION)
1318 DECL_SOURCE_LOCATION (extp) = b->locus;
1319 DECL_CHAIN (extp) = BLOCK_VARS (block);
1320 BLOCK_VARS (block) = extp;
1322 /* If this is the file scope set DECL_CONTEXT of each decl to
1323 the TRANSLATION_UNIT_DECL. This makes same_translation_unit_p
1324 work. */
1325 if (scope == file_scope)
1327 DECL_CONTEXT (p) = context;
1328 if (TREE_CODE (p) == TYPE_DECL
1329 && TREE_TYPE (p) != error_mark_node)
1330 set_type_context (TREE_TYPE (p), context);
1333 gcc_fallthrough ();
1334 /* Parameters go in DECL_ARGUMENTS, not BLOCK_VARS, and have
1335 already been put there by store_parm_decls. Unused-
1336 parameter warnings are handled by function.c.
1337 error_mark_node obviously does not go in BLOCK_VARS and
1338 does not get unused-variable warnings. */
1339 case PARM_DECL:
1340 case ERROR_MARK:
1341 /* It is possible for a decl not to have a name. We get
1342 here with b->id NULL in this case. */
1343 if (b->id)
1345 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
1346 I_SYMBOL_BINDING (b->id) = b->shadowed;
1347 if (b->shadowed && b->shadowed->u.type)
1348 TREE_TYPE (b->shadowed->decl) = b->shadowed->u.type;
1350 break;
1352 default:
1353 gcc_unreachable ();
1358 /* Dispose of the block that we just made inside some higher level. */
1359 if ((scope->function_body || scope == file_scope) && context)
1361 DECL_INITIAL (context) = block;
1362 BLOCK_SUPERCONTEXT (block) = context;
1364 else if (scope->outer)
1366 if (block)
1367 SCOPE_LIST_APPEND (scope->outer, blocks, block);
1368 /* If we did not make a block for the scope just exited, any
1369 blocks made for inner scopes must be carried forward so they
1370 will later become subblocks of something else. */
1371 else if (scope->blocks)
1372 SCOPE_LIST_CONCAT (scope->outer, blocks, scope, blocks);
1375 /* Pop the current scope, and free the structure for reuse. */
1376 current_scope = scope->outer;
1377 if (scope->function_body)
1378 current_function_scope = scope->outer_function;
1380 memset (scope, 0, sizeof (struct c_scope));
1381 scope->outer = scope_freelist;
1382 scope_freelist = scope;
1384 return block;
1387 void
1388 push_file_scope (void)
1390 tree decl;
1392 if (file_scope)
1393 return;
1395 push_scope ();
1396 file_scope = current_scope;
1398 start_fname_decls ();
1400 for (decl = visible_builtins; decl; decl = DECL_CHAIN (decl))
1401 bind (DECL_NAME (decl), decl, file_scope,
1402 /*invisible=*/false, /*nested=*/true, DECL_SOURCE_LOCATION (decl));
1405 void
1406 pop_file_scope (void)
1408 /* In case there were missing closebraces, get us back to the global
1409 binding level. */
1410 while (current_scope != file_scope)
1411 pop_scope ();
1413 /* __FUNCTION__ is defined at file scope (""). This
1414 call may not be necessary as my tests indicate it
1415 still works without it. */
1416 finish_fname_decls ();
1418 check_inline_statics ();
1420 /* This is the point to write out a PCH if we're doing that.
1421 In that case we do not want to do anything else. */
1422 if (pch_file)
1424 c_common_write_pch ();
1425 /* Ensure even the callers don't try to finalize the CU. */
1426 flag_syntax_only = 1;
1427 return;
1430 /* Pop off the file scope and close this translation unit. */
1431 pop_scope ();
1432 file_scope = 0;
1434 maybe_apply_pending_pragma_weaks ();
1437 /* Adjust the bindings for the start of a statement expression. */
1439 void
1440 c_bindings_start_stmt_expr (struct c_spot_bindings* switch_bindings)
1442 struct c_scope *scope;
1444 for (scope = current_scope; scope != NULL; scope = scope->outer)
1446 struct c_binding *b;
1448 if (!scope->has_label_bindings)
1449 continue;
1451 for (b = scope->bindings; b != NULL; b = b->prev)
1453 struct c_label_vars *label_vars;
1454 unsigned int ix;
1455 struct c_goto_bindings *g;
1457 if (TREE_CODE (b->decl) != LABEL_DECL)
1458 continue;
1459 label_vars = b->u.label;
1460 ++label_vars->label_bindings.stmt_exprs;
1461 FOR_EACH_VEC_SAFE_ELT (label_vars->gotos, ix, g)
1462 ++g->goto_bindings.stmt_exprs;
1466 if (switch_bindings != NULL)
1467 ++switch_bindings->stmt_exprs;
1470 /* Adjust the bindings for the end of a statement expression. */
1472 void
1473 c_bindings_end_stmt_expr (struct c_spot_bindings *switch_bindings)
1475 struct c_scope *scope;
1477 for (scope = current_scope; scope != NULL; scope = scope->outer)
1479 struct c_binding *b;
1481 if (!scope->has_label_bindings)
1482 continue;
1484 for (b = scope->bindings; b != NULL; b = b->prev)
1486 struct c_label_vars *label_vars;
1487 unsigned int ix;
1488 struct c_goto_bindings *g;
1490 if (TREE_CODE (b->decl) != LABEL_DECL)
1491 continue;
1492 label_vars = b->u.label;
1493 --label_vars->label_bindings.stmt_exprs;
1494 if (label_vars->label_bindings.stmt_exprs < 0)
1496 label_vars->label_bindings.left_stmt_expr = true;
1497 label_vars->label_bindings.stmt_exprs = 0;
1499 FOR_EACH_VEC_SAFE_ELT (label_vars->gotos, ix, g)
1501 --g->goto_bindings.stmt_exprs;
1502 if (g->goto_bindings.stmt_exprs < 0)
1504 g->goto_bindings.left_stmt_expr = true;
1505 g->goto_bindings.stmt_exprs = 0;
1511 if (switch_bindings != NULL)
1513 --switch_bindings->stmt_exprs;
1514 gcc_assert (switch_bindings->stmt_exprs >= 0);
1518 /* Push a definition or a declaration of struct, union or enum tag "name".
1519 "type" should be the type node.
1520 We assume that the tag "name" is not already defined, and has a location
1521 of LOC.
1523 Note that the definition may really be just a forward reference.
1524 In that case, the TYPE_SIZE will be zero. */
1526 static void
1527 pushtag (location_t loc, tree name, tree type)
1529 /* Record the identifier as the type's name if it has none. */
1530 if (name && !TYPE_NAME (type))
1531 TYPE_NAME (type) = name;
1532 bind (name, type, current_scope, /*invisible=*/false, /*nested=*/false, loc);
1534 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
1535 tagged type we just added to the current scope. This fake
1536 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
1537 to output a representation of a tagged type, and it also gives
1538 us a convenient place to record the "scope start" address for the
1539 tagged type. */
1541 TYPE_STUB_DECL (type) = pushdecl (build_decl (loc,
1542 TYPE_DECL, NULL_TREE, type));
1544 /* An approximation for now, so we can tell this is a function-scope tag.
1545 This will be updated in pop_scope. */
1546 TYPE_CONTEXT (type) = DECL_CONTEXT (TYPE_STUB_DECL (type));
1548 if (warn_cxx_compat && name != NULL_TREE)
1550 struct c_binding *b = I_SYMBOL_BINDING (name);
1552 if (b != NULL
1553 && b->decl != NULL_TREE
1554 && TREE_CODE (b->decl) == TYPE_DECL
1555 && (B_IN_CURRENT_SCOPE (b)
1556 || (current_scope == file_scope && B_IN_EXTERNAL_SCOPE (b)))
1557 && (TYPE_MAIN_VARIANT (TREE_TYPE (b->decl))
1558 != TYPE_MAIN_VARIANT (type)))
1560 if (warning_at (loc, OPT_Wc___compat,
1561 ("using %qD as both a typedef and a tag is "
1562 "invalid in C++"), b->decl)
1563 && 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. */
1572 void
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. */
1585 void
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. */
1594 scope = file_scope;
1595 DECL_EXTERNAL (decl) = 1;
1596 TREE_PUBLIC (decl) = 1;
1598 else if (is_global)
1600 /* Also bind it into the external scope. */
1601 bind (DECL_NAME (decl), decl, external_scope, true, false, loc);
1602 nested = true;
1603 scope = file_scope;
1604 DECL_EXTERNAL (decl) = 1;
1605 TREE_PUBLIC (decl) = 1;
1607 else
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. */
1621 static tree
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))
1633 return NULL_TREE;
1635 oldargs = TYPE_ARG_TYPES (oldtype);
1636 newargs = TYPE_ARG_TYPES (newtype);
1637 tryargs = newargs;
1639 while (oldargs || newargs)
1641 if (!oldargs
1642 || !newargs
1643 || !TREE_VALUE (oldargs)
1644 || !TREE_VALUE (newargs)
1645 || TYPE_MODE (TREE_VALUE (oldargs))
1646 != TYPE_MODE (TREE_VALUE (newargs)))
1647 return NULL_TREE;
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
1671 diagnostics. */
1672 static void
1673 diagnose_arglist_conflict (tree newdecl, tree olddecl,
1674 tree newtype, tree oldtype)
1676 tree t;
1678 if (TREE_CODE (olddecl) != FUNCTION_DECL
1679 || !comptypes (TREE_TYPE (oldtype), TREE_TYPE (newtype))
1680 || !((!prototype_p (oldtype) && DECL_INITIAL (olddecl) == NULL_TREE)
1681 || (!prototype_p (newtype) && DECL_INITIAL (newdecl) == NULL_TREE)))
1682 return;
1684 t = TYPE_ARG_TYPES (oldtype);
1685 if (t == NULL_TREE)
1686 t = TYPE_ARG_TYPES (newtype);
1687 for (; t; t = TREE_CHAIN (t))
1689 tree type = TREE_VALUE (t);
1691 if (TREE_CHAIN (t) == NULL_TREE
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");
1696 break;
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");
1703 break;
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. */
1712 static bool
1713 validate_proto_after_old_defn (tree newdecl, tree newtype, tree oldtype)
1715 tree newargs, oldargs;
1716 int i;
1718 #define END_OF_ARGLIST(t) ((t) == void_type_node)
1720 oldargs = TYPE_ACTUAL_ARG_TYPES (oldtype);
1721 newargs = TYPE_ARG_TYPES (newtype);
1722 i = 1;
1724 for (;;)
1726 tree oldargtype = TREE_VALUE (oldargs);
1727 tree newargtype = TREE_VALUE (newargs);
1729 if (oldargtype == error_mark_node || newargtype == error_mark_node)
1730 return false;
1732 oldargtype = (TYPE_ATOMIC (oldargtype)
1733 ? c_build_qualified_type (TYPE_MAIN_VARIANT (oldargtype),
1734 TYPE_QUAL_ATOMIC)
1735 : TYPE_MAIN_VARIANT (oldargtype));
1736 newargtype = (TYPE_ATOMIC (newargtype)
1737 ? c_build_qualified_type (TYPE_MAIN_VARIANT (newargtype),
1738 TYPE_QUAL_ATOMIC)
1739 : TYPE_MAIN_VARIANT (newargtype));
1741 if (END_OF_ARGLIST (oldargtype) && END_OF_ARGLIST (newargtype))
1742 break;
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);
1750 return false;
1752 else if (END_OF_ARGLIST (newargtype))
1754 error ("prototype for %q+D declares fewer arguments "
1755 "than previous old-style definition", newdecl);
1756 return false;
1759 /* Type for passing arg must be consistent with that declared
1760 for the arg. */
1761 else if (!comptypes (oldargtype, newargtype))
1763 error ("prototype for %q+D declares argument %d"
1764 " with incompatible type",
1765 newdecl, i);
1766 return false;
1769 oldargs = TREE_CHAIN (oldargs);
1770 newargs = TREE_CHAIN (newargs);
1771 i++;
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",
1777 newdecl);
1778 return true;
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
1784 function DIAG. */
1785 static void
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);
1795 else
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. */
1807 static bool
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;
1814 bool retval = true;
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)
1822 return false;
1823 *oldtypep = oldtype = TREE_TYPE (olddecl);
1824 *newtypep = newtype = TREE_TYPE (newdecl);
1825 if (oldtype == error_mark_node || newtype == error_mark_node)
1826 return false;
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 (OPT_Wbuiltin_declaration_mismatch,
1841 "built-in function %q+D declared as non-function",
1842 newdecl);
1843 else
1844 warning (OPT_Wshadow, "declaration of %q+D shadows "
1845 "a built-in function", newdecl);
1846 return false;
1849 /* Enumerators have no linkage, so may only be declared once in a
1850 given scope. */
1851 if (TREE_CODE (olddecl) == CONST_DECL)
1853 error ("redeclaration of enumerator %q+D", newdecl);
1854 locate_old_decl (olddecl);
1855 return false;
1858 if (!comptypes (oldtype, newtype))
1860 if (TREE_CODE (olddecl) == FUNCTION_DECL
1861 && DECL_BUILT_IN (olddecl) && !C_DECL_DECLARED_BUILTIN (olddecl))
1863 /* Accept harmless mismatch in function types.
1864 This is for the ffs and fprintf builtins. */
1865 tree trytype = match_builtin_function_types (newtype, oldtype);
1867 if (trytype && comptypes (newtype, trytype))
1868 *oldtypep = oldtype = trytype;
1869 else
1871 /* If types don't match for a built-in, throw away the
1872 built-in. No point in calling locate_old_decl here, it
1873 won't print anything. */
1874 warning (OPT_Wbuiltin_declaration_mismatch,
1875 "conflicting types for built-in function %q+D",
1876 newdecl);
1877 return false;
1880 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1881 && DECL_IS_BUILTIN (olddecl))
1883 /* A conflicting function declaration for a predeclared
1884 function that isn't actually built in. Objective C uses
1885 these. The new declaration silently overrides everything
1886 but the volatility (i.e. noreturn) indication. See also
1887 below. FIXME: Make Objective C use normal builtins. */
1888 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1889 return false;
1891 /* Permit void foo (...) to match int foo (...) if the latter is
1892 the definition and implicit int was used. See
1893 c-torture/compile/920625-2.c. */
1894 else if (TREE_CODE (newdecl) == FUNCTION_DECL && DECL_INITIAL (newdecl)
1895 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype)) == void_type_node
1896 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype)) == integer_type_node
1897 && C_FUNCTION_IMPLICIT_INT (newdecl) && !DECL_INITIAL (olddecl))
1899 pedwarned = pedwarn (input_location, 0,
1900 "conflicting types for %q+D", newdecl);
1901 /* Make sure we keep void as the return type. */
1902 TREE_TYPE (newdecl) = *newtypep = newtype = oldtype;
1903 C_FUNCTION_IMPLICIT_INT (newdecl) = 0;
1905 /* Permit void foo (...) to match an earlier call to foo (...) with
1906 no declared type (thus, implicitly int). */
1907 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1908 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype)) == void_type_node
1909 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype)) == integer_type_node
1910 && C_DECL_IMPLICIT (olddecl) && !DECL_INITIAL (olddecl))
1912 pedwarned = pedwarn (input_location, 0,
1913 "conflicting types for %q+D", newdecl);
1914 /* Make sure we keep void as the return type. */
1915 TREE_TYPE (olddecl) = *oldtypep = oldtype = newtype;
1917 else
1919 int new_quals = TYPE_QUALS (newtype);
1920 int old_quals = TYPE_QUALS (oldtype);
1922 if (new_quals != old_quals)
1924 addr_space_t new_addr = DECODE_QUAL_ADDR_SPACE (new_quals);
1925 addr_space_t old_addr = DECODE_QUAL_ADDR_SPACE (old_quals);
1926 if (new_addr != old_addr)
1928 if (ADDR_SPACE_GENERIC_P (new_addr))
1929 error ("conflicting named address spaces (generic vs %s) "
1930 "for %q+D",
1931 c_addr_space_name (old_addr), newdecl);
1932 else if (ADDR_SPACE_GENERIC_P (old_addr))
1933 error ("conflicting named address spaces (%s vs generic) "
1934 "for %q+D",
1935 c_addr_space_name (new_addr), newdecl);
1936 else
1937 error ("conflicting named address spaces (%s vs %s) "
1938 "for %q+D",
1939 c_addr_space_name (new_addr),
1940 c_addr_space_name (old_addr),
1941 newdecl);
1944 if (CLEAR_QUAL_ADDR_SPACE (new_quals)
1945 != CLEAR_QUAL_ADDR_SPACE (old_quals))
1946 error ("conflicting type qualifiers for %q+D", newdecl);
1948 else
1949 error ("conflicting types for %q+D", newdecl);
1950 diagnose_arglist_conflict (newdecl, olddecl, newtype, oldtype);
1951 locate_old_decl (olddecl);
1952 return false;
1956 /* Redeclaration of a type is a constraint violation (6.7.2.3p1),
1957 but silently ignore the redeclaration if either is in a system
1958 header. (Conflicting redeclarations were handled above.) This
1959 is allowed for C11 if the types are the same, not just
1960 compatible. */
1961 if (TREE_CODE (newdecl) == TYPE_DECL)
1963 bool types_different = false;
1964 int comptypes_result;
1966 comptypes_result
1967 = comptypes_check_different_types (oldtype, newtype, &types_different);
1969 if (comptypes_result != 1 || types_different)
1971 error ("redefinition of typedef %q+D with different type", newdecl);
1972 locate_old_decl (olddecl);
1973 return false;
1976 if (DECL_IN_SYSTEM_HEADER (newdecl)
1977 || DECL_IN_SYSTEM_HEADER (olddecl)
1978 || TREE_NO_WARNING (newdecl)
1979 || TREE_NO_WARNING (olddecl))
1980 return true; /* Allow OLDDECL to continue in use. */
1982 if (variably_modified_type_p (newtype, NULL))
1984 error ("redefinition of typedef %q+D with variably modified type",
1985 newdecl);
1986 locate_old_decl (olddecl);
1988 else if (pedwarn_c99 (input_location, OPT_Wpedantic,
1989 "redefinition of typedef %q+D", newdecl))
1990 locate_old_decl (olddecl);
1992 return true;
1995 /* Function declarations can either be 'static' or 'extern' (no
1996 qualifier is equivalent to 'extern' - C99 6.2.2p5) and therefore
1997 can never conflict with each other on account of linkage
1998 (6.2.2p4). Multiple definitions are not allowed (6.9p3,5) but
1999 gnu89 mode permits two definitions if one is 'extern inline' and
2000 one is not. The non- extern-inline definition supersedes the
2001 extern-inline definition. */
2003 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2005 /* If you declare a built-in function name as static, or
2006 define the built-in with an old-style definition (so we
2007 can't validate the argument list) the built-in definition is
2008 overridden, but optionally warn this was a bad choice of name. */
2009 if (DECL_BUILT_IN (olddecl)
2010 && !C_DECL_DECLARED_BUILTIN (olddecl)
2011 && (!TREE_PUBLIC (newdecl)
2012 || (DECL_INITIAL (newdecl)
2013 && !prototype_p (TREE_TYPE (newdecl)))))
2015 warning (OPT_Wshadow, "declaration of %q+D shadows "
2016 "a built-in function", newdecl);
2017 /* Discard the old built-in function. */
2018 return false;
2021 if (DECL_INITIAL (newdecl))
2023 if (DECL_INITIAL (olddecl))
2025 /* If both decls are in the same TU and the new declaration
2026 isn't overriding an extern inline reject the new decl.
2027 In c99, no overriding is allowed in the same translation
2028 unit. */
2029 if ((!DECL_EXTERN_INLINE (olddecl)
2030 || DECL_EXTERN_INLINE (newdecl)
2031 || (!flag_gnu89_inline
2032 && (!DECL_DECLARED_INLINE_P (olddecl)
2033 || !lookup_attribute ("gnu_inline",
2034 DECL_ATTRIBUTES (olddecl)))
2035 && (!DECL_DECLARED_INLINE_P (newdecl)
2036 || !lookup_attribute ("gnu_inline",
2037 DECL_ATTRIBUTES (newdecl))))
2039 && same_translation_unit_p (newdecl, olddecl))
2041 error ("redefinition of %q+D", newdecl);
2042 locate_old_decl (olddecl);
2043 return false;
2047 /* If we have a prototype after an old-style function definition,
2048 the argument types must be checked specially. */
2049 else if (DECL_INITIAL (olddecl)
2050 && !prototype_p (oldtype) && prototype_p (newtype)
2051 && TYPE_ACTUAL_ARG_TYPES (oldtype)
2052 && !validate_proto_after_old_defn (newdecl, newtype, oldtype))
2054 locate_old_decl (olddecl);
2055 return false;
2057 /* A non-static declaration (even an "extern") followed by a
2058 static declaration is undefined behavior per C99 6.2.2p3-5,7.
2059 The same is true for a static forward declaration at block
2060 scope followed by a non-static declaration/definition at file
2061 scope. Static followed by non-static at the same scope is
2062 not undefined behavior, and is the most convenient way to get
2063 some effects (see e.g. what unwind-dw2-fde-glibc.c does to
2064 the definition of _Unwind_Find_FDE in unwind-dw2-fde.c), but
2065 we do diagnose it if -Wtraditional. */
2066 if (TREE_PUBLIC (olddecl) && !TREE_PUBLIC (newdecl))
2068 /* Two exceptions to the rule. If olddecl is an extern
2069 inline, or a predeclared function that isn't actually
2070 built in, newdecl silently overrides olddecl. The latter
2071 occur only in Objective C; see also above. (FIXME: Make
2072 Objective C use normal builtins.) */
2073 if (!DECL_IS_BUILTIN (olddecl)
2074 && !DECL_EXTERN_INLINE (olddecl))
2076 error ("static declaration of %q+D follows "
2077 "non-static declaration", newdecl);
2078 locate_old_decl (olddecl);
2080 return false;
2082 else if (TREE_PUBLIC (newdecl) && !TREE_PUBLIC (olddecl))
2084 if (DECL_CONTEXT (olddecl))
2086 error ("non-static declaration of %q+D follows "
2087 "static declaration", newdecl);
2088 locate_old_decl (olddecl);
2089 return false;
2091 else if (warn_traditional)
2093 warned |= warning (OPT_Wtraditional,
2094 "non-static declaration of %q+D "
2095 "follows static declaration", newdecl);
2099 /* Make sure gnu_inline attribute is either not present, or
2100 present on all inline decls. */
2101 if (DECL_DECLARED_INLINE_P (olddecl)
2102 && DECL_DECLARED_INLINE_P (newdecl))
2104 bool newa = lookup_attribute ("gnu_inline",
2105 DECL_ATTRIBUTES (newdecl)) != NULL;
2106 bool olda = lookup_attribute ("gnu_inline",
2107 DECL_ATTRIBUTES (olddecl)) != NULL;
2108 if (newa != olda)
2110 error_at (input_location, "%<gnu_inline%> attribute present on %q+D",
2111 newa ? newdecl : olddecl);
2112 error_at (DECL_SOURCE_LOCATION (newa ? olddecl : newdecl),
2113 "but not here");
2117 else if (VAR_P (newdecl))
2119 /* Only variables can be thread-local, and all declarations must
2120 agree on this property. */
2121 if (C_DECL_THREADPRIVATE_P (olddecl) && !DECL_THREAD_LOCAL_P (newdecl))
2123 /* Nothing to check. Since OLDDECL is marked threadprivate
2124 and NEWDECL does not have a thread-local attribute, we
2125 will merge the threadprivate attribute into NEWDECL. */
2128 else if (DECL_THREAD_LOCAL_P (newdecl) != DECL_THREAD_LOCAL_P (olddecl))
2130 if (DECL_THREAD_LOCAL_P (newdecl))
2131 error ("thread-local declaration of %q+D follows "
2132 "non-thread-local declaration", newdecl);
2133 else
2134 error ("non-thread-local declaration of %q+D follows "
2135 "thread-local declaration", newdecl);
2137 locate_old_decl (olddecl);
2138 return false;
2141 /* Multiple initialized definitions are not allowed (6.9p3,5). */
2142 if (DECL_INITIAL (newdecl) && DECL_INITIAL (olddecl))
2144 error ("redefinition of %q+D", newdecl);
2145 locate_old_decl (olddecl);
2146 return false;
2149 /* Objects declared at file scope: if the first declaration had
2150 external linkage (even if it was an external reference) the
2151 second must have external linkage as well, or the behavior is
2152 undefined. If the first declaration had internal linkage, then
2153 the second must too, or else be an external reference (in which
2154 case the composite declaration still has internal linkage).
2155 As for function declarations, we warn about the static-then-
2156 extern case only for -Wtraditional. See generally 6.2.2p3-5,7. */
2157 if (DECL_FILE_SCOPE_P (newdecl)
2158 && TREE_PUBLIC (newdecl) != TREE_PUBLIC (olddecl))
2160 if (DECL_EXTERNAL (newdecl))
2162 if (!DECL_FILE_SCOPE_P (olddecl))
2164 error ("extern declaration of %q+D follows "
2165 "declaration with no linkage", newdecl);
2166 locate_old_decl (olddecl);
2167 return false;
2169 else if (warn_traditional)
2171 warned |= warning (OPT_Wtraditional,
2172 "non-static declaration of %q+D "
2173 "follows static declaration", newdecl);
2176 else
2178 if (TREE_PUBLIC (newdecl))
2179 error ("non-static declaration of %q+D follows "
2180 "static declaration", newdecl);
2181 else
2182 error ("static declaration of %q+D follows "
2183 "non-static declaration", newdecl);
2185 locate_old_decl (olddecl);
2186 return false;
2189 /* Two objects with the same name declared at the same block
2190 scope must both be external references (6.7p3). */
2191 else if (!DECL_FILE_SCOPE_P (newdecl))
2193 if (DECL_EXTERNAL (newdecl))
2195 /* Extern with initializer at block scope, which will
2196 already have received an error. */
2198 else if (DECL_EXTERNAL (olddecl))
2200 error ("declaration of %q+D with no linkage follows "
2201 "extern declaration", newdecl);
2202 locate_old_decl (olddecl);
2204 else
2206 error ("redeclaration of %q+D with no linkage", newdecl);
2207 locate_old_decl (olddecl);
2210 return false;
2213 /* C++ does not permit a decl to appear multiple times at file
2214 scope. */
2215 if (warn_cxx_compat
2216 && DECL_FILE_SCOPE_P (newdecl)
2217 && !DECL_EXTERNAL (newdecl)
2218 && !DECL_EXTERNAL (olddecl))
2219 warned |= warning_at (DECL_SOURCE_LOCATION (newdecl),
2220 OPT_Wc___compat,
2221 ("duplicate declaration of %qD is "
2222 "invalid in C++"),
2223 newdecl);
2226 /* warnings */
2227 /* All decls must agree on a visibility. */
2228 if (CODE_CONTAINS_STRUCT (TREE_CODE (newdecl), TS_DECL_WITH_VIS)
2229 && DECL_VISIBILITY_SPECIFIED (newdecl) && DECL_VISIBILITY_SPECIFIED (olddecl)
2230 && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
2232 warned |= warning (0, "redeclaration of %q+D with different visibility "
2233 "(old visibility preserved)", newdecl);
2236 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2237 warned |= diagnose_mismatched_attributes (olddecl, newdecl);
2238 else /* PARM_DECL, VAR_DECL */
2240 /* Redeclaration of a parameter is a constraint violation (this is
2241 not explicitly stated, but follows from C99 6.7p3 [no more than
2242 one declaration of the same identifier with no linkage in the
2243 same scope, except type tags] and 6.2.2p6 [parameters have no
2244 linkage]). We must check for a forward parameter declaration,
2245 indicated by TREE_ASM_WRITTEN on the old declaration - this is
2246 an extension, the mandatory diagnostic for which is handled by
2247 mark_forward_parm_decls. */
2249 if (TREE_CODE (newdecl) == PARM_DECL
2250 && (!TREE_ASM_WRITTEN (olddecl) || TREE_ASM_WRITTEN (newdecl)))
2252 error ("redefinition of parameter %q+D", newdecl);
2253 locate_old_decl (olddecl);
2254 return false;
2258 /* Optional warning for completely redundant decls. */
2259 if (!warned && !pedwarned
2260 && warn_redundant_decls
2261 /* Don't warn about a function declaration followed by a
2262 definition. */
2263 && !(TREE_CODE (newdecl) == FUNCTION_DECL
2264 && DECL_INITIAL (newdecl) && !DECL_INITIAL (olddecl))
2265 /* Don't warn about redundant redeclarations of builtins. */
2266 && !(TREE_CODE (newdecl) == FUNCTION_DECL
2267 && !DECL_BUILT_IN (newdecl)
2268 && DECL_BUILT_IN (olddecl)
2269 && !C_DECL_DECLARED_BUILTIN (olddecl))
2270 /* Don't warn about an extern followed by a definition. */
2271 && !(DECL_EXTERNAL (olddecl) && !DECL_EXTERNAL (newdecl))
2272 /* Don't warn about forward parameter decls. */
2273 && !(TREE_CODE (newdecl) == PARM_DECL
2274 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2275 /* Don't warn about a variable definition following a declaration. */
2276 && !(VAR_P (newdecl)
2277 && DECL_INITIAL (newdecl) && !DECL_INITIAL (olddecl)))
2279 warned = warning (OPT_Wredundant_decls, "redundant redeclaration of %q+D",
2280 newdecl);
2283 /* Report location of previous decl/defn. */
2284 if (warned || pedwarned)
2285 locate_old_decl (olddecl);
2287 #undef DECL_EXTERN_INLINE
2289 return retval;
2292 /* Subroutine of duplicate_decls. NEWDECL has been found to be
2293 consistent with OLDDECL, but carries new information. Merge the
2294 new information into OLDDECL. This function issues no
2295 diagnostics. */
2297 static void
2298 merge_decls (tree newdecl, tree olddecl, tree newtype, tree oldtype)
2300 bool new_is_definition = (TREE_CODE (newdecl) == FUNCTION_DECL
2301 && DECL_INITIAL (newdecl) != NULL_TREE);
2302 bool new_is_prototype = (TREE_CODE (newdecl) == FUNCTION_DECL
2303 && prototype_p (TREE_TYPE (newdecl)));
2304 bool old_is_prototype = (TREE_CODE (olddecl) == FUNCTION_DECL
2305 && prototype_p (TREE_TYPE (olddecl)));
2307 /* For real parm decl following a forward decl, rechain the old decl
2308 in its new location and clear TREE_ASM_WRITTEN (it's not a
2309 forward decl anymore). */
2310 if (TREE_CODE (newdecl) == PARM_DECL
2311 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2313 struct c_binding *b, **here;
2315 for (here = &current_scope->bindings; *here; here = &(*here)->prev)
2316 if ((*here)->decl == olddecl)
2317 goto found;
2318 gcc_unreachable ();
2320 found:
2321 b = *here;
2322 *here = b->prev;
2323 b->prev = current_scope->bindings;
2324 current_scope->bindings = b;
2326 TREE_ASM_WRITTEN (olddecl) = 0;
2329 DECL_ATTRIBUTES (newdecl)
2330 = targetm.merge_decl_attributes (olddecl, newdecl);
2332 /* For typedefs use the old type, as the new type's DECL_NAME points
2333 at newdecl, which will be ggc_freed. */
2334 if (TREE_CODE (newdecl) == TYPE_DECL)
2336 /* But NEWTYPE might have an attribute, honor that. */
2337 tree tem = newtype;
2338 newtype = oldtype;
2340 if (TYPE_USER_ALIGN (tem))
2342 if (TYPE_ALIGN (tem) > TYPE_ALIGN (newtype))
2343 SET_TYPE_ALIGN (newtype, TYPE_ALIGN (tem));
2344 TYPE_USER_ALIGN (newtype) = true;
2347 /* And remove the new type from the variants list. */
2348 if (TYPE_NAME (TREE_TYPE (newdecl)) == newdecl)
2350 tree remove = TREE_TYPE (newdecl);
2351 for (tree t = TYPE_MAIN_VARIANT (remove); ;
2352 t = TYPE_NEXT_VARIANT (t))
2353 if (TYPE_NEXT_VARIANT (t) == remove)
2355 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (remove);
2356 break;
2361 /* Merge the data types specified in the two decls. */
2362 TREE_TYPE (newdecl)
2363 = TREE_TYPE (olddecl)
2364 = composite_type (newtype, oldtype);
2366 /* Lay the type out, unless already done. */
2367 if (!comptypes (oldtype, TREE_TYPE (newdecl)))
2369 if (TREE_TYPE (newdecl) != error_mark_node)
2370 layout_type (TREE_TYPE (newdecl));
2371 if (TREE_CODE (newdecl) != FUNCTION_DECL
2372 && TREE_CODE (newdecl) != TYPE_DECL
2373 && TREE_CODE (newdecl) != CONST_DECL)
2374 layout_decl (newdecl, 0);
2376 else
2378 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
2379 DECL_SIZE (newdecl) = DECL_SIZE (olddecl);
2380 DECL_SIZE_UNIT (newdecl) = DECL_SIZE_UNIT (olddecl);
2381 SET_DECL_MODE (newdecl, DECL_MODE (olddecl));
2382 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
2384 SET_DECL_ALIGN (newdecl, DECL_ALIGN (olddecl));
2385 DECL_USER_ALIGN (newdecl) |= DECL_USER_ALIGN (olddecl);
2387 if (DECL_WARN_IF_NOT_ALIGN (olddecl)
2388 > DECL_WARN_IF_NOT_ALIGN (newdecl))
2389 SET_DECL_WARN_IF_NOT_ALIGN (newdecl,
2390 DECL_WARN_IF_NOT_ALIGN (olddecl));
2393 /* Keep the old rtl since we can safely use it. */
2394 if (HAS_RTL_P (olddecl))
2395 COPY_DECL_RTL (olddecl, newdecl);
2397 /* Merge the type qualifiers. */
2398 if (TREE_READONLY (newdecl))
2399 TREE_READONLY (olddecl) = 1;
2401 if (TREE_THIS_VOLATILE (newdecl))
2402 TREE_THIS_VOLATILE (olddecl) = 1;
2404 /* Merge deprecatedness. */
2405 if (TREE_DEPRECATED (newdecl))
2406 TREE_DEPRECATED (olddecl) = 1;
2408 /* If a decl is in a system header and the other isn't, keep the one on the
2409 system header. Otherwise, keep source location of definition rather than
2410 declaration and of prototype rather than non-prototype unless that
2411 prototype is built-in. */
2412 if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS)
2413 && DECL_IN_SYSTEM_HEADER (olddecl)
2414 && !DECL_IN_SYSTEM_HEADER (newdecl) )
2415 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2416 else if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS)
2417 && DECL_IN_SYSTEM_HEADER (newdecl)
2418 && !DECL_IN_SYSTEM_HEADER (olddecl))
2419 DECL_SOURCE_LOCATION (olddecl) = DECL_SOURCE_LOCATION (newdecl);
2420 else if ((DECL_INITIAL (newdecl) == NULL_TREE
2421 && DECL_INITIAL (olddecl) != NULL_TREE)
2422 || (old_is_prototype && !new_is_prototype
2423 && !C_DECL_BUILTIN_PROTOTYPE (olddecl)))
2424 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2426 /* Merge the initialization information. */
2427 if (DECL_INITIAL (newdecl) == NULL_TREE)
2428 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2430 /* Merge the threadprivate attribute. */
2431 if (VAR_P (olddecl) && C_DECL_THREADPRIVATE_P (olddecl))
2432 C_DECL_THREADPRIVATE_P (newdecl) = 1;
2434 if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS))
2436 /* Copy the assembler name.
2437 Currently, it can only be defined in the prototype. */
2438 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
2440 /* Use visibility of whichever declaration had it specified */
2441 if (DECL_VISIBILITY_SPECIFIED (olddecl))
2443 DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
2444 DECL_VISIBILITY_SPECIFIED (newdecl) = 1;
2447 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2449 DECL_STATIC_CONSTRUCTOR(newdecl) |= DECL_STATIC_CONSTRUCTOR(olddecl);
2450 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
2451 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
2452 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
2453 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
2454 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
2455 DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
2456 DECL_IS_OPERATOR_NEW (newdecl) |= DECL_IS_OPERATOR_NEW (olddecl);
2457 TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
2458 DECL_PURE_P (newdecl) |= DECL_PURE_P (olddecl);
2459 DECL_IS_NOVOPS (newdecl) |= DECL_IS_NOVOPS (olddecl);
2462 /* Merge the storage class information. */
2463 merge_weak (newdecl, olddecl);
2465 /* For functions, static overrides non-static. */
2466 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2468 TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
2469 /* This is since we don't automatically
2470 copy the attributes of NEWDECL into OLDDECL. */
2471 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
2472 /* If this clears `static', clear it in the identifier too. */
2473 if (!TREE_PUBLIC (olddecl))
2474 TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
2478 /* In c99, 'extern' declaration before (or after) 'inline' means this
2479 function is not DECL_EXTERNAL, unless 'gnu_inline' attribute
2480 is present. */
2481 if (TREE_CODE (newdecl) == FUNCTION_DECL
2482 && !flag_gnu89_inline
2483 && (DECL_DECLARED_INLINE_P (newdecl)
2484 || DECL_DECLARED_INLINE_P (olddecl))
2485 && (!DECL_DECLARED_INLINE_P (newdecl)
2486 || !DECL_DECLARED_INLINE_P (olddecl)
2487 || !DECL_EXTERNAL (olddecl))
2488 && DECL_EXTERNAL (newdecl)
2489 && !lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (newdecl))
2490 && !current_function_decl)
2491 DECL_EXTERNAL (newdecl) = 0;
2493 /* An inline definition following a static declaration is not
2494 DECL_EXTERNAL. */
2495 if (new_is_definition
2496 && (DECL_DECLARED_INLINE_P (newdecl)
2497 || DECL_DECLARED_INLINE_P (olddecl))
2498 && !TREE_PUBLIC (olddecl))
2499 DECL_EXTERNAL (newdecl) = 0;
2501 if (DECL_EXTERNAL (newdecl))
2503 TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
2504 DECL_EXTERNAL (newdecl) = DECL_EXTERNAL (olddecl);
2506 /* An extern decl does not override previous storage class. */
2507 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
2508 if (!DECL_EXTERNAL (newdecl))
2510 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
2511 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
2514 else
2516 TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
2517 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
2520 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2522 /* If we're redefining a function previously defined as extern
2523 inline, make sure we emit debug info for the inline before we
2524 throw it away, in case it was inlined into a function that
2525 hasn't been written out yet. */
2526 if (new_is_definition && DECL_INITIAL (olddecl))
2527 /* The new defn must not be inline. */
2528 DECL_UNINLINABLE (newdecl) = 1;
2529 else
2531 /* If either decl says `inline', this fn is inline, unless
2532 its definition was passed already. */
2533 if (DECL_DECLARED_INLINE_P (newdecl)
2534 || DECL_DECLARED_INLINE_P (olddecl))
2535 DECL_DECLARED_INLINE_P (newdecl) = 1;
2537 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
2538 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
2540 DECL_DISREGARD_INLINE_LIMITS (newdecl)
2541 = DECL_DISREGARD_INLINE_LIMITS (olddecl)
2542 = (DECL_DISREGARD_INLINE_LIMITS (newdecl)
2543 || DECL_DISREGARD_INLINE_LIMITS (olddecl));
2546 if (DECL_BUILT_IN (olddecl))
2548 /* If redeclaring a builtin function, it stays built in.
2549 But it gets tagged as having been declared. */
2550 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
2551 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2552 C_DECL_DECLARED_BUILTIN (newdecl) = 1;
2553 if (new_is_prototype)
2555 C_DECL_BUILTIN_PROTOTYPE (newdecl) = 0;
2556 if (DECL_BUILT_IN_CLASS (newdecl) == BUILT_IN_NORMAL)
2558 enum built_in_function fncode = DECL_FUNCTION_CODE (newdecl);
2559 switch (fncode)
2561 /* If a compatible prototype of these builtin functions
2562 is seen, assume the runtime implements it with the
2563 expected semantics. */
2564 case BUILT_IN_STPCPY:
2565 if (builtin_decl_explicit_p (fncode))
2566 set_builtin_decl_implicit_p (fncode, true);
2567 break;
2568 default:
2569 if (builtin_decl_explicit_p (fncode))
2570 set_builtin_decl_declared_p (fncode, true);
2571 break;
2574 copy_attributes_to_builtin (newdecl);
2577 else
2578 C_DECL_BUILTIN_PROTOTYPE (newdecl)
2579 = C_DECL_BUILTIN_PROTOTYPE (olddecl);
2582 /* Preserve function specific target and optimization options */
2583 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl)
2584 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl))
2585 DECL_FUNCTION_SPECIFIC_TARGET (newdecl)
2586 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl);
2588 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl)
2589 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl))
2590 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl)
2591 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl);
2593 /* Also preserve various other info from the definition. */
2594 if (!new_is_definition)
2596 tree t;
2597 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2598 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2599 DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl);
2600 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
2601 DECL_ARGUMENTS (newdecl) = copy_list (DECL_ARGUMENTS (olddecl));
2602 for (t = DECL_ARGUMENTS (newdecl); t ; t = DECL_CHAIN (t))
2603 DECL_CONTEXT (t) = newdecl;
2605 /* See if we've got a function to instantiate from. */
2606 if (DECL_SAVED_TREE (olddecl))
2607 DECL_ABSTRACT_ORIGIN (newdecl)
2608 = DECL_ABSTRACT_ORIGIN (olddecl);
2612 /* Merge the USED information. */
2613 if (TREE_USED (olddecl))
2614 TREE_USED (newdecl) = 1;
2615 else if (TREE_USED (newdecl))
2616 TREE_USED (olddecl) = 1;
2617 if (VAR_P (olddecl) || TREE_CODE (olddecl) == PARM_DECL)
2618 DECL_READ_P (newdecl) |= DECL_READ_P (olddecl);
2619 if (DECL_PRESERVE_P (olddecl))
2620 DECL_PRESERVE_P (newdecl) = 1;
2621 else if (DECL_PRESERVE_P (newdecl))
2622 DECL_PRESERVE_P (olddecl) = 1;
2624 /* Merge DECL_COMMON */
2625 if (VAR_P (olddecl) && VAR_P (newdecl)
2626 && !lookup_attribute ("common", DECL_ATTRIBUTES (newdecl))
2627 && !lookup_attribute ("nocommon", DECL_ATTRIBUTES (newdecl)))
2628 DECL_COMMON (newdecl) = DECL_COMMON (newdecl) && DECL_COMMON (olddecl);
2630 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
2631 But preserve OLDDECL's DECL_UID, DECL_CONTEXT and
2632 DECL_ARGUMENTS (if appropriate). */
2634 unsigned olddecl_uid = DECL_UID (olddecl);
2635 tree olddecl_context = DECL_CONTEXT (olddecl);
2636 tree olddecl_arguments = NULL;
2637 if (TREE_CODE (olddecl) == FUNCTION_DECL)
2638 olddecl_arguments = DECL_ARGUMENTS (olddecl);
2640 memcpy ((char *) olddecl + sizeof (struct tree_common),
2641 (char *) newdecl + sizeof (struct tree_common),
2642 sizeof (struct tree_decl_common) - sizeof (struct tree_common));
2643 DECL_USER_ALIGN (olddecl) = DECL_USER_ALIGN (newdecl);
2644 switch (TREE_CODE (olddecl))
2646 case FUNCTION_DECL:
2647 case VAR_DECL:
2649 struct symtab_node *snode = olddecl->decl_with_vis.symtab_node;
2651 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2652 (char *) newdecl + sizeof (struct tree_decl_common),
2653 tree_code_size (TREE_CODE (olddecl)) - sizeof (struct tree_decl_common));
2654 olddecl->decl_with_vis.symtab_node = snode;
2656 if ((DECL_EXTERNAL (olddecl)
2657 || TREE_PUBLIC (olddecl)
2658 || TREE_STATIC (olddecl))
2659 && DECL_SECTION_NAME (newdecl) != NULL)
2660 set_decl_section_name (olddecl, DECL_SECTION_NAME (newdecl));
2662 /* This isn't quite correct for something like
2663 int __thread x attribute ((tls_model ("local-exec")));
2664 extern int __thread x;
2665 as we'll lose the "local-exec" model. */
2666 if (VAR_P (olddecl) && DECL_THREAD_LOCAL_P (newdecl))
2667 set_decl_tls_model (olddecl, DECL_TLS_MODEL (newdecl));
2668 break;
2671 case FIELD_DECL:
2672 case PARM_DECL:
2673 case LABEL_DECL:
2674 case RESULT_DECL:
2675 case CONST_DECL:
2676 case TYPE_DECL:
2677 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2678 (char *) newdecl + sizeof (struct tree_decl_common),
2679 tree_code_size (TREE_CODE (olddecl)) - sizeof (struct tree_decl_common));
2680 break;
2682 default:
2684 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2685 (char *) newdecl + sizeof (struct tree_decl_common),
2686 sizeof (struct tree_decl_non_common) - sizeof (struct tree_decl_common));
2688 DECL_UID (olddecl) = olddecl_uid;
2689 DECL_CONTEXT (olddecl) = olddecl_context;
2690 if (TREE_CODE (olddecl) == FUNCTION_DECL)
2691 DECL_ARGUMENTS (olddecl) = olddecl_arguments;
2694 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
2695 so that encode_section_info has a chance to look at the new decl
2696 flags and attributes. */
2697 if (DECL_RTL_SET_P (olddecl)
2698 && (TREE_CODE (olddecl) == FUNCTION_DECL
2699 || (VAR_P (olddecl) && TREE_STATIC (olddecl))))
2700 make_decl_rtl (olddecl);
2703 /* Handle when a new declaration NEWDECL has the same name as an old
2704 one OLDDECL in the same binding contour. Prints an error message
2705 if appropriate.
2707 If safely possible, alter OLDDECL to look like NEWDECL, and return
2708 true. Otherwise, return false. */
2710 static bool
2711 duplicate_decls (tree newdecl, tree olddecl)
2713 tree newtype = NULL, oldtype = NULL;
2715 if (!diagnose_mismatched_decls (newdecl, olddecl, &newtype, &oldtype))
2717 /* Avoid `unused variable' and other warnings for OLDDECL. */
2718 TREE_NO_WARNING (olddecl) = 1;
2719 return false;
2722 merge_decls (newdecl, olddecl, newtype, oldtype);
2724 /* The NEWDECL will no longer be needed.
2726 Before releasing the node, be sure to remove function from symbol
2727 table that might have been inserted there to record comdat group.
2728 Be sure to however do not free DECL_STRUCT_FUNCTION because this
2729 structure is shared in between NEWDECL and OLDECL. */
2730 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2731 DECL_STRUCT_FUNCTION (newdecl) = NULL;
2732 if (VAR_OR_FUNCTION_DECL_P (newdecl))
2734 struct symtab_node *snode = symtab_node::get (newdecl);
2735 if (snode)
2736 snode->remove ();
2738 ggc_free (newdecl);
2739 return true;
2743 /* Check whether decl-node NEW_DECL shadows an existing declaration. */
2744 static void
2745 warn_if_shadowing (tree new_decl)
2747 struct c_binding *b;
2749 /* Shadow warnings wanted? */
2750 if (!(warn_shadow
2751 || warn_shadow_local
2752 || warn_shadow_compatible_local)
2753 /* No shadow warnings for internally generated vars. */
2754 || DECL_IS_BUILTIN (new_decl)
2755 /* No shadow warnings for vars made for inlining. */
2756 || DECL_FROM_INLINE (new_decl))
2757 return;
2759 /* Is anything being shadowed? Invisible decls do not count. */
2760 for (b = I_SYMBOL_BINDING (DECL_NAME (new_decl)); b; b = b->shadowed)
2761 if (b->decl && b->decl != new_decl && !b->invisible
2762 && (b->decl == error_mark_node
2763 || diagnostic_report_warnings_p (global_dc,
2764 DECL_SOURCE_LOCATION (b->decl))))
2766 tree old_decl = b->decl;
2767 bool warned = false;
2769 if (old_decl == error_mark_node)
2771 warning (OPT_Wshadow, "declaration of %q+D shadows previous "
2772 "non-variable", new_decl);
2773 break;
2775 else if (TREE_CODE (old_decl) == PARM_DECL)
2777 enum opt_code warning_code;
2779 /* If '-Wshadow=compatible-local' is specified without other
2780 -Wshadow= flags, we will warn only when the types of the
2781 shadowing variable (i.e. new_decl) and the shadowed variable
2782 (old_decl) are compatible. */
2783 if (warn_shadow)
2784 warning_code = OPT_Wshadow;
2785 else if (comptypes (TREE_TYPE (old_decl), TREE_TYPE (new_decl)))
2786 warning_code = OPT_Wshadow_compatible_local;
2787 else
2788 warning_code = OPT_Wshadow_local;
2789 warned = warning_at (DECL_SOURCE_LOCATION (new_decl), warning_code,
2790 "declaration of %qD shadows a parameter",
2791 new_decl);
2793 else if (DECL_FILE_SCOPE_P (old_decl))
2795 /* Do not warn if a variable shadows a function, unless
2796 the variable is a function or a pointer-to-function. */
2797 if (TREE_CODE (old_decl) == FUNCTION_DECL
2798 && TREE_CODE (new_decl) != FUNCTION_DECL
2799 && !FUNCTION_POINTER_TYPE_P (TREE_TYPE (new_decl)))
2800 continue;
2802 warned = warning_at (DECL_SOURCE_LOCATION (new_decl), OPT_Wshadow,
2803 "declaration of %qD shadows a global "
2804 "declaration",
2805 new_decl);
2807 else if (TREE_CODE (old_decl) == FUNCTION_DECL
2808 && DECL_BUILT_IN (old_decl))
2810 warning (OPT_Wshadow, "declaration of %q+D shadows "
2811 "a built-in function", new_decl);
2812 break;
2814 else
2816 enum opt_code warning_code;
2818 /* If '-Wshadow=compatible-local' is specified without other
2819 -Wshadow= flags, we will warn only when the types of the
2820 shadowing variable (i.e. new_decl) and the shadowed variable
2821 (old_decl) are compatible. */
2822 if (warn_shadow)
2823 warning_code = OPT_Wshadow;
2824 else if (comptypes (TREE_TYPE (old_decl), TREE_TYPE (new_decl)))
2825 warning_code = OPT_Wshadow_compatible_local;
2826 else
2827 warning_code = OPT_Wshadow_local;
2828 warned = warning_at (DECL_SOURCE_LOCATION (new_decl), warning_code,
2829 "declaration of %qD shadows a previous local",
2830 new_decl);
2833 if (warned)
2834 inform (DECL_SOURCE_LOCATION (old_decl),
2835 "shadowed declaration is here");
2837 break;
2841 /* Record a decl-node X as belonging to the current lexical scope.
2842 Check for errors (such as an incompatible declaration for the same
2843 name already seen in the same scope).
2845 Returns either X or an old decl for the same name.
2846 If an old decl is returned, it may have been smashed
2847 to agree with what X says. */
2849 tree
2850 pushdecl (tree x)
2852 tree name = DECL_NAME (x);
2853 struct c_scope *scope = current_scope;
2854 struct c_binding *b;
2855 bool nested = false;
2856 location_t locus = DECL_SOURCE_LOCATION (x);
2858 /* Must set DECL_CONTEXT for everything not at file scope or
2859 DECL_FILE_SCOPE_P won't work. Local externs don't count
2860 unless they have initializers (which generate code). */
2861 if (current_function_decl
2862 && (!VAR_OR_FUNCTION_DECL_P (x)
2863 || DECL_INITIAL (x) || !DECL_EXTERNAL (x)))
2864 DECL_CONTEXT (x) = current_function_decl;
2866 /* Anonymous decls are just inserted in the scope. */
2867 if (!name)
2869 bind (name, x, scope, /*invisible=*/false, /*nested=*/false,
2870 locus);
2871 return x;
2874 /* First, see if there is another declaration with the same name in
2875 the current scope. If there is, duplicate_decls may do all the
2876 work for us. If duplicate_decls returns false, that indicates
2877 two incompatible decls in the same scope; we are to silently
2878 replace the old one (duplicate_decls has issued all appropriate
2879 diagnostics). In particular, we should not consider possible
2880 duplicates in the external scope, or shadowing. */
2881 b = I_SYMBOL_BINDING (name);
2882 if (b && B_IN_SCOPE (b, scope))
2884 struct c_binding *b_ext, *b_use;
2885 tree type = TREE_TYPE (x);
2886 tree visdecl = b->decl;
2887 tree vistype = TREE_TYPE (visdecl);
2888 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
2889 && COMPLETE_TYPE_P (TREE_TYPE (x)))
2890 b->inner_comp = false;
2891 b_use = b;
2892 b_ext = b;
2893 /* If this is an external linkage declaration, we should check
2894 for compatibility with the type in the external scope before
2895 setting the type at this scope based on the visible
2896 information only. */
2897 if (TREE_PUBLIC (x) && TREE_PUBLIC (visdecl))
2899 while (b_ext && !B_IN_EXTERNAL_SCOPE (b_ext))
2900 b_ext = b_ext->shadowed;
2901 if (b_ext)
2903 b_use = b_ext;
2904 if (b_use->u.type)
2905 TREE_TYPE (b_use->decl) = b_use->u.type;
2908 if (duplicate_decls (x, b_use->decl))
2910 if (b_use != b)
2912 /* Save the updated type in the external scope and
2913 restore the proper type for this scope. */
2914 tree thistype;
2915 if (comptypes (vistype, type))
2916 thistype = composite_type (vistype, type);
2917 else
2918 thistype = TREE_TYPE (b_use->decl);
2919 b_use->u.type = TREE_TYPE (b_use->decl);
2920 if (TREE_CODE (b_use->decl) == FUNCTION_DECL
2921 && DECL_BUILT_IN (b_use->decl))
2922 thistype
2923 = build_type_attribute_variant (thistype,
2924 TYPE_ATTRIBUTES
2925 (b_use->u.type));
2926 TREE_TYPE (b_use->decl) = thistype;
2928 return b_use->decl;
2930 else
2931 goto skip_external_and_shadow_checks;
2934 /* All declarations with external linkage, and all external
2935 references, go in the external scope, no matter what scope is
2936 current. However, the binding in that scope is ignored for
2937 purposes of normal name lookup. A separate binding structure is
2938 created in the requested scope; this governs the normal
2939 visibility of the symbol.
2941 The binding in the externals scope is used exclusively for
2942 detecting duplicate declarations of the same object, no matter
2943 what scope they are in; this is what we do here. (C99 6.2.7p2:
2944 All declarations that refer to the same object or function shall
2945 have compatible type; otherwise, the behavior is undefined.) */
2946 if (DECL_EXTERNAL (x) || scope == file_scope)
2948 tree type = TREE_TYPE (x);
2949 tree vistype = NULL_TREE;
2950 tree visdecl = NULL_TREE;
2951 bool type_saved = false;
2952 if (b && !B_IN_EXTERNAL_SCOPE (b)
2953 && VAR_OR_FUNCTION_DECL_P (b->decl)
2954 && DECL_FILE_SCOPE_P (b->decl))
2956 visdecl = b->decl;
2957 vistype = TREE_TYPE (visdecl);
2959 if (scope != file_scope
2960 && !DECL_IN_SYSTEM_HEADER (x))
2961 warning_at (locus, OPT_Wnested_externs,
2962 "nested extern declaration of %qD", x);
2964 while (b && !B_IN_EXTERNAL_SCOPE (b))
2966 /* If this decl might be modified, save its type. This is
2967 done here rather than when the decl is first bound
2968 because the type may change after first binding, through
2969 being completed or through attributes being added. If we
2970 encounter multiple such decls, only the first should have
2971 its type saved; the others will already have had their
2972 proper types saved and the types will not have changed as
2973 their scopes will not have been re-entered. */
2974 if (DECL_P (b->decl) && DECL_FILE_SCOPE_P (b->decl) && !type_saved)
2976 b->u.type = TREE_TYPE (b->decl);
2977 type_saved = true;
2979 if (B_IN_FILE_SCOPE (b)
2980 && VAR_P (b->decl)
2981 && TREE_STATIC (b->decl)
2982 && TREE_CODE (TREE_TYPE (b->decl)) == ARRAY_TYPE
2983 && !TYPE_DOMAIN (TREE_TYPE (b->decl))
2984 && TREE_CODE (type) == ARRAY_TYPE
2985 && TYPE_DOMAIN (type)
2986 && TYPE_MAX_VALUE (TYPE_DOMAIN (type))
2987 && !integer_zerop (TYPE_MAX_VALUE (TYPE_DOMAIN (type))))
2989 /* Array type completed in inner scope, which should be
2990 diagnosed if the completion does not have size 1 and
2991 it does not get completed in the file scope. */
2992 b->inner_comp = true;
2994 b = b->shadowed;
2997 /* If a matching external declaration has been found, set its
2998 type to the composite of all the types of that declaration.
2999 After the consistency checks, it will be reset to the
3000 composite of the visible types only. */
3001 if (b && (TREE_PUBLIC (x) || same_translation_unit_p (x, b->decl))
3002 && b->u.type)
3003 TREE_TYPE (b->decl) = b->u.type;
3005 /* The point of the same_translation_unit_p check here is,
3006 we want to detect a duplicate decl for a construct like
3007 foo() { extern bar(); } ... static bar(); but not if
3008 they are in different translation units. In any case,
3009 the static does not go in the externals scope. */
3010 if (b
3011 && (TREE_PUBLIC (x) || same_translation_unit_p (x, b->decl))
3012 && duplicate_decls (x, b->decl))
3014 tree thistype;
3015 if (vistype)
3017 if (comptypes (vistype, type))
3018 thistype = composite_type (vistype, type);
3019 else
3020 thistype = TREE_TYPE (b->decl);
3022 else
3023 thistype = type;
3024 b->u.type = TREE_TYPE (b->decl);
3025 if (TREE_CODE (b->decl) == FUNCTION_DECL && DECL_BUILT_IN (b->decl))
3026 thistype
3027 = build_type_attribute_variant (thistype,
3028 TYPE_ATTRIBUTES (b->u.type));
3029 TREE_TYPE (b->decl) = thistype;
3030 bind (name, b->decl, scope, /*invisible=*/false, /*nested=*/true,
3031 locus);
3032 return b->decl;
3034 else if (TREE_PUBLIC (x))
3036 if (visdecl && !b && duplicate_decls (x, visdecl))
3038 /* An external declaration at block scope referring to a
3039 visible entity with internal linkage. The composite
3040 type will already be correct for this scope, so we
3041 just need to fall through to make the declaration in
3042 this scope. */
3043 nested = true;
3044 x = visdecl;
3046 else
3048 bind (name, x, external_scope, /*invisible=*/true,
3049 /*nested=*/false, locus);
3050 nested = true;
3055 if (TREE_CODE (x) != PARM_DECL)
3056 warn_if_shadowing (x);
3058 skip_external_and_shadow_checks:
3059 if (TREE_CODE (x) == TYPE_DECL)
3061 /* So this is a typedef, set its underlying type. */
3062 set_underlying_type (x);
3064 /* If X is a typedef defined in the current function, record it
3065 for the purpose of implementing the -Wunused-local-typedefs
3066 warning. */
3067 record_locally_defined_typedef (x);
3070 bind (name, x, scope, /*invisible=*/false, nested, locus);
3072 /* If x's type is incomplete because it's based on a
3073 structure or union which has not yet been fully declared,
3074 attach it to that structure or union type, so we can go
3075 back and complete the variable declaration later, if the
3076 structure or union gets fully declared.
3078 If the input is erroneous, we can have error_mark in the type
3079 slot (e.g. "f(void a, ...)") - that doesn't count as an
3080 incomplete type. */
3081 if (TREE_TYPE (x) != error_mark_node
3082 && !COMPLETE_TYPE_P (TREE_TYPE (x)))
3084 tree element = TREE_TYPE (x);
3086 while (TREE_CODE (element) == ARRAY_TYPE)
3087 element = TREE_TYPE (element);
3088 element = TYPE_MAIN_VARIANT (element);
3090 if (RECORD_OR_UNION_TYPE_P (element)
3091 && (TREE_CODE (x) != TYPE_DECL
3092 || TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE)
3093 && !COMPLETE_TYPE_P (element))
3094 C_TYPE_INCOMPLETE_VARS (element)
3095 = tree_cons (NULL_TREE, x, C_TYPE_INCOMPLETE_VARS (element));
3097 return x;
3101 /* Issue a warning about implicit function declaration. ID is the function
3102 identifier, OLDDECL is a declaration of the function in a different scope,
3103 or NULL_TREE. */
3105 static void
3106 implicit_decl_warning (location_t loc, tree id, tree olddecl)
3108 if (!warn_implicit_function_declaration)
3109 return;
3111 bool warned;
3112 const char *hint = NULL;
3113 if (!olddecl)
3114 hint = lookup_name_fuzzy (id, FUZZY_LOOKUP_FUNCTION_NAME);
3116 if (flag_isoc99)
3118 if (hint)
3120 gcc_rich_location richloc (loc);
3121 richloc.add_fixit_replace (hint);
3122 warned = pedwarn (&richloc, OPT_Wimplicit_function_declaration,
3123 "implicit declaration of function %qE;"
3124 " did you mean %qs?",
3125 id, hint);
3127 else
3128 warned = pedwarn (loc, OPT_Wimplicit_function_declaration,
3129 "implicit declaration of function %qE", id);
3131 else if (hint)
3133 gcc_rich_location richloc (loc);
3134 richloc.add_fixit_replace (hint);
3135 warned = warning_at
3136 (&richloc, OPT_Wimplicit_function_declaration,
3137 G_("implicit declaration of function %qE; did you mean %qs?"),
3138 id, hint);
3140 else
3141 warned = warning_at (loc, OPT_Wimplicit_function_declaration,
3142 G_("implicit declaration of function %qE"), id);
3144 if (olddecl && warned)
3145 locate_old_decl (olddecl);
3148 /* This function represents mapping of a function code FCODE
3149 to its respective header. */
3151 static const char *
3152 header_for_builtin_fn (enum built_in_function fcode)
3154 switch (fcode)
3156 CASE_FLT_FN (BUILT_IN_ACOS):
3157 CASE_FLT_FN (BUILT_IN_ACOSH):
3158 CASE_FLT_FN (BUILT_IN_ASIN):
3159 CASE_FLT_FN (BUILT_IN_ASINH):
3160 CASE_FLT_FN (BUILT_IN_ATAN):
3161 CASE_FLT_FN (BUILT_IN_ATANH):
3162 CASE_FLT_FN (BUILT_IN_ATAN2):
3163 CASE_FLT_FN (BUILT_IN_CBRT):
3164 CASE_FLT_FN (BUILT_IN_CEIL):
3165 CASE_FLT_FN (BUILT_IN_COPYSIGN):
3166 CASE_FLT_FN_FLOATN_NX (BUILT_IN_COPYSIGN):
3167 CASE_FLT_FN (BUILT_IN_COS):
3168 CASE_FLT_FN (BUILT_IN_COSH):
3169 CASE_FLT_FN (BUILT_IN_ERF):
3170 CASE_FLT_FN (BUILT_IN_ERFC):
3171 CASE_FLT_FN (BUILT_IN_EXP):
3172 CASE_FLT_FN (BUILT_IN_EXP2):
3173 CASE_FLT_FN (BUILT_IN_EXPM1):
3174 CASE_FLT_FN (BUILT_IN_FABS):
3175 CASE_FLT_FN_FLOATN_NX (BUILT_IN_FABS):
3176 CASE_FLT_FN (BUILT_IN_FDIM):
3177 CASE_FLT_FN (BUILT_IN_FLOOR):
3178 CASE_FLT_FN (BUILT_IN_FMA):
3179 CASE_FLT_FN_FLOATN_NX (BUILT_IN_FMA):
3180 CASE_FLT_FN (BUILT_IN_FMAX):
3181 CASE_FLT_FN_FLOATN_NX (BUILT_IN_FMAX):
3182 CASE_FLT_FN (BUILT_IN_FMIN):
3183 CASE_FLT_FN_FLOATN_NX (BUILT_IN_FMIN):
3184 CASE_FLT_FN (BUILT_IN_FMOD):
3185 CASE_FLT_FN (BUILT_IN_FREXP):
3186 CASE_FLT_FN (BUILT_IN_HYPOT):
3187 CASE_FLT_FN (BUILT_IN_ILOGB):
3188 CASE_FLT_FN (BUILT_IN_LDEXP):
3189 CASE_FLT_FN (BUILT_IN_LGAMMA):
3190 CASE_FLT_FN (BUILT_IN_LLRINT):
3191 CASE_FLT_FN (BUILT_IN_LLROUND):
3192 CASE_FLT_FN (BUILT_IN_LOG):
3193 CASE_FLT_FN (BUILT_IN_LOG10):
3194 CASE_FLT_FN (BUILT_IN_LOG1P):
3195 CASE_FLT_FN (BUILT_IN_LOG2):
3196 CASE_FLT_FN (BUILT_IN_LOGB):
3197 CASE_FLT_FN (BUILT_IN_LRINT):
3198 CASE_FLT_FN (BUILT_IN_LROUND):
3199 CASE_FLT_FN (BUILT_IN_MODF):
3200 CASE_FLT_FN (BUILT_IN_NAN):
3201 CASE_FLT_FN (BUILT_IN_NEARBYINT):
3202 CASE_FLT_FN (BUILT_IN_NEXTAFTER):
3203 CASE_FLT_FN (BUILT_IN_NEXTTOWARD):
3204 CASE_FLT_FN (BUILT_IN_POW):
3205 CASE_FLT_FN (BUILT_IN_REMAINDER):
3206 CASE_FLT_FN (BUILT_IN_REMQUO):
3207 CASE_FLT_FN (BUILT_IN_RINT):
3208 CASE_FLT_FN (BUILT_IN_ROUND):
3209 CASE_FLT_FN (BUILT_IN_SCALBLN):
3210 CASE_FLT_FN (BUILT_IN_SCALBN):
3211 CASE_FLT_FN (BUILT_IN_SIN):
3212 CASE_FLT_FN (BUILT_IN_SINH):
3213 CASE_FLT_FN (BUILT_IN_SINCOS):
3214 CASE_FLT_FN (BUILT_IN_SQRT):
3215 CASE_FLT_FN_FLOATN_NX (BUILT_IN_SQRT):
3216 CASE_FLT_FN (BUILT_IN_TAN):
3217 CASE_FLT_FN (BUILT_IN_TANH):
3218 CASE_FLT_FN (BUILT_IN_TGAMMA):
3219 CASE_FLT_FN (BUILT_IN_TRUNC):
3220 case BUILT_IN_ISINF:
3221 case BUILT_IN_ISNAN:
3222 return "<math.h>";
3223 CASE_FLT_FN (BUILT_IN_CABS):
3224 CASE_FLT_FN (BUILT_IN_CACOS):
3225 CASE_FLT_FN (BUILT_IN_CACOSH):
3226 CASE_FLT_FN (BUILT_IN_CARG):
3227 CASE_FLT_FN (BUILT_IN_CASIN):
3228 CASE_FLT_FN (BUILT_IN_CASINH):
3229 CASE_FLT_FN (BUILT_IN_CATAN):
3230 CASE_FLT_FN (BUILT_IN_CATANH):
3231 CASE_FLT_FN (BUILT_IN_CCOS):
3232 CASE_FLT_FN (BUILT_IN_CCOSH):
3233 CASE_FLT_FN (BUILT_IN_CEXP):
3234 CASE_FLT_FN (BUILT_IN_CIMAG):
3235 CASE_FLT_FN (BUILT_IN_CLOG):
3236 CASE_FLT_FN (BUILT_IN_CONJ):
3237 CASE_FLT_FN (BUILT_IN_CPOW):
3238 CASE_FLT_FN (BUILT_IN_CPROJ):
3239 CASE_FLT_FN (BUILT_IN_CREAL):
3240 CASE_FLT_FN (BUILT_IN_CSIN):
3241 CASE_FLT_FN (BUILT_IN_CSINH):
3242 CASE_FLT_FN (BUILT_IN_CSQRT):
3243 CASE_FLT_FN (BUILT_IN_CTAN):
3244 CASE_FLT_FN (BUILT_IN_CTANH):
3245 return "<complex.h>";
3246 case BUILT_IN_MEMCHR:
3247 case BUILT_IN_MEMCMP:
3248 case BUILT_IN_MEMCPY:
3249 case BUILT_IN_MEMMOVE:
3250 case BUILT_IN_MEMSET:
3251 case BUILT_IN_STRCAT:
3252 case BUILT_IN_STRCHR:
3253 case BUILT_IN_STRCMP:
3254 case BUILT_IN_STRCPY:
3255 case BUILT_IN_STRCSPN:
3256 case BUILT_IN_STRLEN:
3257 case BUILT_IN_STRNCAT:
3258 case BUILT_IN_STRNCMP:
3259 case BUILT_IN_STRNCPY:
3260 case BUILT_IN_STRPBRK:
3261 case BUILT_IN_STRRCHR:
3262 case BUILT_IN_STRSPN:
3263 case BUILT_IN_STRSTR:
3264 return "<string.h>";
3265 case BUILT_IN_FPRINTF:
3266 case BUILT_IN_PUTC:
3267 case BUILT_IN_FPUTC:
3268 case BUILT_IN_FPUTS:
3269 case BUILT_IN_FSCANF:
3270 case BUILT_IN_FWRITE:
3271 case BUILT_IN_PRINTF:
3272 case BUILT_IN_PUTCHAR:
3273 case BUILT_IN_PUTS:
3274 case BUILT_IN_SCANF:
3275 case BUILT_IN_SNPRINTF:
3276 case BUILT_IN_SPRINTF:
3277 case BUILT_IN_SSCANF:
3278 case BUILT_IN_VFPRINTF:
3279 case BUILT_IN_VFSCANF:
3280 case BUILT_IN_VPRINTF:
3281 case BUILT_IN_VSCANF:
3282 case BUILT_IN_VSNPRINTF:
3283 case BUILT_IN_VSPRINTF:
3284 case BUILT_IN_VSSCANF:
3285 return "<stdio.h>";
3286 case BUILT_IN_ISALNUM:
3287 case BUILT_IN_ISALPHA:
3288 case BUILT_IN_ISBLANK:
3289 case BUILT_IN_ISCNTRL:
3290 case BUILT_IN_ISDIGIT:
3291 case BUILT_IN_ISGRAPH:
3292 case BUILT_IN_ISLOWER:
3293 case BUILT_IN_ISPRINT:
3294 case BUILT_IN_ISPUNCT:
3295 case BUILT_IN_ISSPACE:
3296 case BUILT_IN_ISUPPER:
3297 case BUILT_IN_ISXDIGIT:
3298 case BUILT_IN_TOLOWER:
3299 case BUILT_IN_TOUPPER:
3300 return "<ctype.h>";
3301 case BUILT_IN_ISWALNUM:
3302 case BUILT_IN_ISWALPHA:
3303 case BUILT_IN_ISWBLANK:
3304 case BUILT_IN_ISWCNTRL:
3305 case BUILT_IN_ISWDIGIT:
3306 case BUILT_IN_ISWGRAPH:
3307 case BUILT_IN_ISWLOWER:
3308 case BUILT_IN_ISWPRINT:
3309 case BUILT_IN_ISWPUNCT:
3310 case BUILT_IN_ISWSPACE:
3311 case BUILT_IN_ISWUPPER:
3312 case BUILT_IN_ISWXDIGIT:
3313 case BUILT_IN_TOWLOWER:
3314 case BUILT_IN_TOWUPPER:
3315 return "<wctype.h>";
3316 case BUILT_IN_ABORT:
3317 case BUILT_IN_ABS:
3318 case BUILT_IN_CALLOC:
3319 case BUILT_IN_EXIT:
3320 case BUILT_IN_FREE:
3321 case BUILT_IN_LABS:
3322 case BUILT_IN_LLABS:
3323 case BUILT_IN_MALLOC:
3324 case BUILT_IN_REALLOC:
3325 case BUILT_IN__EXIT2:
3326 case BUILT_IN_ALIGNED_ALLOC:
3327 return "<stdlib.h>";
3328 case BUILT_IN_IMAXABS:
3329 return "<inttypes.h>";
3330 case BUILT_IN_STRFTIME:
3331 return "<time.h>";
3332 default:
3333 return NULL;
3337 /* Generate an implicit declaration for identifier FUNCTIONID at LOC as a
3338 function of type int (). */
3340 tree
3341 implicitly_declare (location_t loc, tree functionid)
3343 struct c_binding *b;
3344 tree decl = NULL_TREE;
3345 tree asmspec_tree;
3347 for (b = I_SYMBOL_BINDING (functionid); b; b = b->shadowed)
3349 if (B_IN_SCOPE (b, external_scope))
3351 decl = b->decl;
3352 break;
3356 if (decl)
3358 if (TREE_CODE (decl) != FUNCTION_DECL)
3359 return decl;
3361 /* FIXME: Objective-C has weird not-really-builtin functions
3362 which are supposed to be visible automatically. They wind up
3363 in the external scope because they're pushed before the file
3364 scope gets created. Catch this here and rebind them into the
3365 file scope. */
3366 if (!DECL_BUILT_IN (decl) && DECL_IS_BUILTIN (decl))
3368 bind (functionid, decl, file_scope,
3369 /*invisible=*/false, /*nested=*/true,
3370 DECL_SOURCE_LOCATION (decl));
3371 return decl;
3373 else
3375 tree newtype = default_function_type;
3376 if (b->u.type)
3377 TREE_TYPE (decl) = b->u.type;
3378 /* Implicit declaration of a function already declared
3379 (somehow) in a different scope, or as a built-in.
3380 If this is the first time this has happened, warn;
3381 then recycle the old declaration but with the new type. */
3382 if (!C_DECL_IMPLICIT (decl))
3384 implicit_decl_warning (loc, functionid, decl);
3385 C_DECL_IMPLICIT (decl) = 1;
3387 if (DECL_BUILT_IN (decl))
3389 newtype = build_type_attribute_variant (newtype,
3390 TYPE_ATTRIBUTES
3391 (TREE_TYPE (decl)));
3392 if (!comptypes (newtype, TREE_TYPE (decl)))
3394 bool warned = warning_at (loc, 0, "incompatible implicit "
3395 "declaration of built-in "
3396 "function %qD", decl);
3397 /* See if we can hint which header to include. */
3398 const char *header
3399 = header_for_builtin_fn (DECL_FUNCTION_CODE (decl));
3400 if (header != NULL && warned)
3402 rich_location richloc (line_table, loc);
3403 maybe_add_include_fixit (&richloc, header);
3404 inform (&richloc,
3405 "include %qs or provide a declaration of %qD",
3406 header, decl);
3408 newtype = TREE_TYPE (decl);
3411 else
3413 if (!comptypes (newtype, TREE_TYPE (decl)))
3415 error_at (loc, "incompatible implicit declaration of "
3416 "function %qD", decl);
3417 locate_old_decl (decl);
3420 b->u.type = TREE_TYPE (decl);
3421 TREE_TYPE (decl) = newtype;
3422 bind (functionid, decl, current_scope,
3423 /*invisible=*/false, /*nested=*/true,
3424 DECL_SOURCE_LOCATION (decl));
3425 return decl;
3429 /* Not seen before. */
3430 decl = build_decl (loc, FUNCTION_DECL, functionid, default_function_type);
3431 DECL_EXTERNAL (decl) = 1;
3432 TREE_PUBLIC (decl) = 1;
3433 C_DECL_IMPLICIT (decl) = 1;
3434 implicit_decl_warning (loc, functionid, 0);
3435 asmspec_tree = maybe_apply_renaming_pragma (decl, /*asmname=*/NULL);
3436 if (asmspec_tree)
3437 set_user_assembler_name (decl, TREE_STRING_POINTER (asmspec_tree));
3439 /* C89 says implicit declarations are in the innermost block.
3440 So we record the decl in the standard fashion. */
3441 decl = pushdecl (decl);
3443 /* No need to call objc_check_decl here - it's a function type. */
3444 rest_of_decl_compilation (decl, 0, 0);
3446 /* Write a record describing this implicit function declaration
3447 to the prototypes file (if requested). */
3448 gen_aux_info_record (decl, 0, 1, 0);
3450 /* Possibly apply some default attributes to this implicit declaration. */
3451 decl_attributes (&decl, NULL_TREE, 0);
3453 return decl;
3456 /* Issue an error message for a reference to an undeclared variable
3457 ID, including a reference to a builtin outside of function-call
3458 context. Establish a binding of the identifier to error_mark_node
3459 in an appropriate scope, which will suppress further errors for the
3460 same identifier. The error message should be given location LOC. */
3461 void
3462 undeclared_variable (location_t loc, tree id)
3464 static bool already = false;
3465 struct c_scope *scope;
3467 if (current_function_decl == NULL_TREE)
3469 const char *guessed_id = lookup_name_fuzzy (id, FUZZY_LOOKUP_NAME);
3470 if (guessed_id)
3472 gcc_rich_location richloc (loc);
3473 richloc.add_fixit_replace (guessed_id);
3474 error_at (&richloc,
3475 "%qE undeclared here (not in a function);"
3476 " did you mean %qs?",
3477 id, guessed_id);
3479 else
3480 error_at (loc, "%qE undeclared here (not in a function)", id);
3481 scope = current_scope;
3483 else
3485 if (!objc_diagnose_private_ivar (id))
3487 const char *guessed_id = lookup_name_fuzzy (id, FUZZY_LOOKUP_NAME);
3488 if (guessed_id)
3490 gcc_rich_location richloc (loc);
3491 richloc.add_fixit_replace (guessed_id);
3492 error_at (&richloc,
3493 "%qE undeclared (first use in this function);"
3494 " did you mean %qs?",
3495 id, guessed_id);
3497 else
3498 error_at (loc, "%qE undeclared (first use in this function)", id);
3500 if (!already)
3502 inform (loc, "each undeclared identifier is reported only"
3503 " once for each function it appears in");
3504 already = true;
3507 /* If we are parsing old-style parameter decls, current_function_decl
3508 will be nonnull but current_function_scope will be null. */
3509 scope = current_function_scope ? current_function_scope : current_scope;
3511 bind (id, error_mark_node, scope, /*invisible=*/false, /*nested=*/false,
3512 UNKNOWN_LOCATION);
3515 /* Subroutine of lookup_label, declare_label, define_label: construct a
3516 LABEL_DECL with all the proper frills. Also create a struct
3517 c_label_vars initialized for the current scope. */
3519 static tree
3520 make_label (location_t location, tree name, bool defining,
3521 struct c_label_vars **p_label_vars)
3523 tree label = build_decl (location, LABEL_DECL, name, void_type_node);
3524 DECL_CONTEXT (label) = current_function_decl;
3525 SET_DECL_MODE (label, VOIDmode);
3527 c_label_vars *label_vars = ggc_alloc<c_label_vars> ();
3528 label_vars->shadowed = NULL;
3529 set_spot_bindings (&label_vars->label_bindings, defining);
3530 label_vars->decls_in_scope = make_tree_vector ();
3531 label_vars->gotos = NULL;
3532 *p_label_vars = label_vars;
3534 return label;
3537 /* Get the LABEL_DECL corresponding to identifier NAME as a label.
3538 Create one if none exists so far for the current function.
3539 This is called when a label is used in a goto expression or
3540 has its address taken. */
3542 tree
3543 lookup_label (tree name)
3545 tree label;
3546 struct c_label_vars *label_vars;
3548 if (current_function_scope == 0)
3550 error ("label %qE referenced outside of any function", name);
3551 return NULL_TREE;
3554 /* Use a label already defined or ref'd with this name, but not if
3555 it is inherited from a containing function and wasn't declared
3556 using __label__. */
3557 label = I_LABEL_DECL (name);
3558 if (label && (DECL_CONTEXT (label) == current_function_decl
3559 || C_DECLARED_LABEL_FLAG (label)))
3561 /* If the label has only been declared, update its apparent
3562 location to point here, for better diagnostics if it
3563 turns out not to have been defined. */
3564 if (DECL_INITIAL (label) == NULL_TREE)
3565 DECL_SOURCE_LOCATION (label) = input_location;
3566 return label;
3569 /* No label binding for that identifier; make one. */
3570 label = make_label (input_location, name, false, &label_vars);
3572 /* Ordinary labels go in the current function scope. */
3573 bind_label (name, label, current_function_scope, label_vars);
3575 return label;
3578 /* Issue a warning about DECL for a goto statement at GOTO_LOC going
3579 to LABEL. */
3581 static void
3582 warn_about_goto (location_t goto_loc, tree label, tree decl)
3584 if (variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
3585 error_at (goto_loc,
3586 "jump into scope of identifier with variably modified type");
3587 else
3588 warning_at (goto_loc, OPT_Wjump_misses_init,
3589 "jump skips variable initialization");
3590 inform (DECL_SOURCE_LOCATION (label), "label %qD defined here", label);
3591 inform (DECL_SOURCE_LOCATION (decl), "%qD declared here", decl);
3594 /* Look up a label because of a goto statement. This is like
3595 lookup_label, but also issues any appropriate warnings. */
3597 tree
3598 lookup_label_for_goto (location_t loc, tree name)
3600 tree label;
3601 struct c_label_vars *label_vars;
3602 unsigned int ix;
3603 tree decl;
3605 label = lookup_label (name);
3606 if (label == NULL_TREE)
3607 return NULL_TREE;
3609 /* If we are jumping to a different function, we can't issue any
3610 useful warnings. */
3611 if (DECL_CONTEXT (label) != current_function_decl)
3613 gcc_assert (C_DECLARED_LABEL_FLAG (label));
3614 return label;
3617 label_vars = I_LABEL_BINDING (name)->u.label;
3619 /* If the label has not yet been defined, then push this goto on a
3620 list for possible later warnings. */
3621 if (label_vars->label_bindings.scope == NULL)
3623 c_goto_bindings *g = ggc_alloc<c_goto_bindings> ();
3625 g->loc = loc;
3626 set_spot_bindings (&g->goto_bindings, true);
3627 vec_safe_push (label_vars->gotos, g);
3628 return label;
3631 /* If there are any decls in label_vars->decls_in_scope, then this
3632 goto has missed the declaration of the decl. This happens for a
3633 case like
3634 int i = 1;
3635 lab:
3637 goto lab;
3638 Issue a warning or error. */
3639 FOR_EACH_VEC_SAFE_ELT (label_vars->decls_in_scope, ix, decl)
3640 warn_about_goto (loc, label, decl);
3642 if (label_vars->label_bindings.left_stmt_expr)
3644 error_at (loc, "jump into statement expression");
3645 inform (DECL_SOURCE_LOCATION (label), "label %qD defined here", label);
3648 return label;
3651 /* Make a label named NAME in the current function, shadowing silently
3652 any that may be inherited from containing functions or containing
3653 scopes. This is called for __label__ declarations. */
3655 tree
3656 declare_label (tree name)
3658 struct c_binding *b = I_LABEL_BINDING (name);
3659 tree label;
3660 struct c_label_vars *label_vars;
3662 /* Check to make sure that the label hasn't already been declared
3663 at this scope */
3664 if (b && B_IN_CURRENT_SCOPE (b))
3666 error ("duplicate label declaration %qE", name);
3667 locate_old_decl (b->decl);
3669 /* Just use the previous declaration. */
3670 return b->decl;
3673 label = make_label (input_location, name, false, &label_vars);
3674 C_DECLARED_LABEL_FLAG (label) = 1;
3676 /* Declared labels go in the current scope. */
3677 bind_label (name, label, current_scope, label_vars);
3679 return label;
3682 /* When we define a label, issue any appropriate warnings if there are
3683 any gotos earlier in the function which jump to this label. */
3685 static void
3686 check_earlier_gotos (tree label, struct c_label_vars* label_vars)
3688 unsigned int ix;
3689 struct c_goto_bindings *g;
3691 FOR_EACH_VEC_SAFE_ELT (label_vars->gotos, ix, g)
3693 struct c_binding *b;
3694 struct c_scope *scope;
3696 /* We have a goto to this label. The goto is going forward. In
3697 g->scope, the goto is going to skip any binding which was
3698 defined after g->bindings_in_scope. */
3699 if (g->goto_bindings.scope->has_jump_unsafe_decl)
3701 for (b = g->goto_bindings.scope->bindings;
3702 b != g->goto_bindings.bindings_in_scope;
3703 b = b->prev)
3705 if (decl_jump_unsafe (b->decl))
3706 warn_about_goto (g->loc, label, b->decl);
3710 /* We also need to warn about decls defined in any scopes
3711 between the scope of the label and the scope of the goto. */
3712 for (scope = label_vars->label_bindings.scope;
3713 scope != g->goto_bindings.scope;
3714 scope = scope->outer)
3716 gcc_assert (scope != NULL);
3717 if (scope->has_jump_unsafe_decl)
3719 if (scope == label_vars->label_bindings.scope)
3720 b = label_vars->label_bindings.bindings_in_scope;
3721 else
3722 b = scope->bindings;
3723 for (; b != NULL; b = b->prev)
3725 if (decl_jump_unsafe (b->decl))
3726 warn_about_goto (g->loc, label, b->decl);
3731 if (g->goto_bindings.stmt_exprs > 0)
3733 error_at (g->loc, "jump into statement expression");
3734 inform (DECL_SOURCE_LOCATION (label), "label %qD defined here",
3735 label);
3739 /* Now that the label is defined, we will issue warnings about
3740 subsequent gotos to this label when we see them. */
3741 vec_safe_truncate (label_vars->gotos, 0);
3742 label_vars->gotos = NULL;
3745 /* Define a label, specifying the location in the source file.
3746 Return the LABEL_DECL node for the label, if the definition is valid.
3747 Otherwise return NULL_TREE. */
3749 tree
3750 define_label (location_t location, tree name)
3752 /* Find any preexisting label with this name. It is an error
3753 if that label has already been defined in this function, or
3754 if there is a containing function with a declared label with
3755 the same name. */
3756 tree label = I_LABEL_DECL (name);
3758 if (label
3759 && ((DECL_CONTEXT (label) == current_function_decl
3760 && DECL_INITIAL (label) != NULL_TREE)
3761 || (DECL_CONTEXT (label) != current_function_decl
3762 && C_DECLARED_LABEL_FLAG (label))))
3764 error_at (location, "duplicate label %qD", label);
3765 locate_old_decl (label);
3766 return NULL_TREE;
3768 else if (label && DECL_CONTEXT (label) == current_function_decl)
3770 struct c_label_vars *label_vars = I_LABEL_BINDING (name)->u.label;
3772 /* The label has been used or declared already in this function,
3773 but not defined. Update its location to point to this
3774 definition. */
3775 DECL_SOURCE_LOCATION (label) = location;
3776 set_spot_bindings (&label_vars->label_bindings, true);
3778 /* Issue warnings as required about any goto statements from
3779 earlier in the function. */
3780 check_earlier_gotos (label, label_vars);
3782 else
3784 struct c_label_vars *label_vars;
3786 /* No label binding for that identifier; make one. */
3787 label = make_label (location, name, true, &label_vars);
3789 /* Ordinary labels go in the current function scope. */
3790 bind_label (name, label, current_function_scope, label_vars);
3793 if (!in_system_header_at (input_location) && lookup_name (name))
3794 warning_at (location, OPT_Wtraditional,
3795 "traditional C lacks a separate namespace "
3796 "for labels, identifier %qE conflicts", name);
3798 /* Mark label as having been defined. */
3799 DECL_INITIAL (label) = error_mark_node;
3800 return label;
3803 /* Get the bindings for a new switch statement. This is used to issue
3804 warnings as appropriate for jumps from the switch to case or
3805 default labels. */
3807 struct c_spot_bindings *
3808 c_get_switch_bindings (void)
3810 struct c_spot_bindings *switch_bindings;
3812 switch_bindings = XNEW (struct c_spot_bindings);
3813 set_spot_bindings (switch_bindings, true);
3814 return switch_bindings;
3817 void
3818 c_release_switch_bindings (struct c_spot_bindings *bindings)
3820 gcc_assert (bindings->stmt_exprs == 0 && !bindings->left_stmt_expr);
3821 XDELETE (bindings);
3824 /* This is called at the point of a case or default label to issue
3825 warnings about decls as needed. It returns true if it found an
3826 error, not just a warning. */
3828 bool
3829 c_check_switch_jump_warnings (struct c_spot_bindings *switch_bindings,
3830 location_t switch_loc, location_t case_loc)
3832 bool saw_error;
3833 struct c_scope *scope;
3835 saw_error = false;
3836 for (scope = current_scope;
3837 scope != switch_bindings->scope;
3838 scope = scope->outer)
3840 struct c_binding *b;
3842 gcc_assert (scope != NULL);
3844 if (!scope->has_jump_unsafe_decl)
3845 continue;
3847 for (b = scope->bindings; b != NULL; b = b->prev)
3849 if (decl_jump_unsafe (b->decl))
3851 if (variably_modified_type_p (TREE_TYPE (b->decl), NULL_TREE))
3853 saw_error = true;
3854 error_at (case_loc,
3855 ("switch jumps into scope of identifier with "
3856 "variably modified type"));
3858 else
3859 warning_at (case_loc, OPT_Wjump_misses_init,
3860 "switch jumps over variable initialization");
3861 inform (switch_loc, "switch starts here");
3862 inform (DECL_SOURCE_LOCATION (b->decl), "%qD declared here",
3863 b->decl);
3868 if (switch_bindings->stmt_exprs > 0)
3870 saw_error = true;
3871 error_at (case_loc, "switch jumps into statement expression");
3872 inform (switch_loc, "switch starts here");
3875 return saw_error;
3878 /* Given NAME, an IDENTIFIER_NODE,
3879 return the structure (or union or enum) definition for that name.
3880 If THISLEVEL_ONLY is nonzero, searches only the current_scope.
3881 CODE says which kind of type the caller wants;
3882 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
3883 If PLOC is not NULL and this returns non-null, it sets *PLOC to the
3884 location where the tag was defined.
3885 If the wrong kind of type is found, an error is reported. */
3887 static tree
3888 lookup_tag (enum tree_code code, tree name, bool thislevel_only,
3889 location_t *ploc)
3891 struct c_binding *b = I_TAG_BINDING (name);
3892 bool thislevel = false;
3894 if (!b || !b->decl)
3895 return NULL_TREE;
3897 /* We only care about whether it's in this level if
3898 thislevel_only was set or it might be a type clash. */
3899 if (thislevel_only || TREE_CODE (b->decl) != code)
3901 /* For our purposes, a tag in the external scope is the same as
3902 a tag in the file scope. (Primarily relevant to Objective-C
3903 and its builtin structure tags, which get pushed before the
3904 file scope is created.) */
3905 if (B_IN_CURRENT_SCOPE (b)
3906 || (current_scope == file_scope && B_IN_EXTERNAL_SCOPE (b)))
3907 thislevel = true;
3910 if (thislevel_only && !thislevel)
3911 return NULL_TREE;
3913 if (TREE_CODE (b->decl) != code)
3915 /* Definition isn't the kind we were looking for. */
3916 pending_invalid_xref = name;
3917 pending_invalid_xref_location = input_location;
3919 /* If in the same binding level as a declaration as a tag
3920 of a different type, this must not be allowed to
3921 shadow that tag, so give the error immediately.
3922 (For example, "struct foo; union foo;" is invalid.) */
3923 if (thislevel)
3924 pending_xref_error ();
3927 if (ploc != NULL)
3928 *ploc = b->locus;
3930 return b->decl;
3933 /* Return true if a definition exists for NAME with code CODE. */
3935 bool
3936 tag_exists_p (enum tree_code code, tree name)
3938 struct c_binding *b = I_TAG_BINDING (name);
3940 if (b == NULL || b->decl == NULL_TREE)
3941 return false;
3942 return TREE_CODE (b->decl) == code;
3945 /* Print an error message now
3946 for a recent invalid struct, union or enum cross reference.
3947 We don't print them immediately because they are not invalid
3948 when used in the `struct foo;' construct for shadowing. */
3950 void
3951 pending_xref_error (void)
3953 if (pending_invalid_xref != NULL_TREE)
3954 error_at (pending_invalid_xref_location, "%qE defined as wrong kind of tag",
3955 pending_invalid_xref);
3956 pending_invalid_xref = NULL_TREE;
3960 /* Look up NAME in the current scope and its superiors
3961 in the namespace of variables, functions and typedefs.
3962 Return a ..._DECL node of some kind representing its definition,
3963 or return NULL_TREE if it is undefined. */
3965 tree
3966 lookup_name (tree name)
3968 struct c_binding *b = I_SYMBOL_BINDING (name);
3969 if (b && !b->invisible)
3971 maybe_record_typedef_use (b->decl);
3972 return b->decl;
3974 return NULL_TREE;
3977 /* Similar to `lookup_name' but look only at the indicated scope. */
3979 static tree
3980 lookup_name_in_scope (tree name, struct c_scope *scope)
3982 struct c_binding *b;
3984 for (b = I_SYMBOL_BINDING (name); b; b = b->shadowed)
3985 if (B_IN_SCOPE (b, scope))
3986 return b->decl;
3987 return NULL_TREE;
3990 /* Look for the closest match for NAME within the currently valid
3991 scopes.
3993 This finds the identifier with the lowest Levenshtein distance to
3994 NAME. If there are multiple candidates with equal minimal distance,
3995 the first one found is returned. Scopes are searched from innermost
3996 outwards, and within a scope in reverse order of declaration, thus
3997 benefiting candidates "near" to the current scope.
3999 The function also looks for similar macro names to NAME, since a
4000 misspelled macro name will not be expanded, and hence looks like an
4001 identifier to the C frontend.
4003 It also looks for start_typename keywords, to detect "singed" vs "signed"
4004 typos. */
4006 const char *
4007 lookup_name_fuzzy (tree name, enum lookup_name_fuzzy_kind kind)
4009 gcc_assert (TREE_CODE (name) == IDENTIFIER_NODE);
4011 best_match<tree, tree> bm (name);
4013 /* Look within currently valid scopes. */
4014 for (c_scope *scope = current_scope; scope; scope = scope->outer)
4015 for (c_binding *binding = scope->bindings; binding; binding = binding->prev)
4017 if (!binding->id || binding->invisible)
4018 continue;
4019 /* Don't use bindings from implicitly declared functions,
4020 as they were likely misspellings themselves. */
4021 if (TREE_CODE (binding->decl) == FUNCTION_DECL)
4022 if (C_DECL_IMPLICIT (binding->decl))
4023 continue;
4024 switch (kind)
4026 case FUZZY_LOOKUP_TYPENAME:
4027 if (TREE_CODE (binding->decl) != TYPE_DECL)
4028 continue;
4029 break;
4031 case FUZZY_LOOKUP_FUNCTION_NAME:
4032 if (TREE_CODE (binding->decl) != FUNCTION_DECL)
4034 /* Allow function pointers. */
4035 if ((VAR_P (binding->decl)
4036 || TREE_CODE (binding->decl) == PARM_DECL)
4037 && TREE_CODE (TREE_TYPE (binding->decl)) == POINTER_TYPE
4038 && (TREE_CODE (TREE_TYPE (TREE_TYPE (binding->decl)))
4039 == FUNCTION_TYPE))
4040 break;
4041 continue;
4043 break;
4045 default:
4046 break;
4048 bm.consider (binding->id);
4051 /* Consider macros: if the user misspelled a macro name e.g. "SOME_MACRO"
4053 x = SOME_OTHER_MACRO (y);
4054 then "SOME_OTHER_MACRO" will survive to the frontend and show up
4055 as a misspelled identifier.
4057 Use the best distance so far so that a candidate is only set if
4058 a macro is better than anything so far. This allows early rejection
4059 (without calculating the edit distance) of macro names that must have
4060 distance >= bm.get_best_distance (), and means that we only get a
4061 non-NULL result for best_macro_match if it's better than any of
4062 the identifiers already checked, which avoids needless creation
4063 of identifiers for macro hashnodes. */
4064 best_macro_match bmm (name, bm.get_best_distance (), parse_in);
4065 cpp_hashnode *best_macro = bmm.get_best_meaningful_candidate ();
4066 /* If a macro is the closest so far to NAME, use it, creating an
4067 identifier tree node for it. */
4068 if (best_macro)
4070 const char *id = (const char *)best_macro->ident.str;
4071 tree macro_as_identifier
4072 = get_identifier_with_length (id, best_macro->ident.len);
4073 bm.set_best_so_far (macro_as_identifier,
4074 bmm.get_best_distance (),
4075 bmm.get_best_candidate_length ());
4078 /* Try the "start_typename" keywords to detect
4079 "singed" vs "signed" typos. */
4080 if (kind == FUZZY_LOOKUP_TYPENAME)
4082 for (unsigned i = 0; i < num_c_common_reswords; i++)
4084 const c_common_resword *resword = &c_common_reswords[i];
4085 if (!c_keyword_starts_typename (resword->rid))
4086 continue;
4087 tree resword_identifier = ridpointers [resword->rid];
4088 if (!resword_identifier)
4089 continue;
4090 gcc_assert (TREE_CODE (resword_identifier) == IDENTIFIER_NODE);
4091 bm.consider (resword_identifier);
4095 tree best = bm.get_best_meaningful_candidate ();
4096 if (best)
4097 return IDENTIFIER_POINTER (best);
4098 else
4099 return NULL;
4103 /* Create the predefined scalar types of C,
4104 and some nodes representing standard constants (0, 1, (void *) 0).
4105 Initialize the global scope.
4106 Make definitions for built-in primitive functions. */
4108 void
4109 c_init_decl_processing (void)
4111 location_t save_loc = input_location;
4113 /* Initialize reserved words for parser. */
4114 c_parse_init ();
4116 current_function_decl = NULL_TREE;
4118 gcc_obstack_init (&parser_obstack);
4120 /* Make the externals scope. */
4121 push_scope ();
4122 external_scope = current_scope;
4124 /* Declarations from c_common_nodes_and_builtins must not be associated
4125 with this input file, lest we get differences between using and not
4126 using preprocessed headers. */
4127 input_location = BUILTINS_LOCATION;
4129 c_common_nodes_and_builtins ();
4131 /* In C, comparisons and TRUTH_* expressions have type int. */
4132 truthvalue_type_node = integer_type_node;
4133 truthvalue_true_node = integer_one_node;
4134 truthvalue_false_node = integer_zero_node;
4136 /* Even in C99, which has a real boolean type. */
4137 pushdecl (build_decl (UNKNOWN_LOCATION, TYPE_DECL, get_identifier ("_Bool"),
4138 boolean_type_node));
4140 input_location = save_loc;
4142 make_fname_decl = c_make_fname_decl;
4143 start_fname_decls ();
4146 /* Create the VAR_DECL at LOC for __FUNCTION__ etc. ID is the name to
4147 give the decl, NAME is the initialization string and TYPE_DEP
4148 indicates whether NAME depended on the type of the function. As we
4149 don't yet implement delayed emission of static data, we mark the
4150 decl as emitted so it is not placed in the output. Anything using
4151 it must therefore pull out the STRING_CST initializer directly.
4152 FIXME. */
4154 static tree
4155 c_make_fname_decl (location_t loc, tree id, int type_dep)
4157 const char *name = fname_as_string (type_dep);
4158 tree decl, type, init;
4159 size_t length = strlen (name);
4161 type = build_array_type (char_type_node,
4162 build_index_type (size_int (length)));
4163 type = c_build_qualified_type (type, TYPE_QUAL_CONST);
4165 decl = build_decl (loc, VAR_DECL, id, type);
4167 TREE_STATIC (decl) = 1;
4168 TREE_READONLY (decl) = 1;
4169 DECL_ARTIFICIAL (decl) = 1;
4171 init = build_string (length + 1, name);
4172 free (CONST_CAST (char *, name));
4173 TREE_TYPE (init) = type;
4174 DECL_INITIAL (decl) = init;
4176 TREE_USED (decl) = 1;
4178 if (current_function_decl
4179 /* For invalid programs like this:
4181 void foo()
4182 const char* p = __FUNCTION__;
4184 the __FUNCTION__ is believed to appear in K&R style function
4185 parameter declarator. In that case we still don't have
4186 function_scope. */
4187 && current_function_scope)
4189 DECL_CONTEXT (decl) = current_function_decl;
4190 bind (id, decl, current_function_scope,
4191 /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION);
4194 finish_decl (decl, loc, init, NULL_TREE, NULL_TREE);
4196 return decl;
4199 tree
4200 c_builtin_function (tree decl)
4202 tree type = TREE_TYPE (decl);
4203 tree id = DECL_NAME (decl);
4205 const char *name = IDENTIFIER_POINTER (id);
4206 C_DECL_BUILTIN_PROTOTYPE (decl) = prototype_p (type);
4208 /* Should never be called on a symbol with a preexisting meaning. */
4209 gcc_assert (!I_SYMBOL_BINDING (id));
4211 bind (id, decl, external_scope, /*invisible=*/true, /*nested=*/false,
4212 UNKNOWN_LOCATION);
4214 /* Builtins in the implementation namespace are made visible without
4215 needing to be explicitly declared. See push_file_scope. */
4216 if (name[0] == '_' && (name[1] == '_' || ISUPPER (name[1])))
4218 DECL_CHAIN (decl) = visible_builtins;
4219 visible_builtins = decl;
4222 return decl;
4225 tree
4226 c_builtin_function_ext_scope (tree decl)
4228 tree type = TREE_TYPE (decl);
4229 tree id = DECL_NAME (decl);
4231 const char *name = IDENTIFIER_POINTER (id);
4232 C_DECL_BUILTIN_PROTOTYPE (decl) = prototype_p (type);
4234 if (external_scope)
4235 bind (id, decl, external_scope, /*invisible=*/false, /*nested=*/false,
4236 UNKNOWN_LOCATION);
4238 /* Builtins in the implementation namespace are made visible without
4239 needing to be explicitly declared. See push_file_scope. */
4240 if (name[0] == '_' && (name[1] == '_' || ISUPPER (name[1])))
4242 DECL_CHAIN (decl) = visible_builtins;
4243 visible_builtins = decl;
4246 return decl;
4249 /* Called when a declaration is seen that contains no names to declare.
4250 If its type is a reference to a structure, union or enum inherited
4251 from a containing scope, shadow that tag name for the current scope
4252 with a forward reference.
4253 If its type defines a new named structure or union
4254 or defines an enum, it is valid but we need not do anything here.
4255 Otherwise, it is an error. */
4257 void
4258 shadow_tag (const struct c_declspecs *declspecs)
4260 shadow_tag_warned (declspecs, 0);
4263 /* WARNED is 1 if we have done a pedwarn, 2 if we have done a warning,
4264 but no pedwarn. */
4265 void
4266 shadow_tag_warned (const struct c_declspecs *declspecs, int warned)
4268 bool found_tag = false;
4270 if (declspecs->type && !declspecs->default_int_p && !declspecs->typedef_p)
4272 tree value = declspecs->type;
4273 enum tree_code code = TREE_CODE (value);
4275 if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
4276 /* Used to test also that TYPE_SIZE (value) != 0.
4277 That caused warning for `struct foo;' at top level in the file. */
4279 tree name = TYPE_NAME (value);
4280 tree t;
4282 found_tag = true;
4284 if (declspecs->restrict_p)
4286 error ("invalid use of %<restrict%>");
4287 warned = 1;
4290 if (name == NULL_TREE)
4292 if (warned != 1 && code != ENUMERAL_TYPE)
4293 /* Empty unnamed enum OK */
4295 pedwarn (input_location, 0,
4296 "unnamed struct/union that defines no instances");
4297 warned = 1;
4300 else if (declspecs->typespec_kind != ctsk_tagdef
4301 && declspecs->typespec_kind != ctsk_tagfirstref
4302 && declspecs->storage_class != csc_none)
4304 if (warned != 1)
4305 pedwarn (input_location, 0,
4306 "empty declaration with storage class specifier "
4307 "does not redeclare tag");
4308 warned = 1;
4309 pending_xref_error ();
4311 else if (declspecs->typespec_kind != ctsk_tagdef
4312 && declspecs->typespec_kind != ctsk_tagfirstref
4313 && (declspecs->const_p
4314 || declspecs->volatile_p
4315 || declspecs->atomic_p
4316 || declspecs->restrict_p
4317 || declspecs->address_space))
4319 if (warned != 1)
4320 pedwarn (input_location, 0,
4321 "empty declaration with type qualifier "
4322 "does not redeclare tag");
4323 warned = 1;
4324 pending_xref_error ();
4326 else if (declspecs->typespec_kind != ctsk_tagdef
4327 && declspecs->typespec_kind != ctsk_tagfirstref
4328 && declspecs->alignas_p)
4330 if (warned != 1)
4331 pedwarn (input_location, 0,
4332 "empty declaration with %<_Alignas%> "
4333 "does not redeclare tag");
4334 warned = 1;
4335 pending_xref_error ();
4337 else
4339 pending_invalid_xref = NULL_TREE;
4340 t = lookup_tag (code, name, true, NULL);
4342 if (t == NULL_TREE)
4344 t = make_node (code);
4345 pushtag (input_location, name, t);
4349 else
4351 if (warned != 1 && !in_system_header_at (input_location))
4353 pedwarn (input_location, 0,
4354 "useless type name in empty declaration");
4355 warned = 1;
4359 else if (warned != 1 && !in_system_header_at (input_location)
4360 && declspecs->typedef_p)
4362 pedwarn (input_location, 0, "useless type name in empty declaration");
4363 warned = 1;
4366 pending_invalid_xref = NULL_TREE;
4368 if (declspecs->inline_p)
4370 error ("%<inline%> in empty declaration");
4371 warned = 1;
4374 if (declspecs->noreturn_p)
4376 error ("%<_Noreturn%> in empty declaration");
4377 warned = 1;
4380 if (current_scope == file_scope && declspecs->storage_class == csc_auto)
4382 error ("%<auto%> in file-scope empty declaration");
4383 warned = 1;
4386 if (current_scope == file_scope && declspecs->storage_class == csc_register)
4388 error ("%<register%> in file-scope empty declaration");
4389 warned = 1;
4392 if (!warned && !in_system_header_at (input_location)
4393 && declspecs->storage_class != csc_none)
4395 warning (0, "useless storage class specifier in empty declaration");
4396 warned = 2;
4399 if (!warned && !in_system_header_at (input_location) && declspecs->thread_p)
4401 warning (0, "useless %qs in empty declaration",
4402 declspecs->thread_gnu_p ? "__thread" : "_Thread_local");
4403 warned = 2;
4406 if (!warned
4407 && !in_system_header_at (input_location)
4408 && (declspecs->const_p
4409 || declspecs->volatile_p
4410 || declspecs->atomic_p
4411 || declspecs->restrict_p
4412 || declspecs->address_space))
4414 warning (0, "useless type qualifier in empty declaration");
4415 warned = 2;
4418 if (!warned && !in_system_header_at (input_location)
4419 && declspecs->alignas_p)
4421 warning (0, "useless %<_Alignas%> in empty declaration");
4422 warned = 2;
4425 if (warned != 1)
4427 if (!found_tag)
4428 pedwarn (input_location, 0, "empty declaration");
4433 /* Return the qualifiers from SPECS as a bitwise OR of TYPE_QUAL_*
4434 bits. SPECS represents declaration specifiers that the grammar
4435 only permits to contain type qualifiers and attributes. */
4438 quals_from_declspecs (const struct c_declspecs *specs)
4440 int quals = ((specs->const_p ? TYPE_QUAL_CONST : 0)
4441 | (specs->volatile_p ? TYPE_QUAL_VOLATILE : 0)
4442 | (specs->restrict_p ? TYPE_QUAL_RESTRICT : 0)
4443 | (specs->atomic_p ? TYPE_QUAL_ATOMIC : 0)
4444 | (ENCODE_QUAL_ADDR_SPACE (specs->address_space)));
4445 gcc_assert (!specs->type
4446 && !specs->decl_attr
4447 && specs->typespec_word == cts_none
4448 && specs->storage_class == csc_none
4449 && !specs->typedef_p
4450 && !specs->explicit_signed_p
4451 && !specs->deprecated_p
4452 && !specs->long_p
4453 && !specs->long_long_p
4454 && !specs->short_p
4455 && !specs->signed_p
4456 && !specs->unsigned_p
4457 && !specs->complex_p
4458 && !specs->inline_p
4459 && !specs->noreturn_p
4460 && !specs->thread_p);
4461 return quals;
4464 /* Construct an array declarator. LOC is the location of the
4465 beginning of the array (usually the opening brace). EXPR is the
4466 expression inside [], or NULL_TREE. QUALS are the type qualifiers
4467 inside the [] (to be applied to the pointer to which a parameter
4468 array is converted). STATIC_P is true if "static" is inside the
4469 [], false otherwise. VLA_UNSPEC_P is true if the array is [*], a
4470 VLA of unspecified length which is nevertheless a complete type,
4471 false otherwise. The field for the contained declarator is left to
4472 be filled in by set_array_declarator_inner. */
4474 struct c_declarator *
4475 build_array_declarator (location_t loc,
4476 tree expr, struct c_declspecs *quals, bool static_p,
4477 bool vla_unspec_p)
4479 struct c_declarator *declarator = XOBNEW (&parser_obstack,
4480 struct c_declarator);
4481 declarator->id_loc = loc;
4482 declarator->kind = cdk_array;
4483 declarator->declarator = 0;
4484 declarator->u.array.dimen = expr;
4485 if (quals)
4487 declarator->u.array.attrs = quals->attrs;
4488 declarator->u.array.quals = quals_from_declspecs (quals);
4490 else
4492 declarator->u.array.attrs = NULL_TREE;
4493 declarator->u.array.quals = 0;
4495 declarator->u.array.static_p = static_p;
4496 declarator->u.array.vla_unspec_p = vla_unspec_p;
4497 if (static_p || quals != NULL)
4498 pedwarn_c90 (loc, OPT_Wpedantic,
4499 "ISO C90 does not support %<static%> or type "
4500 "qualifiers in parameter array declarators");
4501 if (vla_unspec_p)
4502 pedwarn_c90 (loc, OPT_Wpedantic,
4503 "ISO C90 does not support %<[*]%> array declarators");
4504 if (vla_unspec_p)
4506 if (!current_scope->parm_flag)
4508 /* C99 6.7.5.2p4 */
4509 error_at (loc, "%<[*]%> not allowed in other than "
4510 "function prototype scope");
4511 declarator->u.array.vla_unspec_p = false;
4512 return NULL;
4514 current_scope->had_vla_unspec = true;
4516 return declarator;
4519 /* Set the contained declarator of an array declarator. DECL is the
4520 declarator, as constructed by build_array_declarator; INNER is what
4521 appears on the left of the []. */
4523 struct c_declarator *
4524 set_array_declarator_inner (struct c_declarator *decl,
4525 struct c_declarator *inner)
4527 decl->declarator = inner;
4528 return decl;
4531 /* INIT is a constructor that forms DECL's initializer. If the final
4532 element initializes a flexible array field, add the size of that
4533 initializer to DECL's size. */
4535 static void
4536 add_flexible_array_elts_to_size (tree decl, tree init)
4538 tree elt, type;
4540 if (vec_safe_is_empty (CONSTRUCTOR_ELTS (init)))
4541 return;
4543 elt = CONSTRUCTOR_ELTS (init)->last ().value;
4544 type = TREE_TYPE (elt);
4545 if (TREE_CODE (type) == ARRAY_TYPE
4546 && TYPE_SIZE (type) == NULL_TREE
4547 && TYPE_DOMAIN (type) != NULL_TREE
4548 && TYPE_MAX_VALUE (TYPE_DOMAIN (type)) == NULL_TREE)
4550 complete_array_type (&type, elt, false);
4551 DECL_SIZE (decl)
4552 = size_binop (PLUS_EXPR, DECL_SIZE (decl), TYPE_SIZE (type));
4553 DECL_SIZE_UNIT (decl)
4554 = size_binop (PLUS_EXPR, DECL_SIZE_UNIT (decl), TYPE_SIZE_UNIT (type));
4558 /* Decode a "typename", such as "int **", returning a ..._TYPE node.
4559 Set *EXPR, if EXPR not NULL, to any expression to be evaluated
4560 before the type name, and set *EXPR_CONST_OPERANDS, if
4561 EXPR_CONST_OPERANDS not NULL, to indicate whether the type name may
4562 appear in a constant expression. */
4564 tree
4565 groktypename (struct c_type_name *type_name, tree *expr,
4566 bool *expr_const_operands)
4568 tree type;
4569 tree attrs = type_name->specs->attrs;
4571 type_name->specs->attrs = NULL_TREE;
4573 type = grokdeclarator (type_name->declarator, type_name->specs, TYPENAME,
4574 false, NULL, &attrs, expr, expr_const_operands,
4575 DEPRECATED_NORMAL);
4577 /* Apply attributes. */
4578 decl_attributes (&type, attrs, 0);
4580 return type;
4583 /* Wrapper for decl_attributes that adds some implicit attributes
4584 to VAR_DECLs or FUNCTION_DECLs. */
4586 static tree
4587 c_decl_attributes (tree *node, tree attributes, int flags)
4589 /* Add implicit "omp declare target" attribute if requested. */
4590 if (current_omp_declare_target_attribute
4591 && ((VAR_P (*node) && is_global_var (*node))
4592 || TREE_CODE (*node) == FUNCTION_DECL))
4594 if (VAR_P (*node)
4595 && !lang_hooks.types.omp_mappable_type (TREE_TYPE (*node)))
4596 error ("%q+D in declare target directive does not have mappable type",
4597 *node);
4598 else
4599 attributes = tree_cons (get_identifier ("omp declare target"),
4600 NULL_TREE, attributes);
4602 return decl_attributes (node, attributes, flags);
4606 /* Decode a declarator in an ordinary declaration or data definition.
4607 This is called as soon as the type information and variable name
4608 have been parsed, before parsing the initializer if any.
4609 Here we create the ..._DECL node, fill in its type,
4610 and put it on the list of decls for the current context.
4611 The ..._DECL node is returned as the value.
4613 Exception: for arrays where the length is not specified,
4614 the type is left null, to be filled in by `finish_decl'.
4616 Function definitions do not come here; they go to start_function
4617 instead. However, external and forward declarations of functions
4618 do go through here. Structure field declarations are done by
4619 grokfield and not through here. */
4621 tree
4622 start_decl (struct c_declarator *declarator, struct c_declspecs *declspecs,
4623 bool initialized, tree attributes)
4625 tree decl;
4626 tree tem;
4627 tree expr = NULL_TREE;
4628 enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
4630 /* An object declared as __attribute__((deprecated)) suppresses
4631 warnings of uses of other deprecated items. */
4632 if (lookup_attribute ("deprecated", attributes))
4633 deprecated_state = DEPRECATED_SUPPRESS;
4635 decl = grokdeclarator (declarator, declspecs,
4636 NORMAL, initialized, NULL, &attributes, &expr, NULL,
4637 deprecated_state);
4638 if (!decl || decl == error_mark_node)
4639 return NULL_TREE;
4641 if (expr)
4642 add_stmt (fold_convert (void_type_node, expr));
4644 if (TREE_CODE (decl) != FUNCTION_DECL && MAIN_NAME_P (DECL_NAME (decl)))
4645 warning (OPT_Wmain, "%q+D is usually a function", decl);
4647 if (initialized)
4648 /* Is it valid for this decl to have an initializer at all?
4649 If not, set INITIALIZED to zero, which will indirectly
4650 tell 'finish_decl' to ignore the initializer once it is parsed. */
4651 switch (TREE_CODE (decl))
4653 case TYPE_DECL:
4654 error ("typedef %qD is initialized (use __typeof__ instead)", decl);
4655 initialized = false;
4656 break;
4658 case FUNCTION_DECL:
4659 error ("function %qD is initialized like a variable", decl);
4660 initialized = false;
4661 break;
4663 case PARM_DECL:
4664 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
4665 error ("parameter %qD is initialized", decl);
4666 initialized = false;
4667 break;
4669 default:
4670 /* Don't allow initializations for incomplete types except for
4671 arrays which might be completed by the initialization. */
4673 /* This can happen if the array size is an undefined macro.
4674 We already gave a warning, so we don't need another one. */
4675 if (TREE_TYPE (decl) == error_mark_node)
4676 initialized = false;
4677 else if (COMPLETE_TYPE_P (TREE_TYPE (decl)))
4679 /* A complete type is ok if size is fixed. */
4681 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl))) != INTEGER_CST
4682 || C_DECL_VARIABLE_SIZE (decl))
4684 error ("variable-sized object may not be initialized");
4685 initialized = false;
4688 else if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
4690 error ("variable %qD has initializer but incomplete type", decl);
4691 initialized = false;
4693 else if (C_DECL_VARIABLE_SIZE (decl))
4695 /* Although C99 is unclear about whether incomplete arrays
4696 of VLAs themselves count as VLAs, it does not make
4697 sense to permit them to be initialized given that
4698 ordinary VLAs may not be initialized. */
4699 error ("variable-sized object may not be initialized");
4700 initialized = false;
4704 if (initialized)
4706 if (current_scope == file_scope)
4707 TREE_STATIC (decl) = 1;
4709 /* Tell 'pushdecl' this is an initialized decl
4710 even though we don't yet have the initializer expression.
4711 Also tell 'finish_decl' it may store the real initializer. */
4712 DECL_INITIAL (decl) = error_mark_node;
4715 /* If this is a function declaration, write a record describing it to the
4716 prototypes file (if requested). */
4718 if (TREE_CODE (decl) == FUNCTION_DECL)
4719 gen_aux_info_record (decl, 0, 0, prototype_p (TREE_TYPE (decl)));
4721 /* ANSI specifies that a tentative definition which is not merged with
4722 a non-tentative definition behaves exactly like a definition with an
4723 initializer equal to zero. (Section 3.7.2)
4725 -fno-common gives strict ANSI behavior, though this tends to break
4726 a large body of code that grew up without this rule.
4728 Thread-local variables are never common, since there's no entrenched
4729 body of code to break, and it allows more efficient variable references
4730 in the presence of dynamic linking. */
4732 if (VAR_P (decl)
4733 && !initialized
4734 && TREE_PUBLIC (decl)
4735 && !DECL_THREAD_LOCAL_P (decl)
4736 && !flag_no_common)
4737 DECL_COMMON (decl) = 1;
4739 /* Set attributes here so if duplicate decl, will have proper attributes. */
4740 c_decl_attributes (&decl, attributes, 0);
4742 /* Handle gnu_inline attribute. */
4743 if (declspecs->inline_p
4744 && !flag_gnu89_inline
4745 && TREE_CODE (decl) == FUNCTION_DECL
4746 && (lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl))
4747 || current_function_decl))
4749 if (declspecs->storage_class == csc_auto && current_scope != file_scope)
4751 else if (declspecs->storage_class != csc_static)
4752 DECL_EXTERNAL (decl) = !DECL_EXTERNAL (decl);
4755 if (TREE_CODE (decl) == FUNCTION_DECL
4756 && targetm.calls.promote_prototypes (TREE_TYPE (decl)))
4758 struct c_declarator *ce = declarator;
4760 if (ce->kind == cdk_pointer)
4761 ce = declarator->declarator;
4762 if (ce->kind == cdk_function)
4764 tree args = ce->u.arg_info->parms;
4765 for (; args; args = DECL_CHAIN (args))
4767 tree type = TREE_TYPE (args);
4768 if (type && INTEGRAL_TYPE_P (type)
4769 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
4770 DECL_ARG_TYPE (args) = c_type_promotes_to (type);
4775 if (TREE_CODE (decl) == FUNCTION_DECL
4776 && DECL_DECLARED_INLINE_P (decl)
4777 && DECL_UNINLINABLE (decl)
4778 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
4779 warning (OPT_Wattributes, "inline function %q+D given attribute noinline",
4780 decl);
4782 /* C99 6.7.4p3: An inline definition of a function with external
4783 linkage shall not contain a definition of a modifiable object
4784 with static storage duration... */
4785 if (VAR_P (decl)
4786 && current_scope != file_scope
4787 && TREE_STATIC (decl)
4788 && !TREE_READONLY (decl)
4789 && DECL_DECLARED_INLINE_P (current_function_decl)
4790 && DECL_EXTERNAL (current_function_decl))
4791 record_inline_static (input_location, current_function_decl,
4792 decl, csi_modifiable);
4794 if (c_dialect_objc ()
4795 && VAR_OR_FUNCTION_DECL_P (decl))
4796 objc_check_global_decl (decl);
4798 /* Add this decl to the current scope.
4799 TEM may equal DECL or it may be a previous decl of the same name. */
4800 tem = pushdecl (decl);
4802 if (initialized && DECL_EXTERNAL (tem))
4804 DECL_EXTERNAL (tem) = 0;
4805 TREE_STATIC (tem) = 1;
4808 return tem;
4811 /* Subroutine of finish_decl. TYPE is the type of an uninitialized object
4812 DECL or the non-array element type if DECL is an uninitialized array.
4813 If that type has a const member, diagnose this. */
4815 static void
4816 diagnose_uninitialized_cst_member (tree decl, tree type)
4818 tree field;
4819 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
4821 tree field_type;
4822 if (TREE_CODE (field) != FIELD_DECL)
4823 continue;
4824 field_type = strip_array_types (TREE_TYPE (field));
4826 if (TYPE_QUALS (field_type) & TYPE_QUAL_CONST)
4828 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wc___compat,
4829 "uninitialized const member in %qT is invalid in C++",
4830 strip_array_types (TREE_TYPE (decl)));
4831 inform (DECL_SOURCE_LOCATION (field), "%qD should be initialized", field);
4834 if (RECORD_OR_UNION_TYPE_P (field_type))
4835 diagnose_uninitialized_cst_member (decl, field_type);
4839 /* Finish processing of a declaration;
4840 install its initial value.
4841 If ORIGTYPE is not NULL_TREE, it is the original type of INIT.
4842 If the length of an array type is not known before,
4843 it must be determined now, from the initial value, or it is an error.
4845 INIT_LOC is the location of the initial value. */
4847 void
4848 finish_decl (tree decl, location_t init_loc, tree init,
4849 tree origtype, tree asmspec_tree)
4851 tree type;
4852 bool was_incomplete = (DECL_SIZE (decl) == NULL_TREE);
4853 const char *asmspec = 0;
4855 /* If a name was specified, get the string. */
4856 if (VAR_OR_FUNCTION_DECL_P (decl)
4857 && DECL_FILE_SCOPE_P (decl))
4858 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
4859 if (asmspec_tree)
4860 asmspec = TREE_STRING_POINTER (asmspec_tree);
4862 if (VAR_P (decl)
4863 && TREE_STATIC (decl)
4864 && global_bindings_p ())
4865 /* So decl is a global variable. Record the types it uses
4866 so that we can decide later to emit debug info for them. */
4867 record_types_used_by_current_var_decl (decl);
4869 /* If `start_decl' didn't like having an initialization, ignore it now. */
4870 if (init != NULL_TREE && DECL_INITIAL (decl) == NULL_TREE)
4871 init = NULL_TREE;
4873 /* Don't crash if parm is initialized. */
4874 if (TREE_CODE (decl) == PARM_DECL)
4875 init = NULL_TREE;
4877 if (init)
4878 store_init_value (init_loc, decl, init, origtype);
4880 if (c_dialect_objc () && (VAR_OR_FUNCTION_DECL_P (decl)
4881 || TREE_CODE (decl) == FIELD_DECL))
4882 objc_check_decl (decl);
4884 type = TREE_TYPE (decl);
4886 /* Deduce size of array from initialization, if not already known. */
4887 if (TREE_CODE (type) == ARRAY_TYPE
4888 && TYPE_DOMAIN (type) == NULL_TREE
4889 && TREE_CODE (decl) != TYPE_DECL)
4891 bool do_default
4892 = (TREE_STATIC (decl)
4893 /* Even if pedantic, an external linkage array
4894 may have incomplete type at first. */
4895 ? pedantic && !TREE_PUBLIC (decl)
4896 : !DECL_EXTERNAL (decl));
4897 int failure
4898 = complete_array_type (&TREE_TYPE (decl), DECL_INITIAL (decl),
4899 do_default);
4901 /* Get the completed type made by complete_array_type. */
4902 type = TREE_TYPE (decl);
4904 switch (failure)
4906 case 1:
4907 error ("initializer fails to determine size of %q+D", decl);
4908 break;
4910 case 2:
4911 if (do_default)
4912 error ("array size missing in %q+D", decl);
4913 /* If a `static' var's size isn't known,
4914 make it extern as well as static, so it does not get
4915 allocated.
4916 If it is not `static', then do not mark extern;
4917 finish_incomplete_decl will give it a default size
4918 and it will get allocated. */
4919 else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
4920 DECL_EXTERNAL (decl) = 1;
4921 break;
4923 case 3:
4924 error ("zero or negative size array %q+D", decl);
4925 break;
4927 case 0:
4928 /* For global variables, update the copy of the type that
4929 exists in the binding. */
4930 if (TREE_PUBLIC (decl))
4932 struct c_binding *b_ext = I_SYMBOL_BINDING (DECL_NAME (decl));
4933 while (b_ext && !B_IN_EXTERNAL_SCOPE (b_ext))
4934 b_ext = b_ext->shadowed;
4935 if (b_ext && TREE_CODE (decl) == TREE_CODE (b_ext->decl))
4937 if (b_ext->u.type && comptypes (b_ext->u.type, type))
4938 b_ext->u.type = composite_type (b_ext->u.type, type);
4939 else
4940 b_ext->u.type = type;
4943 break;
4945 default:
4946 gcc_unreachable ();
4949 if (DECL_INITIAL (decl))
4950 TREE_TYPE (DECL_INITIAL (decl)) = type;
4952 relayout_decl (decl);
4955 if (VAR_P (decl))
4957 if (init && TREE_CODE (init) == CONSTRUCTOR)
4958 add_flexible_array_elts_to_size (decl, init);
4960 if (DECL_SIZE (decl) == NULL_TREE && TREE_TYPE (decl) != error_mark_node
4961 && COMPLETE_TYPE_P (TREE_TYPE (decl)))
4962 layout_decl (decl, 0);
4964 if (DECL_SIZE (decl) == NULL_TREE
4965 /* Don't give an error if we already gave one earlier. */
4966 && TREE_TYPE (decl) != error_mark_node
4967 && (TREE_STATIC (decl)
4968 /* A static variable with an incomplete type
4969 is an error if it is initialized.
4970 Also if it is not file scope.
4971 Otherwise, let it through, but if it is not `extern'
4972 then it may cause an error message later. */
4973 ? (DECL_INITIAL (decl) != NULL_TREE
4974 || !DECL_FILE_SCOPE_P (decl))
4975 /* An automatic variable with an incomplete type
4976 is an error. */
4977 : !DECL_EXTERNAL (decl)))
4979 error ("storage size of %q+D isn%'t known", decl);
4980 TREE_TYPE (decl) = error_mark_node;
4983 if ((RECORD_OR_UNION_TYPE_P (TREE_TYPE (decl))
4984 || TREE_CODE (TREE_TYPE (decl)) == ENUMERAL_TYPE)
4985 && DECL_SIZE (decl) == NULL_TREE
4986 && TREE_STATIC (decl))
4987 incomplete_record_decls.safe_push (decl);
4989 if (is_global_var (decl) && DECL_SIZE (decl) != NULL_TREE)
4991 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
4992 constant_expression_warning (DECL_SIZE (decl));
4993 else
4995 error ("storage size of %q+D isn%'t constant", decl);
4996 TREE_TYPE (decl) = error_mark_node;
5000 if (TREE_USED (type))
5002 TREE_USED (decl) = 1;
5003 DECL_READ_P (decl) = 1;
5007 /* If this is a function and an assembler name is specified, reset DECL_RTL
5008 so we can give it its new name. Also, update builtin_decl if it
5009 was a normal built-in. */
5010 if (TREE_CODE (decl) == FUNCTION_DECL && asmspec)
5012 if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
5013 set_builtin_user_assembler_name (decl, asmspec);
5014 set_user_assembler_name (decl, asmspec);
5017 /* If #pragma weak was used, mark the decl weak now. */
5018 maybe_apply_pragma_weak (decl);
5020 /* Output the assembler code and/or RTL code for variables and functions,
5021 unless the type is an undefined structure or union.
5022 If not, it will get done when the type is completed. */
5024 if (VAR_OR_FUNCTION_DECL_P (decl))
5026 /* Determine the ELF visibility. */
5027 if (TREE_PUBLIC (decl))
5028 c_determine_visibility (decl);
5030 /* This is a no-op in c-lang.c or something real in objc-act.c. */
5031 if (c_dialect_objc ())
5032 objc_check_decl (decl);
5034 if (asmspec)
5036 /* If this is not a static variable, issue a warning.
5037 It doesn't make any sense to give an ASMSPEC for an
5038 ordinary, non-register local variable. Historically,
5039 GCC has accepted -- but ignored -- the ASMSPEC in
5040 this case. */
5041 if (!DECL_FILE_SCOPE_P (decl)
5042 && VAR_P (decl)
5043 && !C_DECL_REGISTER (decl)
5044 && !TREE_STATIC (decl))
5045 warning (0, "ignoring asm-specifier for non-static local "
5046 "variable %q+D", decl);
5047 else
5048 set_user_assembler_name (decl, asmspec);
5051 if (DECL_FILE_SCOPE_P (decl))
5053 if (DECL_INITIAL (decl) == NULL_TREE
5054 || DECL_INITIAL (decl) == error_mark_node)
5055 /* Don't output anything
5056 when a tentative file-scope definition is seen.
5057 But at end of compilation, do output code for them. */
5058 DECL_DEFER_OUTPUT (decl) = 1;
5059 if (asmspec && VAR_P (decl) && C_DECL_REGISTER (decl))
5060 DECL_HARD_REGISTER (decl) = 1;
5061 rest_of_decl_compilation (decl, true, 0);
5063 else
5065 /* In conjunction with an ASMSPEC, the `register'
5066 keyword indicates that we should place the variable
5067 in a particular register. */
5068 if (asmspec && C_DECL_REGISTER (decl))
5070 DECL_HARD_REGISTER (decl) = 1;
5071 /* This cannot be done for a structure with volatile
5072 fields, on which DECL_REGISTER will have been
5073 reset. */
5074 if (!DECL_REGISTER (decl))
5075 error ("cannot put object with volatile field into register");
5078 if (TREE_CODE (decl) != FUNCTION_DECL)
5080 /* If we're building a variable sized type, and we might be
5081 reachable other than via the top of the current binding
5082 level, then create a new BIND_EXPR so that we deallocate
5083 the object at the right time. */
5084 /* Note that DECL_SIZE can be null due to errors. */
5085 if (DECL_SIZE (decl)
5086 && !TREE_CONSTANT (DECL_SIZE (decl))
5087 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list))
5089 tree bind;
5090 bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
5091 TREE_SIDE_EFFECTS (bind) = 1;
5092 add_stmt (bind);
5093 BIND_EXPR_BODY (bind) = push_stmt_list ();
5095 add_stmt (build_stmt (DECL_SOURCE_LOCATION (decl),
5096 DECL_EXPR, decl));
5101 if (!DECL_FILE_SCOPE_P (decl))
5103 /* Recompute the RTL of a local array now
5104 if it used to be an incomplete type. */
5105 if (was_incomplete && !is_global_var (decl))
5107 /* If we used it already as memory, it must stay in memory. */
5108 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
5109 /* If it's still incomplete now, no init will save it. */
5110 if (DECL_SIZE (decl) == NULL_TREE)
5111 DECL_INITIAL (decl) = NULL_TREE;
5116 if (TREE_CODE (decl) == TYPE_DECL)
5118 if (!DECL_FILE_SCOPE_P (decl)
5119 && variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
5120 add_stmt (build_stmt (DECL_SOURCE_LOCATION (decl), DECL_EXPR, decl));
5122 rest_of_decl_compilation (decl, DECL_FILE_SCOPE_P (decl), 0);
5125 /* Install a cleanup (aka destructor) if one was given. */
5126 if (VAR_P (decl) && !TREE_STATIC (decl))
5128 tree attr = lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl));
5129 if (attr)
5131 tree cleanup_id = TREE_VALUE (TREE_VALUE (attr));
5132 tree cleanup_decl = lookup_name (cleanup_id);
5133 tree cleanup;
5134 vec<tree, va_gc> *v;
5136 /* Build "cleanup(&decl)" for the destructor. */
5137 cleanup = build_unary_op (input_location, ADDR_EXPR, decl, false);
5138 vec_alloc (v, 1);
5139 v->quick_push (cleanup);
5140 cleanup = c_build_function_call_vec (DECL_SOURCE_LOCATION (decl),
5141 vNULL, cleanup_decl, v, NULL);
5142 vec_free (v);
5144 /* Don't warn about decl unused; the cleanup uses it. */
5145 TREE_USED (decl) = 1;
5146 TREE_USED (cleanup_decl) = 1;
5147 DECL_READ_P (decl) = 1;
5149 push_cleanup (decl, cleanup, false);
5153 if (warn_cxx_compat
5154 && VAR_P (decl)
5155 && !DECL_EXTERNAL (decl)
5156 && DECL_INITIAL (decl) == NULL_TREE)
5158 type = strip_array_types (type);
5159 if (TREE_READONLY (decl))
5160 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wc___compat,
5161 "uninitialized const %qD is invalid in C++", decl);
5162 else if (RECORD_OR_UNION_TYPE_P (type)
5163 && C_TYPE_FIELDS_READONLY (type))
5164 diagnose_uninitialized_cst_member (decl, type);
5167 invoke_plugin_callbacks (PLUGIN_FINISH_DECL, decl);
5170 /* Given a parsed parameter declaration, decode it into a PARM_DECL.
5171 EXPR is NULL or a pointer to an expression that needs to be
5172 evaluated for the side effects of array size expressions in the
5173 parameters. */
5175 tree
5176 grokparm (const struct c_parm *parm, tree *expr)
5178 tree attrs = parm->attrs;
5179 tree decl = grokdeclarator (parm->declarator, parm->specs, PARM, false,
5180 NULL, &attrs, expr, NULL, DEPRECATED_NORMAL);
5182 decl_attributes (&decl, attrs, 0);
5184 return decl;
5187 /* Given a parsed parameter declaration, decode it into a PARM_DECL
5188 and push that on the current scope. EXPR is a pointer to an
5189 expression that needs to be evaluated for the side effects of array
5190 size expressions in the parameters. */
5192 void
5193 push_parm_decl (const struct c_parm *parm, tree *expr)
5195 tree attrs = parm->attrs;
5196 tree decl;
5198 decl = grokdeclarator (parm->declarator, parm->specs, PARM, false, NULL,
5199 &attrs, expr, NULL, DEPRECATED_NORMAL);
5200 if (decl && DECL_P (decl))
5201 DECL_SOURCE_LOCATION (decl) = parm->loc;
5202 decl_attributes (&decl, attrs, 0);
5204 decl = pushdecl (decl);
5206 finish_decl (decl, input_location, NULL_TREE, NULL_TREE, NULL_TREE);
5209 /* Mark all the parameter declarations to date as forward decls.
5210 Also diagnose use of this extension. */
5212 void
5213 mark_forward_parm_decls (void)
5215 struct c_binding *b;
5217 if (pedantic && !current_scope->warned_forward_parm_decls)
5219 pedwarn (input_location, OPT_Wpedantic,
5220 "ISO C forbids forward parameter declarations");
5221 current_scope->warned_forward_parm_decls = true;
5224 for (b = current_scope->bindings; b; b = b->prev)
5225 if (TREE_CODE (b->decl) == PARM_DECL)
5226 TREE_ASM_WRITTEN (b->decl) = 1;
5229 /* Build a COMPOUND_LITERAL_EXPR. TYPE is the type given in the compound
5230 literal, which may be an incomplete array type completed by the
5231 initializer; INIT is a CONSTRUCTOR at LOC that initializes the compound
5232 literal. NON_CONST is true if the initializers contain something
5233 that cannot occur in a constant expression. */
5235 tree
5236 build_compound_literal (location_t loc, tree type, tree init, bool non_const)
5238 /* We do not use start_decl here because we have a type, not a declarator;
5239 and do not use finish_decl because the decl should be stored inside
5240 the COMPOUND_LITERAL_EXPR rather than added elsewhere as a DECL_EXPR. */
5241 tree decl;
5242 tree complit;
5243 tree stmt;
5245 if (type == error_mark_node
5246 || init == error_mark_node)
5247 return error_mark_node;
5249 decl = build_decl (loc, VAR_DECL, NULL_TREE, type);
5250 DECL_EXTERNAL (decl) = 0;
5251 TREE_PUBLIC (decl) = 0;
5252 TREE_STATIC (decl) = (current_scope == file_scope);
5253 DECL_CONTEXT (decl) = current_function_decl;
5254 TREE_USED (decl) = 1;
5255 DECL_READ_P (decl) = 1;
5256 DECL_ARTIFICIAL (decl) = 1;
5257 DECL_IGNORED_P (decl) = 1;
5258 TREE_TYPE (decl) = type;
5259 c_apply_type_quals_to_decl (TYPE_QUALS (strip_array_types (type)), decl);
5260 store_init_value (loc, decl, init, NULL_TREE);
5262 if (TREE_CODE (type) == ARRAY_TYPE && !COMPLETE_TYPE_P (type))
5264 int failure = complete_array_type (&TREE_TYPE (decl),
5265 DECL_INITIAL (decl), true);
5266 /* If complete_array_type returns 3, it means that the
5267 initial value of the compound literal is empty. Allow it. */
5268 gcc_assert (failure == 0 || failure == 3);
5270 type = TREE_TYPE (decl);
5271 TREE_TYPE (DECL_INITIAL (decl)) = type;
5274 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
5276 c_incomplete_type_error (loc, NULL_TREE, type);
5277 return error_mark_node;
5280 stmt = build_stmt (DECL_SOURCE_LOCATION (decl), DECL_EXPR, decl);
5281 complit = build1 (COMPOUND_LITERAL_EXPR, type, stmt);
5282 TREE_SIDE_EFFECTS (complit) = 1;
5284 layout_decl (decl, 0);
5286 if (TREE_STATIC (decl))
5288 /* This decl needs a name for the assembler output. */
5289 set_compound_literal_name (decl);
5290 DECL_DEFER_OUTPUT (decl) = 1;
5291 DECL_COMDAT (decl) = 1;
5292 pushdecl (decl);
5293 rest_of_decl_compilation (decl, 1, 0);
5296 if (non_const)
5298 complit = build2 (C_MAYBE_CONST_EXPR, type, NULL, complit);
5299 C_MAYBE_CONST_EXPR_NON_CONST (complit) = 1;
5302 return complit;
5305 /* Check the type of a compound literal. Here we just check that it
5306 is valid for C++. */
5308 void
5309 check_compound_literal_type (location_t loc, struct c_type_name *type_name)
5311 if (warn_cxx_compat
5312 && (type_name->specs->typespec_kind == ctsk_tagdef
5313 || type_name->specs->typespec_kind == ctsk_tagfirstref))
5314 warning_at (loc, OPT_Wc___compat,
5315 "defining a type in a compound literal is invalid in C++");
5318 /* Determine whether TYPE is a structure with a flexible array member,
5319 or a union containing such a structure (possibly recursively). */
5321 static bool
5322 flexible_array_type_p (tree type)
5324 tree x;
5325 switch (TREE_CODE (type))
5327 case RECORD_TYPE:
5328 x = TYPE_FIELDS (type);
5329 if (x == NULL_TREE)
5330 return false;
5331 while (DECL_CHAIN (x) != NULL_TREE)
5332 x = DECL_CHAIN (x);
5333 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
5334 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
5335 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
5336 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
5337 return true;
5338 return false;
5339 case UNION_TYPE:
5340 for (x = TYPE_FIELDS (type); x != NULL_TREE; x = DECL_CHAIN (x))
5342 if (flexible_array_type_p (TREE_TYPE (x)))
5343 return true;
5345 return false;
5346 default:
5347 return false;
5351 /* Performs sanity checks on the TYPE and WIDTH of the bit-field NAME,
5352 replacing with appropriate values if they are invalid. */
5354 static void
5355 check_bitfield_type_and_width (location_t loc, tree *type, tree *width,
5356 tree orig_name)
5358 tree type_mv;
5359 unsigned int max_width;
5360 unsigned HOST_WIDE_INT w;
5361 const char *name = (orig_name
5362 ? identifier_to_locale (IDENTIFIER_POINTER (orig_name))
5363 : _("<anonymous>"));
5365 /* Detect and ignore out of range field width and process valid
5366 field widths. */
5367 if (!INTEGRAL_TYPE_P (TREE_TYPE (*width)))
5369 error_at (loc, "bit-field %qs width not an integer constant", name);
5370 *width = integer_one_node;
5372 else
5374 if (TREE_CODE (*width) != INTEGER_CST)
5376 *width = c_fully_fold (*width, false, NULL);
5377 if (TREE_CODE (*width) == INTEGER_CST)
5378 pedwarn (loc, OPT_Wpedantic,
5379 "bit-field %qs width not an integer constant expression",
5380 name);
5382 if (TREE_CODE (*width) != INTEGER_CST)
5384 error_at (loc, "bit-field %qs width not an integer constant", name);
5385 *width = integer_one_node;
5387 constant_expression_warning (*width);
5388 if (tree_int_cst_sgn (*width) < 0)
5390 error_at (loc, "negative width in bit-field %qs", name);
5391 *width = integer_one_node;
5393 else if (integer_zerop (*width) && orig_name)
5395 error_at (loc, "zero width for bit-field %qs", name);
5396 *width = integer_one_node;
5400 /* Detect invalid bit-field type. */
5401 if (TREE_CODE (*type) != INTEGER_TYPE
5402 && TREE_CODE (*type) != BOOLEAN_TYPE
5403 && TREE_CODE (*type) != ENUMERAL_TYPE)
5405 error_at (loc, "bit-field %qs has invalid type", name);
5406 *type = unsigned_type_node;
5409 if (TYPE_WARN_IF_NOT_ALIGN (*type))
5411 error_at (loc, "cannot declare bit-field %qs with %<warn_if_not_aligned%> type",
5412 name);
5413 *type = unsigned_type_node;
5416 type_mv = TYPE_MAIN_VARIANT (*type);
5417 if (!in_system_header_at (input_location)
5418 && type_mv != integer_type_node
5419 && type_mv != unsigned_type_node
5420 && type_mv != boolean_type_node)
5421 pedwarn_c90 (loc, OPT_Wpedantic,
5422 "type of bit-field %qs is a GCC extension", name);
5424 max_width = TYPE_PRECISION (*type);
5426 if (0 < compare_tree_int (*width, max_width))
5428 error_at (loc, "width of %qs exceeds its type", name);
5429 w = max_width;
5430 *width = build_int_cst (integer_type_node, w);
5432 else
5433 w = tree_to_uhwi (*width);
5435 if (TREE_CODE (*type) == ENUMERAL_TYPE)
5437 struct lang_type *lt = TYPE_LANG_SPECIFIC (*type);
5438 if (!lt
5439 || w < tree_int_cst_min_precision (lt->enum_min, TYPE_SIGN (*type))
5440 || w < tree_int_cst_min_precision (lt->enum_max, TYPE_SIGN (*type)))
5441 warning_at (loc, 0, "%qs is narrower than values of its type", name);
5447 /* Print warning about variable length array if necessary. */
5449 static void
5450 warn_variable_length_array (tree name, tree size)
5452 if (TREE_CONSTANT (size))
5454 if (name)
5455 pedwarn_c90 (input_location, OPT_Wvla,
5456 "ISO C90 forbids array %qE whose size "
5457 "can%'t be evaluated", name);
5458 else
5459 pedwarn_c90 (input_location, OPT_Wvla, "ISO C90 forbids array "
5460 "whose size can%'t be evaluated");
5462 else
5464 if (name)
5465 pedwarn_c90 (input_location, OPT_Wvla,
5466 "ISO C90 forbids variable length array %qE", name);
5467 else
5468 pedwarn_c90 (input_location, OPT_Wvla, "ISO C90 forbids variable "
5469 "length array");
5473 /* Print warning about defaulting to int if necessary. */
5475 static void
5476 warn_defaults_to (location_t location, int opt, const char *gmsgid, ...)
5478 diagnostic_info diagnostic;
5479 va_list ap;
5480 rich_location richloc (line_table, location);
5482 va_start (ap, gmsgid);
5483 diagnostic_set_info (&diagnostic, gmsgid, &ap, &richloc,
5484 flag_isoc99 ? DK_PEDWARN : DK_WARNING);
5485 diagnostic.option_index = opt;
5486 diagnostic_report_diagnostic (global_dc, &diagnostic);
5487 va_end (ap);
5490 /* Returns the smallest location != UNKNOWN_LOCATION in LOCATIONS,
5491 considering only those c_declspec_words found in LIST, which
5492 must be terminated by cdw_number_of_elements. */
5494 static location_t
5495 smallest_type_quals_location (const location_t *locations,
5496 const c_declspec_word *list)
5498 location_t loc = UNKNOWN_LOCATION;
5499 while (*list != cdw_number_of_elements)
5501 location_t newloc = locations[*list];
5502 if (loc == UNKNOWN_LOCATION
5503 || (newloc != UNKNOWN_LOCATION && newloc < loc))
5504 loc = newloc;
5505 list++;
5508 return loc;
5511 /* Given declspecs and a declarator,
5512 determine the name and type of the object declared
5513 and construct a ..._DECL node for it.
5514 (In one case we can return a ..._TYPE node instead.
5515 For invalid input we sometimes return NULL_TREE.)
5517 DECLSPECS is a c_declspecs structure for the declaration specifiers.
5519 DECL_CONTEXT says which syntactic context this declaration is in:
5520 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
5521 FUNCDEF for a function definition. Like NORMAL but a few different
5522 error messages in each case. Return value may be zero meaning
5523 this definition is too screwy to try to parse.
5524 PARM for a parameter declaration (either within a function prototype
5525 or before a function body). Make a PARM_DECL, or return void_type_node.
5526 TYPENAME if for a typename (in a cast or sizeof).
5527 Don't make a DECL node; just return the ..._TYPE node.
5528 FIELD for a struct or union field; make a FIELD_DECL.
5529 INITIALIZED is true if the decl has an initializer.
5530 WIDTH is non-NULL for bit-fields, and is a pointer to an INTEGER_CST node
5531 representing the width of the bit-field.
5532 DECL_ATTRS points to the list of attributes that should be added to this
5533 decl. Any nested attributes that belong on the decl itself will be
5534 added to this list.
5535 If EXPR is not NULL, any expressions that need to be evaluated as
5536 part of evaluating variably modified types will be stored in *EXPR.
5537 If EXPR_CONST_OPERANDS is not NULL, *EXPR_CONST_OPERANDS will be
5538 set to indicate whether operands in *EXPR can be used in constant
5539 expressions.
5540 DEPRECATED_STATE is a deprecated_states value indicating whether
5541 deprecation warnings should be suppressed.
5543 In the TYPENAME case, DECLARATOR is really an absolute declarator.
5544 It may also be so in the PARM case, for a prototype where the
5545 argument type is specified but not the name.
5547 This function is where the complicated C meanings of `static'
5548 and `extern' are interpreted. */
5550 static tree
5551 grokdeclarator (const struct c_declarator *declarator,
5552 struct c_declspecs *declspecs,
5553 enum decl_context decl_context, bool initialized, tree *width,
5554 tree *decl_attrs, tree *expr, bool *expr_const_operands,
5555 enum deprecated_states deprecated_state)
5557 tree type = declspecs->type;
5558 bool threadp = declspecs->thread_p;
5559 enum c_storage_class storage_class = declspecs->storage_class;
5560 int constp;
5561 int restrictp;
5562 int volatilep;
5563 int atomicp;
5564 int type_quals = TYPE_UNQUALIFIED;
5565 tree name = NULL_TREE;
5566 bool funcdef_flag = false;
5567 bool funcdef_syntax = false;
5568 bool size_varies = false;
5569 tree decl_attr = declspecs->decl_attr;
5570 int array_ptr_quals = TYPE_UNQUALIFIED;
5571 tree array_ptr_attrs = NULL_TREE;
5572 bool array_parm_static = false;
5573 bool array_parm_vla_unspec_p = false;
5574 tree returned_attrs = NULL_TREE;
5575 bool bitfield = width != NULL;
5576 tree element_type;
5577 tree orig_qual_type = NULL;
5578 size_t orig_qual_indirect = 0;
5579 struct c_arg_info *arg_info = 0;
5580 addr_space_t as1, as2, address_space;
5581 location_t loc = UNKNOWN_LOCATION;
5582 tree expr_dummy;
5583 bool expr_const_operands_dummy;
5584 enum c_declarator_kind first_non_attr_kind;
5585 unsigned int alignas_align = 0;
5587 if (TREE_CODE (type) == ERROR_MARK)
5588 return error_mark_node;
5589 if (expr == NULL)
5591 expr = &expr_dummy;
5592 expr_dummy = NULL_TREE;
5594 if (expr_const_operands == NULL)
5595 expr_const_operands = &expr_const_operands_dummy;
5597 if (declspecs->expr)
5599 if (*expr)
5600 *expr = build2 (COMPOUND_EXPR, TREE_TYPE (declspecs->expr), *expr,
5601 declspecs->expr);
5602 else
5603 *expr = declspecs->expr;
5605 *expr_const_operands = declspecs->expr_const_operands;
5607 if (decl_context == FUNCDEF)
5608 funcdef_flag = true, decl_context = NORMAL;
5610 /* Look inside a declarator for the name being declared
5611 and get it as an IDENTIFIER_NODE, for an error message. */
5613 const struct c_declarator *decl = declarator;
5615 first_non_attr_kind = cdk_attrs;
5616 while (decl)
5617 switch (decl->kind)
5619 case cdk_array:
5620 loc = decl->id_loc;
5621 /* FALL THRU. */
5623 case cdk_function:
5624 case cdk_pointer:
5625 funcdef_syntax = (decl->kind == cdk_function);
5626 if (first_non_attr_kind == cdk_attrs)
5627 first_non_attr_kind = decl->kind;
5628 decl = decl->declarator;
5629 break;
5631 case cdk_attrs:
5632 decl = decl->declarator;
5633 break;
5635 case cdk_id:
5636 loc = decl->id_loc;
5637 if (decl->u.id)
5638 name = decl->u.id;
5639 if (first_non_attr_kind == cdk_attrs)
5640 first_non_attr_kind = decl->kind;
5641 decl = 0;
5642 break;
5644 default:
5645 gcc_unreachable ();
5647 if (name == NULL_TREE)
5649 gcc_assert (decl_context == PARM
5650 || decl_context == TYPENAME
5651 || (decl_context == FIELD
5652 && declarator->kind == cdk_id));
5653 gcc_assert (!initialized);
5657 /* A function definition's declarator must have the form of
5658 a function declarator. */
5660 if (funcdef_flag && !funcdef_syntax)
5661 return NULL_TREE;
5663 /* If this looks like a function definition, make it one,
5664 even if it occurs where parms are expected.
5665 Then store_parm_decls will reject it and not use it as a parm. */
5666 if (decl_context == NORMAL && !funcdef_flag && current_scope->parm_flag)
5667 decl_context = PARM;
5669 if (declspecs->deprecated_p && deprecated_state != DEPRECATED_SUPPRESS)
5670 warn_deprecated_use (declspecs->type, declspecs->decl_attr);
5672 if ((decl_context == NORMAL || decl_context == FIELD)
5673 && current_scope == file_scope
5674 && variably_modified_type_p (type, NULL_TREE))
5676 if (name)
5677 error_at (loc, "variably modified %qE at file scope", name);
5678 else
5679 error_at (loc, "variably modified field at file scope");
5680 type = integer_type_node;
5683 size_varies = C_TYPE_VARIABLE_SIZE (type) != 0;
5685 /* Diagnose defaulting to "int". */
5687 if (declspecs->default_int_p && !in_system_header_at (input_location))
5689 /* Issue a warning if this is an ISO C 99 program or if
5690 -Wreturn-type and this is a function, or if -Wimplicit;
5691 prefer the former warning since it is more explicit. */
5692 if ((warn_implicit_int || warn_return_type || flag_isoc99)
5693 && funcdef_flag)
5694 warn_about_return_type = 1;
5695 else
5697 if (name)
5698 warn_defaults_to (loc, OPT_Wimplicit_int,
5699 "type defaults to %<int%> in declaration "
5700 "of %qE", name);
5701 else
5702 warn_defaults_to (loc, OPT_Wimplicit_int,
5703 "type defaults to %<int%> in type name");
5707 /* Adjust the type if a bit-field is being declared,
5708 -funsigned-bitfields applied and the type is not explicitly
5709 "signed". */
5710 if (bitfield && !flag_signed_bitfields && !declspecs->explicit_signed_p
5711 && TREE_CODE (type) == INTEGER_TYPE)
5712 type = unsigned_type_for (type);
5714 /* Figure out the type qualifiers for the declaration. There are
5715 two ways a declaration can become qualified. One is something
5716 like `const int i' where the `const' is explicit. Another is
5717 something like `typedef const int CI; CI i' where the type of the
5718 declaration contains the `const'. A third possibility is that
5719 there is a type qualifier on the element type of a typedefed
5720 array type, in which case we should extract that qualifier so
5721 that c_apply_type_quals_to_decl receives the full list of
5722 qualifiers to work with (C90 is not entirely clear about whether
5723 duplicate qualifiers should be diagnosed in this case, but it
5724 seems most appropriate to do so). */
5725 element_type = strip_array_types (type);
5726 constp = declspecs->const_p + TYPE_READONLY (element_type);
5727 restrictp = declspecs->restrict_p + TYPE_RESTRICT (element_type);
5728 volatilep = declspecs->volatile_p + TYPE_VOLATILE (element_type);
5729 atomicp = declspecs->atomic_p + TYPE_ATOMIC (element_type);
5730 as1 = declspecs->address_space;
5731 as2 = TYPE_ADDR_SPACE (element_type);
5732 address_space = ADDR_SPACE_GENERIC_P (as1)? as2 : as1;
5734 if (constp > 1)
5735 pedwarn_c90 (loc, OPT_Wpedantic, "duplicate %<const%>");
5736 if (restrictp > 1)
5737 pedwarn_c90 (loc, OPT_Wpedantic, "duplicate %<restrict%>");
5738 if (volatilep > 1)
5739 pedwarn_c90 (loc, OPT_Wpedantic, "duplicate %<volatile%>");
5740 if (atomicp > 1)
5741 pedwarn_c90 (loc, OPT_Wpedantic, "duplicate %<_Atomic%>");
5743 if (!ADDR_SPACE_GENERIC_P (as1) && !ADDR_SPACE_GENERIC_P (as2) && as1 != as2)
5744 error_at (loc, "conflicting named address spaces (%s vs %s)",
5745 c_addr_space_name (as1), c_addr_space_name (as2));
5747 if ((TREE_CODE (type) == ARRAY_TYPE
5748 || first_non_attr_kind == cdk_array)
5749 && TYPE_QUALS (element_type))
5751 orig_qual_type = type;
5752 type = TYPE_MAIN_VARIANT (type);
5754 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
5755 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
5756 | (volatilep ? TYPE_QUAL_VOLATILE : 0)
5757 | (atomicp ? TYPE_QUAL_ATOMIC : 0)
5758 | ENCODE_QUAL_ADDR_SPACE (address_space));
5759 if (type_quals != TYPE_QUALS (element_type))
5760 orig_qual_type = NULL_TREE;
5762 /* Applying the _Atomic qualifier to an array type (through the use
5763 of typedefs or typeof) must be detected here. If the qualifier
5764 is introduced later, any appearance of applying it to an array is
5765 actually applying it to an element of that array. */
5766 if (atomicp && TREE_CODE (type) == ARRAY_TYPE)
5767 error_at (loc, "%<_Atomic%>-qualified array type");
5769 /* Warn about storage classes that are invalid for certain
5770 kinds of declarations (parameters, typenames, etc.). */
5772 if (funcdef_flag
5773 && (threadp
5774 || storage_class == csc_auto
5775 || storage_class == csc_register
5776 || storage_class == csc_typedef))
5778 if (storage_class == csc_auto)
5779 pedwarn (loc,
5780 (current_scope == file_scope) ? 0 : OPT_Wpedantic,
5781 "function definition declared %<auto%>");
5782 if (storage_class == csc_register)
5783 error_at (loc, "function definition declared %<register%>");
5784 if (storage_class == csc_typedef)
5785 error_at (loc, "function definition declared %<typedef%>");
5786 if (threadp)
5787 error_at (loc, "function definition declared %qs",
5788 declspecs->thread_gnu_p ? "__thread" : "_Thread_local");
5789 threadp = false;
5790 if (storage_class == csc_auto
5791 || storage_class == csc_register
5792 || storage_class == csc_typedef)
5793 storage_class = csc_none;
5795 else if (decl_context != NORMAL && (storage_class != csc_none || threadp))
5797 if (decl_context == PARM && storage_class == csc_register)
5799 else
5801 switch (decl_context)
5803 case FIELD:
5804 if (name)
5805 error_at (loc, "storage class specified for structure "
5806 "field %qE", name);
5807 else
5808 error_at (loc, "storage class specified for structure field");
5809 break;
5810 case PARM:
5811 if (name)
5812 error_at (loc, "storage class specified for parameter %qE",
5813 name);
5814 else
5815 error_at (loc, "storage class specified for unnamed parameter");
5816 break;
5817 default:
5818 error_at (loc, "storage class specified for typename");
5819 break;
5821 storage_class = csc_none;
5822 threadp = false;
5825 else if (storage_class == csc_extern
5826 && initialized
5827 && !funcdef_flag)
5829 /* 'extern' with initialization is invalid if not at file scope. */
5830 if (current_scope == file_scope)
5832 /* It is fine to have 'extern const' when compiling at C
5833 and C++ intersection. */
5834 if (!(warn_cxx_compat && constp))
5835 warning_at (loc, 0, "%qE initialized and declared %<extern%>",
5836 name);
5838 else
5839 error_at (loc, "%qE has both %<extern%> and initializer", name);
5841 else if (current_scope == file_scope)
5843 if (storage_class == csc_auto)
5844 error_at (loc, "file-scope declaration of %qE specifies %<auto%>",
5845 name);
5846 if (pedantic && storage_class == csc_register)
5847 pedwarn (input_location, OPT_Wpedantic,
5848 "file-scope declaration of %qE specifies %<register%>", name);
5850 else
5852 if (storage_class == csc_extern && funcdef_flag)
5853 error_at (loc, "nested function %qE declared %<extern%>", name);
5854 else if (threadp && storage_class == csc_none)
5856 error_at (loc, "function-scope %qE implicitly auto and declared "
5857 "%qs", name,
5858 declspecs->thread_gnu_p ? "__thread" : "_Thread_local");
5859 threadp = false;
5863 /* Now figure out the structure of the declarator proper.
5864 Descend through it, creating more complex types, until we reach
5865 the declared identifier (or NULL_TREE, in an absolute declarator).
5866 At each stage we maintain an unqualified version of the type
5867 together with any qualifiers that should be applied to it with
5868 c_build_qualified_type; this way, array types including
5869 multidimensional array types are first built up in unqualified
5870 form and then the qualified form is created with
5871 TYPE_MAIN_VARIANT pointing to the unqualified form. */
5873 while (declarator && declarator->kind != cdk_id)
5875 if (type == error_mark_node)
5877 declarator = declarator->declarator;
5878 continue;
5881 /* Each level of DECLARATOR is either a cdk_array (for ...[..]),
5882 a cdk_pointer (for *...),
5883 a cdk_function (for ...(...)),
5884 a cdk_attrs (for nested attributes),
5885 or a cdk_id (for the name being declared
5886 or the place in an absolute declarator
5887 where the name was omitted).
5888 For the last case, we have just exited the loop.
5890 At this point, TYPE is the type of elements of an array,
5891 or for a function to return, or for a pointer to point to.
5892 After this sequence of ifs, TYPE is the type of the
5893 array or function or pointer, and DECLARATOR has had its
5894 outermost layer removed. */
5896 if (array_ptr_quals != TYPE_UNQUALIFIED
5897 || array_ptr_attrs != NULL_TREE
5898 || array_parm_static)
5900 /* Only the innermost declarator (making a parameter be of
5901 array type which is converted to pointer type)
5902 may have static or type qualifiers. */
5903 error_at (loc, "static or type qualifiers in non-parameter array declarator");
5904 array_ptr_quals = TYPE_UNQUALIFIED;
5905 array_ptr_attrs = NULL_TREE;
5906 array_parm_static = false;
5909 switch (declarator->kind)
5911 case cdk_attrs:
5913 /* A declarator with embedded attributes. */
5914 tree attrs = declarator->u.attrs;
5915 const struct c_declarator *inner_decl;
5916 int attr_flags = 0;
5917 declarator = declarator->declarator;
5918 inner_decl = declarator;
5919 while (inner_decl->kind == cdk_attrs)
5920 inner_decl = inner_decl->declarator;
5921 if (inner_decl->kind == cdk_id)
5922 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
5923 else if (inner_decl->kind == cdk_function)
5924 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
5925 else if (inner_decl->kind == cdk_array)
5926 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
5927 returned_attrs = decl_attributes (&type,
5928 chainon (returned_attrs, attrs),
5929 attr_flags);
5930 break;
5932 case cdk_array:
5934 tree itype = NULL_TREE;
5935 tree size = declarator->u.array.dimen;
5936 /* The index is a signed object `sizetype' bits wide. */
5937 tree index_type = c_common_signed_type (sizetype);
5939 array_ptr_quals = declarator->u.array.quals;
5940 array_ptr_attrs = declarator->u.array.attrs;
5941 array_parm_static = declarator->u.array.static_p;
5942 array_parm_vla_unspec_p = declarator->u.array.vla_unspec_p;
5944 declarator = declarator->declarator;
5946 /* Check for some types that there cannot be arrays of. */
5948 if (VOID_TYPE_P (type))
5950 if (name)
5951 error_at (loc, "declaration of %qE as array of voids", name);
5952 else
5953 error_at (loc, "declaration of type name as array of voids");
5954 type = error_mark_node;
5957 if (TREE_CODE (type) == FUNCTION_TYPE)
5959 if (name)
5960 error_at (loc, "declaration of %qE as array of functions",
5961 name);
5962 else
5963 error_at (loc, "declaration of type name as array of "
5964 "functions");
5965 type = error_mark_node;
5968 if (pedantic && !in_system_header_at (input_location)
5969 && flexible_array_type_p (type))
5970 pedwarn (loc, OPT_Wpedantic,
5971 "invalid use of structure with flexible array member");
5973 if (size == error_mark_node)
5974 type = error_mark_node;
5976 if (type == error_mark_node)
5977 continue;
5979 /* If size was specified, set ITYPE to a range-type for
5980 that size. Otherwise, ITYPE remains null. finish_decl
5981 may figure it out from an initial value. */
5983 if (size)
5985 bool size_maybe_const = true;
5986 bool size_int_const = (TREE_CODE (size) == INTEGER_CST
5987 && !TREE_OVERFLOW (size));
5988 bool this_size_varies = false;
5990 /* Strip NON_LVALUE_EXPRs since we aren't using as an
5991 lvalue. */
5992 STRIP_TYPE_NOPS (size);
5994 if (!INTEGRAL_TYPE_P (TREE_TYPE (size)))
5996 if (name)
5997 error_at (loc, "size of array %qE has non-integer type",
5998 name);
5999 else
6000 error_at (loc,
6001 "size of unnamed array has non-integer type");
6002 size = integer_one_node;
6004 /* This can happen with enum forward declaration. */
6005 else if (!COMPLETE_TYPE_P (TREE_TYPE (size)))
6007 if (name)
6008 error_at (loc, "size of array %qE has incomplete type",
6009 name);
6010 else
6011 error_at (loc, "size of unnamed array has incomplete "
6012 "type");
6013 size = integer_one_node;
6016 size = c_fully_fold (size, false, &size_maybe_const);
6018 if (pedantic && size_maybe_const && integer_zerop (size))
6020 if (name)
6021 pedwarn (loc, OPT_Wpedantic,
6022 "ISO C forbids zero-size array %qE", name);
6023 else
6024 pedwarn (loc, OPT_Wpedantic,
6025 "ISO C forbids zero-size array");
6028 if (TREE_CODE (size) == INTEGER_CST && size_maybe_const)
6030 constant_expression_warning (size);
6031 if (tree_int_cst_sgn (size) < 0)
6033 if (name)
6034 error_at (loc, "size of array %qE is negative", name);
6035 else
6036 error_at (loc, "size of unnamed array is negative");
6037 size = integer_one_node;
6039 /* Handle a size folded to an integer constant but
6040 not an integer constant expression. */
6041 if (!size_int_const)
6043 /* If this is a file scope declaration of an
6044 ordinary identifier, this is invalid code;
6045 diagnosing it here and not subsequently
6046 treating the type as variable-length avoids
6047 more confusing diagnostics later. */
6048 if ((decl_context == NORMAL || decl_context == FIELD)
6049 && current_scope == file_scope)
6050 pedwarn (input_location, 0,
6051 "variably modified %qE at file scope",
6052 name);
6053 else
6054 this_size_varies = size_varies = true;
6055 warn_variable_length_array (name, size);
6058 else if ((decl_context == NORMAL || decl_context == FIELD)
6059 && current_scope == file_scope)
6061 error_at (loc, "variably modified %qE at file scope", name);
6062 size = integer_one_node;
6064 else
6066 /* Make sure the array size remains visibly
6067 nonconstant even if it is (eg) a const variable
6068 with known value. */
6069 this_size_varies = size_varies = true;
6070 warn_variable_length_array (name, size);
6071 if (sanitize_flags_p (SANITIZE_VLA)
6072 && current_function_decl != NULL_TREE
6073 && decl_context == NORMAL)
6075 /* Evaluate the array size only once. */
6076 size = save_expr (size);
6077 size = c_fully_fold (size, false, NULL);
6078 size = fold_build2 (COMPOUND_EXPR, TREE_TYPE (size),
6079 ubsan_instrument_vla (loc, size),
6080 size);
6084 if (integer_zerop (size) && !this_size_varies)
6086 /* A zero-length array cannot be represented with
6087 an unsigned index type, which is what we'll
6088 get with build_index_type. Create an
6089 open-ended range instead. */
6090 itype = build_range_type (sizetype, size, NULL_TREE);
6092 else
6094 /* Arrange for the SAVE_EXPR on the inside of the
6095 MINUS_EXPR, which allows the -1 to get folded
6096 with the +1 that happens when building TYPE_SIZE. */
6097 if (size_varies)
6098 size = save_expr (size);
6099 if (this_size_varies && TREE_CODE (size) == INTEGER_CST)
6100 size = build2 (COMPOUND_EXPR, TREE_TYPE (size),
6101 integer_zero_node, size);
6103 /* Compute the maximum valid index, that is, size
6104 - 1. Do the calculation in index_type, so that
6105 if it is a variable the computations will be
6106 done in the proper mode. */
6107 itype = fold_build2_loc (loc, MINUS_EXPR, index_type,
6108 convert (index_type, size),
6109 convert (index_type,
6110 size_one_node));
6112 /* The above overflows when size does not fit
6113 in index_type.
6114 ??? While a size of INT_MAX+1 technically shouldn't
6115 cause an overflow (because we subtract 1), handling
6116 this case seems like an unnecessary complication. */
6117 if (TREE_CODE (size) == INTEGER_CST
6118 && !int_fits_type_p (size, index_type))
6120 if (name)
6121 error_at (loc, "size of array %qE is too large",
6122 name);
6123 else
6124 error_at (loc, "size of unnamed array is too large");
6125 type = error_mark_node;
6126 continue;
6129 itype = build_index_type (itype);
6131 if (this_size_varies)
6133 if (*expr)
6134 *expr = build2 (COMPOUND_EXPR, TREE_TYPE (size),
6135 *expr, size);
6136 else
6137 *expr = size;
6138 *expr_const_operands &= size_maybe_const;
6141 else if (decl_context == FIELD)
6143 bool flexible_array_member = false;
6144 if (array_parm_vla_unspec_p)
6145 /* Field names can in fact have function prototype
6146 scope so [*] is disallowed here through making
6147 the field variably modified, not through being
6148 something other than a declaration with function
6149 prototype scope. */
6150 size_varies = true;
6151 else
6153 const struct c_declarator *t = declarator;
6154 while (t->kind == cdk_attrs)
6155 t = t->declarator;
6156 flexible_array_member = (t->kind == cdk_id);
6158 if (flexible_array_member
6159 && !in_system_header_at (input_location))
6160 pedwarn_c90 (loc, OPT_Wpedantic, "ISO C90 does not "
6161 "support flexible array members");
6163 /* ISO C99 Flexible array members are effectively
6164 identical to GCC's zero-length array extension. */
6165 if (flexible_array_member || array_parm_vla_unspec_p)
6166 itype = build_range_type (sizetype, size_zero_node,
6167 NULL_TREE);
6169 else if (decl_context == PARM)
6171 if (array_parm_vla_unspec_p)
6173 itype = build_range_type (sizetype, size_zero_node, NULL_TREE);
6174 size_varies = true;
6177 else if (decl_context == TYPENAME)
6179 if (array_parm_vla_unspec_p)
6181 /* C99 6.7.5.2p4 */
6182 warning (0, "%<[*]%> not in a declaration");
6183 /* We use this to avoid messing up with incomplete
6184 array types of the same type, that would
6185 otherwise be modified below. */
6186 itype = build_range_type (sizetype, size_zero_node,
6187 NULL_TREE);
6188 size_varies = true;
6192 /* Complain about arrays of incomplete types. */
6193 if (!COMPLETE_TYPE_P (type))
6195 error_at (loc, "array type has incomplete element type %qT",
6196 type);
6197 /* See if we can be more helpful. */
6198 if (TREE_CODE (type) == ARRAY_TYPE)
6200 if (name)
6201 inform (loc, "declaration of %qE as multidimensional "
6202 "array must have bounds for all dimensions "
6203 "except the first", name);
6204 else
6205 inform (loc, "declaration of multidimensional array "
6206 "must have bounds for all dimensions except "
6207 "the first");
6209 type = error_mark_node;
6211 else
6212 /* When itype is NULL, a shared incomplete array type is
6213 returned for all array of a given type. Elsewhere we
6214 make sure we don't complete that type before copying
6215 it, but here we want to make sure we don't ever
6216 modify the shared type, so we gcc_assert (itype)
6217 below. */
6219 addr_space_t as = DECODE_QUAL_ADDR_SPACE (type_quals);
6220 if (!ADDR_SPACE_GENERIC_P (as) && as != TYPE_ADDR_SPACE (type))
6221 type = build_qualified_type (type,
6222 ENCODE_QUAL_ADDR_SPACE (as));
6224 type = build_array_type (type, itype);
6227 if (type != error_mark_node)
6229 if (size_varies)
6231 /* It is ok to modify type here even if itype is
6232 NULL: if size_varies, we're in a
6233 multi-dimensional array and the inner type has
6234 variable size, so the enclosing shared array type
6235 must too. */
6236 if (size && TREE_CODE (size) == INTEGER_CST)
6237 type
6238 = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
6239 C_TYPE_VARIABLE_SIZE (type) = 1;
6242 /* The GCC extension for zero-length arrays differs from
6243 ISO flexible array members in that sizeof yields
6244 zero. */
6245 if (size && integer_zerop (size))
6247 gcc_assert (itype);
6248 type = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
6249 TYPE_SIZE (type) = bitsize_zero_node;
6250 TYPE_SIZE_UNIT (type) = size_zero_node;
6251 SET_TYPE_STRUCTURAL_EQUALITY (type);
6253 if (array_parm_vla_unspec_p)
6255 gcc_assert (itype);
6256 /* The type is complete. C99 6.7.5.2p4 */
6257 type = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
6258 TYPE_SIZE (type) = bitsize_zero_node;
6259 TYPE_SIZE_UNIT (type) = size_zero_node;
6260 SET_TYPE_STRUCTURAL_EQUALITY (type);
6263 if (!valid_array_size_p (loc, type, name))
6264 type = error_mark_node;
6267 if (decl_context != PARM
6268 && (array_ptr_quals != TYPE_UNQUALIFIED
6269 || array_ptr_attrs != NULL_TREE
6270 || array_parm_static))
6272 error_at (loc, "static or type qualifiers in non-parameter "
6273 "array declarator");
6274 array_ptr_quals = TYPE_UNQUALIFIED;
6275 array_ptr_attrs = NULL_TREE;
6276 array_parm_static = false;
6278 orig_qual_indirect++;
6279 break;
6281 case cdk_function:
6283 /* Say it's a definition only for the declarator closest
6284 to the identifier, apart possibly from some
6285 attributes. */
6286 bool really_funcdef = false;
6287 tree arg_types;
6288 orig_qual_type = NULL_TREE;
6289 if (funcdef_flag)
6291 const struct c_declarator *t = declarator->declarator;
6292 while (t->kind == cdk_attrs)
6293 t = t->declarator;
6294 really_funcdef = (t->kind == cdk_id);
6297 /* Declaring a function type. Make sure we have a valid
6298 type for the function to return. */
6299 if (type == error_mark_node)
6300 continue;
6302 size_varies = false;
6304 /* Warn about some types functions can't return. */
6305 if (TREE_CODE (type) == FUNCTION_TYPE)
6307 if (name)
6308 error_at (loc, "%qE declared as function returning a "
6309 "function", name);
6310 else
6311 error_at (loc, "type name declared as function "
6312 "returning a function");
6313 type = integer_type_node;
6315 if (TREE_CODE (type) == ARRAY_TYPE)
6317 if (name)
6318 error_at (loc, "%qE declared as function returning an array",
6319 name);
6320 else
6321 error_at (loc, "type name declared as function returning "
6322 "an array");
6323 type = integer_type_node;
6326 /* Construct the function type and go to the next
6327 inner layer of declarator. */
6328 arg_info = declarator->u.arg_info;
6329 arg_types = grokparms (arg_info, really_funcdef);
6331 /* Type qualifiers before the return type of the function
6332 qualify the return type, not the function type. */
6333 if (type_quals)
6335 const enum c_declspec_word ignored_quals_list[] =
6337 cdw_const, cdw_volatile, cdw_restrict, cdw_address_space,
6338 cdw_atomic, cdw_number_of_elements
6340 location_t specs_loc
6341 = smallest_type_quals_location (declspecs->locations,
6342 ignored_quals_list);
6343 if (specs_loc == UNKNOWN_LOCATION)
6344 specs_loc = declspecs->locations[cdw_typedef];
6345 if (specs_loc == UNKNOWN_LOCATION)
6346 specs_loc = loc;
6348 /* Type qualifiers on a function return type are
6349 normally permitted by the standard but have no
6350 effect, so give a warning at -Wreturn-type.
6351 Qualifiers on a void return type are banned on
6352 function definitions in ISO C; GCC used to used
6353 them for noreturn functions. The resolution of C11
6354 DR#423 means qualifiers (other than _Atomic) are
6355 actually removed from the return type when
6356 determining the function type. */
6357 int quals_used = type_quals;
6358 if (flag_isoc11)
6359 quals_used &= TYPE_QUAL_ATOMIC;
6360 if (quals_used && VOID_TYPE_P (type) && really_funcdef)
6361 pedwarn (specs_loc, 0,
6362 "function definition has qualified void return type");
6363 else
6364 warning_at (specs_loc, OPT_Wignored_qualifiers,
6365 "type qualifiers ignored on function return type");
6367 /* Ensure an error for restrict on invalid types; the
6368 DR#423 resolution is not entirely clear about
6369 this. */
6370 if (flag_isoc11
6371 && (type_quals & TYPE_QUAL_RESTRICT)
6372 && (!POINTER_TYPE_P (type)
6373 || !C_TYPE_OBJECT_OR_INCOMPLETE_P (TREE_TYPE (type))))
6374 error_at (loc, "invalid use of %<restrict%>");
6375 if (quals_used)
6376 type = c_build_qualified_type (type, quals_used);
6378 type_quals = TYPE_UNQUALIFIED;
6380 type = build_function_type (type, arg_types);
6381 declarator = declarator->declarator;
6383 /* Set the TYPE_CONTEXTs for each tagged type which is local to
6384 the formal parameter list of this FUNCTION_TYPE to point to
6385 the FUNCTION_TYPE node itself. */
6387 c_arg_tag *tag;
6388 unsigned ix;
6390 FOR_EACH_VEC_SAFE_ELT_REVERSE (arg_info->tags, ix, tag)
6391 TYPE_CONTEXT (tag->type) = type;
6393 break;
6395 case cdk_pointer:
6397 /* Merge any constancy or volatility into the target type
6398 for the pointer. */
6399 if ((type_quals & TYPE_QUAL_ATOMIC)
6400 && TREE_CODE (type) == FUNCTION_TYPE)
6402 error_at (loc,
6403 "%<_Atomic%>-qualified function type");
6404 type_quals &= ~TYPE_QUAL_ATOMIC;
6406 else if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
6407 && type_quals)
6408 pedwarn (loc, OPT_Wpedantic,
6409 "ISO C forbids qualified function types");
6410 if (type_quals)
6411 type = c_build_qualified_type (type, type_quals, orig_qual_type,
6412 orig_qual_indirect);
6413 orig_qual_type = NULL_TREE;
6414 size_varies = false;
6416 /* When the pointed-to type involves components of variable size,
6417 care must be taken to ensure that the size evaluation code is
6418 emitted early enough to dominate all the possible later uses
6419 and late enough for the variables on which it depends to have
6420 been assigned.
6422 This is expected to happen automatically when the pointed-to
6423 type has a name/declaration of it's own, but special attention
6424 is required if the type is anonymous.
6426 We handle the NORMAL and FIELD contexts here by attaching an
6427 artificial TYPE_DECL to such pointed-to type. This forces the
6428 sizes evaluation at a safe point and ensures it is not deferred
6429 until e.g. within a deeper conditional context.
6431 We expect nothing to be needed here for PARM or TYPENAME.
6432 Pushing a TYPE_DECL at this point for TYPENAME would actually
6433 be incorrect, as we might be in the middle of an expression
6434 with side effects on the pointed-to type size "arguments" prior
6435 to the pointer declaration point and the fake TYPE_DECL in the
6436 enclosing context would force the size evaluation prior to the
6437 side effects. */
6439 if (!TYPE_NAME (type)
6440 && (decl_context == NORMAL || decl_context == FIELD)
6441 && variably_modified_type_p (type, NULL_TREE))
6443 tree decl = build_decl (loc, TYPE_DECL, NULL_TREE, type);
6444 DECL_ARTIFICIAL (decl) = 1;
6445 pushdecl (decl);
6446 finish_decl (decl, loc, NULL_TREE, NULL_TREE, NULL_TREE);
6447 TYPE_NAME (type) = decl;
6450 type = c_build_pointer_type (type);
6452 /* Process type qualifiers (such as const or volatile)
6453 that were given inside the `*'. */
6454 type_quals = declarator->u.pointer_quals;
6456 declarator = declarator->declarator;
6457 break;
6459 default:
6460 gcc_unreachable ();
6463 *decl_attrs = chainon (returned_attrs, *decl_attrs);
6465 /* Now TYPE has the actual type, apart from any qualifiers in
6466 TYPE_QUALS. */
6468 /* Warn about address space used for things other than static memory or
6469 pointers. */
6470 address_space = DECODE_QUAL_ADDR_SPACE (type_quals);
6471 if (!ADDR_SPACE_GENERIC_P (address_space))
6473 if (decl_context == NORMAL)
6475 switch (storage_class)
6477 case csc_auto:
6478 error ("%qs combined with %<auto%> qualifier for %qE",
6479 c_addr_space_name (address_space), name);
6480 break;
6481 case csc_register:
6482 error ("%qs combined with %<register%> qualifier for %qE",
6483 c_addr_space_name (address_space), name);
6484 break;
6485 case csc_none:
6486 if (current_function_scope)
6488 error ("%qs specified for auto variable %qE",
6489 c_addr_space_name (address_space), name);
6490 break;
6492 break;
6493 case csc_static:
6494 case csc_extern:
6495 case csc_typedef:
6496 break;
6497 default:
6498 gcc_unreachable ();
6501 else if (decl_context == PARM && TREE_CODE (type) != ARRAY_TYPE)
6503 if (name)
6504 error ("%qs specified for parameter %qE",
6505 c_addr_space_name (address_space), name);
6506 else
6507 error ("%qs specified for unnamed parameter",
6508 c_addr_space_name (address_space));
6510 else if (decl_context == FIELD)
6512 if (name)
6513 error ("%qs specified for structure field %qE",
6514 c_addr_space_name (address_space), name);
6515 else
6516 error ("%qs specified for structure field",
6517 c_addr_space_name (address_space));
6521 /* Check the type and width of a bit-field. */
6522 if (bitfield)
6524 check_bitfield_type_and_width (loc, &type, width, name);
6525 /* C11 makes it implementation-defined (6.7.2.1#5) whether
6526 atomic types are permitted for bit-fields; we have no code to
6527 make bit-field accesses atomic, so disallow them. */
6528 if (type_quals & TYPE_QUAL_ATOMIC)
6530 if (name)
6531 error_at (loc, "bit-field %qE has atomic type", name);
6532 else
6533 error_at (loc, "bit-field has atomic type");
6534 type_quals &= ~TYPE_QUAL_ATOMIC;
6538 /* Reject invalid uses of _Alignas. */
6539 if (declspecs->alignas_p)
6541 if (storage_class == csc_typedef)
6542 error_at (loc, "alignment specified for typedef %qE", name);
6543 else if (storage_class == csc_register)
6544 error_at (loc, "alignment specified for %<register%> object %qE",
6545 name);
6546 else if (decl_context == PARM)
6548 if (name)
6549 error_at (loc, "alignment specified for parameter %qE", name);
6550 else
6551 error_at (loc, "alignment specified for unnamed parameter");
6553 else if (bitfield)
6555 if (name)
6556 error_at (loc, "alignment specified for bit-field %qE", name);
6557 else
6558 error_at (loc, "alignment specified for unnamed bit-field");
6560 else if (TREE_CODE (type) == FUNCTION_TYPE)
6561 error_at (loc, "alignment specified for function %qE", name);
6562 else if (declspecs->align_log != -1 && TYPE_P (type))
6564 alignas_align = 1U << declspecs->align_log;
6565 if (alignas_align < min_align_of_type (type))
6567 if (name)
6568 error_at (loc, "%<_Alignas%> specifiers cannot reduce "
6569 "alignment of %qE", name);
6570 else
6571 error_at (loc, "%<_Alignas%> specifiers cannot reduce "
6572 "alignment of unnamed field");
6573 alignas_align = 0;
6578 /* If this is declaring a typedef name, return a TYPE_DECL. */
6580 if (storage_class == csc_typedef)
6582 tree decl;
6583 if ((type_quals & TYPE_QUAL_ATOMIC)
6584 && TREE_CODE (type) == FUNCTION_TYPE)
6586 error_at (loc,
6587 "%<_Atomic%>-qualified function type");
6588 type_quals &= ~TYPE_QUAL_ATOMIC;
6590 else if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
6591 && type_quals)
6592 pedwarn (loc, OPT_Wpedantic,
6593 "ISO C forbids qualified function types");
6594 if (type_quals)
6595 type = c_build_qualified_type (type, type_quals, orig_qual_type,
6596 orig_qual_indirect);
6597 decl = build_decl (declarator->id_loc,
6598 TYPE_DECL, declarator->u.id, type);
6599 if (declspecs->explicit_signed_p)
6600 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
6601 if (declspecs->inline_p)
6602 pedwarn (loc, 0,"typedef %q+D declared %<inline%>", decl);
6603 if (declspecs->noreturn_p)
6604 pedwarn (loc, 0,"typedef %q+D declared %<_Noreturn%>", decl);
6606 if (warn_cxx_compat && declarator->u.id != NULL_TREE)
6608 struct c_binding *b = I_TAG_BINDING (declarator->u.id);
6610 if (b != NULL
6611 && b->decl != NULL_TREE
6612 && (B_IN_CURRENT_SCOPE (b)
6613 || (current_scope == file_scope && B_IN_EXTERNAL_SCOPE (b)))
6614 && TYPE_MAIN_VARIANT (b->decl) != TYPE_MAIN_VARIANT (type))
6616 if (warning_at (declarator->id_loc, OPT_Wc___compat,
6617 ("using %qD as both a typedef and a tag is "
6618 "invalid in C++"), decl)
6619 && b->locus != UNKNOWN_LOCATION)
6620 inform (b->locus, "originally defined here");
6624 return decl;
6627 /* If this is a type name (such as, in a cast or sizeof),
6628 compute the type and return it now. */
6630 if (decl_context == TYPENAME)
6632 /* Note that the grammar rejects storage classes in typenames
6633 and fields. */
6634 gcc_assert (storage_class == csc_none && !threadp
6635 && !declspecs->inline_p && !declspecs->noreturn_p);
6636 if ((type_quals & TYPE_QUAL_ATOMIC)
6637 && TREE_CODE (type) == FUNCTION_TYPE)
6639 error_at (loc,
6640 "%<_Atomic%>-qualified function type");
6641 type_quals &= ~TYPE_QUAL_ATOMIC;
6643 else if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
6644 && type_quals)
6645 pedwarn (loc, OPT_Wpedantic,
6646 "ISO C forbids const or volatile function types");
6647 if (type_quals)
6648 type = c_build_qualified_type (type, type_quals, orig_qual_type,
6649 orig_qual_indirect);
6650 return type;
6653 if (pedantic && decl_context == FIELD
6654 && variably_modified_type_p (type, NULL_TREE))
6656 /* C99 6.7.2.1p8 */
6657 pedwarn (loc, OPT_Wpedantic, "a member of a structure or union cannot "
6658 "have a variably modified type");
6661 /* Aside from typedefs and type names (handle above),
6662 `void' at top level (not within pointer)
6663 is allowed only in public variables.
6664 We don't complain about parms either, but that is because
6665 a better error message can be made later. */
6667 if (VOID_TYPE_P (type) && decl_context != PARM
6668 && !((decl_context != FIELD && TREE_CODE (type) != FUNCTION_TYPE)
6669 && (storage_class == csc_extern
6670 || (current_scope == file_scope
6671 && !(storage_class == csc_static
6672 || storage_class == csc_register)))))
6674 error_at (loc, "variable or field %qE declared void", name);
6675 type = integer_type_node;
6678 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
6679 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
6682 tree decl;
6684 if (decl_context == PARM)
6686 tree promoted_type;
6687 bool array_parameter_p = false;
6689 /* A parameter declared as an array of T is really a pointer to T.
6690 One declared as a function is really a pointer to a function. */
6692 if (TREE_CODE (type) == ARRAY_TYPE)
6694 /* Transfer const-ness of array into that of type pointed to. */
6695 type = TREE_TYPE (type);
6696 if (orig_qual_type != NULL_TREE)
6698 if (orig_qual_indirect == 0)
6699 orig_qual_type = TREE_TYPE (orig_qual_type);
6700 else
6701 orig_qual_indirect--;
6703 if (type_quals)
6704 type = c_build_qualified_type (type, type_quals, orig_qual_type,
6705 orig_qual_indirect);
6706 type = c_build_pointer_type (type);
6707 type_quals = array_ptr_quals;
6708 if (type_quals)
6709 type = c_build_qualified_type (type, type_quals);
6711 /* We don't yet implement attributes in this context. */
6712 if (array_ptr_attrs != NULL_TREE)
6713 warning_at (loc, OPT_Wattributes,
6714 "attributes in parameter array declarator ignored");
6716 size_varies = false;
6717 array_parameter_p = true;
6719 else if (TREE_CODE (type) == FUNCTION_TYPE)
6721 if (type_quals & TYPE_QUAL_ATOMIC)
6723 error_at (loc,
6724 "%<_Atomic%>-qualified function type");
6725 type_quals &= ~TYPE_QUAL_ATOMIC;
6727 else if (type_quals)
6728 pedwarn (loc, OPT_Wpedantic,
6729 "ISO C forbids qualified function types");
6730 if (type_quals)
6731 type = c_build_qualified_type (type, type_quals);
6732 type = c_build_pointer_type (type);
6733 type_quals = TYPE_UNQUALIFIED;
6735 else if (type_quals)
6736 type = c_build_qualified_type (type, type_quals);
6738 decl = build_decl (declarator->id_loc,
6739 PARM_DECL, declarator->u.id, type);
6740 if (size_varies)
6741 C_DECL_VARIABLE_SIZE (decl) = 1;
6742 C_ARRAY_PARAMETER (decl) = array_parameter_p;
6744 /* Compute the type actually passed in the parmlist,
6745 for the case where there is no prototype.
6746 (For example, shorts and chars are passed as ints.)
6747 When there is a prototype, this is overridden later. */
6749 if (type == error_mark_node)
6750 promoted_type = type;
6751 else
6752 promoted_type = c_type_promotes_to (type);
6754 DECL_ARG_TYPE (decl) = promoted_type;
6755 if (declspecs->inline_p)
6756 pedwarn (loc, 0, "parameter %q+D declared %<inline%>", decl);
6757 if (declspecs->noreturn_p)
6758 pedwarn (loc, 0, "parameter %q+D declared %<_Noreturn%>", decl);
6760 else if (decl_context == FIELD)
6762 /* Note that the grammar rejects storage classes in typenames
6763 and fields. */
6764 gcc_assert (storage_class == csc_none && !threadp
6765 && !declspecs->inline_p && !declspecs->noreturn_p);
6767 /* Structure field. It may not be a function. */
6769 if (TREE_CODE (type) == FUNCTION_TYPE)
6771 error_at (loc, "field %qE declared as a function", name);
6772 type = build_pointer_type (type);
6774 else if (TREE_CODE (type) != ERROR_MARK
6775 && !COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (type))
6777 if (name)
6778 error_at (loc, "field %qE has incomplete type", name);
6779 else
6780 error_at (loc, "unnamed field has incomplete type");
6781 type = error_mark_node;
6783 else if (TREE_CODE (type) == ARRAY_TYPE
6784 && TYPE_DOMAIN (type) == NULL_TREE)
6786 /* We have a flexible array member through a typedef.
6787 Set suitable range. Whether this is a correct position
6788 for a flexible array member will be determined elsewhere. */
6789 if (!in_system_header_at (input_location))
6790 pedwarn_c90 (loc, OPT_Wpedantic, "ISO C90 does not "
6791 "support flexible array members");
6792 type = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
6793 TYPE_DOMAIN (type) = build_range_type (sizetype, size_zero_node,
6794 NULL_TREE);
6795 if (orig_qual_indirect == 0)
6796 orig_qual_type = NULL_TREE;
6798 type = c_build_qualified_type (type, type_quals, orig_qual_type,
6799 orig_qual_indirect);
6800 decl = build_decl (declarator->id_loc,
6801 FIELD_DECL, declarator->u.id, type);
6802 DECL_NONADDRESSABLE_P (decl) = bitfield;
6803 if (bitfield && !declarator->u.id)
6804 TREE_NO_WARNING (decl) = 1;
6806 if (size_varies)
6807 C_DECL_VARIABLE_SIZE (decl) = 1;
6809 else if (TREE_CODE (type) == FUNCTION_TYPE)
6811 if (storage_class == csc_register || threadp)
6813 error_at (loc, "invalid storage class for function %qE", name);
6815 else if (current_scope != file_scope)
6817 /* Function declaration not at file scope. Storage
6818 classes other than `extern' are not allowed, C99
6819 6.7.1p5, and `extern' makes no difference. However,
6820 GCC allows 'auto', perhaps with 'inline', to support
6821 nested functions. */
6822 if (storage_class == csc_auto)
6823 pedwarn (loc, OPT_Wpedantic,
6824 "invalid storage class for function %qE", name);
6825 else if (storage_class == csc_static)
6827 error_at (loc, "invalid storage class for function %qE", name);
6828 if (funcdef_flag)
6829 storage_class = declspecs->storage_class = csc_none;
6830 else
6831 return NULL_TREE;
6835 decl = build_decl (declarator->id_loc,
6836 FUNCTION_DECL, declarator->u.id, type);
6837 decl = build_decl_attribute_variant (decl, decl_attr);
6839 if (type_quals & TYPE_QUAL_ATOMIC)
6841 error_at (loc,
6842 "%<_Atomic%>-qualified function type");
6843 type_quals &= ~TYPE_QUAL_ATOMIC;
6845 else if (pedantic && type_quals && !DECL_IN_SYSTEM_HEADER (decl))
6846 pedwarn (loc, OPT_Wpedantic,
6847 "ISO C forbids qualified function types");
6849 /* Every function declaration is an external reference
6850 (DECL_EXTERNAL) except for those which are not at file
6851 scope and are explicitly declared "auto". This is
6852 forbidden by standard C (C99 6.7.1p5) and is interpreted by
6853 GCC to signify a forward declaration of a nested function. */
6854 if (storage_class == csc_auto && current_scope != file_scope)
6855 DECL_EXTERNAL (decl) = 0;
6856 /* In C99, a function which is declared 'inline' with 'extern'
6857 is not an external reference (which is confusing). It
6858 means that the later definition of the function must be output
6859 in this file, C99 6.7.4p6. In GNU C89, a function declared
6860 'extern inline' is an external reference. */
6861 else if (declspecs->inline_p && storage_class != csc_static)
6862 DECL_EXTERNAL (decl) = ((storage_class == csc_extern)
6863 == flag_gnu89_inline);
6864 else
6865 DECL_EXTERNAL (decl) = !initialized;
6867 /* Record absence of global scope for `static' or `auto'. */
6868 TREE_PUBLIC (decl)
6869 = !(storage_class == csc_static || storage_class == csc_auto);
6871 /* For a function definition, record the argument information
6872 block where store_parm_decls will look for it. */
6873 if (funcdef_flag)
6874 current_function_arg_info = arg_info;
6876 if (declspecs->default_int_p)
6877 C_FUNCTION_IMPLICIT_INT (decl) = 1;
6879 /* Record presence of `inline' and `_Noreturn', if it is
6880 reasonable. */
6881 if (flag_hosted && MAIN_NAME_P (declarator->u.id))
6883 if (declspecs->inline_p)
6884 pedwarn (loc, 0, "cannot inline function %<main%>");
6885 if (declspecs->noreturn_p)
6886 pedwarn (loc, 0, "%<main%> declared %<_Noreturn%>");
6888 else
6890 if (declspecs->inline_p)
6891 /* Record that the function is declared `inline'. */
6892 DECL_DECLARED_INLINE_P (decl) = 1;
6893 if (declspecs->noreturn_p)
6895 if (flag_isoc99)
6896 pedwarn_c99 (loc, OPT_Wpedantic,
6897 "ISO C99 does not support %<_Noreturn%>");
6898 else
6899 pedwarn_c99 (loc, OPT_Wpedantic,
6900 "ISO C90 does not support %<_Noreturn%>");
6901 TREE_THIS_VOLATILE (decl) = 1;
6905 else
6907 /* It's a variable. */
6908 /* An uninitialized decl with `extern' is a reference. */
6909 int extern_ref = !initialized && storage_class == csc_extern;
6911 type = c_build_qualified_type (type, type_quals, orig_qual_type,
6912 orig_qual_indirect);
6914 /* C99 6.2.2p7: It is invalid (compile-time undefined
6915 behavior) to create an 'extern' declaration for a
6916 variable if there is a global declaration that is
6917 'static' and the global declaration is not visible.
6918 (If the static declaration _is_ currently visible,
6919 the 'extern' declaration is taken to refer to that decl.) */
6920 if (extern_ref && current_scope != file_scope)
6922 tree global_decl = identifier_global_value (declarator->u.id);
6923 tree visible_decl = lookup_name (declarator->u.id);
6925 if (global_decl
6926 && global_decl != visible_decl
6927 && VAR_P (global_decl)
6928 && !TREE_PUBLIC (global_decl))
6929 error_at (loc, "variable previously declared %<static%> "
6930 "redeclared %<extern%>");
6933 decl = build_decl (declarator->id_loc,
6934 VAR_DECL, declarator->u.id, type);
6935 if (size_varies)
6936 C_DECL_VARIABLE_SIZE (decl) = 1;
6938 if (declspecs->inline_p)
6939 pedwarn (loc, 0, "variable %q+D declared %<inline%>", decl);
6940 if (declspecs->noreturn_p)
6941 pedwarn (loc, 0, "variable %q+D declared %<_Noreturn%>", decl);
6943 /* At file scope, an initialized extern declaration may follow
6944 a static declaration. In that case, DECL_EXTERNAL will be
6945 reset later in start_decl. */
6946 DECL_EXTERNAL (decl) = (storage_class == csc_extern);
6948 /* At file scope, the presence of a `static' or `register' storage
6949 class specifier, or the absence of all storage class specifiers
6950 makes this declaration a definition (perhaps tentative). Also,
6951 the absence of `static' makes it public. */
6952 if (current_scope == file_scope)
6954 TREE_PUBLIC (decl) = storage_class != csc_static;
6955 TREE_STATIC (decl) = !extern_ref;
6957 /* Not at file scope, only `static' makes a static definition. */
6958 else
6960 TREE_STATIC (decl) = (storage_class == csc_static);
6961 TREE_PUBLIC (decl) = extern_ref;
6964 if (threadp)
6965 set_decl_tls_model (decl, decl_default_tls_model (decl));
6968 if ((storage_class == csc_extern
6969 || (storage_class == csc_none
6970 && TREE_CODE (type) == FUNCTION_TYPE
6971 && !funcdef_flag))
6972 && variably_modified_type_p (type, NULL_TREE))
6974 /* C99 6.7.5.2p2 */
6975 if (TREE_CODE (type) == FUNCTION_TYPE)
6976 error_at (loc, "non-nested function with variably modified type");
6977 else
6978 error_at (loc, "object with variably modified type must have "
6979 "no linkage");
6982 /* Record `register' declaration for warnings on &
6983 and in case doing stupid register allocation. */
6985 if (storage_class == csc_register)
6987 C_DECL_REGISTER (decl) = 1;
6988 DECL_REGISTER (decl) = 1;
6991 /* Record constancy and volatility. */
6992 c_apply_type_quals_to_decl (type_quals, decl);
6994 /* Apply _Alignas specifiers. */
6995 if (alignas_align)
6997 SET_DECL_ALIGN (decl, alignas_align * BITS_PER_UNIT);
6998 DECL_USER_ALIGN (decl) = 1;
7001 /* If a type has volatile components, it should be stored in memory.
7002 Otherwise, the fact that those components are volatile
7003 will be ignored, and would even crash the compiler.
7004 Of course, this only makes sense on VAR,PARM, and RESULT decl's. */
7005 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl))
7006 && (VAR_P (decl) || TREE_CODE (decl) == PARM_DECL
7007 || TREE_CODE (decl) == RESULT_DECL))
7009 /* It is not an error for a structure with volatile fields to
7010 be declared register, but reset DECL_REGISTER since it
7011 cannot actually go in a register. */
7012 int was_reg = C_DECL_REGISTER (decl);
7013 C_DECL_REGISTER (decl) = 0;
7014 DECL_REGISTER (decl) = 0;
7015 c_mark_addressable (decl);
7016 C_DECL_REGISTER (decl) = was_reg;
7019 /* This is the earliest point at which we might know the assembler
7020 name of a variable. Thus, if it's known before this, die horribly. */
7021 gcc_assert (!HAS_DECL_ASSEMBLER_NAME_P (decl)
7022 || !DECL_ASSEMBLER_NAME_SET_P (decl));
7024 if (warn_cxx_compat
7025 && VAR_P (decl)
7026 && TREE_PUBLIC (decl)
7027 && TREE_STATIC (decl)
7028 && (RECORD_OR_UNION_TYPE_P (TREE_TYPE (decl))
7029 || TREE_CODE (TREE_TYPE (decl)) == ENUMERAL_TYPE)
7030 && TYPE_NAME (TREE_TYPE (decl)) == NULL_TREE)
7031 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wc___compat,
7032 ("non-local variable %qD with anonymous type is "
7033 "questionable in C++"),
7034 decl);
7036 return decl;
7040 /* Decode the parameter-list info for a function type or function definition.
7041 The argument is the value returned by `get_parm_info' (or made in c-parse.c
7042 if there is an identifier list instead of a parameter decl list).
7043 These two functions are separate because when a function returns
7044 or receives functions then each is called multiple times but the order
7045 of calls is different. The last call to `grokparms' is always the one
7046 that contains the formal parameter names of a function definition.
7048 Return a list of arg types to use in the FUNCTION_TYPE for this function.
7050 FUNCDEF_FLAG is true for a function definition, false for
7051 a mere declaration. A nonempty identifier-list gets an error message
7052 when FUNCDEF_FLAG is false. */
7054 static tree
7055 grokparms (struct c_arg_info *arg_info, bool funcdef_flag)
7057 tree arg_types = arg_info->types;
7059 if (funcdef_flag && arg_info->had_vla_unspec)
7061 /* A function definition isn't function prototype scope C99 6.2.1p4. */
7062 /* C99 6.7.5.2p4 */
7063 error ("%<[*]%> not allowed in other than function prototype scope");
7066 if (arg_types == NULL_TREE && !funcdef_flag
7067 && !in_system_header_at (input_location))
7068 warning (OPT_Wstrict_prototypes,
7069 "function declaration isn%'t a prototype");
7071 if (arg_types == error_mark_node)
7072 /* Don't set TYPE_ARG_TYPES in this case. */
7073 return NULL_TREE;
7075 else if (arg_types && TREE_CODE (TREE_VALUE (arg_types)) == IDENTIFIER_NODE)
7077 if (!funcdef_flag)
7079 pedwarn (input_location, 0, "parameter names (without types) in "
7080 "function declaration");
7081 arg_info->parms = NULL_TREE;
7083 else
7084 arg_info->parms = arg_info->types;
7086 arg_info->types = NULL_TREE;
7087 return NULL_TREE;
7089 else
7091 tree parm, type, typelt;
7092 unsigned int parmno;
7094 /* If there is a parameter of incomplete type in a definition,
7095 this is an error. In a declaration this is valid, and a
7096 struct or union type may be completed later, before any calls
7097 or definition of the function. In the case where the tag was
7098 first declared within the parameter list, a warning has
7099 already been given. If a parameter has void type, then
7100 however the function cannot be defined or called, so
7101 warn. */
7103 for (parm = arg_info->parms, typelt = arg_types, parmno = 1;
7104 parm;
7105 parm = DECL_CHAIN (parm), typelt = TREE_CHAIN (typelt), parmno++)
7107 type = TREE_VALUE (typelt);
7108 if (type == error_mark_node)
7109 continue;
7111 if (!COMPLETE_TYPE_P (type))
7113 if (funcdef_flag)
7115 if (DECL_NAME (parm))
7116 error_at (input_location,
7117 "parameter %u (%q+D) has incomplete type",
7118 parmno, parm);
7119 else
7120 error_at (DECL_SOURCE_LOCATION (parm),
7121 "parameter %u has incomplete type",
7122 parmno);
7124 TREE_VALUE (typelt) = error_mark_node;
7125 TREE_TYPE (parm) = error_mark_node;
7126 arg_types = NULL_TREE;
7128 else if (VOID_TYPE_P (type))
7130 if (DECL_NAME (parm))
7131 warning_at (input_location, 0,
7132 "parameter %u (%q+D) has void type",
7133 parmno, parm);
7134 else
7135 warning_at (DECL_SOURCE_LOCATION (parm), 0,
7136 "parameter %u has void type",
7137 parmno);
7141 if (DECL_NAME (parm) && TREE_USED (parm))
7142 warn_if_shadowing (parm);
7144 return arg_types;
7148 /* Allocate and initialize a c_arg_info structure from the parser's
7149 obstack. */
7151 struct c_arg_info *
7152 build_arg_info (void)
7154 struct c_arg_info *ret = XOBNEW (&parser_obstack, struct c_arg_info);
7155 ret->parms = NULL_TREE;
7156 ret->tags = NULL;
7157 ret->types = NULL_TREE;
7158 ret->others = NULL_TREE;
7159 ret->pending_sizes = NULL;
7160 ret->had_vla_unspec = 0;
7161 return ret;
7164 /* Take apart the current scope and return a c_arg_info structure with
7165 info on a parameter list just parsed.
7167 This structure is later fed to 'grokparms' and 'store_parm_decls'.
7169 ELLIPSIS being true means the argument list ended in '...' so don't
7170 append a sentinel (void_list_node) to the end of the type-list.
7172 EXPR is NULL or an expression that needs to be evaluated for the
7173 side effects of array size expressions in the parameters. */
7175 struct c_arg_info *
7176 get_parm_info (bool ellipsis, tree expr)
7178 struct c_binding *b = current_scope->bindings;
7179 struct c_arg_info *arg_info = build_arg_info ();
7181 tree parms = NULL_TREE;
7182 vec<c_arg_tag, va_gc> *tags = NULL;
7183 tree types = NULL_TREE;
7184 tree others = NULL_TREE;
7186 bool gave_void_only_once_err = false;
7188 arg_info->had_vla_unspec = current_scope->had_vla_unspec;
7190 /* The bindings in this scope must not get put into a block.
7191 We will take care of deleting the binding nodes. */
7192 current_scope->bindings = 0;
7194 /* This function is only called if there was *something* on the
7195 parameter list. */
7196 gcc_assert (b);
7198 /* A parameter list consisting solely of 'void' indicates that the
7199 function takes no arguments. But if the 'void' is qualified
7200 (by 'const' or 'volatile'), or has a storage class specifier
7201 ('register'), then the behavior is undefined; issue an error.
7202 Typedefs for 'void' are OK (see DR#157). */
7203 if (b->prev == 0 /* one binding */
7204 && TREE_CODE (b->decl) == PARM_DECL /* which is a parameter */
7205 && !DECL_NAME (b->decl) /* anonymous */
7206 && VOID_TYPE_P (TREE_TYPE (b->decl))) /* of void type */
7208 if (TYPE_QUALS (TREE_TYPE (b->decl)) != TYPE_UNQUALIFIED
7209 || C_DECL_REGISTER (b->decl))
7210 error_at (b->locus, "%<void%> as only parameter may not be qualified");
7212 /* There cannot be an ellipsis. */
7213 if (ellipsis)
7214 error_at (b->locus, "%<void%> must be the only parameter");
7216 arg_info->types = void_list_node;
7217 return arg_info;
7220 if (!ellipsis)
7221 types = void_list_node;
7223 /* Break up the bindings list into parms, tags, types, and others;
7224 apply sanity checks; purge the name-to-decl bindings. */
7225 while (b)
7227 tree decl = b->decl;
7228 tree type = TREE_TYPE (decl);
7229 c_arg_tag tag;
7230 const char *keyword;
7232 switch (TREE_CODE (decl))
7234 case PARM_DECL:
7235 if (b->id)
7237 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
7238 I_SYMBOL_BINDING (b->id) = b->shadowed;
7241 /* Check for forward decls that never got their actual decl. */
7242 if (TREE_ASM_WRITTEN (decl))
7243 error_at (b->locus,
7244 "parameter %q+D has just a forward declaration", decl);
7245 /* Check for (..., void, ...) and issue an error. */
7246 else if (VOID_TYPE_P (type) && !DECL_NAME (decl))
7248 if (!gave_void_only_once_err)
7250 error_at (b->locus, "%<void%> must be the only parameter");
7251 gave_void_only_once_err = true;
7254 else
7256 /* Valid parameter, add it to the list. */
7257 DECL_CHAIN (decl) = parms;
7258 parms = decl;
7260 /* Since there is a prototype, args are passed in their
7261 declared types. The back end may override this later. */
7262 DECL_ARG_TYPE (decl) = type;
7263 types = tree_cons (0, type, types);
7265 break;
7267 case ENUMERAL_TYPE: keyword = "enum"; goto tag;
7268 case UNION_TYPE: keyword = "union"; goto tag;
7269 case RECORD_TYPE: keyword = "struct"; goto tag;
7270 tag:
7271 /* Types may not have tag-names, in which case the type
7272 appears in the bindings list with b->id NULL. */
7273 if (b->id)
7275 gcc_assert (I_TAG_BINDING (b->id) == b);
7276 I_TAG_BINDING (b->id) = b->shadowed;
7279 /* Warn about any struct, union or enum tags defined in a
7280 parameter list. The scope of such types is limited to
7281 the parameter list, which is rarely if ever desirable
7282 (it's impossible to call such a function with type-
7283 correct arguments). An anonymous union parm type is
7284 meaningful as a GNU extension, so don't warn for that. */
7285 if (TREE_CODE (decl) != UNION_TYPE || b->id != NULL_TREE)
7287 if (b->id)
7288 /* The %s will be one of 'struct', 'union', or 'enum'. */
7289 warning_at (b->locus, 0,
7290 "%<%s %E%> declared inside parameter list"
7291 " will not be visible outside of this definition or"
7292 " declaration", keyword, b->id);
7293 else
7294 /* The %s will be one of 'struct', 'union', or 'enum'. */
7295 warning_at (b->locus, 0,
7296 "anonymous %s declared inside parameter list"
7297 " will not be visible outside of this definition or"
7298 " declaration", keyword);
7301 tag.id = b->id;
7302 tag.type = decl;
7303 vec_safe_push (tags, tag);
7304 break;
7306 case FUNCTION_DECL:
7307 /* FUNCTION_DECLs appear when there is an implicit function
7308 declaration in the parameter list. */
7309 gcc_assert (b->nested || seen_error ());
7310 goto set_shadowed;
7312 case CONST_DECL:
7313 case TYPE_DECL:
7314 /* CONST_DECLs appear here when we have an embedded enum,
7315 and TYPE_DECLs appear here when we have an embedded struct
7316 or union. No warnings for this - we already warned about the
7317 type itself. */
7319 /* When we reinsert this decl in the function body, we need
7320 to reconstruct whether it was marked as nested. */
7321 gcc_assert (!b->nested);
7322 DECL_CHAIN (decl) = others;
7323 others = decl;
7324 /* fall through */
7326 case ERROR_MARK:
7327 set_shadowed:
7328 /* error_mark_node appears here when we have an undeclared
7329 variable. Just throw it away. */
7330 if (b->id)
7332 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
7333 I_SYMBOL_BINDING (b->id) = b->shadowed;
7335 break;
7337 /* Other things that might be encountered. */
7338 case LABEL_DECL:
7339 case VAR_DECL:
7340 default:
7341 gcc_unreachable ();
7344 b = free_binding_and_advance (b);
7347 arg_info->parms = parms;
7348 arg_info->tags = tags;
7349 arg_info->types = types;
7350 arg_info->others = others;
7351 arg_info->pending_sizes = expr;
7352 return arg_info;
7355 /* Get the struct, enum or union (CODE says which) with tag NAME.
7356 Define the tag as a forward-reference with location LOC if it is
7357 not defined. Return a c_typespec structure for the type
7358 specifier. */
7360 struct c_typespec
7361 parser_xref_tag (location_t loc, enum tree_code code, tree name)
7363 struct c_typespec ret;
7364 tree ref;
7365 location_t refloc;
7367 ret.expr = NULL_TREE;
7368 ret.expr_const_operands = true;
7370 /* If a cross reference is requested, look up the type
7371 already defined for this tag and return it. */
7373 ref = lookup_tag (code, name, false, &refloc);
7374 /* If this is the right type of tag, return what we found.
7375 (This reference will be shadowed by shadow_tag later if appropriate.)
7376 If this is the wrong type of tag, do not return it. If it was the
7377 wrong type in the same scope, we will have had an error
7378 message already; if in a different scope and declaring
7379 a name, pending_xref_error will give an error message; but if in a
7380 different scope and not declaring a name, this tag should
7381 shadow the previous declaration of a different type of tag, and
7382 this would not work properly if we return the reference found.
7383 (For example, with "struct foo" in an outer scope, "union foo;"
7384 must shadow that tag with a new one of union type.) */
7385 ret.kind = (ref ? ctsk_tagref : ctsk_tagfirstref);
7386 if (ref && TREE_CODE (ref) == code)
7388 if (C_TYPE_DEFINED_IN_STRUCT (ref)
7389 && loc != UNKNOWN_LOCATION
7390 && warn_cxx_compat)
7392 switch (code)
7394 case ENUMERAL_TYPE:
7395 warning_at (loc, OPT_Wc___compat,
7396 ("enum type defined in struct or union "
7397 "is not visible in C++"));
7398 inform (refloc, "enum type defined here");
7399 break;
7400 case RECORD_TYPE:
7401 warning_at (loc, OPT_Wc___compat,
7402 ("struct defined in struct or union "
7403 "is not visible in C++"));
7404 inform (refloc, "struct defined here");
7405 break;
7406 case UNION_TYPE:
7407 warning_at (loc, OPT_Wc___compat,
7408 ("union defined in struct or union "
7409 "is not visible in C++"));
7410 inform (refloc, "union defined here");
7411 break;
7412 default:
7413 gcc_unreachable();
7417 ret.spec = ref;
7418 return ret;
7421 /* If no such tag is yet defined, create a forward-reference node
7422 and record it as the "definition".
7423 When a real declaration of this type is found,
7424 the forward-reference will be altered into a real type. */
7426 ref = make_node (code);
7427 if (code == ENUMERAL_TYPE)
7429 /* Give the type a default layout like unsigned int
7430 to avoid crashing if it does not get defined. */
7431 SET_TYPE_MODE (ref, TYPE_MODE (unsigned_type_node));
7432 SET_TYPE_ALIGN (ref, TYPE_ALIGN (unsigned_type_node));
7433 TYPE_USER_ALIGN (ref) = 0;
7434 TYPE_UNSIGNED (ref) = 1;
7435 TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
7436 TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
7437 TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
7440 pushtag (loc, name, ref);
7442 ret.spec = ref;
7443 return ret;
7446 /* Get the struct, enum or union (CODE says which) with tag NAME.
7447 Define the tag as a forward-reference if it is not defined.
7448 Return a tree for the type. */
7450 tree
7451 xref_tag (enum tree_code code, tree name)
7453 return parser_xref_tag (input_location, code, name).spec;
7456 /* Make sure that the tag NAME is defined *in the current scope*
7457 at least as a forward reference.
7458 LOC is the location of the struct's definition.
7459 CODE says which kind of tag NAME ought to be.
7461 This stores the current value of the file static STRUCT_PARSE_INFO
7462 in *ENCLOSING_STRUCT_PARSE_INFO, and points STRUCT_PARSE_INFO at a
7463 new c_struct_parse_info structure. The old value of
7464 STRUCT_PARSE_INFO is restored in finish_struct. */
7466 tree
7467 start_struct (location_t loc, enum tree_code code, tree name,
7468 struct c_struct_parse_info **enclosing_struct_parse_info)
7470 /* If there is already a tag defined at this scope
7471 (as a forward reference), just return it. */
7473 tree ref = NULL_TREE;
7474 location_t refloc = UNKNOWN_LOCATION;
7476 if (name != NULL_TREE)
7477 ref = lookup_tag (code, name, true, &refloc);
7478 if (ref && TREE_CODE (ref) == code)
7480 if (TYPE_STUB_DECL (ref))
7481 refloc = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (ref));
7483 if (TYPE_SIZE (ref))
7485 if (code == UNION_TYPE)
7486 error_at (loc, "redefinition of %<union %E%>", name);
7487 else
7488 error_at (loc, "redefinition of %<struct %E%>", name);
7489 if (refloc != UNKNOWN_LOCATION)
7490 inform (refloc, "originally defined here");
7491 /* Don't create structures using a name already in use. */
7492 ref = NULL_TREE;
7494 else if (C_TYPE_BEING_DEFINED (ref))
7496 if (code == UNION_TYPE)
7497 error_at (loc, "nested redefinition of %<union %E%>", name);
7498 else
7499 error_at (loc, "nested redefinition of %<struct %E%>", name);
7500 /* Don't bother to report "originally defined here" for a
7501 nested redefinition; the original definition should be
7502 obvious. */
7503 /* Don't create structures that contain themselves. */
7504 ref = NULL_TREE;
7508 /* Otherwise create a forward-reference just so the tag is in scope. */
7510 if (ref == NULL_TREE || TREE_CODE (ref) != code)
7512 ref = make_node (code);
7513 pushtag (loc, name, ref);
7516 C_TYPE_BEING_DEFINED (ref) = 1;
7517 for (tree v = TYPE_MAIN_VARIANT (ref); v; v = TYPE_NEXT_VARIANT (v))
7518 TYPE_PACKED (v) = flag_pack_struct;
7520 *enclosing_struct_parse_info = struct_parse_info;
7521 struct_parse_info = new c_struct_parse_info ();
7523 /* FIXME: This will issue a warning for a use of a type defined
7524 within a statement expr used within sizeof, et. al. This is not
7525 terribly serious as C++ doesn't permit statement exprs within
7526 sizeof anyhow. */
7527 if (warn_cxx_compat && (in_sizeof || in_typeof || in_alignof))
7528 warning_at (loc, OPT_Wc___compat,
7529 "defining type in %qs expression is invalid in C++",
7530 (in_sizeof
7531 ? "sizeof"
7532 : (in_typeof ? "typeof" : "alignof")));
7534 return ref;
7537 /* Process the specs, declarator and width (NULL if omitted)
7538 of a structure component, returning a FIELD_DECL node.
7539 WIDTH is non-NULL for bit-fields only, and is an INTEGER_CST node.
7540 DECL_ATTRS is as for grokdeclarator.
7542 LOC is the location of the structure component.
7544 This is done during the parsing of the struct declaration.
7545 The FIELD_DECL nodes are chained together and the lot of them
7546 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
7548 tree
7549 grokfield (location_t loc,
7550 struct c_declarator *declarator, struct c_declspecs *declspecs,
7551 tree width, tree *decl_attrs)
7553 tree value;
7555 if (declarator->kind == cdk_id && declarator->u.id == NULL_TREE
7556 && width == NULL_TREE)
7558 /* This is an unnamed decl.
7560 If we have something of the form "union { list } ;" then this
7561 is the anonymous union extension. Similarly for struct.
7563 If this is something of the form "struct foo;", then
7564 If MS or Plan 9 extensions are enabled, this is handled as
7565 an anonymous struct.
7566 Otherwise this is a forward declaration of a structure tag.
7568 If this is something of the form "foo;" and foo is a TYPE_DECL, then
7569 If foo names a structure or union without a tag, then this
7570 is an anonymous struct (this is permitted by C11).
7571 If MS or Plan 9 extensions are enabled and foo names a
7572 structure, then again this is an anonymous struct.
7573 Otherwise this is an error.
7575 Oh what a horrid tangled web we weave. I wonder if MS consciously
7576 took this from Plan 9 or if it was an accident of implementation
7577 that took root before someone noticed the bug... */
7579 tree type = declspecs->type;
7580 bool ok = false;
7582 if (RECORD_OR_UNION_TYPE_P (type)
7583 && (flag_ms_extensions
7584 || flag_plan9_extensions
7585 || !declspecs->typedef_p))
7587 if (flag_ms_extensions || flag_plan9_extensions)
7588 ok = true;
7589 else if (TYPE_NAME (type) == NULL)
7590 ok = true;
7591 else
7592 ok = false;
7594 if (!ok)
7596 pedwarn (loc, 0, "declaration does not declare anything");
7597 return NULL_TREE;
7599 if (flag_isoc99)
7600 pedwarn_c99 (loc, OPT_Wpedantic,
7601 "ISO C99 doesn%'t support unnamed structs/unions");
7602 else
7603 pedwarn_c99 (loc, OPT_Wpedantic,
7604 "ISO C90 doesn%'t support unnamed structs/unions");
7607 value = grokdeclarator (declarator, declspecs, FIELD, false,
7608 width ? &width : NULL, decl_attrs, NULL, NULL,
7609 DEPRECATED_NORMAL);
7611 finish_decl (value, loc, NULL_TREE, NULL_TREE, NULL_TREE);
7612 DECL_INITIAL (value) = width;
7613 if (width)
7614 SET_DECL_C_BIT_FIELD (value);
7616 if (warn_cxx_compat && DECL_NAME (value) != NULL_TREE)
7618 /* If we currently have a binding for this field, set the
7619 in_struct field in the binding, so that we warn about lookups
7620 which find it. */
7621 struct c_binding *b = I_SYMBOL_BINDING (DECL_NAME (value));
7622 if (b != NULL)
7624 /* If the in_struct field is not yet set, push it on a list
7625 to be cleared when this struct is finished. */
7626 if (!b->in_struct)
7628 struct_parse_info->fields.safe_push (b);
7629 b->in_struct = 1;
7634 return value;
7637 /* Subroutine of detect_field_duplicates: return whether X and Y,
7638 which are both fields in the same struct, have duplicate field
7639 names. */
7641 static bool
7642 is_duplicate_field (tree x, tree y)
7644 if (DECL_NAME (x) != NULL_TREE && DECL_NAME (x) == DECL_NAME (y))
7645 return true;
7647 /* When using -fplan9-extensions, an anonymous field whose name is a
7648 typedef can duplicate a field name. */
7649 if (flag_plan9_extensions
7650 && (DECL_NAME (x) == NULL_TREE || DECL_NAME (y) == NULL_TREE))
7652 tree xt, xn, yt, yn;
7654 xt = TREE_TYPE (x);
7655 if (DECL_NAME (x) != NULL_TREE)
7656 xn = DECL_NAME (x);
7657 else if (RECORD_OR_UNION_TYPE_P (xt)
7658 && TYPE_NAME (xt) != NULL_TREE
7659 && TREE_CODE (TYPE_NAME (xt)) == TYPE_DECL)
7660 xn = DECL_NAME (TYPE_NAME (xt));
7661 else
7662 xn = NULL_TREE;
7664 yt = TREE_TYPE (y);
7665 if (DECL_NAME (y) != NULL_TREE)
7666 yn = DECL_NAME (y);
7667 else if (RECORD_OR_UNION_TYPE_P (yt)
7668 && TYPE_NAME (yt) != NULL_TREE
7669 && TREE_CODE (TYPE_NAME (yt)) == TYPE_DECL)
7670 yn = DECL_NAME (TYPE_NAME (yt));
7671 else
7672 yn = NULL_TREE;
7674 if (xn != NULL_TREE && xn == yn)
7675 return true;
7678 return false;
7681 /* Subroutine of detect_field_duplicates: add the fields of FIELDLIST
7682 to HTAB, giving errors for any duplicates. */
7684 static void
7685 detect_field_duplicates_hash (tree fieldlist,
7686 hash_table<nofree_ptr_hash <tree_node> > *htab)
7688 tree x, y;
7689 tree_node **slot;
7691 for (x = fieldlist; x ; x = DECL_CHAIN (x))
7692 if ((y = DECL_NAME (x)) != NULL_TREE)
7694 slot = htab->find_slot (y, INSERT);
7695 if (*slot)
7697 error ("duplicate member %q+D", x);
7698 DECL_NAME (x) = NULL_TREE;
7700 *slot = y;
7702 else if (RECORD_OR_UNION_TYPE_P (TREE_TYPE (x)))
7704 detect_field_duplicates_hash (TYPE_FIELDS (TREE_TYPE (x)), htab);
7706 /* When using -fplan9-extensions, an anonymous field whose
7707 name is a typedef can duplicate a field name. */
7708 if (flag_plan9_extensions
7709 && TYPE_NAME (TREE_TYPE (x)) != NULL_TREE
7710 && TREE_CODE (TYPE_NAME (TREE_TYPE (x))) == TYPE_DECL)
7712 tree xn = DECL_NAME (TYPE_NAME (TREE_TYPE (x)));
7713 slot = htab->find_slot (xn, INSERT);
7714 if (*slot)
7715 error ("duplicate member %q+D", TYPE_NAME (TREE_TYPE (x)));
7716 *slot = xn;
7721 /* Generate an error for any duplicate field names in FIELDLIST. Munge
7722 the list such that this does not present a problem later. */
7724 static void
7725 detect_field_duplicates (tree fieldlist)
7727 tree x, y;
7728 int timeout = 10;
7730 /* If the struct is the list of instance variables of an Objective-C
7731 class, then we need to check all the instance variables of
7732 superclasses when checking for duplicates (since you can't have
7733 an instance variable in a subclass with the same name as an
7734 instance variable in a superclass). We pass on this job to the
7735 Objective-C compiler. objc_detect_field_duplicates() will return
7736 false if we are not checking the list of instance variables and
7737 the C frontend should proceed with the standard field duplicate
7738 checks. If we are checking the list of instance variables, the
7739 ObjC frontend will do the check, emit the errors if needed, and
7740 then return true. */
7741 if (c_dialect_objc ())
7742 if (objc_detect_field_duplicates (false))
7743 return;
7745 /* First, see if there are more than "a few" fields.
7746 This is trivially true if there are zero or one fields. */
7747 if (!fieldlist || !DECL_CHAIN (fieldlist))
7748 return;
7749 x = fieldlist;
7750 do {
7751 timeout--;
7752 if (DECL_NAME (x) == NULL_TREE
7753 && RECORD_OR_UNION_TYPE_P (TREE_TYPE (x)))
7754 timeout = 0;
7755 x = DECL_CHAIN (x);
7756 } while (timeout > 0 && x);
7758 /* If there were "few" fields and no anonymous structures or unions,
7759 avoid the overhead of allocating a hash table. Instead just do
7760 the nested traversal thing. */
7761 if (timeout > 0)
7763 for (x = DECL_CHAIN (fieldlist); x; x = DECL_CHAIN (x))
7764 /* When using -fplan9-extensions, we can have duplicates
7765 between typedef names and fields. */
7766 if (DECL_NAME (x)
7767 || (flag_plan9_extensions
7768 && DECL_NAME (x) == NULL_TREE
7769 && RECORD_OR_UNION_TYPE_P (TREE_TYPE (x))
7770 && TYPE_NAME (TREE_TYPE (x)) != NULL_TREE
7771 && TREE_CODE (TYPE_NAME (TREE_TYPE (x))) == TYPE_DECL))
7773 for (y = fieldlist; y != x; y = TREE_CHAIN (y))
7774 if (is_duplicate_field (y, x))
7776 error ("duplicate member %q+D", x);
7777 DECL_NAME (x) = NULL_TREE;
7781 else
7783 hash_table<nofree_ptr_hash <tree_node> > htab (37);
7784 detect_field_duplicates_hash (fieldlist, &htab);
7788 /* Finish up struct info used by -Wc++-compat. */
7790 static void
7791 warn_cxx_compat_finish_struct (tree fieldlist, enum tree_code code,
7792 location_t record_loc)
7794 unsigned int ix;
7795 tree x;
7796 struct c_binding *b;
7798 if (fieldlist == NULL_TREE)
7800 if (code == RECORD_TYPE)
7801 warning_at (record_loc, OPT_Wc___compat,
7802 "empty struct has size 0 in C, size 1 in C++");
7803 else
7804 warning_at (record_loc, OPT_Wc___compat,
7805 "empty union has size 0 in C, size 1 in C++");
7808 /* Set the C_TYPE_DEFINED_IN_STRUCT flag for each type defined in
7809 the current struct. We do this now at the end of the struct
7810 because the flag is used to issue visibility warnings, and we
7811 only want to issue those warnings if the type is referenced
7812 outside of the struct declaration. */
7813 FOR_EACH_VEC_ELT (struct_parse_info->struct_types, ix, x)
7814 C_TYPE_DEFINED_IN_STRUCT (x) = 1;
7816 /* The TYPEDEFS_SEEN field of STRUCT_PARSE_INFO is a list of
7817 typedefs used when declaring fields in this struct. If the name
7818 of any of the fields is also a typedef name then the struct would
7819 not parse in C++, because the C++ lookup rules say that the
7820 typedef name would be looked up in the context of the struct, and
7821 would thus be the field rather than the typedef. */
7822 if (!struct_parse_info->typedefs_seen.is_empty ()
7823 && fieldlist != NULL_TREE)
7825 /* Use a hash_set<tree> using the name of the typedef. We can use
7826 a hash_set<tree> because identifiers are interned. */
7827 hash_set<tree> tset;
7829 FOR_EACH_VEC_ELT (struct_parse_info->typedefs_seen, ix, x)
7830 tset.add (DECL_NAME (x));
7832 for (x = fieldlist; x != NULL_TREE; x = DECL_CHAIN (x))
7834 if (DECL_NAME (x) != NULL_TREE
7835 && tset.contains (DECL_NAME (x)))
7837 warning_at (DECL_SOURCE_LOCATION (x), OPT_Wc___compat,
7838 ("using %qD as both field and typedef name is "
7839 "invalid in C++"),
7841 /* FIXME: It would be nice to report the location where
7842 the typedef name is used. */
7847 /* For each field which has a binding and which was not defined in
7848 an enclosing struct, clear the in_struct field. */
7849 FOR_EACH_VEC_ELT (struct_parse_info->fields, ix, b)
7850 b->in_struct = 0;
7853 /* Function to help qsort sort FIELD_DECLs by name order. */
7855 static int
7856 field_decl_cmp (const void *x_p, const void *y_p)
7858 const tree *const x = (const tree *) x_p;
7859 const tree *const y = (const tree *) y_p;
7861 if (DECL_NAME (*x) == DECL_NAME (*y))
7862 /* A nontype is "greater" than a type. */
7863 return (TREE_CODE (*y) == TYPE_DECL) - (TREE_CODE (*x) == TYPE_DECL);
7864 if (DECL_NAME (*x) == NULL_TREE)
7865 return -1;
7866 if (DECL_NAME (*y) == NULL_TREE)
7867 return 1;
7868 if (DECL_NAME (*x) < DECL_NAME (*y))
7869 return -1;
7870 return 1;
7873 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
7874 LOC is the location of the RECORD_TYPE or UNION_TYPE's definition.
7875 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
7876 ATTRIBUTES are attributes to be applied to the structure.
7878 ENCLOSING_STRUCT_PARSE_INFO is the value of STRUCT_PARSE_INFO when
7879 the struct was started. */
7881 tree
7882 finish_struct (location_t loc, tree t, tree fieldlist, tree attributes,
7883 struct c_struct_parse_info *enclosing_struct_parse_info)
7885 tree x;
7886 bool toplevel = file_scope == current_scope;
7888 /* If this type was previously laid out as a forward reference,
7889 make sure we lay it out again. */
7891 TYPE_SIZE (t) = NULL_TREE;
7893 decl_attributes (&t, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
7895 if (pedantic)
7897 for (x = fieldlist; x; x = DECL_CHAIN (x))
7899 if (DECL_NAME (x) != NULL_TREE)
7900 break;
7901 if (flag_isoc11 && RECORD_OR_UNION_TYPE_P (TREE_TYPE (x)))
7902 break;
7905 if (x == NULL_TREE)
7907 if (TREE_CODE (t) == UNION_TYPE)
7909 if (fieldlist)
7910 pedwarn (loc, OPT_Wpedantic, "union has no named members");
7911 else
7912 pedwarn (loc, OPT_Wpedantic, "union has no members");
7914 else
7916 if (fieldlist)
7917 pedwarn (loc, OPT_Wpedantic, "struct has no named members");
7918 else
7919 pedwarn (loc, OPT_Wpedantic, "struct has no members");
7924 /* Install struct as DECL_CONTEXT of each field decl.
7925 Also process specified field sizes, found in the DECL_INITIAL,
7926 storing 0 there after the type has been changed to precision equal
7927 to its width, rather than the precision of the specified standard
7928 type. (Correct layout requires the original type to have been preserved
7929 until now.) */
7931 bool saw_named_field = false;
7932 for (x = fieldlist; x; x = DECL_CHAIN (x))
7934 if (TREE_TYPE (x) == error_mark_node)
7935 continue;
7937 DECL_CONTEXT (x) = t;
7939 /* If any field is const, the structure type is pseudo-const. */
7940 if (TREE_READONLY (x))
7941 C_TYPE_FIELDS_READONLY (t) = 1;
7942 else
7944 /* A field that is pseudo-const makes the structure likewise. */
7945 tree t1 = strip_array_types (TREE_TYPE (x));
7946 if (RECORD_OR_UNION_TYPE_P (t1) && C_TYPE_FIELDS_READONLY (t1))
7947 C_TYPE_FIELDS_READONLY (t) = 1;
7950 /* Any field that is volatile means variables of this type must be
7951 treated in some ways as volatile. */
7952 if (TREE_THIS_VOLATILE (x))
7953 C_TYPE_FIELDS_VOLATILE (t) = 1;
7955 /* Any field of nominal variable size implies structure is too. */
7956 if (C_DECL_VARIABLE_SIZE (x))
7957 C_TYPE_VARIABLE_SIZE (t) = 1;
7959 if (DECL_C_BIT_FIELD (x))
7961 unsigned HOST_WIDE_INT width = tree_to_uhwi (DECL_INITIAL (x));
7962 DECL_SIZE (x) = bitsize_int (width);
7963 DECL_BIT_FIELD (x) = 1;
7966 if (TYPE_PACKED (t)
7967 && (DECL_BIT_FIELD (x)
7968 || TYPE_ALIGN (TREE_TYPE (x)) > BITS_PER_UNIT))
7969 DECL_PACKED (x) = 1;
7971 /* Detect flexible array member in an invalid context. */
7972 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
7973 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
7974 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
7975 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
7977 if (TREE_CODE (t) == UNION_TYPE)
7979 error_at (DECL_SOURCE_LOCATION (x),
7980 "flexible array member in union");
7981 TREE_TYPE (x) = error_mark_node;
7983 else if (DECL_CHAIN (x) != NULL_TREE)
7985 error_at (DECL_SOURCE_LOCATION (x),
7986 "flexible array member not at end of struct");
7987 TREE_TYPE (x) = error_mark_node;
7989 else if (!saw_named_field)
7991 error_at (DECL_SOURCE_LOCATION (x),
7992 "flexible array member in a struct with no named "
7993 "members");
7994 TREE_TYPE (x) = error_mark_node;
7998 if (pedantic && TREE_CODE (t) == RECORD_TYPE
7999 && flexible_array_type_p (TREE_TYPE (x)))
8000 pedwarn (DECL_SOURCE_LOCATION (x), OPT_Wpedantic,
8001 "invalid use of structure with flexible array member");
8003 if (DECL_NAME (x)
8004 || RECORD_OR_UNION_TYPE_P (TREE_TYPE (x)))
8005 saw_named_field = true;
8008 detect_field_duplicates (fieldlist);
8010 /* Now we have the nearly final fieldlist. Record it,
8011 then lay out the structure or union (including the fields). */
8013 TYPE_FIELDS (t) = fieldlist;
8015 maybe_apply_pragma_scalar_storage_order (t);
8017 layout_type (t);
8019 if (TYPE_SIZE_UNIT (t)
8020 && TREE_CODE (TYPE_SIZE_UNIT (t)) == INTEGER_CST
8021 && !TREE_OVERFLOW (TYPE_SIZE_UNIT (t))
8022 && !valid_constant_size_p (TYPE_SIZE_UNIT (t)))
8023 error ("type %qT is too large", t);
8025 /* Give bit-fields their proper types and rewrite the type of array fields
8026 with scalar component if the enclosing type has reverse storage order. */
8027 for (tree field = fieldlist; field; field = DECL_CHAIN (field))
8029 if (TREE_CODE (field) == FIELD_DECL
8030 && DECL_INITIAL (field)
8031 && TREE_TYPE (field) != error_mark_node)
8033 unsigned HOST_WIDE_INT width
8034 = tree_to_uhwi (DECL_INITIAL (field));
8035 tree type = TREE_TYPE (field);
8036 if (width != TYPE_PRECISION (type))
8038 TREE_TYPE (field)
8039 = c_build_bitfield_integer_type (width, TYPE_UNSIGNED (type));
8040 SET_DECL_MODE (field, TYPE_MODE (TREE_TYPE (field)));
8042 DECL_INITIAL (field) = NULL_TREE;
8044 else if (TYPE_REVERSE_STORAGE_ORDER (t)
8045 && TREE_CODE (field) == FIELD_DECL
8046 && TREE_CODE (TREE_TYPE (field)) == ARRAY_TYPE)
8048 tree ftype = TREE_TYPE (field);
8049 tree ctype = strip_array_types (ftype);
8050 if (!RECORD_OR_UNION_TYPE_P (ctype) && TYPE_MODE (ctype) != QImode)
8052 tree fmain_type = TYPE_MAIN_VARIANT (ftype);
8053 tree *typep = &fmain_type;
8054 do {
8055 *typep = build_distinct_type_copy (*typep);
8056 TYPE_REVERSE_STORAGE_ORDER (*typep) = 1;
8057 typep = &TREE_TYPE (*typep);
8058 } while (TREE_CODE (*typep) == ARRAY_TYPE);
8059 TREE_TYPE (field)
8060 = c_build_qualified_type (fmain_type, TYPE_QUALS (ftype));
8065 /* Now we have the truly final field list.
8066 Store it in this type and in the variants. */
8068 TYPE_FIELDS (t) = fieldlist;
8070 /* If there are lots of fields, sort so we can look through them fast.
8071 We arbitrarily consider 16 or more elts to be "a lot". */
8074 int len = 0;
8076 for (x = fieldlist; x; x = DECL_CHAIN (x))
8078 if (len > 15 || DECL_NAME (x) == NULL)
8079 break;
8080 len += 1;
8083 if (len > 15)
8085 tree *field_array;
8086 struct lang_type *space;
8087 struct sorted_fields_type *space2;
8089 len += list_length (x);
8091 /* Use the same allocation policy here that make_node uses, to
8092 ensure that this lives as long as the rest of the struct decl.
8093 All decls in an inline function need to be saved. */
8095 space = ggc_cleared_alloc<struct lang_type> ();
8096 space2 = (sorted_fields_type *) ggc_internal_alloc
8097 (sizeof (struct sorted_fields_type) + len * sizeof (tree));
8099 len = 0;
8100 space->s = space2;
8101 field_array = &space2->elts[0];
8102 for (x = fieldlist; x; x = DECL_CHAIN (x))
8104 field_array[len++] = x;
8106 /* If there is anonymous struct or union, break out of the loop. */
8107 if (DECL_NAME (x) == NULL)
8108 break;
8110 /* Found no anonymous struct/union. Add the TYPE_LANG_SPECIFIC. */
8111 if (x == NULL)
8113 TYPE_LANG_SPECIFIC (t) = space;
8114 TYPE_LANG_SPECIFIC (t)->s->len = len;
8115 field_array = TYPE_LANG_SPECIFIC (t)->s->elts;
8116 qsort (field_array, len, sizeof (tree), field_decl_cmp);
8121 /* Note: C_TYPE_INCOMPLETE_VARS overloads TYPE_VFIELD which is used
8122 in dwarf2out via rest_of_decl_compilation below and means
8123 something totally different. Since we will be clearing
8124 C_TYPE_INCOMPLETE_VARS shortly after we iterate through them,
8125 clear it ahead of time and avoid problems in dwarf2out. Ideally,
8126 C_TYPE_INCOMPLETE_VARS should use some language specific
8127 node. */
8128 tree incomplete_vars = C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t));
8129 for (x = TYPE_MAIN_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
8131 TYPE_FIELDS (x) = TYPE_FIELDS (t);
8132 TYPE_LANG_SPECIFIC (x) = TYPE_LANG_SPECIFIC (t);
8133 C_TYPE_FIELDS_READONLY (x) = C_TYPE_FIELDS_READONLY (t);
8134 C_TYPE_FIELDS_VOLATILE (x) = C_TYPE_FIELDS_VOLATILE (t);
8135 C_TYPE_VARIABLE_SIZE (x) = C_TYPE_VARIABLE_SIZE (t);
8136 C_TYPE_INCOMPLETE_VARS (x) = NULL_TREE;
8139 /* If this was supposed to be a transparent union, but we can't
8140 make it one, warn and turn off the flag. */
8141 if (TREE_CODE (t) == UNION_TYPE
8142 && TYPE_TRANSPARENT_AGGR (t)
8143 && (!TYPE_FIELDS (t) || TYPE_MODE (t) != DECL_MODE (TYPE_FIELDS (t))))
8145 TYPE_TRANSPARENT_AGGR (t) = 0;
8146 warning_at (loc, 0, "union cannot be made transparent");
8149 /* If this structure or union completes the type of any previous
8150 variable declaration, lay it out and output its rtl. */
8151 for (x = incomplete_vars; x; x = TREE_CHAIN (x))
8153 tree decl = TREE_VALUE (x);
8154 if (TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
8155 layout_array_type (TREE_TYPE (decl));
8156 if (TREE_CODE (decl) != TYPE_DECL)
8158 layout_decl (decl, 0);
8159 if (c_dialect_objc ())
8160 objc_check_decl (decl);
8161 rest_of_decl_compilation (decl, toplevel, 0);
8165 /* Update type location to the one of the definition, instead of e.g.
8166 a forward declaration. */
8167 if (TYPE_STUB_DECL (t))
8168 DECL_SOURCE_LOCATION (TYPE_STUB_DECL (t)) = loc;
8170 /* Finish debugging output for this type. */
8171 rest_of_type_compilation (t, toplevel);
8173 /* If we're inside a function proper, i.e. not file-scope and not still
8174 parsing parameters, then arrange for the size of a variable sized type
8175 to be bound now. */
8176 if (building_stmt_list_p () && variably_modified_type_p (t, NULL_TREE))
8177 add_stmt (build_stmt (loc,
8178 DECL_EXPR, build_decl (loc, TYPE_DECL, NULL, t)));
8180 if (warn_cxx_compat)
8181 warn_cxx_compat_finish_struct (fieldlist, TREE_CODE (t), loc);
8183 delete struct_parse_info;
8185 struct_parse_info = enclosing_struct_parse_info;
8187 /* If this struct is defined inside a struct, add it to
8188 struct_types. */
8189 if (warn_cxx_compat
8190 && struct_parse_info != NULL
8191 && !in_sizeof && !in_typeof && !in_alignof)
8192 struct_parse_info->struct_types.safe_push (t);
8194 return t;
8197 static struct {
8198 gt_pointer_operator new_value;
8199 void *cookie;
8200 } resort_data;
8202 /* This routine compares two fields like field_decl_cmp but using the
8203 pointer operator in resort_data. */
8205 static int
8206 resort_field_decl_cmp (const void *x_p, const void *y_p)
8208 const tree *const x = (const tree *) x_p;
8209 const tree *const y = (const tree *) y_p;
8211 if (DECL_NAME (*x) == DECL_NAME (*y))
8212 /* A nontype is "greater" than a type. */
8213 return (TREE_CODE (*y) == TYPE_DECL) - (TREE_CODE (*x) == TYPE_DECL);
8214 if (DECL_NAME (*x) == NULL_TREE)
8215 return -1;
8216 if (DECL_NAME (*y) == NULL_TREE)
8217 return 1;
8219 tree d1 = DECL_NAME (*x);
8220 tree d2 = DECL_NAME (*y);
8221 resort_data.new_value (&d1, resort_data.cookie);
8222 resort_data.new_value (&d2, resort_data.cookie);
8223 if (d1 < d2)
8224 return -1;
8226 return 1;
8229 /* Resort DECL_SORTED_FIELDS because pointers have been reordered. */
8231 void
8232 resort_sorted_fields (void *obj,
8233 void * ARG_UNUSED (orig_obj),
8234 gt_pointer_operator new_value,
8235 void *cookie)
8237 struct sorted_fields_type *sf = (struct sorted_fields_type *) obj;
8238 resort_data.new_value = new_value;
8239 resort_data.cookie = cookie;
8240 qsort (&sf->elts[0], sf->len, sizeof (tree),
8241 resort_field_decl_cmp);
8244 /* Lay out the type T, and its element type, and so on. */
8246 static void
8247 layout_array_type (tree t)
8249 if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
8250 layout_array_type (TREE_TYPE (t));
8251 layout_type (t);
8254 /* Begin compiling the definition of an enumeration type.
8255 NAME is its name (or null if anonymous).
8256 LOC is the enum's location.
8257 Returns the type object, as yet incomplete.
8258 Also records info about it so that build_enumerator
8259 may be used to declare the individual values as they are read. */
8261 tree
8262 start_enum (location_t loc, struct c_enum_contents *the_enum, tree name)
8264 tree enumtype = NULL_TREE;
8265 location_t enumloc = UNKNOWN_LOCATION;
8267 /* If this is the real definition for a previous forward reference,
8268 fill in the contents in the same object that used to be the
8269 forward reference. */
8271 if (name != NULL_TREE)
8272 enumtype = lookup_tag (ENUMERAL_TYPE, name, true, &enumloc);
8274 if (enumtype == NULL_TREE || TREE_CODE (enumtype) != ENUMERAL_TYPE)
8276 enumtype = make_node (ENUMERAL_TYPE);
8277 pushtag (loc, name, enumtype);
8279 /* Update type location to the one of the definition, instead of e.g.
8280 a forward declaration. */
8281 else if (TYPE_STUB_DECL (enumtype))
8283 enumloc = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (enumtype));
8284 DECL_SOURCE_LOCATION (TYPE_STUB_DECL (enumtype)) = loc;
8287 if (C_TYPE_BEING_DEFINED (enumtype))
8288 error_at (loc, "nested redefinition of %<enum %E%>", name);
8290 C_TYPE_BEING_DEFINED (enumtype) = 1;
8292 if (TYPE_VALUES (enumtype) != NULL_TREE)
8294 /* This enum is a named one that has been declared already. */
8295 error_at (loc, "redeclaration of %<enum %E%>", name);
8296 if (enumloc != UNKNOWN_LOCATION)
8297 inform (enumloc, "originally defined here");
8299 /* Completely replace its old definition.
8300 The old enumerators remain defined, however. */
8301 TYPE_VALUES (enumtype) = NULL_TREE;
8304 the_enum->enum_next_value = integer_zero_node;
8305 the_enum->enum_overflow = 0;
8307 if (flag_short_enums)
8308 for (tree v = TYPE_MAIN_VARIANT (enumtype); v; v = TYPE_NEXT_VARIANT (v))
8309 TYPE_PACKED (v) = 1;
8311 /* FIXME: This will issue a warning for a use of a type defined
8312 within sizeof in a statement expr. This is not terribly serious
8313 as C++ doesn't permit statement exprs within sizeof anyhow. */
8314 if (warn_cxx_compat && (in_sizeof || in_typeof || in_alignof))
8315 warning_at (loc, OPT_Wc___compat,
8316 "defining type in %qs expression is invalid in C++",
8317 (in_sizeof
8318 ? "sizeof"
8319 : (in_typeof ? "typeof" : "alignof")));
8321 return enumtype;
8324 /* After processing and defining all the values of an enumeration type,
8325 install their decls in the enumeration type and finish it off.
8326 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
8327 and ATTRIBUTES are the specified attributes.
8328 Returns ENUMTYPE. */
8330 tree
8331 finish_enum (tree enumtype, tree values, tree attributes)
8333 tree pair, tem;
8334 tree minnode = NULL_TREE, maxnode = NULL_TREE;
8335 int precision;
8336 signop sign;
8337 bool toplevel = (file_scope == current_scope);
8338 struct lang_type *lt;
8340 decl_attributes (&enumtype, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
8342 /* Calculate the maximum value of any enumerator in this type. */
8344 if (values == error_mark_node)
8345 minnode = maxnode = integer_zero_node;
8346 else
8348 minnode = maxnode = TREE_VALUE (values);
8349 for (pair = TREE_CHAIN (values); pair; pair = TREE_CHAIN (pair))
8351 tree value = TREE_VALUE (pair);
8352 if (tree_int_cst_lt (maxnode, value))
8353 maxnode = value;
8354 if (tree_int_cst_lt (value, minnode))
8355 minnode = value;
8359 /* Construct the final type of this enumeration. It is the same
8360 as one of the integral types - the narrowest one that fits, except
8361 that normally we only go as narrow as int - and signed iff any of
8362 the values are negative. */
8363 sign = (tree_int_cst_sgn (minnode) >= 0) ? UNSIGNED : SIGNED;
8364 precision = MAX (tree_int_cst_min_precision (minnode, sign),
8365 tree_int_cst_min_precision (maxnode, sign));
8367 /* If the precision of the type was specified with an attribute and it
8368 was too small, give an error. Otherwise, use it. */
8369 if (TYPE_PRECISION (enumtype) && lookup_attribute ("mode", attributes))
8371 if (precision > TYPE_PRECISION (enumtype))
8373 TYPE_PRECISION (enumtype) = 0;
8374 error ("specified mode too small for enumeral values");
8376 else
8377 precision = TYPE_PRECISION (enumtype);
8379 else
8380 TYPE_PRECISION (enumtype) = 0;
8382 if (TYPE_PACKED (enumtype)
8383 || precision > TYPE_PRECISION (integer_type_node)
8384 || TYPE_PRECISION (enumtype))
8386 tem = c_common_type_for_size (precision, sign == UNSIGNED ? 1 : 0);
8387 if (tem == NULL)
8389 warning (0, "enumeration values exceed range of largest integer");
8390 tem = long_long_integer_type_node;
8393 else
8394 tem = sign == UNSIGNED ? unsigned_type_node : integer_type_node;
8396 TYPE_MIN_VALUE (enumtype) = TYPE_MIN_VALUE (tem);
8397 TYPE_MAX_VALUE (enumtype) = TYPE_MAX_VALUE (tem);
8398 TYPE_UNSIGNED (enumtype) = TYPE_UNSIGNED (tem);
8399 SET_TYPE_ALIGN (enumtype, TYPE_ALIGN (tem));
8400 TYPE_SIZE (enumtype) = NULL_TREE;
8401 TYPE_PRECISION (enumtype) = TYPE_PRECISION (tem);
8403 layout_type (enumtype);
8405 if (values != error_mark_node)
8407 /* Change the type of the enumerators to be the enum type. We
8408 need to do this irrespective of the size of the enum, for
8409 proper type checking. Replace the DECL_INITIALs of the
8410 enumerators, and the value slots of the list, with copies
8411 that have the enum type; they cannot be modified in place
8412 because they may be shared (e.g. integer_zero_node) Finally,
8413 change the purpose slots to point to the names of the decls. */
8414 for (pair = values; pair; pair = TREE_CHAIN (pair))
8416 tree enu = TREE_PURPOSE (pair);
8417 tree ini = DECL_INITIAL (enu);
8419 TREE_TYPE (enu) = enumtype;
8421 /* The ISO C Standard mandates enumerators to have type int,
8422 even though the underlying type of an enum type is
8423 unspecified. However, GCC allows enumerators of any
8424 integer type as an extensions. build_enumerator()
8425 converts any enumerators that fit in an int to type int,
8426 to avoid promotions to unsigned types when comparing
8427 integers with enumerators that fit in the int range.
8428 When -pedantic is given, build_enumerator() would have
8429 already warned about those that don't fit. Here we
8430 convert the rest to the enumerator type. */
8431 if (TREE_TYPE (ini) != integer_type_node)
8432 ini = convert (enumtype, ini);
8434 DECL_INITIAL (enu) = ini;
8435 TREE_PURPOSE (pair) = DECL_NAME (enu);
8436 TREE_VALUE (pair) = ini;
8439 TYPE_VALUES (enumtype) = values;
8442 /* Record the min/max values so that we can warn about bit-field
8443 enumerations that are too small for the values. */
8444 lt = ggc_cleared_alloc<struct lang_type> ();
8445 lt->enum_min = minnode;
8446 lt->enum_max = maxnode;
8447 TYPE_LANG_SPECIFIC (enumtype) = lt;
8449 /* Fix up all variant types of this enum type. */
8450 for (tem = TYPE_MAIN_VARIANT (enumtype); tem; tem = TYPE_NEXT_VARIANT (tem))
8452 if (tem == enumtype)
8453 continue;
8454 TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
8455 TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
8456 TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
8457 TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
8458 TYPE_SIZE_UNIT (tem) = TYPE_SIZE_UNIT (enumtype);
8459 SET_TYPE_MODE (tem, TYPE_MODE (enumtype));
8460 TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
8461 SET_TYPE_ALIGN (tem, TYPE_ALIGN (enumtype));
8462 TYPE_USER_ALIGN (tem) = TYPE_USER_ALIGN (enumtype);
8463 TYPE_UNSIGNED (tem) = TYPE_UNSIGNED (enumtype);
8464 TYPE_LANG_SPECIFIC (tem) = TYPE_LANG_SPECIFIC (enumtype);
8467 /* Finish debugging output for this type. */
8468 rest_of_type_compilation (enumtype, toplevel);
8470 /* If this enum is defined inside a struct, add it to
8471 struct_types. */
8472 if (warn_cxx_compat
8473 && struct_parse_info != NULL
8474 && !in_sizeof && !in_typeof && !in_alignof)
8475 struct_parse_info->struct_types.safe_push (enumtype);
8477 return enumtype;
8480 /* Build and install a CONST_DECL for one value of the
8481 current enumeration type (one that was begun with start_enum).
8482 DECL_LOC is the location of the enumerator.
8483 LOC is the location of the '=' operator if any, DECL_LOC otherwise.
8484 Return a tree-list containing the CONST_DECL and its value.
8485 Assignment of sequential values by default is handled here. */
8487 tree
8488 build_enumerator (location_t decl_loc, location_t loc,
8489 struct c_enum_contents *the_enum, tree name, tree value)
8491 tree decl, type;
8493 /* Validate and default VALUE. */
8495 if (value != NULL_TREE)
8497 /* Don't issue more errors for error_mark_node (i.e. an
8498 undeclared identifier) - just ignore the value expression. */
8499 if (value == error_mark_node)
8500 value = NULL_TREE;
8501 else if (!INTEGRAL_TYPE_P (TREE_TYPE (value)))
8503 error_at (loc, "enumerator value for %qE is not an integer constant",
8504 name);
8505 value = NULL_TREE;
8507 else
8509 if (TREE_CODE (value) != INTEGER_CST)
8511 value = c_fully_fold (value, false, NULL);
8512 if (TREE_CODE (value) == INTEGER_CST)
8513 pedwarn (loc, OPT_Wpedantic,
8514 "enumerator value for %qE is not an integer "
8515 "constant expression", name);
8517 if (TREE_CODE (value) != INTEGER_CST)
8519 error ("enumerator value for %qE is not an integer constant",
8520 name);
8521 value = NULL_TREE;
8523 else
8525 value = default_conversion (value);
8526 constant_expression_warning (value);
8531 /* Default based on previous value. */
8532 /* It should no longer be possible to have NON_LVALUE_EXPR
8533 in the default. */
8534 if (value == NULL_TREE)
8536 value = the_enum->enum_next_value;
8537 if (the_enum->enum_overflow)
8538 error_at (loc, "overflow in enumeration values");
8540 /* Even though the underlying type of an enum is unspecified, the
8541 type of enumeration constants is explicitly defined as int
8542 (6.4.4.3/2 in the C99 Standard). GCC allows any integer type as
8543 an extension. */
8544 else if (!int_fits_type_p (value, integer_type_node))
8545 pedwarn (loc, OPT_Wpedantic,
8546 "ISO C restricts enumerator values to range of %<int%>");
8548 /* The ISO C Standard mandates enumerators to have type int, even
8549 though the underlying type of an enum type is unspecified.
8550 However, GCC allows enumerators of any integer type as an
8551 extensions. Here we convert any enumerators that fit in an int
8552 to type int, to avoid promotions to unsigned types when comparing
8553 integers with enumerators that fit in the int range. When
8554 -pedantic is given, we would have already warned about those that
8555 don't fit. We have to do this here rather than in finish_enum
8556 because this value may be used to define more enumerators. */
8557 if (int_fits_type_p (value, integer_type_node))
8558 value = convert (integer_type_node, value);
8560 /* Set basis for default for next value. */
8561 the_enum->enum_next_value
8562 = build_binary_op (EXPR_LOC_OR_LOC (value, input_location),
8563 PLUS_EXPR, value, integer_one_node, false);
8564 the_enum->enum_overflow = tree_int_cst_lt (the_enum->enum_next_value, value);
8566 /* Now create a declaration for the enum value name. */
8568 type = TREE_TYPE (value);
8569 type = c_common_type_for_size (MAX (TYPE_PRECISION (type),
8570 TYPE_PRECISION (integer_type_node)),
8571 (TYPE_PRECISION (type)
8572 >= TYPE_PRECISION (integer_type_node)
8573 && TYPE_UNSIGNED (type)));
8575 decl = build_decl (decl_loc, CONST_DECL, name, type);
8576 DECL_INITIAL (decl) = convert (type, value);
8577 pushdecl (decl);
8579 return tree_cons (decl, value, NULL_TREE);
8583 /* Create the FUNCTION_DECL for a function definition.
8584 DECLSPECS, DECLARATOR and ATTRIBUTES are the parts of
8585 the declaration; they describe the function's name and the type it returns,
8586 but twisted together in a fashion that parallels the syntax of C.
8588 This function creates a binding context for the function body
8589 as well as setting up the FUNCTION_DECL in current_function_decl.
8591 Returns true on success. If the DECLARATOR is not suitable for a function
8592 (it defines a datum instead), we return false to report a parse error. */
8594 bool
8595 start_function (struct c_declspecs *declspecs, struct c_declarator *declarator,
8596 tree attributes)
8598 tree decl1, old_decl;
8599 tree restype, resdecl;
8600 location_t loc;
8602 current_function_returns_value = 0; /* Assume, until we see it does. */
8603 current_function_returns_null = 0;
8604 current_function_returns_abnormally = 0;
8605 warn_about_return_type = 0;
8606 c_switch_stack = NULL;
8608 /* Indicate no valid break/continue context by setting these variables
8609 to some non-null, non-label value. We'll notice and emit the proper
8610 error message in c_finish_bc_stmt. */
8611 c_break_label = c_cont_label = size_zero_node;
8613 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, true, NULL,
8614 &attributes, NULL, NULL, DEPRECATED_NORMAL);
8615 invoke_plugin_callbacks (PLUGIN_START_PARSE_FUNCTION, decl1);
8617 /* If the declarator is not suitable for a function definition,
8618 cause a syntax error. */
8619 if (decl1 == NULL_TREE
8620 || TREE_CODE (decl1) != FUNCTION_DECL)
8621 return false;
8623 loc = DECL_SOURCE_LOCATION (decl1);
8625 c_decl_attributes (&decl1, attributes, 0);
8627 if (DECL_DECLARED_INLINE_P (decl1)
8628 && DECL_UNINLINABLE (decl1)
8629 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl1)))
8630 warning_at (loc, OPT_Wattributes,
8631 "inline function %qD given attribute noinline",
8632 decl1);
8634 /* Handle gnu_inline attribute. */
8635 if (declspecs->inline_p
8636 && !flag_gnu89_inline
8637 && TREE_CODE (decl1) == FUNCTION_DECL
8638 && (lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl1))
8639 || current_function_decl))
8641 if (declspecs->storage_class != csc_static)
8642 DECL_EXTERNAL (decl1) = !DECL_EXTERNAL (decl1);
8645 announce_function (decl1);
8647 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl1))))
8649 error_at (loc, "return type is an incomplete type");
8650 /* Make it return void instead. */
8651 TREE_TYPE (decl1)
8652 = build_function_type (void_type_node,
8653 TYPE_ARG_TYPES (TREE_TYPE (decl1)));
8656 if (warn_about_return_type)
8657 warn_defaults_to (loc, flag_isoc99 ? OPT_Wimplicit_int
8658 : (warn_return_type ? OPT_Wreturn_type
8659 : OPT_Wimplicit_int),
8660 "return type defaults to %<int%>");
8662 /* Make the init_value nonzero so pushdecl knows this is not tentative.
8663 error_mark_node is replaced below (in pop_scope) with the BLOCK. */
8664 DECL_INITIAL (decl1) = error_mark_node;
8666 /* A nested function is not global. */
8667 if (current_function_decl != NULL_TREE)
8668 TREE_PUBLIC (decl1) = 0;
8670 /* If this definition isn't a prototype and we had a prototype declaration
8671 before, copy the arg type info from that prototype. */
8672 old_decl = lookup_name_in_scope (DECL_NAME (decl1), current_scope);
8673 if (old_decl && TREE_CODE (old_decl) != FUNCTION_DECL)
8674 old_decl = NULL_TREE;
8675 current_function_prototype_locus = UNKNOWN_LOCATION;
8676 current_function_prototype_built_in = false;
8677 current_function_prototype_arg_types = NULL_TREE;
8678 if (!prototype_p (TREE_TYPE (decl1)))
8680 if (old_decl != NULL_TREE
8681 && TREE_CODE (TREE_TYPE (old_decl)) == FUNCTION_TYPE
8682 && comptypes (TREE_TYPE (TREE_TYPE (decl1)),
8683 TREE_TYPE (TREE_TYPE (old_decl))))
8685 if (stdarg_p (TREE_TYPE (old_decl)))
8687 warning_at (loc, 0, "%q+D defined as variadic function "
8688 "without prototype", decl1);
8689 locate_old_decl (old_decl);
8691 TREE_TYPE (decl1) = composite_type (TREE_TYPE (old_decl),
8692 TREE_TYPE (decl1));
8693 current_function_prototype_locus = DECL_SOURCE_LOCATION (old_decl);
8694 current_function_prototype_built_in
8695 = C_DECL_BUILTIN_PROTOTYPE (old_decl);
8696 current_function_prototype_arg_types
8697 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
8699 if (TREE_PUBLIC (decl1))
8701 /* If there is an external prototype declaration of this
8702 function, record its location but do not copy information
8703 to this decl. This may be an invisible declaration
8704 (built-in or in a scope which has finished) or simply
8705 have more refined argument types than any declaration
8706 found above. */
8707 struct c_binding *b;
8708 for (b = I_SYMBOL_BINDING (DECL_NAME (decl1)); b; b = b->shadowed)
8709 if (B_IN_SCOPE (b, external_scope))
8710 break;
8711 if (b)
8713 tree ext_decl, ext_type;
8714 ext_decl = b->decl;
8715 ext_type = b->u.type ? b->u.type : TREE_TYPE (ext_decl);
8716 if (TREE_CODE (ext_type) == FUNCTION_TYPE
8717 && comptypes (TREE_TYPE (TREE_TYPE (decl1)),
8718 TREE_TYPE (ext_type)))
8720 current_function_prototype_locus
8721 = DECL_SOURCE_LOCATION (ext_decl);
8722 current_function_prototype_built_in
8723 = C_DECL_BUILTIN_PROTOTYPE (ext_decl);
8724 current_function_prototype_arg_types
8725 = TYPE_ARG_TYPES (ext_type);
8731 /* Optionally warn of old-fashioned def with no previous prototype. */
8732 if (warn_strict_prototypes
8733 && old_decl != error_mark_node
8734 && !prototype_p (TREE_TYPE (decl1))
8735 && C_DECL_ISNT_PROTOTYPE (old_decl))
8736 warning_at (loc, OPT_Wstrict_prototypes,
8737 "function declaration isn%'t a prototype");
8738 /* Optionally warn of any global def with no previous prototype. */
8739 else if (warn_missing_prototypes
8740 && old_decl != error_mark_node
8741 && TREE_PUBLIC (decl1)
8742 && !MAIN_NAME_P (DECL_NAME (decl1))
8743 && C_DECL_ISNT_PROTOTYPE (old_decl)
8744 && !DECL_DECLARED_INLINE_P (decl1))
8745 warning_at (loc, OPT_Wmissing_prototypes,
8746 "no previous prototype for %qD", decl1);
8747 /* Optionally warn of any def with no previous prototype
8748 if the function has already been used. */
8749 else if (warn_missing_prototypes
8750 && old_decl != NULL_TREE
8751 && old_decl != error_mark_node
8752 && TREE_USED (old_decl)
8753 && !prototype_p (TREE_TYPE (old_decl)))
8754 warning_at (loc, OPT_Wmissing_prototypes,
8755 "%qD was used with no prototype before its definition", decl1);
8756 /* Optionally warn of any global def with no previous declaration. */
8757 else if (warn_missing_declarations
8758 && TREE_PUBLIC (decl1)
8759 && old_decl == NULL_TREE
8760 && !MAIN_NAME_P (DECL_NAME (decl1))
8761 && !DECL_DECLARED_INLINE_P (decl1))
8762 warning_at (loc, OPT_Wmissing_declarations,
8763 "no previous declaration for %qD",
8764 decl1);
8765 /* Optionally warn of any def with no previous declaration
8766 if the function has already been used. */
8767 else if (warn_missing_declarations
8768 && old_decl != NULL_TREE
8769 && old_decl != error_mark_node
8770 && TREE_USED (old_decl)
8771 && C_DECL_IMPLICIT (old_decl))
8772 warning_at (loc, OPT_Wmissing_declarations,
8773 "%qD was used with no declaration before its definition", decl1);
8775 /* This function exists in static storage.
8776 (This does not mean `static' in the C sense!) */
8777 TREE_STATIC (decl1) = 1;
8779 /* This is the earliest point at which we might know the assembler
8780 name of the function. Thus, if it's set before this, die horribly. */
8781 gcc_assert (!DECL_ASSEMBLER_NAME_SET_P (decl1));
8783 /* If #pragma weak was used, mark the decl weak now. */
8784 if (current_scope == file_scope)
8785 maybe_apply_pragma_weak (decl1);
8787 /* Warn for unlikely, improbable, or stupid declarations of `main'. */
8788 if (warn_main && MAIN_NAME_P (DECL_NAME (decl1)))
8790 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
8791 != integer_type_node)
8792 pedwarn (loc, OPT_Wmain, "return type of %qD is not %<int%>", decl1);
8793 else if (TYPE_ATOMIC (TREE_TYPE (TREE_TYPE (decl1))))
8794 pedwarn (loc, OPT_Wmain, "%<_Atomic%>-qualified return type of %qD",
8795 decl1);
8797 check_main_parameter_types (decl1);
8799 if (!TREE_PUBLIC (decl1))
8800 pedwarn (loc, OPT_Wmain,
8801 "%qD is normally a non-static function", decl1);
8804 /* Record the decl so that the function name is defined.
8805 If we already have a decl for this name, and it is a FUNCTION_DECL,
8806 use the old decl. */
8808 current_function_decl = pushdecl (decl1);
8810 push_scope ();
8811 declare_parm_level ();
8813 restype = TREE_TYPE (TREE_TYPE (current_function_decl));
8814 resdecl = build_decl (loc, RESULT_DECL, NULL_TREE, restype);
8815 DECL_ARTIFICIAL (resdecl) = 1;
8816 DECL_IGNORED_P (resdecl) = 1;
8817 DECL_RESULT (current_function_decl) = resdecl;
8819 start_fname_decls ();
8821 return true;
8824 /* Subroutine of store_parm_decls which handles new-style function
8825 definitions (prototype format). The parms already have decls, so we
8826 need only record them as in effect and complain if any redundant
8827 old-style parm decls were written. */
8828 static void
8829 store_parm_decls_newstyle (tree fndecl, const struct c_arg_info *arg_info)
8831 tree decl;
8832 c_arg_tag *tag;
8833 unsigned ix;
8835 if (current_scope->bindings)
8837 error_at (DECL_SOURCE_LOCATION (fndecl),
8838 "old-style parameter declarations in prototyped "
8839 "function definition");
8841 /* Get rid of the old-style declarations. */
8842 pop_scope ();
8843 push_scope ();
8845 /* Don't issue this warning for nested functions, and don't issue this
8846 warning if we got here because ARG_INFO_TYPES was error_mark_node
8847 (this happens when a function definition has just an ellipsis in
8848 its parameter list). */
8849 else if (!in_system_header_at (input_location)
8850 && !current_function_scope
8851 && arg_info->types != error_mark_node)
8852 warning_at (DECL_SOURCE_LOCATION (fndecl), OPT_Wtraditional,
8853 "traditional C rejects ISO C style function definitions");
8855 /* Now make all the parameter declarations visible in the function body.
8856 We can bypass most of the grunt work of pushdecl. */
8857 for (decl = arg_info->parms; decl; decl = DECL_CHAIN (decl))
8859 DECL_CONTEXT (decl) = current_function_decl;
8860 if (DECL_NAME (decl))
8862 bind (DECL_NAME (decl), decl, current_scope,
8863 /*invisible=*/false, /*nested=*/false,
8864 UNKNOWN_LOCATION);
8865 if (!TREE_USED (decl))
8866 warn_if_shadowing (decl);
8868 else
8869 error_at (DECL_SOURCE_LOCATION (decl), "parameter name omitted");
8872 /* Record the parameter list in the function declaration. */
8873 DECL_ARGUMENTS (fndecl) = arg_info->parms;
8875 /* Now make all the ancillary declarations visible, likewise. */
8876 for (decl = arg_info->others; decl; decl = DECL_CHAIN (decl))
8878 DECL_CONTEXT (decl) = current_function_decl;
8879 if (DECL_NAME (decl))
8880 bind (DECL_NAME (decl), decl, current_scope,
8881 /*invisible=*/false,
8882 /*nested=*/(TREE_CODE (decl) == FUNCTION_DECL),
8883 UNKNOWN_LOCATION);
8886 /* And all the tag declarations. */
8887 FOR_EACH_VEC_SAFE_ELT_REVERSE (arg_info->tags, ix, tag)
8888 if (tag->id)
8889 bind (tag->id, tag->type, current_scope,
8890 /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION);
8893 /* Subroutine of store_parm_decls which handles old-style function
8894 definitions (separate parameter list and declarations). */
8896 static void
8897 store_parm_decls_oldstyle (tree fndecl, const struct c_arg_info *arg_info)
8899 struct c_binding *b;
8900 tree parm, decl, last;
8901 tree parmids = arg_info->parms;
8902 hash_set<tree> seen_args;
8904 if (!in_system_header_at (input_location))
8905 warning_at (DECL_SOURCE_LOCATION (fndecl),
8906 OPT_Wold_style_definition, "old-style function definition");
8908 /* Match each formal parameter name with its declaration. Save each
8909 decl in the appropriate TREE_PURPOSE slot of the parmids chain. */
8910 for (parm = parmids; parm; parm = TREE_CHAIN (parm))
8912 if (TREE_VALUE (parm) == NULL_TREE)
8914 error_at (DECL_SOURCE_LOCATION (fndecl),
8915 "parameter name missing from parameter list");
8916 TREE_PURPOSE (parm) = NULL_TREE;
8917 continue;
8920 b = I_SYMBOL_BINDING (TREE_VALUE (parm));
8921 if (b && B_IN_CURRENT_SCOPE (b))
8923 decl = b->decl;
8924 /* Skip erroneous parameters. */
8925 if (decl == error_mark_node)
8926 continue;
8927 /* If we got something other than a PARM_DECL it is an error. */
8928 if (TREE_CODE (decl) != PARM_DECL)
8930 error_at (DECL_SOURCE_LOCATION (decl),
8931 "%qD declared as a non-parameter", decl);
8932 continue;
8934 /* If the declaration is already marked, we have a duplicate
8935 name. Complain and ignore the duplicate. */
8936 else if (seen_args.contains (decl))
8938 error_at (DECL_SOURCE_LOCATION (decl),
8939 "multiple parameters named %qD", decl);
8940 TREE_PURPOSE (parm) = NULL_TREE;
8941 continue;
8943 /* If the declaration says "void", complain and turn it into
8944 an int. */
8945 else if (VOID_TYPE_P (TREE_TYPE (decl)))
8947 error_at (DECL_SOURCE_LOCATION (decl),
8948 "parameter %qD declared with void type", decl);
8949 TREE_TYPE (decl) = integer_type_node;
8950 DECL_ARG_TYPE (decl) = integer_type_node;
8951 layout_decl (decl, 0);
8953 warn_if_shadowing (decl);
8955 /* If no declaration found, default to int. */
8956 else
8958 /* FIXME diagnostics: This should be the location of the argument,
8959 not the FNDECL. E.g., for an old-style declaration
8961 int f10(v) { blah; }
8963 We should use the location of the V, not the F10.
8964 Unfortunately, the V is an IDENTIFIER_NODE which has no
8965 location. In the future we need locations for c_arg_info
8966 entries.
8968 See gcc.dg/Wshadow-3.c for an example of this problem. */
8969 decl = build_decl (DECL_SOURCE_LOCATION (fndecl),
8970 PARM_DECL, TREE_VALUE (parm), integer_type_node);
8971 DECL_ARG_TYPE (decl) = TREE_TYPE (decl);
8972 pushdecl (decl);
8973 warn_if_shadowing (decl);
8975 if (flag_isoc99)
8976 pedwarn (DECL_SOURCE_LOCATION (decl),
8977 OPT_Wimplicit_int, "type of %qD defaults to %<int%>",
8978 decl);
8979 else
8980 warning_at (DECL_SOURCE_LOCATION (decl),
8981 OPT_Wmissing_parameter_type,
8982 "type of %qD defaults to %<int%>", decl);
8985 TREE_PURPOSE (parm) = decl;
8986 seen_args.add (decl);
8989 /* Now examine the parms chain for incomplete declarations
8990 and declarations with no corresponding names. */
8992 for (b = current_scope->bindings; b; b = b->prev)
8994 parm = b->decl;
8995 if (TREE_CODE (parm) != PARM_DECL)
8996 continue;
8998 if (TREE_TYPE (parm) != error_mark_node
8999 && !COMPLETE_TYPE_P (TREE_TYPE (parm)))
9001 error_at (DECL_SOURCE_LOCATION (parm),
9002 "parameter %qD has incomplete type", parm);
9003 TREE_TYPE (parm) = error_mark_node;
9006 if (!seen_args.contains (parm))
9008 error_at (DECL_SOURCE_LOCATION (parm),
9009 "declaration for parameter %qD but no such parameter",
9010 parm);
9012 /* Pretend the parameter was not missing.
9013 This gets us to a standard state and minimizes
9014 further error messages. */
9015 parmids = chainon (parmids, tree_cons (parm, 0, 0));
9019 /* Chain the declarations together in the order of the list of
9020 names. Store that chain in the function decl, replacing the
9021 list of names. Update the current scope to match. */
9022 DECL_ARGUMENTS (fndecl) = NULL_TREE;
9024 for (parm = parmids; parm; parm = TREE_CHAIN (parm))
9025 if (TREE_PURPOSE (parm))
9026 break;
9027 if (parm && TREE_PURPOSE (parm))
9029 last = TREE_PURPOSE (parm);
9030 DECL_ARGUMENTS (fndecl) = last;
9032 for (parm = TREE_CHAIN (parm); parm; parm = TREE_CHAIN (parm))
9033 if (TREE_PURPOSE (parm))
9035 DECL_CHAIN (last) = TREE_PURPOSE (parm);
9036 last = TREE_PURPOSE (parm);
9038 DECL_CHAIN (last) = NULL_TREE;
9041 /* If there was a previous prototype,
9042 set the DECL_ARG_TYPE of each argument according to
9043 the type previously specified, and report any mismatches. */
9045 if (current_function_prototype_arg_types)
9047 tree type;
9048 for (parm = DECL_ARGUMENTS (fndecl),
9049 type = current_function_prototype_arg_types;
9050 parm || (type != NULL_TREE
9051 && TREE_VALUE (type) != error_mark_node
9052 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) != void_type_node);
9053 parm = DECL_CHAIN (parm), type = TREE_CHAIN (type))
9055 if (parm == NULL_TREE
9056 || type == NULL_TREE
9057 || (TREE_VALUE (type) != error_mark_node
9058 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node))
9060 if (current_function_prototype_built_in)
9061 warning_at (DECL_SOURCE_LOCATION (fndecl),
9062 0, "number of arguments doesn%'t match "
9063 "built-in prototype");
9064 else
9066 /* FIXME diagnostics: This should be the location of
9067 FNDECL, but there is bug when a prototype is
9068 declared inside function context, but defined
9069 outside of it (e.g., gcc.dg/pr15698-2.c). In
9070 which case FNDECL gets the location of the
9071 prototype, not the definition. */
9072 error_at (input_location,
9073 "number of arguments doesn%'t match prototype");
9075 error_at (current_function_prototype_locus,
9076 "prototype declaration");
9078 break;
9080 /* Type for passing arg must be consistent with that
9081 declared for the arg. ISO C says we take the unqualified
9082 type for parameters declared with qualified type. */
9083 if (TREE_TYPE (parm) != error_mark_node
9084 && TREE_VALUE (type) != error_mark_node
9085 && ((TYPE_ATOMIC (DECL_ARG_TYPE (parm))
9086 != TYPE_ATOMIC (TREE_VALUE (type)))
9087 || !comptypes (TYPE_MAIN_VARIANT (DECL_ARG_TYPE (parm)),
9088 TYPE_MAIN_VARIANT (TREE_VALUE (type)))))
9090 if ((TYPE_ATOMIC (DECL_ARG_TYPE (parm))
9091 == TYPE_ATOMIC (TREE_VALUE (type)))
9092 && (TYPE_MAIN_VARIANT (TREE_TYPE (parm))
9093 == TYPE_MAIN_VARIANT (TREE_VALUE (type))))
9095 /* Adjust argument to match prototype. E.g. a previous
9096 `int foo(float);' prototype causes
9097 `int foo(x) float x; {...}' to be treated like
9098 `int foo(float x) {...}'. This is particularly
9099 useful for argument types like uid_t. */
9100 DECL_ARG_TYPE (parm) = TREE_TYPE (parm);
9102 if (targetm.calls.promote_prototypes (TREE_TYPE (current_function_decl))
9103 && INTEGRAL_TYPE_P (TREE_TYPE (parm))
9104 && (TYPE_PRECISION (TREE_TYPE (parm))
9105 < TYPE_PRECISION (integer_type_node)))
9106 DECL_ARG_TYPE (parm)
9107 = c_type_promotes_to (TREE_TYPE (parm));
9109 /* ??? Is it possible to get here with a
9110 built-in prototype or will it always have
9111 been diagnosed as conflicting with an
9112 old-style definition and discarded? */
9113 if (current_function_prototype_built_in)
9114 warning_at (DECL_SOURCE_LOCATION (parm),
9115 OPT_Wpedantic, "promoted argument %qD "
9116 "doesn%'t match built-in prototype", parm);
9117 else
9119 pedwarn (DECL_SOURCE_LOCATION (parm),
9120 OPT_Wpedantic, "promoted argument %qD "
9121 "doesn%'t match prototype", parm);
9122 pedwarn (current_function_prototype_locus, OPT_Wpedantic,
9123 "prototype declaration");
9126 else
9128 if (current_function_prototype_built_in)
9129 warning_at (DECL_SOURCE_LOCATION (parm),
9130 0, "argument %qD doesn%'t match "
9131 "built-in prototype", parm);
9132 else
9134 error_at (DECL_SOURCE_LOCATION (parm),
9135 "argument %qD doesn%'t match prototype", parm);
9136 error_at (current_function_prototype_locus,
9137 "prototype declaration");
9142 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = NULL_TREE;
9145 /* Otherwise, create a prototype that would match. */
9147 else
9149 tree actual = NULL_TREE, last = NULL_TREE, type;
9151 for (parm = DECL_ARGUMENTS (fndecl); parm; parm = DECL_CHAIN (parm))
9153 type = tree_cons (NULL_TREE, DECL_ARG_TYPE (parm), NULL_TREE);
9154 if (last)
9155 TREE_CHAIN (last) = type;
9156 else
9157 actual = type;
9158 last = type;
9160 type = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
9161 if (last)
9162 TREE_CHAIN (last) = type;
9163 else
9164 actual = type;
9166 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
9167 of the type of this function, but we need to avoid having this
9168 affect the types of other similarly-typed functions, so we must
9169 first force the generation of an identical (but separate) type
9170 node for the relevant function type. The new node we create
9171 will be a variant of the main variant of the original function
9172 type. */
9174 TREE_TYPE (fndecl) = build_variant_type_copy (TREE_TYPE (fndecl));
9176 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = actual;
9180 /* Store parameter declarations passed in ARG_INFO into the current
9181 function declaration. */
9183 void
9184 store_parm_decls_from (struct c_arg_info *arg_info)
9186 current_function_arg_info = arg_info;
9187 store_parm_decls ();
9190 /* Called by walk_tree to look for and update context-less labels. */
9192 static tree
9193 set_labels_context_r (tree *tp, int *walk_subtrees, void *data)
9195 if (TREE_CODE (*tp) == LABEL_EXPR
9196 && DECL_CONTEXT (LABEL_EXPR_LABEL (*tp)) == NULL_TREE)
9198 DECL_CONTEXT (LABEL_EXPR_LABEL (*tp)) = static_cast<tree>(data);
9199 *walk_subtrees = 0;
9202 return NULL_TREE;
9205 /* Store the parameter declarations into the current function declaration.
9206 This is called after parsing the parameter declarations, before
9207 digesting the body of the function.
9209 For an old-style definition, construct a prototype out of the old-style
9210 parameter declarations and inject it into the function's type. */
9212 void
9213 store_parm_decls (void)
9215 tree fndecl = current_function_decl;
9216 bool proto;
9218 /* The argument information block for FNDECL. */
9219 struct c_arg_info *arg_info = current_function_arg_info;
9220 current_function_arg_info = 0;
9222 /* True if this definition is written with a prototype. Note:
9223 despite C99 6.7.5.3p14, we can *not* treat an empty argument
9224 list in a function definition as equivalent to (void) -- an
9225 empty argument list specifies the function has no parameters,
9226 but only (void) sets up a prototype for future calls. */
9227 proto = arg_info->types != 0;
9229 if (proto)
9230 store_parm_decls_newstyle (fndecl, arg_info);
9231 else
9232 store_parm_decls_oldstyle (fndecl, arg_info);
9234 /* The next call to push_scope will be a function body. */
9236 next_is_function_body = true;
9238 /* Write a record describing this function definition to the prototypes
9239 file (if requested). */
9241 gen_aux_info_record (fndecl, 1, 0, proto);
9243 /* Initialize the RTL code for the function. */
9244 allocate_struct_function (fndecl, false);
9246 if (warn_unused_local_typedefs)
9247 cfun->language = ggc_cleared_alloc<language_function> ();
9249 /* Begin the statement tree for this function. */
9250 DECL_SAVED_TREE (fndecl) = push_stmt_list ();
9252 /* ??? Insert the contents of the pending sizes list into the function
9253 to be evaluated. The only reason left to have this is
9254 void foo(int n, int array[n++])
9255 because we throw away the array type in favor of a pointer type, and
9256 thus won't naturally see the SAVE_EXPR containing the increment. All
9257 other pending sizes would be handled by gimplify_parameters. */
9258 if (arg_info->pending_sizes)
9260 /* In very special circumstances, e.g. for code like
9261 _Atomic int i = 5;
9262 void f (int a[i += 2]) {}
9263 we need to execute the atomic assignment on function entry.
9264 But in this case, it is not just a straight store, it has the
9265 op= form, which means that build_atomic_assign has generated
9266 gotos, labels, etc. Because at that time the function decl
9267 for F has not been created yet, those labels do not have any
9268 function context. But we have the fndecl now, so update the
9269 labels accordingly. gimplify_expr would crash otherwise. */
9270 walk_tree_without_duplicates (&arg_info->pending_sizes,
9271 set_labels_context_r, fndecl);
9272 add_stmt (arg_info->pending_sizes);
9276 /* Store PARM_DECLs in PARMS into scope temporarily. Used for
9277 c_finish_omp_declare_simd for function prototypes. No diagnostics
9278 should be done. */
9280 void
9281 temp_store_parm_decls (tree fndecl, tree parms)
9283 push_scope ();
9284 for (tree p = parms; p; p = DECL_CHAIN (p))
9286 DECL_CONTEXT (p) = fndecl;
9287 if (DECL_NAME (p))
9288 bind (DECL_NAME (p), p, current_scope,
9289 /*invisible=*/false, /*nested=*/false,
9290 UNKNOWN_LOCATION);
9294 /* Undo what temp_store_parm_decls did. */
9296 void
9297 temp_pop_parm_decls (void)
9299 /* Clear all bindings in this temporary scope, so that
9300 pop_scope doesn't create a BLOCK. */
9301 struct c_binding *b = current_scope->bindings;
9302 current_scope->bindings = NULL;
9303 for (; b; b = free_binding_and_advance (b))
9305 gcc_assert (TREE_CODE (b->decl) == PARM_DECL
9306 || b->decl == error_mark_node);
9307 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
9308 I_SYMBOL_BINDING (b->id) = b->shadowed;
9309 if (b->shadowed && b->shadowed->u.type)
9310 TREE_TYPE (b->shadowed->decl) = b->shadowed->u.type;
9312 pop_scope ();
9316 /* Finish up a function declaration and compile that function
9317 all the way to assembler language output. Then free the storage
9318 for the function definition.
9320 This is called after parsing the body of the function definition. */
9322 void
9323 finish_function (void)
9325 tree fndecl = current_function_decl;
9327 if (c_dialect_objc ())
9328 objc_finish_function ();
9330 if (TREE_CODE (fndecl) == FUNCTION_DECL
9331 && targetm.calls.promote_prototypes (TREE_TYPE (fndecl)))
9333 tree args = DECL_ARGUMENTS (fndecl);
9334 for (; args; args = DECL_CHAIN (args))
9336 tree type = TREE_TYPE (args);
9337 if (INTEGRAL_TYPE_P (type)
9338 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
9339 DECL_ARG_TYPE (args) = c_type_promotes_to (type);
9343 if (DECL_INITIAL (fndecl) && DECL_INITIAL (fndecl) != error_mark_node)
9344 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
9346 /* Must mark the RESULT_DECL as being in this function. */
9348 if (DECL_RESULT (fndecl) && DECL_RESULT (fndecl) != error_mark_node)
9349 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
9351 if (MAIN_NAME_P (DECL_NAME (fndecl)) && flag_hosted
9352 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl)))
9353 == integer_type_node && flag_isoc99)
9355 /* Hack. We don't want the middle-end to warn that this return
9356 is unreachable, so we mark its location as special. Using
9357 UNKNOWN_LOCATION has the problem that it gets clobbered in
9358 annotate_one_with_locus. A cleaner solution might be to
9359 ensure ! should_carry_locus_p (stmt), but that needs a flag.
9361 c_finish_return (BUILTINS_LOCATION, integer_zero_node, NULL_TREE);
9364 /* Tie off the statement tree for this function. */
9365 DECL_SAVED_TREE (fndecl) = pop_stmt_list (DECL_SAVED_TREE (fndecl));
9367 /* If the function has _Cilk_spawn in front of a function call inside it
9368 i.e. it is a spawning function, then add the appropriate Cilk plus
9369 functions inside. */
9370 if (fn_contains_cilk_spawn_p (cfun))
9371 cfun->cilk_frame_decl = insert_cilk_frame (fndecl);
9373 finish_fname_decls ();
9375 /* Complain if there's just no return statement. */
9376 if (warn_return_type
9377 && TREE_CODE (TREE_TYPE (TREE_TYPE (fndecl))) != VOID_TYPE
9378 && !current_function_returns_value && !current_function_returns_null
9379 /* Don't complain if we are no-return. */
9380 && !current_function_returns_abnormally
9381 /* Don't complain if we are declared noreturn. */
9382 && !TREE_THIS_VOLATILE (fndecl)
9383 /* Don't warn for main(). */
9384 && !MAIN_NAME_P (DECL_NAME (fndecl))
9385 /* Or if they didn't actually specify a return type. */
9386 && !C_FUNCTION_IMPLICIT_INT (fndecl)
9387 /* Normally, with -Wreturn-type, flow will complain, but we might
9388 optimize out static functions. */
9389 && !TREE_PUBLIC (fndecl))
9391 warning (OPT_Wreturn_type,
9392 "no return statement in function returning non-void");
9393 TREE_NO_WARNING (fndecl) = 1;
9396 /* Complain about parameters that are only set, but never otherwise used. */
9397 if (warn_unused_but_set_parameter)
9399 tree decl;
9401 for (decl = DECL_ARGUMENTS (fndecl);
9402 decl;
9403 decl = DECL_CHAIN (decl))
9404 if (TREE_USED (decl)
9405 && TREE_CODE (decl) == PARM_DECL
9406 && !DECL_READ_P (decl)
9407 && DECL_NAME (decl)
9408 && !DECL_ARTIFICIAL (decl)
9409 && !TREE_NO_WARNING (decl))
9410 warning_at (DECL_SOURCE_LOCATION (decl),
9411 OPT_Wunused_but_set_parameter,
9412 "parameter %qD set but not used", decl);
9415 /* Complain about locally defined typedefs that are not used in this
9416 function. */
9417 maybe_warn_unused_local_typedefs ();
9419 /* Possibly warn about unused parameters. */
9420 if (warn_unused_parameter)
9421 do_warn_unused_parameter (fndecl);
9423 /* Store the end of the function, so that we get good line number
9424 info for the epilogue. */
9425 cfun->function_end_locus = input_location;
9427 /* Finalize the ELF visibility for the function. */
9428 c_determine_visibility (fndecl);
9430 /* For GNU C extern inline functions disregard inline limits. */
9431 if (DECL_EXTERNAL (fndecl)
9432 && DECL_DECLARED_INLINE_P (fndecl)
9433 && (flag_gnu89_inline
9434 || lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (fndecl))))
9435 DECL_DISREGARD_INLINE_LIMITS (fndecl) = 1;
9437 /* Genericize before inlining. Delay genericizing nested functions
9438 until their parent function is genericized. Since finalizing
9439 requires GENERIC, delay that as well. */
9441 if (DECL_INITIAL (fndecl) && DECL_INITIAL (fndecl) != error_mark_node
9442 && !undef_nested_function)
9444 if (!decl_function_context (fndecl))
9446 invoke_plugin_callbacks (PLUGIN_PRE_GENERICIZE, fndecl);
9447 c_genericize (fndecl);
9449 /* ??? Objc emits functions after finalizing the compilation unit.
9450 This should be cleaned up later and this conditional removed. */
9451 if (symtab->global_info_ready)
9453 cgraph_node::add_new_function (fndecl, false);
9454 return;
9456 cgraph_node::finalize_function (fndecl, false);
9458 else
9460 /* Register this function with cgraph just far enough to get it
9461 added to our parent's nested function list. Handy, since the
9462 C front end doesn't have such a list. */
9463 (void) cgraph_node::get_create (fndecl);
9467 if (!decl_function_context (fndecl))
9468 undef_nested_function = false;
9470 if (cfun->language != NULL)
9472 ggc_free (cfun->language);
9473 cfun->language = NULL;
9476 /* We're leaving the context of this function, so zap cfun.
9477 It's still in DECL_STRUCT_FUNCTION, and we'll restore it in
9478 tree_rest_of_compilation. */
9479 set_cfun (NULL);
9480 invoke_plugin_callbacks (PLUGIN_FINISH_PARSE_FUNCTION, current_function_decl);
9481 current_function_decl = NULL;
9484 /* Check the declarations given in a for-loop for satisfying the C99
9485 constraints. If exactly one such decl is found, return it. LOC is
9486 the location of the opening parenthesis of the for loop. The last
9487 parameter allows you to control the "for loop initial declarations
9488 are only allowed in C99 mode". Normally, you should pass
9489 flag_isoc99 as that parameter. But in some cases (Objective-C
9490 foreach loop, for example) we want to run the checks in this
9491 function even if not in C99 mode, so we allow the caller to turn
9492 off the error about not being in C99 mode.
9495 tree
9496 check_for_loop_decls (location_t loc, bool turn_off_iso_c99_error)
9498 struct c_binding *b;
9499 tree one_decl = NULL_TREE;
9500 int n_decls = 0;
9502 if (!turn_off_iso_c99_error)
9504 static bool hint = true;
9505 /* If we get here, declarations have been used in a for loop without
9506 the C99 for loop scope. This doesn't make much sense, so don't
9507 allow it. */
9508 error_at (loc, "%<for%> loop initial declarations "
9509 "are only allowed in C99 or C11 mode");
9510 if (hint)
9512 inform (loc,
9513 "use option -std=c99, -std=gnu99, -std=c11 or -std=gnu11 "
9514 "to compile your code");
9515 hint = false;
9517 return NULL_TREE;
9519 /* C99 subclause 6.8.5 paragraph 3:
9521 [#3] The declaration part of a for statement shall only
9522 declare identifiers for objects having storage class auto or
9523 register.
9525 It isn't clear whether, in this sentence, "identifiers" binds to
9526 "shall only declare" or to "objects" - that is, whether all identifiers
9527 declared must be identifiers for objects, or whether the restriction
9528 only applies to those that are. (A question on this in comp.std.c
9529 in November 2000 received no answer.) We implement the strictest
9530 interpretation, to avoid creating an extension which later causes
9531 problems. */
9533 for (b = current_scope->bindings; b; b = b->prev)
9535 tree id = b->id;
9536 tree decl = b->decl;
9538 if (!id)
9539 continue;
9541 switch (TREE_CODE (decl))
9543 case VAR_DECL:
9545 location_t decl_loc = DECL_SOURCE_LOCATION (decl);
9546 if (TREE_STATIC (decl))
9547 error_at (decl_loc,
9548 "declaration of static variable %qD in %<for%> loop "
9549 "initial declaration", decl);
9550 else if (DECL_EXTERNAL (decl))
9551 error_at (decl_loc,
9552 "declaration of %<extern%> variable %qD in %<for%> loop "
9553 "initial declaration", decl);
9555 break;
9557 case RECORD_TYPE:
9558 error_at (loc,
9559 "%<struct %E%> declared in %<for%> loop initial "
9560 "declaration", id);
9561 break;
9562 case UNION_TYPE:
9563 error_at (loc,
9564 "%<union %E%> declared in %<for%> loop initial declaration",
9565 id);
9566 break;
9567 case ENUMERAL_TYPE:
9568 error_at (loc, "%<enum %E%> declared in %<for%> loop "
9569 "initial declaration", id);
9570 break;
9571 default:
9572 error_at (loc, "declaration of non-variable "
9573 "%qD in %<for%> loop initial declaration", decl);
9576 n_decls++;
9577 one_decl = decl;
9580 return n_decls == 1 ? one_decl : NULL_TREE;
9583 /* Save and reinitialize the variables
9584 used during compilation of a C function. */
9586 void
9587 c_push_function_context (void)
9589 struct language_function *p = cfun->language;
9590 /* cfun->language might have been already allocated by the use of
9591 -Wunused-local-typedefs. In that case, just re-use it. */
9592 if (p == NULL)
9593 cfun->language = p = ggc_cleared_alloc<language_function> ();
9595 p->base.x_stmt_tree = c_stmt_tree;
9596 c_stmt_tree.x_cur_stmt_list = vec_safe_copy (c_stmt_tree.x_cur_stmt_list);
9597 p->x_break_label = c_break_label;
9598 p->x_cont_label = c_cont_label;
9599 p->x_switch_stack = c_switch_stack;
9600 p->arg_info = current_function_arg_info;
9601 p->returns_value = current_function_returns_value;
9602 p->returns_null = current_function_returns_null;
9603 p->returns_abnormally = current_function_returns_abnormally;
9604 p->warn_about_return_type = warn_about_return_type;
9606 push_function_context ();
9609 /* Restore the variables used during compilation of a C function. */
9611 void
9612 c_pop_function_context (void)
9614 struct language_function *p;
9616 pop_function_context ();
9617 p = cfun->language;
9619 /* When -Wunused-local-typedefs is in effect, cfun->languages is
9620 used to store data throughout the life time of the current cfun,
9621 So don't deallocate it. */
9622 if (!warn_unused_local_typedefs)
9623 cfun->language = NULL;
9625 if (DECL_STRUCT_FUNCTION (current_function_decl) == 0
9626 && DECL_SAVED_TREE (current_function_decl) == NULL_TREE)
9628 /* Stop pointing to the local nodes about to be freed. */
9629 /* But DECL_INITIAL must remain nonzero so we know this
9630 was an actual function definition. */
9631 DECL_INITIAL (current_function_decl) = error_mark_node;
9632 DECL_ARGUMENTS (current_function_decl) = NULL_TREE;
9635 c_stmt_tree = p->base.x_stmt_tree;
9636 p->base.x_stmt_tree.x_cur_stmt_list = NULL;
9637 c_break_label = p->x_break_label;
9638 c_cont_label = p->x_cont_label;
9639 c_switch_stack = p->x_switch_stack;
9640 current_function_arg_info = p->arg_info;
9641 current_function_returns_value = p->returns_value;
9642 current_function_returns_null = p->returns_null;
9643 current_function_returns_abnormally = p->returns_abnormally;
9644 warn_about_return_type = p->warn_about_return_type;
9647 /* The functions below are required for functionality of doing
9648 function at once processing in the C front end. Currently these
9649 functions are not called from anywhere in the C front end, but as
9650 these changes continue, that will change. */
9652 /* Returns the stmt_tree (if any) to which statements are currently
9653 being added. If there is no active statement-tree, NULL is
9654 returned. */
9656 stmt_tree
9657 current_stmt_tree (void)
9659 return &c_stmt_tree;
9662 /* Return the global value of T as a symbol. */
9664 tree
9665 identifier_global_value (tree t)
9667 struct c_binding *b;
9669 for (b = I_SYMBOL_BINDING (t); b; b = b->shadowed)
9670 if (B_IN_FILE_SCOPE (b) || B_IN_EXTERNAL_SCOPE (b))
9671 return b->decl;
9673 return NULL_TREE;
9676 /* In C, the only C-linkage public declaration is at file scope. */
9678 tree
9679 c_linkage_bindings (tree name)
9681 return identifier_global_value (name);
9684 /* Record a builtin type for C. If NAME is non-NULL, it is the name used;
9685 otherwise the name is found in ridpointers from RID_INDEX. */
9687 void
9688 record_builtin_type (enum rid rid_index, const char *name, tree type)
9690 tree id, decl;
9691 if (name == 0)
9692 id = ridpointers[(int) rid_index];
9693 else
9694 id = get_identifier (name);
9695 decl = build_decl (UNKNOWN_LOCATION, TYPE_DECL, id, type);
9696 pushdecl (decl);
9697 if (debug_hooks->type_decl)
9698 debug_hooks->type_decl (decl, false);
9701 /* Build the void_list_node (void_type_node having been created). */
9702 tree
9703 build_void_list_node (void)
9705 tree t = build_tree_list (NULL_TREE, void_type_node);
9706 return t;
9709 /* Return a c_parm structure with the given SPECS, ATTRS and DECLARATOR. */
9711 struct c_parm *
9712 build_c_parm (struct c_declspecs *specs, tree attrs,
9713 struct c_declarator *declarator,
9714 location_t loc)
9716 struct c_parm *ret = XOBNEW (&parser_obstack, struct c_parm);
9717 ret->specs = specs;
9718 ret->attrs = attrs;
9719 ret->declarator = declarator;
9720 ret->loc = loc;
9721 return ret;
9724 /* Return a declarator with nested attributes. TARGET is the inner
9725 declarator to which these attributes apply. ATTRS are the
9726 attributes. */
9728 struct c_declarator *
9729 build_attrs_declarator (tree attrs, struct c_declarator *target)
9731 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
9732 ret->kind = cdk_attrs;
9733 ret->declarator = target;
9734 ret->u.attrs = attrs;
9735 return ret;
9738 /* Return a declarator for a function with arguments specified by ARGS
9739 and return type specified by TARGET. */
9741 struct c_declarator *
9742 build_function_declarator (struct c_arg_info *args,
9743 struct c_declarator *target)
9745 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
9746 ret->kind = cdk_function;
9747 ret->declarator = target;
9748 ret->u.arg_info = args;
9749 return ret;
9752 /* Return a declarator for the identifier IDENT (which may be
9753 NULL_TREE for an abstract declarator). */
9755 struct c_declarator *
9756 build_id_declarator (tree ident)
9758 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
9759 ret->kind = cdk_id;
9760 ret->declarator = 0;
9761 ret->u.id = ident;
9762 /* Default value - may get reset to a more precise location. */
9763 ret->id_loc = input_location;
9764 return ret;
9767 /* Return something to represent absolute declarators containing a *.
9768 TARGET is the absolute declarator that the * contains.
9769 TYPE_QUALS_ATTRS is a structure for type qualifiers and attributes
9770 to apply to the pointer type. */
9772 struct c_declarator *
9773 make_pointer_declarator (struct c_declspecs *type_quals_attrs,
9774 struct c_declarator *target)
9776 tree attrs;
9777 int quals = 0;
9778 struct c_declarator *itarget = target;
9779 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
9780 if (type_quals_attrs)
9782 attrs = type_quals_attrs->attrs;
9783 quals = quals_from_declspecs (type_quals_attrs);
9784 if (attrs != NULL_TREE)
9785 itarget = build_attrs_declarator (attrs, target);
9787 ret->kind = cdk_pointer;
9788 ret->declarator = itarget;
9789 ret->u.pointer_quals = quals;
9790 return ret;
9793 /* Return a pointer to a structure for an empty list of declaration
9794 specifiers. */
9796 struct c_declspecs *
9797 build_null_declspecs (void)
9799 struct c_declspecs *ret = XOBNEW (&parser_obstack, struct c_declspecs);
9800 memset (ret, 0, sizeof *ret);
9801 ret->align_log = -1;
9802 ret->typespec_word = cts_none;
9803 ret->storage_class = csc_none;
9804 ret->expr_const_operands = true;
9805 ret->typespec_kind = ctsk_none;
9806 ret->address_space = ADDR_SPACE_GENERIC;
9807 return ret;
9810 /* Add the address space ADDRSPACE to the declaration specifiers
9811 SPECS, returning SPECS. */
9813 struct c_declspecs *
9814 declspecs_add_addrspace (source_location location,
9815 struct c_declspecs *specs, addr_space_t as)
9817 specs->non_sc_seen_p = true;
9818 specs->declspecs_seen_p = true;
9820 if (!ADDR_SPACE_GENERIC_P (specs->address_space)
9821 && specs->address_space != as)
9822 error ("incompatible address space qualifiers %qs and %qs",
9823 c_addr_space_name (as),
9824 c_addr_space_name (specs->address_space));
9825 else
9827 specs->address_space = as;
9828 specs->locations[cdw_address_space] = location;
9830 return specs;
9833 /* Add the type qualifier QUAL to the declaration specifiers SPECS,
9834 returning SPECS. */
9836 struct c_declspecs *
9837 declspecs_add_qual (source_location loc,
9838 struct c_declspecs *specs, tree qual)
9840 enum rid i;
9841 bool dupe = false;
9842 specs->non_sc_seen_p = true;
9843 specs->declspecs_seen_p = true;
9844 gcc_assert (TREE_CODE (qual) == IDENTIFIER_NODE
9845 && C_IS_RESERVED_WORD (qual));
9846 i = C_RID_CODE (qual);
9847 location_t prev_loc = UNKNOWN_LOCATION;
9848 switch (i)
9850 case RID_CONST:
9851 dupe = specs->const_p;
9852 specs->const_p = true;
9853 prev_loc = specs->locations[cdw_const];
9854 specs->locations[cdw_const] = loc;
9855 break;
9856 case RID_VOLATILE:
9857 dupe = specs->volatile_p;
9858 specs->volatile_p = true;
9859 prev_loc = specs->locations[cdw_volatile];
9860 specs->locations[cdw_volatile] = loc;
9861 break;
9862 case RID_RESTRICT:
9863 dupe = specs->restrict_p;
9864 specs->restrict_p = true;
9865 prev_loc = specs->locations[cdw_restrict];
9866 specs->locations[cdw_restrict] = loc;
9867 break;
9868 case RID_ATOMIC:
9869 dupe = specs->atomic_p;
9870 specs->atomic_p = true;
9871 prev_loc = specs->locations[cdw_atomic];
9872 specs->locations[cdw_atomic] = loc;
9873 break;
9874 default:
9875 gcc_unreachable ();
9877 if (dupe)
9879 bool warned = pedwarn_c90 (loc, OPT_Wpedantic,
9880 "duplicate %qE declaration specifier", qual);
9881 if (!warned
9882 && warn_duplicate_decl_specifier
9883 && prev_loc >= RESERVED_LOCATION_COUNT
9884 && !from_macro_expansion_at (prev_loc)
9885 && !from_macro_expansion_at (loc))
9886 warning_at (loc, OPT_Wduplicate_decl_specifier,
9887 "duplicate %qE declaration specifier", qual);
9889 return specs;
9892 /* Add the type specifier TYPE to the declaration specifiers SPECS,
9893 returning SPECS. */
9895 struct c_declspecs *
9896 declspecs_add_type (location_t loc, struct c_declspecs *specs,
9897 struct c_typespec spec)
9899 tree type = spec.spec;
9900 specs->non_sc_seen_p = true;
9901 specs->declspecs_seen_p = true;
9902 specs->typespec_kind = spec.kind;
9903 if (TREE_DEPRECATED (type))
9904 specs->deprecated_p = true;
9906 /* Handle type specifier keywords. */
9907 if (TREE_CODE (type) == IDENTIFIER_NODE
9908 && C_IS_RESERVED_WORD (type)
9909 && C_RID_CODE (type) != RID_CXX_COMPAT_WARN)
9911 enum rid i = C_RID_CODE (type);
9912 if (specs->type)
9914 error_at (loc, "two or more data types in declaration specifiers");
9915 return specs;
9917 if ((int) i <= (int) RID_LAST_MODIFIER)
9919 /* "long", "short", "signed", "unsigned", "_Complex" or "_Sat". */
9920 bool dupe = false;
9921 switch (i)
9923 case RID_LONG:
9924 if (specs->long_long_p)
9926 error_at (loc, "%<long long long%> is too long for GCC");
9927 break;
9929 if (specs->long_p)
9931 if (specs->typespec_word == cts_double)
9933 error_at (loc,
9934 ("both %<long long%> and %<double%> in "
9935 "declaration specifiers"));
9936 break;
9938 pedwarn_c90 (loc, OPT_Wlong_long,
9939 "ISO C90 does not support %<long long%>");
9940 specs->long_long_p = 1;
9941 specs->locations[cdw_long_long] = loc;
9942 break;
9944 if (specs->short_p)
9945 error_at (loc,
9946 ("both %<long%> and %<short%> in "
9947 "declaration specifiers"));
9948 else if (specs->typespec_word == cts_auto_type)
9949 error_at (loc,
9950 ("both %<long%> and %<__auto_type%> in "
9951 "declaration specifiers"));
9952 else if (specs->typespec_word == cts_void)
9953 error_at (loc,
9954 ("both %<long%> and %<void%> in "
9955 "declaration specifiers"));
9956 else if (specs->typespec_word == cts_int_n)
9957 error_at (loc,
9958 ("both %<long%> and %<__int%d%> in "
9959 "declaration specifiers"),
9960 int_n_data[specs->int_n_idx].bitsize);
9961 else if (specs->typespec_word == cts_bool)
9962 error_at (loc,
9963 ("both %<long%> and %<_Bool%> in "
9964 "declaration specifiers"));
9965 else if (specs->typespec_word == cts_char)
9966 error_at (loc,
9967 ("both %<long%> and %<char%> in "
9968 "declaration specifiers"));
9969 else if (specs->typespec_word == cts_float)
9970 error_at (loc,
9971 ("both %<long%> and %<float%> in "
9972 "declaration specifiers"));
9973 else if (specs->typespec_word == cts_floatn_nx)
9974 error_at (loc,
9975 ("both %<long%> and %<_Float%d%s%> in "
9976 "declaration specifiers"),
9977 floatn_nx_types[specs->floatn_nx_idx].n,
9978 (floatn_nx_types[specs->floatn_nx_idx].extended
9979 ? "x"
9980 : ""));
9981 else if (specs->typespec_word == cts_dfloat32)
9982 error_at (loc,
9983 ("both %<long%> and %<_Decimal32%> in "
9984 "declaration specifiers"));
9985 else if (specs->typespec_word == cts_dfloat64)
9986 error_at (loc,
9987 ("both %<long%> and %<_Decimal64%> in "
9988 "declaration specifiers"));
9989 else if (specs->typespec_word == cts_dfloat128)
9990 error_at (loc,
9991 ("both %<long%> and %<_Decimal128%> in "
9992 "declaration specifiers"));
9993 else
9995 specs->long_p = true;
9996 specs->locations[cdw_long] = loc;
9998 break;
9999 case RID_SHORT:
10000 dupe = specs->short_p;
10001 if (specs->long_p)
10002 error_at (loc,
10003 ("both %<long%> and %<short%> in "
10004 "declaration specifiers"));
10005 else if (specs->typespec_word == cts_auto_type)
10006 error_at (loc,
10007 ("both %<short%> and %<__auto_type%> in "
10008 "declaration specifiers"));
10009 else if (specs->typespec_word == cts_void)
10010 error_at (loc,
10011 ("both %<short%> and %<void%> in "
10012 "declaration specifiers"));
10013 else if (specs->typespec_word == cts_int_n)
10014 error_at (loc,
10015 ("both %<short%> and %<__int%d%> in "
10016 "declaration specifiers"),
10017 int_n_data[specs->int_n_idx].bitsize);
10018 else if (specs->typespec_word == cts_bool)
10019 error_at (loc,
10020 ("both %<short%> and %<_Bool%> in "
10021 "declaration specifiers"));
10022 else if (specs->typespec_word == cts_char)
10023 error_at (loc,
10024 ("both %<short%> and %<char%> in "
10025 "declaration specifiers"));
10026 else if (specs->typespec_word == cts_float)
10027 error_at (loc,
10028 ("both %<short%> and %<float%> in "
10029 "declaration specifiers"));
10030 else if (specs->typespec_word == cts_double)
10031 error_at (loc,
10032 ("both %<short%> and %<double%> in "
10033 "declaration specifiers"));
10034 else if (specs->typespec_word == cts_floatn_nx)
10035 error_at (loc,
10036 ("both %<short%> and %<_Float%d%s%> in "
10037 "declaration specifiers"),
10038 floatn_nx_types[specs->floatn_nx_idx].n,
10039 (floatn_nx_types[specs->floatn_nx_idx].extended
10040 ? "x"
10041 : ""));
10042 else if (specs->typespec_word == cts_dfloat32)
10043 error_at (loc,
10044 ("both %<short%> and %<_Decimal32%> in "
10045 "declaration specifiers"));
10046 else if (specs->typespec_word == cts_dfloat64)
10047 error_at (loc,
10048 ("both %<short%> and %<_Decimal64%> in "
10049 "declaration specifiers"));
10050 else if (specs->typespec_word == cts_dfloat128)
10051 error_at (loc,
10052 ("both %<short%> and %<_Decimal128%> in "
10053 "declaration specifiers"));
10054 else
10056 specs->short_p = true;
10057 specs->locations[cdw_short] = loc;
10059 break;
10060 case RID_SIGNED:
10061 dupe = specs->signed_p;
10062 if (specs->unsigned_p)
10063 error_at (loc,
10064 ("both %<signed%> and %<unsigned%> in "
10065 "declaration specifiers"));
10066 else if (specs->typespec_word == cts_auto_type)
10067 error_at (loc,
10068 ("both %<signed%> and %<__auto_type%> in "
10069 "declaration specifiers"));
10070 else if (specs->typespec_word == cts_void)
10071 error_at (loc,
10072 ("both %<signed%> and %<void%> in "
10073 "declaration specifiers"));
10074 else if (specs->typespec_word == cts_bool)
10075 error_at (loc,
10076 ("both %<signed%> and %<_Bool%> in "
10077 "declaration specifiers"));
10078 else if (specs->typespec_word == cts_float)
10079 error_at (loc,
10080 ("both %<signed%> and %<float%> in "
10081 "declaration specifiers"));
10082 else if (specs->typespec_word == cts_double)
10083 error_at (loc,
10084 ("both %<signed%> and %<double%> in "
10085 "declaration specifiers"));
10086 else if (specs->typespec_word == cts_floatn_nx)
10087 error_at (loc,
10088 ("both %<signed%> and %<_Float%d%s%> in "
10089 "declaration specifiers"),
10090 floatn_nx_types[specs->floatn_nx_idx].n,
10091 (floatn_nx_types[specs->floatn_nx_idx].extended
10092 ? "x"
10093 : ""));
10094 else if (specs->typespec_word == cts_dfloat32)
10095 error_at (loc,
10096 ("both %<signed%> and %<_Decimal32%> in "
10097 "declaration specifiers"));
10098 else if (specs->typespec_word == cts_dfloat64)
10099 error_at (loc,
10100 ("both %<signed%> and %<_Decimal64%> in "
10101 "declaration specifiers"));
10102 else if (specs->typespec_word == cts_dfloat128)
10103 error_at (loc,
10104 ("both %<signed%> and %<_Decimal128%> in "
10105 "declaration specifiers"));
10106 else
10108 specs->signed_p = true;
10109 specs->locations[cdw_signed] = loc;
10111 break;
10112 case RID_UNSIGNED:
10113 dupe = specs->unsigned_p;
10114 if (specs->signed_p)
10115 error_at (loc,
10116 ("both %<signed%> and %<unsigned%> in "
10117 "declaration specifiers"));
10118 else if (specs->typespec_word == cts_auto_type)
10119 error_at (loc,
10120 ("both %<unsigned%> and %<__auto_type%> in "
10121 "declaration specifiers"));
10122 else if (specs->typespec_word == cts_void)
10123 error_at (loc,
10124 ("both %<unsigned%> and %<void%> in "
10125 "declaration specifiers"));
10126 else if (specs->typespec_word == cts_bool)
10127 error_at (loc,
10128 ("both %<unsigned%> and %<_Bool%> in "
10129 "declaration specifiers"));
10130 else if (specs->typespec_word == cts_float)
10131 error_at (loc,
10132 ("both %<unsigned%> and %<float%> in "
10133 "declaration specifiers"));
10134 else if (specs->typespec_word == cts_double)
10135 error_at (loc,
10136 ("both %<unsigned%> and %<double%> in "
10137 "declaration specifiers"));
10138 else if (specs->typespec_word == cts_floatn_nx)
10139 error_at (loc,
10140 ("both %<unsigned%> and %<_Float%d%s%> in "
10141 "declaration specifiers"),
10142 floatn_nx_types[specs->floatn_nx_idx].n,
10143 (floatn_nx_types[specs->floatn_nx_idx].extended
10144 ? "x"
10145 : ""));
10146 else if (specs->typespec_word == cts_dfloat32)
10147 error_at (loc,
10148 ("both %<unsigned%> and %<_Decimal32%> in "
10149 "declaration specifiers"));
10150 else if (specs->typespec_word == cts_dfloat64)
10151 error_at (loc,
10152 ("both %<unsigned%> and %<_Decimal64%> in "
10153 "declaration specifiers"));
10154 else if (specs->typespec_word == cts_dfloat128)
10155 error_at (loc,
10156 ("both %<unsigned%> and %<_Decimal128%> in "
10157 "declaration specifiers"));
10158 else
10160 specs->unsigned_p = true;
10161 specs->locations[cdw_unsigned] = loc;
10163 break;
10164 case RID_COMPLEX:
10165 dupe = specs->complex_p;
10166 if (!in_system_header_at (loc))
10167 pedwarn_c90 (loc, OPT_Wpedantic,
10168 "ISO C90 does not support complex types");
10169 if (specs->typespec_word == cts_auto_type)
10170 error_at (loc,
10171 ("both %<complex%> and %<__auto_type%> in "
10172 "declaration specifiers"));
10173 else if (specs->typespec_word == cts_void)
10174 error_at (loc,
10175 ("both %<complex%> and %<void%> in "
10176 "declaration specifiers"));
10177 else if (specs->typespec_word == cts_bool)
10178 error_at (loc,
10179 ("both %<complex%> and %<_Bool%> in "
10180 "declaration specifiers"));
10181 else if (specs->typespec_word == cts_dfloat32)
10182 error_at (loc,
10183 ("both %<complex%> and %<_Decimal32%> in "
10184 "declaration specifiers"));
10185 else if (specs->typespec_word == cts_dfloat64)
10186 error_at (loc,
10187 ("both %<complex%> and %<_Decimal64%> in "
10188 "declaration specifiers"));
10189 else if (specs->typespec_word == cts_dfloat128)
10190 error_at (loc,
10191 ("both %<complex%> and %<_Decimal128%> in "
10192 "declaration specifiers"));
10193 else if (specs->typespec_word == cts_fract)
10194 error_at (loc,
10195 ("both %<complex%> and %<_Fract%> in "
10196 "declaration specifiers"));
10197 else if (specs->typespec_word == cts_accum)
10198 error_at (loc,
10199 ("both %<complex%> and %<_Accum%> in "
10200 "declaration specifiers"));
10201 else if (specs->saturating_p)
10202 error_at (loc,
10203 ("both %<complex%> and %<_Sat%> in "
10204 "declaration specifiers"));
10205 else
10207 specs->complex_p = true;
10208 specs->locations[cdw_complex] = loc;
10210 break;
10211 case RID_SAT:
10212 dupe = specs->saturating_p;
10213 pedwarn (loc, OPT_Wpedantic,
10214 "ISO C does not support saturating types");
10215 if (specs->typespec_word == cts_int_n)
10217 error_at (loc,
10218 ("both %<_Sat%> and %<__int%d%> in "
10219 "declaration specifiers"),
10220 int_n_data[specs->int_n_idx].bitsize);
10222 else if (specs->typespec_word == cts_auto_type)
10223 error_at (loc,
10224 ("both %<_Sat%> and %<__auto_type%> in "
10225 "declaration specifiers"));
10226 else if (specs->typespec_word == cts_void)
10227 error_at (loc,
10228 ("both %<_Sat%> and %<void%> in "
10229 "declaration specifiers"));
10230 else if (specs->typespec_word == cts_bool)
10231 error_at (loc,
10232 ("both %<_Sat%> and %<_Bool%> in "
10233 "declaration specifiers"));
10234 else if (specs->typespec_word == cts_char)
10235 error_at (loc,
10236 ("both %<_Sat%> and %<char%> in "
10237 "declaration specifiers"));
10238 else if (specs->typespec_word == cts_int)
10239 error_at (loc,
10240 ("both %<_Sat%> and %<int%> in "
10241 "declaration specifiers"));
10242 else if (specs->typespec_word == cts_float)
10243 error_at (loc,
10244 ("both %<_Sat%> and %<float%> in "
10245 "declaration specifiers"));
10246 else if (specs->typespec_word == cts_double)
10247 error_at (loc,
10248 ("both %<_Sat%> and %<double%> in "
10249 "declaration specifiers"));
10250 else if (specs->typespec_word == cts_floatn_nx)
10251 error_at (loc,
10252 ("both %<_Sat%> and %<_Float%d%s%> in "
10253 "declaration specifiers"),
10254 floatn_nx_types[specs->floatn_nx_idx].n,
10255 (floatn_nx_types[specs->floatn_nx_idx].extended
10256 ? "x"
10257 : ""));
10258 else if (specs->typespec_word == cts_dfloat32)
10259 error_at (loc,
10260 ("both %<_Sat%> and %<_Decimal32%> in "
10261 "declaration specifiers"));
10262 else if (specs->typespec_word == cts_dfloat64)
10263 error_at (loc,
10264 ("both %<_Sat%> and %<_Decimal64%> in "
10265 "declaration specifiers"));
10266 else if (specs->typespec_word == cts_dfloat128)
10267 error_at (loc,
10268 ("both %<_Sat%> and %<_Decimal128%> in "
10269 "declaration specifiers"));
10270 else if (specs->complex_p)
10271 error_at (loc,
10272 ("both %<_Sat%> and %<complex%> in "
10273 "declaration specifiers"));
10274 else
10276 specs->saturating_p = true;
10277 specs->locations[cdw_saturating] = loc;
10279 break;
10280 default:
10281 gcc_unreachable ();
10284 if (dupe)
10285 error_at (loc, "duplicate %qE", type);
10287 return specs;
10289 else
10291 /* "void", "_Bool", "char", "int", "float", "double",
10292 "_FloatN", "_FloatNx", "_Decimal32", "__intN",
10293 "_Decimal64", "_Decimal128", "_Fract", "_Accum" or
10294 "__auto_type". */
10295 if (specs->typespec_word != cts_none)
10297 error_at (loc,
10298 "two or more data types in declaration specifiers");
10299 return specs;
10301 switch (i)
10303 case RID_AUTO_TYPE:
10304 if (specs->long_p)
10305 error_at (loc,
10306 ("both %<long%> and %<__auto_type%> in "
10307 "declaration specifiers"));
10308 else if (specs->short_p)
10309 error_at (loc,
10310 ("both %<short%> and %<__auto_type%> in "
10311 "declaration specifiers"));
10312 else if (specs->signed_p)
10313 error_at (loc,
10314 ("both %<signed%> and %<__auto_type%> in "
10315 "declaration specifiers"));
10316 else if (specs->unsigned_p)
10317 error_at (loc,
10318 ("both %<unsigned%> and %<__auto_type%> in "
10319 "declaration specifiers"));
10320 else if (specs->complex_p)
10321 error_at (loc,
10322 ("both %<complex%> and %<__auto_type%> in "
10323 "declaration specifiers"));
10324 else if (specs->saturating_p)
10325 error_at (loc,
10326 ("both %<_Sat%> and %<__auto_type%> in "
10327 "declaration specifiers"));
10328 else
10330 specs->typespec_word = cts_auto_type;
10331 specs->locations[cdw_typespec] = loc;
10333 return specs;
10334 case RID_INT_N_0:
10335 case RID_INT_N_1:
10336 case RID_INT_N_2:
10337 case RID_INT_N_3:
10338 specs->int_n_idx = i - RID_INT_N_0;
10339 if (!in_system_header_at (input_location))
10340 pedwarn (loc, OPT_Wpedantic,
10341 "ISO C does not support %<__int%d%> types",
10342 int_n_data[specs->int_n_idx].bitsize);
10344 if (specs->long_p)
10345 error_at (loc,
10346 ("both %<__int%d%> and %<long%> in "
10347 "declaration specifiers"),
10348 int_n_data[specs->int_n_idx].bitsize);
10349 else if (specs->saturating_p)
10350 error_at (loc,
10351 ("both %<_Sat%> and %<__int%d%> in "
10352 "declaration specifiers"),
10353 int_n_data[specs->int_n_idx].bitsize);
10354 else if (specs->short_p)
10355 error_at (loc,
10356 ("both %<__int%d%> and %<short%> in "
10357 "declaration specifiers"),
10358 int_n_data[specs->int_n_idx].bitsize);
10359 else if (! int_n_enabled_p[specs->int_n_idx])
10361 specs->typespec_word = cts_int_n;
10362 error_at (loc,
10363 "%<__int%d%> is not supported on this target",
10364 int_n_data[specs->int_n_idx].bitsize);
10366 else
10368 specs->typespec_word = cts_int_n;
10369 specs->locations[cdw_typespec] = loc;
10371 return specs;
10372 case RID_VOID:
10373 if (specs->long_p)
10374 error_at (loc,
10375 ("both %<long%> and %<void%> in "
10376 "declaration specifiers"));
10377 else if (specs->short_p)
10378 error_at (loc,
10379 ("both %<short%> and %<void%> in "
10380 "declaration specifiers"));
10381 else if (specs->signed_p)
10382 error_at (loc,
10383 ("both %<signed%> and %<void%> in "
10384 "declaration specifiers"));
10385 else if (specs->unsigned_p)
10386 error_at (loc,
10387 ("both %<unsigned%> and %<void%> in "
10388 "declaration specifiers"));
10389 else if (specs->complex_p)
10390 error_at (loc,
10391 ("both %<complex%> and %<void%> in "
10392 "declaration specifiers"));
10393 else if (specs->saturating_p)
10394 error_at (loc,
10395 ("both %<_Sat%> and %<void%> in "
10396 "declaration specifiers"));
10397 else
10399 specs->typespec_word = cts_void;
10400 specs->locations[cdw_typespec] = loc;
10402 return specs;
10403 case RID_BOOL:
10404 if (!in_system_header_at (loc))
10405 pedwarn_c90 (loc, OPT_Wpedantic,
10406 "ISO C90 does not support boolean types");
10407 if (specs->long_p)
10408 error_at (loc,
10409 ("both %<long%> and %<_Bool%> in "
10410 "declaration specifiers"));
10411 else if (specs->short_p)
10412 error_at (loc,
10413 ("both %<short%> and %<_Bool%> in "
10414 "declaration specifiers"));
10415 else if (specs->signed_p)
10416 error_at (loc,
10417 ("both %<signed%> and %<_Bool%> in "
10418 "declaration specifiers"));
10419 else if (specs->unsigned_p)
10420 error_at (loc,
10421 ("both %<unsigned%> and %<_Bool%> in "
10422 "declaration specifiers"));
10423 else if (specs->complex_p)
10424 error_at (loc,
10425 ("both %<complex%> and %<_Bool%> in "
10426 "declaration specifiers"));
10427 else if (specs->saturating_p)
10428 error_at (loc,
10429 ("both %<_Sat%> and %<_Bool%> in "
10430 "declaration specifiers"));
10431 else
10433 specs->typespec_word = cts_bool;
10434 specs->locations[cdw_typespec] = loc;
10436 return specs;
10437 case RID_CHAR:
10438 if (specs->long_p)
10439 error_at (loc,
10440 ("both %<long%> and %<char%> in "
10441 "declaration specifiers"));
10442 else if (specs->short_p)
10443 error_at (loc,
10444 ("both %<short%> and %<char%> in "
10445 "declaration specifiers"));
10446 else if (specs->saturating_p)
10447 error_at (loc,
10448 ("both %<_Sat%> and %<char%> in "
10449 "declaration specifiers"));
10450 else
10452 specs->typespec_word = cts_char;
10453 specs->locations[cdw_typespec] = loc;
10455 return specs;
10456 case RID_INT:
10457 if (specs->saturating_p)
10458 error_at (loc,
10459 ("both %<_Sat%> and %<int%> in "
10460 "declaration specifiers"));
10461 else
10463 specs->typespec_word = cts_int;
10464 specs->locations[cdw_typespec] = loc;
10466 return specs;
10467 case RID_FLOAT:
10468 if (specs->long_p)
10469 error_at (loc,
10470 ("both %<long%> and %<float%> in "
10471 "declaration specifiers"));
10472 else if (specs->short_p)
10473 error_at (loc,
10474 ("both %<short%> and %<float%> in "
10475 "declaration specifiers"));
10476 else if (specs->signed_p)
10477 error_at (loc,
10478 ("both %<signed%> and %<float%> in "
10479 "declaration specifiers"));
10480 else if (specs->unsigned_p)
10481 error_at (loc,
10482 ("both %<unsigned%> and %<float%> in "
10483 "declaration specifiers"));
10484 else if (specs->saturating_p)
10485 error_at (loc,
10486 ("both %<_Sat%> and %<float%> in "
10487 "declaration specifiers"));
10488 else
10490 specs->typespec_word = cts_float;
10491 specs->locations[cdw_typespec] = loc;
10493 return specs;
10494 case RID_DOUBLE:
10495 if (specs->long_long_p)
10496 error_at (loc,
10497 ("both %<long long%> and %<double%> in "
10498 "declaration specifiers"));
10499 else if (specs->short_p)
10500 error_at (loc,
10501 ("both %<short%> and %<double%> in "
10502 "declaration specifiers"));
10503 else if (specs->signed_p)
10504 error_at (loc,
10505 ("both %<signed%> and %<double%> in "
10506 "declaration specifiers"));
10507 else if (specs->unsigned_p)
10508 error_at (loc,
10509 ("both %<unsigned%> and %<double%> in "
10510 "declaration specifiers"));
10511 else if (specs->saturating_p)
10512 error_at (loc,
10513 ("both %<_Sat%> and %<double%> in "
10514 "declaration specifiers"));
10515 else
10517 specs->typespec_word = cts_double;
10518 specs->locations[cdw_typespec] = loc;
10520 return specs;
10521 CASE_RID_FLOATN_NX:
10522 specs->floatn_nx_idx = i - RID_FLOATN_NX_FIRST;
10523 if (!in_system_header_at (input_location))
10524 pedwarn (loc, OPT_Wpedantic,
10525 "ISO C does not support the %<_Float%d%s%> type",
10526 floatn_nx_types[specs->floatn_nx_idx].n,
10527 (floatn_nx_types[specs->floatn_nx_idx].extended
10528 ? "x"
10529 : ""));
10531 if (specs->long_p)
10532 error_at (loc,
10533 ("both %<long%> and %<_Float%d%s%> in "
10534 "declaration specifiers"),
10535 floatn_nx_types[specs->floatn_nx_idx].n,
10536 (floatn_nx_types[specs->floatn_nx_idx].extended
10537 ? "x"
10538 : ""));
10539 else if (specs->short_p)
10540 error_at (loc,
10541 ("both %<short%> and %<_Float%d%s%> in "
10542 "declaration specifiers"),
10543 floatn_nx_types[specs->floatn_nx_idx].n,
10544 (floatn_nx_types[specs->floatn_nx_idx].extended
10545 ? "x"
10546 : ""));
10547 else if (specs->signed_p)
10548 error_at (loc,
10549 ("both %<signed%> and %<_Float%d%s%> in "
10550 "declaration specifiers"),
10551 floatn_nx_types[specs->floatn_nx_idx].n,
10552 (floatn_nx_types[specs->floatn_nx_idx].extended
10553 ? "x"
10554 : ""));
10555 else if (specs->unsigned_p)
10556 error_at (loc,
10557 ("both %<unsigned%> and %<_Float%d%s%> in "
10558 "declaration specifiers"),
10559 floatn_nx_types[specs->floatn_nx_idx].n,
10560 (floatn_nx_types[specs->floatn_nx_idx].extended
10561 ? "x"
10562 : ""));
10563 else if (specs->saturating_p)
10564 error_at (loc,
10565 ("both %<_Sat%> and %<_Float%d%s%> in "
10566 "declaration specifiers"),
10567 floatn_nx_types[specs->floatn_nx_idx].n,
10568 (floatn_nx_types[specs->floatn_nx_idx].extended
10569 ? "x"
10570 : ""));
10571 else if (FLOATN_NX_TYPE_NODE (specs->floatn_nx_idx) == NULL_TREE)
10573 specs->typespec_word = cts_floatn_nx;
10574 error_at (loc,
10575 "%<_Float%d%s%> is not supported on this target",
10576 floatn_nx_types[specs->floatn_nx_idx].n,
10577 (floatn_nx_types[specs->floatn_nx_idx].extended
10578 ? "x"
10579 : ""));
10581 else
10583 specs->typespec_word = cts_floatn_nx;
10584 specs->locations[cdw_typespec] = loc;
10586 return specs;
10587 case RID_DFLOAT32:
10588 case RID_DFLOAT64:
10589 case RID_DFLOAT128:
10591 const char *str;
10592 if (i == RID_DFLOAT32)
10593 str = "_Decimal32";
10594 else if (i == RID_DFLOAT64)
10595 str = "_Decimal64";
10596 else
10597 str = "_Decimal128";
10598 if (specs->long_long_p)
10599 error_at (loc,
10600 ("both %<long long%> and %qs in "
10601 "declaration specifiers"),
10602 str);
10603 if (specs->long_p)
10604 error_at (loc,
10605 ("both %<long%> and %qs in "
10606 "declaration specifiers"),
10607 str);
10608 else if (specs->short_p)
10609 error_at (loc,
10610 ("both %<short%> and %qs in "
10611 "declaration specifiers"),
10612 str);
10613 else if (specs->signed_p)
10614 error_at (loc,
10615 ("both %<signed%> and %qs in "
10616 "declaration specifiers"),
10617 str);
10618 else if (specs->unsigned_p)
10619 error_at (loc,
10620 ("both %<unsigned%> and %qs in "
10621 "declaration specifiers"),
10622 str);
10623 else if (specs->complex_p)
10624 error_at (loc,
10625 ("both %<complex%> and %qs in "
10626 "declaration specifiers"),
10627 str);
10628 else if (specs->saturating_p)
10629 error_at (loc,
10630 ("both %<_Sat%> and %qs in "
10631 "declaration specifiers"),
10632 str);
10633 else if (i == RID_DFLOAT32)
10634 specs->typespec_word = cts_dfloat32;
10635 else if (i == RID_DFLOAT64)
10636 specs->typespec_word = cts_dfloat64;
10637 else
10638 specs->typespec_word = cts_dfloat128;
10639 specs->locations[cdw_typespec] = loc;
10641 if (!targetm.decimal_float_supported_p ())
10642 error_at (loc,
10643 ("decimal floating point not supported "
10644 "for this target"));
10645 pedwarn (loc, OPT_Wpedantic,
10646 "ISO C does not support decimal floating point");
10647 return specs;
10648 case RID_FRACT:
10649 case RID_ACCUM:
10651 const char *str;
10652 if (i == RID_FRACT)
10653 str = "_Fract";
10654 else
10655 str = "_Accum";
10656 if (specs->complex_p)
10657 error_at (loc,
10658 ("both %<complex%> and %qs in "
10659 "declaration specifiers"),
10660 str);
10661 else if (i == RID_FRACT)
10662 specs->typespec_word = cts_fract;
10663 else
10664 specs->typespec_word = cts_accum;
10665 specs->locations[cdw_typespec] = loc;
10667 if (!targetm.fixed_point_supported_p ())
10668 error_at (loc,
10669 "fixed-point types not supported for this target");
10670 pedwarn (loc, OPT_Wpedantic,
10671 "ISO C does not support fixed-point types");
10672 return specs;
10673 default:
10674 /* ObjC reserved word "id", handled below. */
10675 break;
10680 /* Now we have a typedef (a TYPE_DECL node), an identifier (some
10681 form of ObjC type, cases such as "int" and "long" being handled
10682 above), a TYPE (struct, union, enum and typeof specifiers) or an
10683 ERROR_MARK. In none of these cases may there have previously
10684 been any type specifiers. */
10685 if (specs->type || specs->typespec_word != cts_none
10686 || specs->long_p || specs->short_p || specs->signed_p
10687 || specs->unsigned_p || specs->complex_p)
10688 error_at (loc, "two or more data types in declaration specifiers");
10689 else if (TREE_CODE (type) == TYPE_DECL)
10691 if (TREE_TYPE (type) == error_mark_node)
10692 ; /* Allow the type to default to int to avoid cascading errors. */
10693 else
10695 specs->type = TREE_TYPE (type);
10696 specs->decl_attr = DECL_ATTRIBUTES (type);
10697 specs->typedef_p = true;
10698 specs->explicit_signed_p = C_TYPEDEF_EXPLICITLY_SIGNED (type);
10699 specs->locations[cdw_typedef] = loc;
10701 /* If this typedef name is defined in a struct, then a C++
10702 lookup would return a different value. */
10703 if (warn_cxx_compat
10704 && I_SYMBOL_BINDING (DECL_NAME (type))->in_struct)
10705 warning_at (loc, OPT_Wc___compat,
10706 "C++ lookup of %qD would return a field, not a type",
10707 type);
10709 /* If we are parsing a struct, record that a struct field
10710 used a typedef. */
10711 if (warn_cxx_compat && struct_parse_info != NULL)
10712 struct_parse_info->typedefs_seen.safe_push (type);
10715 else if (TREE_CODE (type) == IDENTIFIER_NODE)
10717 tree t = lookup_name (type);
10718 if (!t || TREE_CODE (t) != TYPE_DECL)
10719 error_at (loc, "%qE fails to be a typedef or built in type", type);
10720 else if (TREE_TYPE (t) == error_mark_node)
10722 else
10724 specs->type = TREE_TYPE (t);
10725 specs->locations[cdw_typespec] = loc;
10728 else
10730 if (TREE_CODE (type) != ERROR_MARK && spec.kind == ctsk_typeof)
10732 specs->typedef_p = true;
10733 specs->locations[cdw_typedef] = loc;
10734 if (spec.expr)
10736 if (specs->expr)
10737 specs->expr = build2 (COMPOUND_EXPR, TREE_TYPE (spec.expr),
10738 specs->expr, spec.expr);
10739 else
10740 specs->expr = spec.expr;
10741 specs->expr_const_operands &= spec.expr_const_operands;
10744 specs->type = type;
10747 return specs;
10750 /* Add the storage class specifier or function specifier SCSPEC to the
10751 declaration specifiers SPECS, returning SPECS. */
10753 struct c_declspecs *
10754 declspecs_add_scspec (source_location loc,
10755 struct c_declspecs *specs,
10756 tree scspec)
10758 enum rid i;
10759 enum c_storage_class n = csc_none;
10760 bool dupe = false;
10761 specs->declspecs_seen_p = true;
10762 gcc_assert (TREE_CODE (scspec) == IDENTIFIER_NODE
10763 && C_IS_RESERVED_WORD (scspec));
10764 i = C_RID_CODE (scspec);
10765 if (specs->non_sc_seen_p)
10766 warning (OPT_Wold_style_declaration,
10767 "%qE is not at beginning of declaration", scspec);
10768 switch (i)
10770 case RID_INLINE:
10771 /* C99 permits duplicate inline. Although of doubtful utility,
10772 it seems simplest to permit it in gnu89 mode as well, as
10773 there is also little utility in maintaining this as a
10774 difference between gnu89 and C99 inline. */
10775 dupe = false;
10776 specs->inline_p = true;
10777 specs->locations[cdw_inline] = loc;
10778 break;
10779 case RID_NORETURN:
10780 /* Duplicate _Noreturn is permitted. */
10781 dupe = false;
10782 specs->noreturn_p = true;
10783 specs->locations[cdw_noreturn] = loc;
10784 break;
10785 case RID_THREAD:
10786 dupe = specs->thread_p;
10787 if (specs->storage_class == csc_auto)
10788 error ("%qE used with %<auto%>", scspec);
10789 else if (specs->storage_class == csc_register)
10790 error ("%qE used with %<register%>", scspec);
10791 else if (specs->storage_class == csc_typedef)
10792 error ("%qE used with %<typedef%>", scspec);
10793 else
10795 specs->thread_p = true;
10796 specs->thread_gnu_p = (strcmp (IDENTIFIER_POINTER (scspec),
10797 "__thread") == 0);
10798 /* A diagnostic is not required for the use of this
10799 identifier in the implementation namespace; only diagnose
10800 it for the C11 spelling because of existing code using
10801 the other spelling. */
10802 if (!specs->thread_gnu_p)
10804 if (flag_isoc99)
10805 pedwarn_c99 (loc, OPT_Wpedantic,
10806 "ISO C99 does not support %qE", scspec);
10807 else
10808 pedwarn_c99 (loc, OPT_Wpedantic,
10809 "ISO C90 does not support %qE", scspec);
10811 specs->locations[cdw_thread] = loc;
10813 break;
10814 case RID_AUTO:
10815 n = csc_auto;
10816 break;
10817 case RID_EXTERN:
10818 n = csc_extern;
10819 /* Diagnose "__thread extern". */
10820 if (specs->thread_p && specs->thread_gnu_p)
10821 error ("%<__thread%> before %<extern%>");
10822 break;
10823 case RID_REGISTER:
10824 n = csc_register;
10825 break;
10826 case RID_STATIC:
10827 n = csc_static;
10828 /* Diagnose "__thread static". */
10829 if (specs->thread_p && specs->thread_gnu_p)
10830 error ("%<__thread%> before %<static%>");
10831 break;
10832 case RID_TYPEDEF:
10833 n = csc_typedef;
10834 break;
10835 default:
10836 gcc_unreachable ();
10838 if (n != csc_none && n == specs->storage_class)
10839 dupe = true;
10840 if (dupe)
10842 if (i == RID_THREAD)
10843 error ("duplicate %<_Thread_local%> or %<__thread%>");
10844 else
10845 error ("duplicate %qE", scspec);
10847 if (n != csc_none)
10849 if (specs->storage_class != csc_none && n != specs->storage_class)
10851 error ("multiple storage classes in declaration specifiers");
10853 else
10855 specs->storage_class = n;
10856 specs->locations[cdw_storage_class] = loc;
10857 if (n != csc_extern && n != csc_static && specs->thread_p)
10859 error ("%qs used with %qE",
10860 specs->thread_gnu_p ? "__thread" : "_Thread_local",
10861 scspec);
10862 specs->thread_p = false;
10866 return specs;
10869 /* Add the attributes ATTRS to the declaration specifiers SPECS,
10870 returning SPECS. */
10872 struct c_declspecs *
10873 declspecs_add_attrs (source_location loc, struct c_declspecs *specs, tree attrs)
10875 specs->attrs = chainon (attrs, specs->attrs);
10876 specs->locations[cdw_attributes] = loc;
10877 specs->declspecs_seen_p = true;
10878 return specs;
10881 /* Add an _Alignas specifier (expression ALIGN, or type whose
10882 alignment is ALIGN) to the declaration specifiers SPECS, returning
10883 SPECS. */
10884 struct c_declspecs *
10885 declspecs_add_alignas (source_location loc,
10886 struct c_declspecs *specs, tree align)
10888 int align_log;
10889 specs->alignas_p = true;
10890 specs->locations[cdw_alignas] = loc;
10891 if (align == error_mark_node)
10892 return specs;
10893 align_log = check_user_alignment (align, true);
10894 if (align_log > specs->align_log)
10895 specs->align_log = align_log;
10896 return specs;
10899 /* Combine "long", "short", "signed", "unsigned" and "_Complex" type
10900 specifiers with any other type specifier to determine the resulting
10901 type. This is where ISO C checks on complex types are made, since
10902 "_Complex long" is a prefix of the valid ISO C type "_Complex long
10903 double". */
10905 struct c_declspecs *
10906 finish_declspecs (struct c_declspecs *specs)
10908 /* If a type was specified as a whole, we have no modifiers and are
10909 done. */
10910 if (specs->type != NULL_TREE)
10912 gcc_assert (!specs->long_p && !specs->long_long_p && !specs->short_p
10913 && !specs->signed_p && !specs->unsigned_p
10914 && !specs->complex_p);
10916 /* Set a dummy type. */
10917 if (TREE_CODE (specs->type) == ERROR_MARK)
10918 specs->type = integer_type_node;
10919 return specs;
10922 /* If none of "void", "_Bool", "char", "int", "float" or "double"
10923 has been specified, treat it as "int" unless "_Complex" is
10924 present and there are no other specifiers. If we just have
10925 "_Complex", it is equivalent to "_Complex double", but e.g.
10926 "_Complex short" is equivalent to "_Complex short int". */
10927 if (specs->typespec_word == cts_none)
10929 if (specs->saturating_p)
10931 error_at (specs->locations[cdw_saturating],
10932 "%<_Sat%> is used without %<_Fract%> or %<_Accum%>");
10933 if (!targetm.fixed_point_supported_p ())
10934 error_at (specs->locations[cdw_saturating],
10935 "fixed-point types not supported for this target");
10936 specs->typespec_word = cts_fract;
10938 else if (specs->long_p || specs->short_p
10939 || specs->signed_p || specs->unsigned_p)
10941 specs->typespec_word = cts_int;
10943 else if (specs->complex_p)
10945 specs->typespec_word = cts_double;
10946 pedwarn (specs->locations[cdw_complex], OPT_Wpedantic,
10947 "ISO C does not support plain %<complex%> meaning "
10948 "%<double complex%>");
10950 else
10952 specs->typespec_word = cts_int;
10953 specs->default_int_p = true;
10954 /* We don't diagnose this here because grokdeclarator will
10955 give more specific diagnostics according to whether it is
10956 a function definition. */
10960 /* If "signed" was specified, record this to distinguish "int" and
10961 "signed int" in the case of a bit-field with
10962 -funsigned-bitfields. */
10963 specs->explicit_signed_p = specs->signed_p;
10965 /* Now compute the actual type. */
10966 switch (specs->typespec_word)
10968 case cts_auto_type:
10969 gcc_assert (!specs->long_p && !specs->short_p
10970 && !specs->signed_p && !specs->unsigned_p
10971 && !specs->complex_p);
10972 /* Type to be filled in later. */
10973 break;
10974 case cts_void:
10975 gcc_assert (!specs->long_p && !specs->short_p
10976 && !specs->signed_p && !specs->unsigned_p
10977 && !specs->complex_p);
10978 specs->type = void_type_node;
10979 break;
10980 case cts_bool:
10981 gcc_assert (!specs->long_p && !specs->short_p
10982 && !specs->signed_p && !specs->unsigned_p
10983 && !specs->complex_p);
10984 specs->type = boolean_type_node;
10985 break;
10986 case cts_char:
10987 gcc_assert (!specs->long_p && !specs->short_p);
10988 gcc_assert (!(specs->signed_p && specs->unsigned_p));
10989 if (specs->signed_p)
10990 specs->type = signed_char_type_node;
10991 else if (specs->unsigned_p)
10992 specs->type = unsigned_char_type_node;
10993 else
10994 specs->type = char_type_node;
10995 if (specs->complex_p)
10997 pedwarn (specs->locations[cdw_complex], OPT_Wpedantic,
10998 "ISO C does not support complex integer types");
10999 specs->type = build_complex_type (specs->type);
11001 break;
11002 case cts_int_n:
11003 gcc_assert (!specs->long_p && !specs->short_p && !specs->long_long_p);
11004 gcc_assert (!(specs->signed_p && specs->unsigned_p));
11005 if (! int_n_enabled_p[specs->int_n_idx])
11006 specs->type = integer_type_node;
11007 else
11008 specs->type = (specs->unsigned_p
11009 ? int_n_trees[specs->int_n_idx].unsigned_type
11010 : int_n_trees[specs->int_n_idx].signed_type);
11011 if (specs->complex_p)
11013 pedwarn (specs->locations[cdw_complex], OPT_Wpedantic,
11014 "ISO C does not support complex integer types");
11015 specs->type = build_complex_type (specs->type);
11017 break;
11018 case cts_int:
11019 gcc_assert (!(specs->long_p && specs->short_p));
11020 gcc_assert (!(specs->signed_p && specs->unsigned_p));
11021 if (specs->long_long_p)
11022 specs->type = (specs->unsigned_p
11023 ? long_long_unsigned_type_node
11024 : long_long_integer_type_node);
11025 else if (specs->long_p)
11026 specs->type = (specs->unsigned_p
11027 ? long_unsigned_type_node
11028 : long_integer_type_node);
11029 else if (specs->short_p)
11030 specs->type = (specs->unsigned_p
11031 ? short_unsigned_type_node
11032 : short_integer_type_node);
11033 else
11034 specs->type = (specs->unsigned_p
11035 ? unsigned_type_node
11036 : integer_type_node);
11037 if (specs->complex_p)
11039 pedwarn (specs->locations[cdw_complex], OPT_Wpedantic,
11040 "ISO C does not support complex integer types");
11041 specs->type = build_complex_type (specs->type);
11043 break;
11044 case cts_float:
11045 gcc_assert (!specs->long_p && !specs->short_p
11046 && !specs->signed_p && !specs->unsigned_p);
11047 specs->type = (specs->complex_p
11048 ? complex_float_type_node
11049 : float_type_node);
11050 break;
11051 case cts_double:
11052 gcc_assert (!specs->long_long_p && !specs->short_p
11053 && !specs->signed_p && !specs->unsigned_p);
11054 if (specs->long_p)
11056 specs->type = (specs->complex_p
11057 ? complex_long_double_type_node
11058 : long_double_type_node);
11060 else
11062 specs->type = (specs->complex_p
11063 ? complex_double_type_node
11064 : double_type_node);
11066 break;
11067 case cts_floatn_nx:
11068 gcc_assert (!specs->long_p && !specs->short_p
11069 && !specs->signed_p && !specs->unsigned_p);
11070 if (FLOATN_NX_TYPE_NODE (specs->floatn_nx_idx) == NULL_TREE)
11071 specs->type = integer_type_node;
11072 else if (specs->complex_p)
11073 specs->type = COMPLEX_FLOATN_NX_TYPE_NODE (specs->floatn_nx_idx);
11074 else
11075 specs->type = FLOATN_NX_TYPE_NODE (specs->floatn_nx_idx);
11076 break;
11077 case cts_dfloat32:
11078 case cts_dfloat64:
11079 case cts_dfloat128:
11080 gcc_assert (!specs->long_p && !specs->long_long_p && !specs->short_p
11081 && !specs->signed_p && !specs->unsigned_p && !specs->complex_p);
11082 if (specs->typespec_word == cts_dfloat32)
11083 specs->type = dfloat32_type_node;
11084 else if (specs->typespec_word == cts_dfloat64)
11085 specs->type = dfloat64_type_node;
11086 else
11087 specs->type = dfloat128_type_node;
11088 break;
11089 case cts_fract:
11090 gcc_assert (!specs->complex_p);
11091 if (!targetm.fixed_point_supported_p ())
11092 specs->type = integer_type_node;
11093 else if (specs->saturating_p)
11095 if (specs->long_long_p)
11096 specs->type = specs->unsigned_p
11097 ? sat_unsigned_long_long_fract_type_node
11098 : sat_long_long_fract_type_node;
11099 else if (specs->long_p)
11100 specs->type = specs->unsigned_p
11101 ? sat_unsigned_long_fract_type_node
11102 : sat_long_fract_type_node;
11103 else if (specs->short_p)
11104 specs->type = specs->unsigned_p
11105 ? sat_unsigned_short_fract_type_node
11106 : sat_short_fract_type_node;
11107 else
11108 specs->type = specs->unsigned_p
11109 ? sat_unsigned_fract_type_node
11110 : sat_fract_type_node;
11112 else
11114 if (specs->long_long_p)
11115 specs->type = specs->unsigned_p
11116 ? unsigned_long_long_fract_type_node
11117 : long_long_fract_type_node;
11118 else if (specs->long_p)
11119 specs->type = specs->unsigned_p
11120 ? unsigned_long_fract_type_node
11121 : long_fract_type_node;
11122 else if (specs->short_p)
11123 specs->type = specs->unsigned_p
11124 ? unsigned_short_fract_type_node
11125 : short_fract_type_node;
11126 else
11127 specs->type = specs->unsigned_p
11128 ? unsigned_fract_type_node
11129 : fract_type_node;
11131 break;
11132 case cts_accum:
11133 gcc_assert (!specs->complex_p);
11134 if (!targetm.fixed_point_supported_p ())
11135 specs->type = integer_type_node;
11136 else if (specs->saturating_p)
11138 if (specs->long_long_p)
11139 specs->type = specs->unsigned_p
11140 ? sat_unsigned_long_long_accum_type_node
11141 : sat_long_long_accum_type_node;
11142 else if (specs->long_p)
11143 specs->type = specs->unsigned_p
11144 ? sat_unsigned_long_accum_type_node
11145 : sat_long_accum_type_node;
11146 else if (specs->short_p)
11147 specs->type = specs->unsigned_p
11148 ? sat_unsigned_short_accum_type_node
11149 : sat_short_accum_type_node;
11150 else
11151 specs->type = specs->unsigned_p
11152 ? sat_unsigned_accum_type_node
11153 : sat_accum_type_node;
11155 else
11157 if (specs->long_long_p)
11158 specs->type = specs->unsigned_p
11159 ? unsigned_long_long_accum_type_node
11160 : long_long_accum_type_node;
11161 else if (specs->long_p)
11162 specs->type = specs->unsigned_p
11163 ? unsigned_long_accum_type_node
11164 : long_accum_type_node;
11165 else if (specs->short_p)
11166 specs->type = specs->unsigned_p
11167 ? unsigned_short_accum_type_node
11168 : short_accum_type_node;
11169 else
11170 specs->type = specs->unsigned_p
11171 ? unsigned_accum_type_node
11172 : accum_type_node;
11174 break;
11175 default:
11176 gcc_unreachable ();
11179 return specs;
11182 /* Perform final processing on one file scope's declarations (or the
11183 external scope's declarations), GLOBALS. */
11185 static void
11186 c_write_global_declarations_1 (tree globals)
11188 tree decl;
11189 bool reconsider;
11191 /* Process the decls in the order they were written. */
11192 for (decl = globals; decl; decl = DECL_CHAIN (decl))
11194 /* Check for used but undefined static functions using the C
11195 standard's definition of "used", and set TREE_NO_WARNING so
11196 that check_global_declaration doesn't repeat the check. */
11197 if (TREE_CODE (decl) == FUNCTION_DECL
11198 && DECL_INITIAL (decl) == NULL_TREE
11199 && DECL_EXTERNAL (decl)
11200 && !TREE_PUBLIC (decl))
11202 if (C_DECL_USED (decl))
11204 pedwarn (input_location, 0, "%q+F used but never defined", decl);
11205 TREE_NO_WARNING (decl) = 1;
11207 /* For -Wunused-function warn about unused static prototypes. */
11208 else if (warn_unused_function
11209 && ! DECL_ARTIFICIAL (decl)
11210 && ! TREE_NO_WARNING (decl))
11212 warning (OPT_Wunused_function,
11213 "%q+F declared %<static%> but never defined", decl);
11214 TREE_NO_WARNING (decl) = 1;
11218 wrapup_global_declaration_1 (decl);
11223 reconsider = false;
11224 for (decl = globals; decl; decl = DECL_CHAIN (decl))
11225 reconsider |= wrapup_global_declaration_2 (decl);
11227 while (reconsider);
11230 /* Callback to collect a source_ref from a DECL. */
11232 static void
11233 collect_source_ref_cb (tree decl)
11235 if (!DECL_IS_BUILTIN (decl))
11236 collect_source_ref (LOCATION_FILE (decl_sloc (decl, false)));
11239 /* Preserve the external declarations scope across a garbage collect. */
11240 static GTY(()) tree ext_block;
11242 /* Collect all references relevant to SOURCE_FILE. */
11244 static void
11245 collect_all_refs (const char *source_file)
11247 tree t;
11248 unsigned i;
11250 FOR_EACH_VEC_ELT (*all_translation_units, i, t)
11251 collect_ada_nodes (BLOCK_VARS (DECL_INITIAL (t)), source_file);
11253 collect_ada_nodes (BLOCK_VARS (ext_block), source_file);
11256 /* Iterate over all global declarations and call CALLBACK. */
11258 static void
11259 for_each_global_decl (void (*callback) (tree decl))
11261 tree t;
11262 tree decls;
11263 tree decl;
11264 unsigned i;
11266 FOR_EACH_VEC_ELT (*all_translation_units, i, t)
11268 decls = DECL_INITIAL (t);
11269 for (decl = BLOCK_VARS (decls); decl; decl = TREE_CHAIN (decl))
11270 callback (decl);
11273 for (decl = BLOCK_VARS (ext_block); decl; decl = TREE_CHAIN (decl))
11274 callback (decl);
11277 /* Perform any final parser cleanups and generate initial debugging
11278 information. */
11280 void
11281 c_parse_final_cleanups (void)
11283 tree t;
11284 unsigned i;
11286 /* We don't want to do this if generating a PCH. */
11287 if (pch_file)
11288 return;
11290 timevar_stop (TV_PHASE_PARSING);
11291 timevar_start (TV_PHASE_DEFERRED);
11293 /* Do the Objective-C stuff. This is where all the Objective-C
11294 module stuff gets generated (symtab, class/protocol/selector
11295 lists etc). */
11296 if (c_dialect_objc ())
11297 objc_write_global_declarations ();
11299 /* Close the external scope. */
11300 ext_block = pop_scope ();
11301 external_scope = 0;
11302 gcc_assert (!current_scope);
11304 /* Handle -fdump-ada-spec[-slim]. */
11305 if (flag_dump_ada_spec || flag_dump_ada_spec_slim)
11307 /* Build a table of files to generate specs for */
11308 if (flag_dump_ada_spec_slim)
11309 collect_source_ref (main_input_filename);
11310 else
11311 for_each_global_decl (collect_source_ref_cb);
11313 dump_ada_specs (collect_all_refs, NULL);
11316 /* Process all file scopes in this compilation, and the external_scope,
11317 through wrapup_global_declarations. */
11318 FOR_EACH_VEC_ELT (*all_translation_units, i, t)
11319 c_write_global_declarations_1 (BLOCK_VARS (DECL_INITIAL (t)));
11320 c_write_global_declarations_1 (BLOCK_VARS (ext_block));
11322 timevar_stop (TV_PHASE_DEFERRED);
11323 timevar_start (TV_PHASE_PARSING);
11325 ext_block = NULL;
11328 /* Register reserved keyword WORD as qualifier for address space AS. */
11330 void
11331 c_register_addr_space (const char *word, addr_space_t as)
11333 int rid = RID_FIRST_ADDR_SPACE + as;
11334 tree id;
11336 /* Address space qualifiers are only supported
11337 in C with GNU extensions enabled. */
11338 if (c_dialect_objc () || flag_no_asm)
11339 return;
11341 id = get_identifier (word);
11342 C_SET_RID_CODE (id, rid);
11343 C_IS_RESERVED_WORD (id) = 1;
11344 ridpointers [rid] = id;
11347 /* Return identifier to look up for omp declare reduction. */
11349 tree
11350 c_omp_reduction_id (enum tree_code reduction_code, tree reduction_id)
11352 const char *p = NULL;
11353 switch (reduction_code)
11355 case PLUS_EXPR: p = "+"; break;
11356 case MULT_EXPR: p = "*"; break;
11357 case MINUS_EXPR: p = "-"; break;
11358 case BIT_AND_EXPR: p = "&"; break;
11359 case BIT_XOR_EXPR: p = "^"; break;
11360 case BIT_IOR_EXPR: p = "|"; break;
11361 case TRUTH_ANDIF_EXPR: p = "&&"; break;
11362 case TRUTH_ORIF_EXPR: p = "||"; break;
11363 case MIN_EXPR: p = "min"; break;
11364 case MAX_EXPR: p = "max"; break;
11365 default:
11366 break;
11369 if (p == NULL)
11371 if (TREE_CODE (reduction_id) != IDENTIFIER_NODE)
11372 return error_mark_node;
11373 p = IDENTIFIER_POINTER (reduction_id);
11376 const char prefix[] = "omp declare reduction ";
11377 size_t lenp = sizeof (prefix);
11378 size_t len = strlen (p);
11379 char *name = XALLOCAVEC (char, lenp + len);
11380 memcpy (name, prefix, lenp - 1);
11381 memcpy (name + lenp - 1, p, len + 1);
11382 return get_identifier (name);
11385 /* Lookup REDUCTION_ID in the current scope, or create an artificial
11386 VAR_DECL, bind it into the current scope and return it. */
11388 tree
11389 c_omp_reduction_decl (tree reduction_id)
11391 struct c_binding *b = I_SYMBOL_BINDING (reduction_id);
11392 if (b != NULL && B_IN_CURRENT_SCOPE (b))
11393 return b->decl;
11395 tree decl = build_decl (BUILTINS_LOCATION, VAR_DECL,
11396 reduction_id, integer_type_node);
11397 DECL_ARTIFICIAL (decl) = 1;
11398 DECL_EXTERNAL (decl) = 1;
11399 TREE_STATIC (decl) = 1;
11400 TREE_PUBLIC (decl) = 0;
11401 bind (reduction_id, decl, current_scope, true, false, BUILTINS_LOCATION);
11402 return decl;
11405 /* Lookup REDUCTION_ID in the first scope where it has entry for TYPE. */
11407 tree
11408 c_omp_reduction_lookup (tree reduction_id, tree type)
11410 struct c_binding *b = I_SYMBOL_BINDING (reduction_id);
11411 while (b)
11413 tree t;
11414 for (t = DECL_INITIAL (b->decl); t; t = TREE_CHAIN (t))
11415 if (comptypes (TREE_PURPOSE (t), type))
11416 return TREE_VALUE (t);
11417 b = b->shadowed;
11419 return error_mark_node;
11422 /* Helper function called via walk_tree, to diagnose invalid
11423 #pragma omp declare reduction combiners or initializers. */
11425 tree
11426 c_check_omp_declare_reduction_r (tree *tp, int *, void *data)
11428 tree *vars = (tree *) data;
11429 if (SSA_VAR_P (*tp)
11430 && !DECL_ARTIFICIAL (*tp)
11431 && *tp != vars[0]
11432 && *tp != vars[1])
11434 location_t loc = DECL_SOURCE_LOCATION (vars[0]);
11435 if (strcmp (IDENTIFIER_POINTER (DECL_NAME (vars[0])), "omp_out") == 0)
11436 error_at (loc, "%<#pragma omp declare reduction%> combiner refers to "
11437 "variable %qD which is not %<omp_out%> nor %<omp_in%>",
11438 *tp);
11439 else
11440 error_at (loc, "%<#pragma omp declare reduction%> initializer refers "
11441 "to variable %qD which is not %<omp_priv%> nor "
11442 "%<omp_orig%>",
11443 *tp);
11444 return *tp;
11446 return NULL_TREE;
11449 #include "gt-c-c-decl.h"