c++: anon union designated init [PR105925]
[official-gcc.git] / gcc / cp / decl.cc
blobaa6cf3c6c2eb827d12f5badf7edfbae4884a11a3
1 /* Process declarations and variables for -*- C++ -*- compiler.
2 Copyright (C) 1988-2022 Free Software Foundation, Inc.
3 Contributed by Michael Tiemann (tiemann@cygnus.com)
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
22 /* Process declarations and symbol lookup for C++ front end.
23 Also constructs types; the standard scalar types at initialization,
24 and structure, union, array and enum types when they are declared. */
26 /* ??? not all decl nodes are given the most useful possible
27 line numbers. For example, the CONST_DECLs for enum values. */
29 #include "config.h"
30 #include "system.h"
31 #include "coretypes.h"
32 #include "target.h"
33 #include "c-family/c-target.h"
34 #include "cp-tree.h"
35 #include "timevar.h"
36 #include "stringpool.h"
37 #include "cgraph.h"
38 #include "stor-layout.h"
39 #include "varasm.h"
40 #include "attribs.h"
41 #include "flags.h"
42 #include "tree-iterator.h"
43 #include "decl.h"
44 #include "intl.h"
45 #include "toplev.h"
46 #include "c-family/c-objc.h"
47 #include "c-family/c-pragma.h"
48 #include "c-family/c-ubsan.h"
49 #include "debug.h"
50 #include "plugin.h"
51 #include "builtins.h"
52 #include "gimplify.h"
53 #include "asan.h"
54 #include "gcc-rich-location.h"
55 #include "langhooks.h"
56 #include "context.h" /* For 'g'. */
57 #include "omp-general.h"
58 #include "omp-offload.h" /* For offload_vars. */
59 #include "opts.h"
60 #include "langhooks-def.h" /* For lhd_simulate_record_decl */
62 /* Possible cases of bad specifiers type used by bad_specifiers. */
63 enum bad_spec_place {
64 BSP_VAR, /* variable */
65 BSP_PARM, /* parameter */
66 BSP_TYPE, /* type */
67 BSP_FIELD /* field */
70 static const char *redeclaration_error_message (tree, tree);
72 static int decl_jump_unsafe (tree);
73 static void require_complete_types_for_parms (tree);
74 static tree grok_reference_init (tree, tree, tree, int);
75 static tree grokvardecl (tree, tree, tree, const cp_decl_specifier_seq *,
76 int, int, int, bool, int, tree, location_t);
77 static void check_static_variable_definition (tree, tree);
78 static void record_unknown_type (tree, const char *);
79 static int member_function_or_else (tree, tree, enum overload_flags);
80 static tree local_variable_p_walkfn (tree *, int *, void *);
81 static const char *tag_name (enum tag_types);
82 static tree lookup_and_check_tag (enum tag_types, tree, TAG_how, bool);
83 static void maybe_deduce_size_from_array_init (tree, tree);
84 static void layout_var_decl (tree);
85 static tree check_initializer (tree, tree, int, vec<tree, va_gc> **);
86 static void make_rtl_for_nonlocal_decl (tree, tree, const char *);
87 static void copy_type_enum (tree , tree);
88 static void check_function_type (tree, tree);
89 static void begin_destructor_body (void);
90 static void record_key_method_defined (tree);
91 static tree create_array_type_for_decl (tree, tree, tree, location_t);
92 static tree get_atexit_node (void);
93 static tree get_dso_handle_node (void);
94 static tree start_cleanup_fn (void);
95 static void end_cleanup_fn (void);
96 static tree cp_make_fname_decl (location_t, tree, int);
97 static void initialize_predefined_identifiers (void);
98 static tree check_special_function_return_type
99 (special_function_kind, tree, tree, int, const location_t*);
100 static tree push_cp_library_fn (enum tree_code, tree, int);
101 static tree build_cp_library_fn (tree, enum tree_code, tree, int);
102 static void store_parm_decls (tree);
103 static void initialize_local_var (tree, tree);
104 static void expand_static_init (tree, tree);
105 static location_t smallest_type_location (const cp_decl_specifier_seq*);
107 /* The following symbols are subsumed in the cp_global_trees array, and
108 listed here individually for documentation purposes.
110 C++ extensions
111 tree wchar_decl_node;
113 tree vtable_entry_type;
114 tree delta_type_node;
115 tree __t_desc_type_node;
117 tree class_type_node;
118 tree unknown_type_node;
120 Array type `vtable_entry_type[]'
122 tree vtbl_type_node;
123 tree vtbl_ptr_type_node;
125 Namespaces,
127 tree std_node;
128 tree abi_node;
130 A FUNCTION_DECL which can call `abort'. Not necessarily the
131 one that the user will declare, but sufficient to be called
132 by routines that want to abort the program.
134 tree abort_fndecl;
136 Used by RTTI
137 tree type_info_type_node, tinfo_decl_id, tinfo_decl_type;
138 tree tinfo_var_id; */
140 tree cp_global_trees[CPTI_MAX];
142 /* A list of objects which have constructors or destructors
143 which reside in namespace scope. The decl is stored in
144 the TREE_VALUE slot and the initializer is stored
145 in the TREE_PURPOSE slot. */
146 tree static_aggregates;
148 /* Like static_aggregates, but for thread_local variables. */
149 tree tls_aggregates;
151 /* A hash-map mapping from variable decls to the dynamic initializer for
152 the decl. This is currently only used by OpenMP. */
153 decl_tree_map *dynamic_initializers;
155 /* -- end of C++ */
157 /* A node for the integer constant 2. */
159 tree integer_two_node;
161 /* vector of static decls. */
162 vec<tree, va_gc> *static_decls;
164 /* vector of keyed classes. */
165 vec<tree, va_gc> *keyed_classes;
167 /* Used only for jumps to as-yet undefined labels, since jumps to
168 defined labels can have their validity checked immediately. */
170 struct GTY((chain_next ("%h.next"))) named_label_use_entry {
171 struct named_label_use_entry *next;
172 /* The binding level to which this entry is *currently* attached.
173 This is initially the binding level in which the goto appeared,
174 but is modified as scopes are closed. */
175 cp_binding_level *binding_level;
176 /* The head of the names list that was current when the goto appeared,
177 or the inner scope popped. These are the decls that will *not* be
178 skipped when jumping to the label. */
179 tree names_in_scope;
180 /* The location of the goto, for error reporting. */
181 location_t o_goto_locus;
182 /* True if an OpenMP structured block scope has been closed since
183 the goto appeared. This means that the branch from the label will
184 illegally exit an OpenMP scope. */
185 bool in_omp_scope;
188 /* A list of all LABEL_DECLs in the function that have names. Here so
189 we can clear out their names' definitions at the end of the
190 function, and so we can check the validity of jumps to these labels. */
192 struct GTY((for_user)) named_label_entry {
194 tree name; /* Name of decl. */
196 tree label_decl; /* LABEL_DECL, unless deleted local label. */
198 named_label_entry *outer; /* Outer shadowed chain. */
200 /* The binding level to which the label is *currently* attached.
201 This is initially set to the binding level in which the label
202 is defined, but is modified as scopes are closed. */
203 cp_binding_level *binding_level;
205 /* The head of the names list that was current when the label was
206 defined, or the inner scope popped. These are the decls that will
207 be skipped when jumping to the label. */
208 tree names_in_scope;
210 /* A vector of all decls from all binding levels that would be
211 crossed by a backward branch to the label. */
212 vec<tree, va_gc> *bad_decls;
214 /* A list of uses of the label, before the label is defined. */
215 named_label_use_entry *uses;
217 /* The following bits are set after the label is defined, and are
218 updated as scopes are popped. They indicate that a jump to the
219 label will illegally enter a scope of the given flavor. */
220 bool in_try_scope;
221 bool in_catch_scope;
222 bool in_omp_scope;
223 bool in_transaction_scope;
224 bool in_constexpr_if;
225 bool in_consteval_if;
228 #define named_labels cp_function_chain->x_named_labels
230 /* The number of function bodies which we are currently processing.
231 (Zero if we are at namespace scope, one inside the body of a
232 function, two inside the body of a function in a local class, etc.) */
233 int function_depth;
235 /* Whether the exception-specifier is part of a function type (i.e. C++17). */
236 bool flag_noexcept_type;
238 /* States indicating how grokdeclarator() should handle declspecs marked
239 with __attribute__((deprecated)). An object declared as
240 __attribute__((deprecated)) suppresses warnings of uses of other
241 deprecated items. */
242 enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
245 /* A list of VAR_DECLs whose type was incomplete at the time the
246 variable was declared. */
248 struct GTY(()) incomplete_var {
249 tree decl;
250 tree incomplete_type;
254 static GTY(()) vec<incomplete_var, va_gc> *incomplete_vars;
256 /* Returns the kind of template specialization we are currently
257 processing, given that it's declaration contained N_CLASS_SCOPES
258 explicit scope qualifications. */
260 tmpl_spec_kind
261 current_tmpl_spec_kind (int n_class_scopes)
263 int n_template_parm_scopes = 0;
264 int seen_specialization_p = 0;
265 int innermost_specialization_p = 0;
266 cp_binding_level *b;
268 /* Scan through the template parameter scopes. */
269 for (b = current_binding_level;
270 b->kind == sk_template_parms;
271 b = b->level_chain)
273 /* If we see a specialization scope inside a parameter scope,
274 then something is wrong. That corresponds to a declaration
275 like:
277 template <class T> template <> ...
279 which is always invalid since [temp.expl.spec] forbids the
280 specialization of a class member template if the enclosing
281 class templates are not explicitly specialized as well. */
282 if (b->explicit_spec_p)
284 if (n_template_parm_scopes == 0)
285 innermost_specialization_p = 1;
286 else
287 seen_specialization_p = 1;
289 else if (seen_specialization_p == 1)
290 return tsk_invalid_member_spec;
292 ++n_template_parm_scopes;
295 /* Handle explicit instantiations. */
296 if (processing_explicit_instantiation)
298 if (n_template_parm_scopes != 0)
299 /* We've seen a template parameter list during an explicit
300 instantiation. For example:
302 template <class T> template void f(int);
304 This is erroneous. */
305 return tsk_invalid_expl_inst;
306 else
307 return tsk_expl_inst;
310 if (n_template_parm_scopes < n_class_scopes)
311 /* We've not seen enough template headers to match all the
312 specialized classes present. For example:
314 template <class T> void R<T>::S<T>::f(int);
316 This is invalid; there needs to be one set of template
317 parameters for each class. */
318 return tsk_insufficient_parms;
319 else if (n_template_parm_scopes == n_class_scopes)
320 /* We're processing a non-template declaration (even though it may
321 be a member of a template class.) For example:
323 template <class T> void S<T>::f(int);
325 The `class T' matches the `S<T>', leaving no template headers
326 corresponding to the `f'. */
327 return tsk_none;
328 else if (n_template_parm_scopes > n_class_scopes + 1)
329 /* We've got too many template headers. For example:
331 template <> template <class T> void f (T);
333 There need to be more enclosing classes. */
334 return tsk_excessive_parms;
335 else
336 /* This must be a template. It's of the form:
338 template <class T> template <class U> void S<T>::f(U);
340 This is a specialization if the innermost level was a
341 specialization; otherwise it's just a definition of the
342 template. */
343 return innermost_specialization_p ? tsk_expl_spec : tsk_template;
346 /* Exit the current scope. */
348 void
349 finish_scope (void)
351 poplevel (0, 0, 0);
354 /* When a label goes out of scope, check to see if that label was used
355 in a valid manner, and issue any appropriate warnings or errors. */
357 static void
358 check_label_used (tree label)
360 if (!processing_template_decl)
362 if (DECL_INITIAL (label) == NULL_TREE)
364 location_t location;
366 error ("label %q+D used but not defined", label);
367 location = input_location;
368 /* FIXME want (LOCATION_FILE (input_location), (line)0) */
369 /* Avoid crashing later. */
370 define_label (location, DECL_NAME (label));
372 else
373 warn_for_unused_label (label);
377 /* Helper function to sort named label entries in a vector by DECL_UID. */
379 static int
380 sort_labels (const void *a, const void *b)
382 tree label1 = *(tree const *) a;
383 tree label2 = *(tree const *) b;
385 /* DECL_UIDs can never be equal. */
386 return DECL_UID (label1) > DECL_UID (label2) ? -1 : +1;
389 /* At the end of a function, all labels declared within the function
390 go out of scope. BLOCK is the top-level block for the
391 function. */
393 static void
394 pop_labels (tree block)
396 if (!named_labels)
397 return;
399 /* We need to add the labels to the block chain, so debug
400 information is emitted. But, we want the order to be stable so
401 need to sort them first. Otherwise the debug output could be
402 randomly ordered. I guess it's mostly stable, unless the hash
403 table implementation changes. */
404 auto_vec<tree, 32> labels (named_labels->elements ());
405 hash_table<named_label_hash>::iterator end (named_labels->end ());
406 for (hash_table<named_label_hash>::iterator iter
407 (named_labels->begin ()); iter != end; ++iter)
409 named_label_entry *ent = *iter;
411 gcc_checking_assert (!ent->outer);
412 if (ent->label_decl)
413 labels.quick_push (ent->label_decl);
414 ggc_free (ent);
416 named_labels = NULL;
417 labels.qsort (sort_labels);
419 while (labels.length ())
421 tree label = labels.pop ();
423 DECL_CHAIN (label) = BLOCK_VARS (block);
424 BLOCK_VARS (block) = label;
426 check_label_used (label);
430 /* At the end of a block with local labels, restore the outer definition. */
432 static void
433 pop_local_label (tree id, tree label)
435 check_label_used (label);
436 named_label_entry **slot = named_labels->find_slot_with_hash
437 (id, IDENTIFIER_HASH_VALUE (id), NO_INSERT);
438 named_label_entry *ent = *slot;
440 if (ent->outer)
441 ent = ent->outer;
442 else
444 ent = ggc_cleared_alloc<named_label_entry> ();
445 ent->name = id;
447 *slot = ent;
450 /* The following two routines are used to interface to Objective-C++.
451 The binding level is purposely treated as an opaque type. */
453 void *
454 objc_get_current_scope (void)
456 return current_binding_level;
459 /* The following routine is used by the NeXT-style SJLJ exceptions;
460 variables get marked 'volatile' so as to not be clobbered by
461 _setjmp()/_longjmp() calls. All variables in the current scope,
462 as well as parent scopes up to (but not including) ENCLOSING_BLK
463 shall be thusly marked. */
465 void
466 objc_mark_locals_volatile (void *enclosing_blk)
468 cp_binding_level *scope;
470 for (scope = current_binding_level;
471 scope && scope != enclosing_blk;
472 scope = scope->level_chain)
474 tree decl;
476 for (decl = scope->names; decl; decl = TREE_CHAIN (decl))
477 objc_volatilize_decl (decl);
479 /* Do not climb up past the current function. */
480 if (scope->kind == sk_function_parms)
481 break;
485 /* True if B is the level for the condition of a constexpr if. */
487 static bool
488 level_for_constexpr_if (cp_binding_level *b)
490 return (b->kind == sk_cond && b->this_entity
491 && TREE_CODE (b->this_entity) == IF_STMT
492 && IF_STMT_CONSTEXPR_P (b->this_entity));
495 /* True if B is the level for the condition of a consteval if. */
497 static bool
498 level_for_consteval_if (cp_binding_level *b)
500 return (b->kind == sk_cond && b->this_entity
501 && TREE_CODE (b->this_entity) == IF_STMT
502 && IF_STMT_CONSTEVAL_P (b->this_entity));
505 /* Update data for defined and undefined labels when leaving a scope. */
508 poplevel_named_label_1 (named_label_entry **slot, cp_binding_level *bl)
510 named_label_entry *ent = *slot;
511 cp_binding_level *obl = bl->level_chain;
513 if (ent->binding_level == bl)
515 tree decl;
517 /* ENT->NAMES_IN_SCOPE may contain a mixture of DECLs and
518 TREE_LISTs representing OVERLOADs, so be careful. */
519 for (decl = ent->names_in_scope; decl; decl = (DECL_P (decl)
520 ? DECL_CHAIN (decl)
521 : TREE_CHAIN (decl)))
522 if (decl_jump_unsafe (decl))
523 vec_safe_push (ent->bad_decls, decl);
525 ent->binding_level = obl;
526 ent->names_in_scope = obl->names;
527 switch (bl->kind)
529 case sk_try:
530 ent->in_try_scope = true;
531 break;
532 case sk_catch:
533 ent->in_catch_scope = true;
534 break;
535 case sk_omp:
536 ent->in_omp_scope = true;
537 break;
538 case sk_transaction:
539 ent->in_transaction_scope = true;
540 break;
541 case sk_block:
542 if (level_for_constexpr_if (bl->level_chain))
543 ent->in_constexpr_if = true;
544 else if (level_for_consteval_if (bl->level_chain))
545 ent->in_consteval_if = true;
546 break;
547 default:
548 break;
551 else if (ent->uses)
553 struct named_label_use_entry *use;
555 for (use = ent->uses; use ; use = use->next)
556 if (use->binding_level == bl)
558 use->binding_level = obl;
559 use->names_in_scope = obl->names;
560 if (bl->kind == sk_omp)
561 use->in_omp_scope = true;
565 return 1;
568 /* Saved errorcount to avoid -Wunused-but-set-{parameter,variable} warnings
569 when errors were reported, except for -Werror-unused-but-set-*. */
570 static int unused_but_set_errorcount;
572 /* Exit a binding level.
573 Pop the level off, and restore the state of the identifier-decl mappings
574 that were in effect when this level was entered.
576 If KEEP == 1, this level had explicit declarations, so
577 and create a "block" (a BLOCK node) for the level
578 to record its declarations and subblocks for symbol table output.
580 If FUNCTIONBODY is nonzero, this level is the body of a function,
581 so create a block as if KEEP were set and also clear out all
582 label names.
584 If REVERSE is nonzero, reverse the order of decls before putting
585 them into the BLOCK. */
587 tree
588 poplevel (int keep, int reverse, int functionbody)
590 tree link;
591 /* The chain of decls was accumulated in reverse order.
592 Put it into forward order, just for cleanliness. */
593 tree decls;
594 tree subblocks;
595 tree block;
596 tree decl;
597 scope_kind kind;
599 auto_cond_timevar tv (TV_NAME_LOOKUP);
600 restart:
602 block = NULL_TREE;
604 gcc_assert (current_binding_level->kind != sk_class
605 && current_binding_level->kind != sk_namespace);
607 if (current_binding_level->kind == sk_cleanup)
608 functionbody = 0;
609 subblocks = functionbody >= 0 ? current_binding_level->blocks : 0;
611 gcc_assert (!vec_safe_length (current_binding_level->class_shadowed));
613 /* We used to use KEEP == 2 to indicate that the new block should go
614 at the beginning of the list of blocks at this binding level,
615 rather than the end. This hack is no longer used. */
616 gcc_assert (keep == 0 || keep == 1);
618 if (current_binding_level->keep)
619 keep = 1;
621 /* Any uses of undefined labels, and any defined labels, now operate
622 under constraints of next binding contour. */
623 if (cfun && !functionbody && named_labels)
624 named_labels->traverse<cp_binding_level *, poplevel_named_label_1>
625 (current_binding_level);
627 /* Get the decls in the order they were written.
628 Usually current_binding_level->names is in reverse order.
629 But parameter decls were previously put in forward order. */
631 decls = current_binding_level->names;
632 if (reverse)
634 decls = nreverse (decls);
635 current_binding_level->names = decls;
638 /* If there were any declarations or structure tags in that level,
639 or if this level is a function body,
640 create a BLOCK to record them for the life of this function. */
641 block = NULL_TREE;
642 /* Avoid function body block if possible. */
643 if (functionbody && subblocks && BLOCK_CHAIN (subblocks) == NULL_TREE)
644 keep = 0;
645 else if (keep == 1 || functionbody)
646 block = make_node (BLOCK);
647 if (block != NULL_TREE)
649 BLOCK_VARS (block) = decls;
650 BLOCK_SUBBLOCKS (block) = subblocks;
653 /* In each subblock, record that this is its superior. */
654 if (keep >= 0)
655 for (link = subblocks; link; link = BLOCK_CHAIN (link))
656 BLOCK_SUPERCONTEXT (link) = block;
658 /* Before we remove the declarations first check for unused variables. */
659 if ((warn_unused_variable || warn_unused_but_set_variable)
660 && current_binding_level->kind != sk_template_parms
661 && !processing_template_decl)
662 for (tree d = get_local_decls (); d; d = TREE_CHAIN (d))
664 /* There are cases where D itself is a TREE_LIST. See in
665 push_local_binding where the list of decls returned by
666 getdecls is built. */
667 decl = TREE_CODE (d) == TREE_LIST ? TREE_VALUE (d) : d;
669 tree type = TREE_TYPE (decl);
670 if (VAR_P (decl)
671 && (! TREE_USED (decl) || !DECL_READ_P (decl))
672 && ! DECL_IN_SYSTEM_HEADER (decl)
673 /* For structured bindings, consider only real variables, not
674 subobjects. */
675 && (DECL_DECOMPOSITION_P (decl) ? !DECL_DECOMP_BASE (decl)
676 : (DECL_NAME (decl) && !DECL_ARTIFICIAL (decl)))
677 && type != error_mark_node
678 && (!CLASS_TYPE_P (type)
679 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
680 || lookup_attribute ("warn_unused",
681 TYPE_ATTRIBUTES (TREE_TYPE (decl)))))
683 if (! TREE_USED (decl))
685 if (!DECL_NAME (decl) && DECL_DECOMPOSITION_P (decl))
686 warning_at (DECL_SOURCE_LOCATION (decl),
687 OPT_Wunused_variable,
688 "unused structured binding declaration");
689 else
690 warning_at (DECL_SOURCE_LOCATION (decl),
691 OPT_Wunused_variable, "unused variable %qD", decl);
693 else if (DECL_CONTEXT (decl) == current_function_decl
694 // For -Wunused-but-set-variable leave references alone.
695 && !TYPE_REF_P (TREE_TYPE (decl))
696 && errorcount == unused_but_set_errorcount)
698 if (!DECL_NAME (decl) && DECL_DECOMPOSITION_P (decl))
699 warning_at (DECL_SOURCE_LOCATION (decl),
700 OPT_Wunused_but_set_variable, "structured "
701 "binding declaration set but not used");
702 else
703 warning_at (DECL_SOURCE_LOCATION (decl),
704 OPT_Wunused_but_set_variable,
705 "variable %qD set but not used", decl);
706 unused_but_set_errorcount = errorcount;
711 /* Remove declarations for all the DECLs in this level. */
712 for (link = decls; link; link = TREE_CHAIN (link))
714 tree name;
715 if (TREE_CODE (link) == TREE_LIST)
717 decl = TREE_VALUE (link);
718 name = TREE_PURPOSE (link);
719 gcc_checking_assert (name);
721 else
723 decl = link;
724 name = DECL_NAME (decl);
727 /* Remove the binding. */
728 if (TREE_CODE (decl) == LABEL_DECL)
729 pop_local_label (name, decl);
730 else
731 pop_local_binding (name, decl);
734 /* Restore the IDENTIFIER_TYPE_VALUEs. */
735 for (link = current_binding_level->type_shadowed;
736 link; link = TREE_CHAIN (link))
737 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (link), TREE_VALUE (link));
739 /* There may be OVERLOADs (wrapped in TREE_LISTs) on the BLOCK_VARs
740 list if a `using' declaration put them there. The debugging
741 back ends won't understand OVERLOAD, so we remove them here.
742 Because the BLOCK_VARS are (temporarily) shared with
743 CURRENT_BINDING_LEVEL->NAMES we must do this fixup after we have
744 popped all the bindings. Also remove undeduced 'auto' decls,
745 which LTO doesn't understand, and can't have been used by anything. */
746 if (block)
748 tree* d;
750 for (d = &BLOCK_VARS (block); *d; )
752 if (TREE_CODE (*d) == TREE_LIST
753 || (!processing_template_decl
754 && undeduced_auto_decl (*d)))
755 *d = TREE_CHAIN (*d);
756 else
757 d = &DECL_CHAIN (*d);
761 /* If the level being exited is the top level of a function,
762 check over all the labels. */
763 if (functionbody)
765 if (block)
767 /* Since this is the top level block of a function, the vars are
768 the function's parameters. Don't leave them in the BLOCK
769 because they are found in the FUNCTION_DECL instead. */
770 BLOCK_VARS (block) = 0;
771 pop_labels (block);
773 else
774 pop_labels (subblocks);
777 kind = current_binding_level->kind;
778 if (kind == sk_cleanup)
780 tree stmt;
782 /* If this is a temporary binding created for a cleanup, then we'll
783 have pushed a statement list level. Pop that, create a new
784 BIND_EXPR for the block, and insert it into the stream. */
785 stmt = pop_stmt_list (current_binding_level->statement_list);
786 stmt = c_build_bind_expr (input_location, block, stmt);
787 add_stmt (stmt);
790 leave_scope ();
791 if (functionbody)
793 /* The current function is being defined, so its DECL_INITIAL
794 should be error_mark_node. */
795 gcc_assert (DECL_INITIAL (current_function_decl) == error_mark_node);
796 DECL_INITIAL (current_function_decl) = block ? block : subblocks;
797 if (subblocks)
799 if (FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
801 if (BLOCK_SUBBLOCKS (subblocks))
802 BLOCK_OUTER_CURLY_BRACE_P (BLOCK_SUBBLOCKS (subblocks)) = 1;
804 else
805 BLOCK_OUTER_CURLY_BRACE_P (subblocks) = 1;
808 else if (block)
809 current_binding_level->blocks
810 = block_chainon (current_binding_level->blocks, block);
812 /* If we did not make a block for the level just exited,
813 any blocks made for inner levels
814 (since they cannot be recorded as subblocks in that level)
815 must be carried forward so they will later become subblocks
816 of something else. */
817 else if (subblocks)
818 current_binding_level->blocks
819 = block_chainon (current_binding_level->blocks, subblocks);
821 /* Each and every BLOCK node created here in `poplevel' is important
822 (e.g. for proper debugging information) so if we created one
823 earlier, mark it as "used". */
824 if (block)
825 TREE_USED (block) = 1;
827 /* All temporary bindings created for cleanups are popped silently. */
828 if (kind == sk_cleanup)
829 goto restart;
831 return block;
834 /* Call wrapup_globals_declarations for the globals in NAMESPACE. */
835 /* Diagnose odr-used extern inline variables without definitions
836 in the current TU. */
839 wrapup_namespace_globals ()
841 if (vec<tree, va_gc> *statics = static_decls)
843 for (tree decl : *statics)
845 if (warn_unused_function
846 && TREE_CODE (decl) == FUNCTION_DECL
847 && DECL_INITIAL (decl) == 0
848 && DECL_EXTERNAL (decl)
849 && !TREE_PUBLIC (decl)
850 && !DECL_ARTIFICIAL (decl)
851 && !DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl)
852 && !warning_suppressed_p (decl, OPT_Wunused_function))
853 warning_at (DECL_SOURCE_LOCATION (decl),
854 OPT_Wunused_function,
855 "%qF declared %<static%> but never defined", decl);
857 if (VAR_P (decl)
858 && DECL_EXTERNAL (decl)
859 && DECL_INLINE_VAR_P (decl)
860 && DECL_ODR_USED (decl))
861 error_at (DECL_SOURCE_LOCATION (decl),
862 "odr-used inline variable %qD is not defined", decl);
865 /* Clear out the list, so we don't rescan next time. */
866 static_decls = NULL;
868 /* Write out any globals that need to be output. */
869 return wrapup_global_declarations (statics->address (),
870 statics->length ());
872 return 0;
875 /* In C++, you don't have to write `struct S' to refer to `S'; you
876 can just use `S'. We accomplish this by creating a TYPE_DECL as
877 if the user had written `typedef struct S S'. Create and return
878 the TYPE_DECL for TYPE. */
880 tree
881 create_implicit_typedef (tree name, tree type)
883 tree decl;
885 decl = build_decl (input_location, TYPE_DECL, name, type);
886 DECL_ARTIFICIAL (decl) = 1;
887 /* There are other implicit type declarations, like the one *within*
888 a class that allows you to write `S::S'. We must distinguish
889 amongst these. */
890 SET_DECL_IMPLICIT_TYPEDEF_P (decl);
891 TYPE_NAME (type) = decl;
892 TYPE_STUB_DECL (type) = decl;
894 return decl;
897 /* Function-scope local entities that need discriminators. Each entry
898 is a {decl,name} pair. VAR_DECLs for anon unions get their name
899 smashed, so we cannot rely on DECL_NAME. */
901 static GTY((deletable)) vec<tree, va_gc> *local_entities;
903 /* Determine the mangling discriminator of local DECL. There are
904 generally very few of these in any particular function. */
906 void
907 determine_local_discriminator (tree decl)
909 auto_cond_timevar tv (TV_NAME_LOOKUP);
910 retrofit_lang_decl (decl);
911 tree ctx = DECL_CONTEXT (decl);
912 tree name = (TREE_CODE (decl) == TYPE_DECL
913 && TYPE_UNNAMED_P (TREE_TYPE (decl))
914 ? NULL_TREE : DECL_NAME (decl));
915 size_t nelts = vec_safe_length (local_entities);
916 for (size_t i = 0; i < nelts; i += 2)
918 tree *pair = &(*local_entities)[i];
919 tree d = pair[0];
920 tree n = pair[1];
921 gcc_checking_assert (d != decl);
922 if (name == n
923 && TREE_CODE (decl) == TREE_CODE (d)
924 && ctx == DECL_CONTEXT (d))
926 tree disc = integer_one_node;
927 if (DECL_DISCRIMINATOR (d))
928 disc = build_int_cst (TREE_TYPE (disc),
929 TREE_INT_CST_LOW (DECL_DISCRIMINATOR (d)) + 1);
930 DECL_DISCRIMINATOR (decl) = disc;
931 /* Replace the saved decl. */
932 pair[0] = decl;
933 decl = NULL_TREE;
934 break;
938 if (decl)
940 vec_safe_reserve (local_entities, 2);
941 local_entities->quick_push (decl);
942 local_entities->quick_push (name);
948 /* Returns true if functions FN1 and FN2 have equivalent trailing
949 requires clauses. */
951 static bool
952 function_requirements_equivalent_p (tree newfn, tree oldfn)
954 /* In the concepts TS, the combined constraints are compared. */
955 if (cxx_dialect < cxx20
956 && (DECL_TEMPLATE_SPECIALIZATION (newfn)
957 <= DECL_TEMPLATE_SPECIALIZATION (oldfn)))
959 tree ci1 = get_constraints (oldfn);
960 tree ci2 = get_constraints (newfn);
961 tree req1 = ci1 ? CI_ASSOCIATED_CONSTRAINTS (ci1) : NULL_TREE;
962 tree req2 = ci2 ? CI_ASSOCIATED_CONSTRAINTS (ci2) : NULL_TREE;
963 return cp_tree_equal (req1, req2);
966 /* Compare only trailing requirements. */
967 tree reqs1 = get_trailing_function_requirements (newfn);
968 tree reqs2 = get_trailing_function_requirements (oldfn);
969 if ((reqs1 != NULL_TREE) != (reqs2 != NULL_TREE))
970 return false;
972 /* Substitution is needed when friends are involved. */
973 reqs1 = maybe_substitute_reqs_for (reqs1, newfn);
974 reqs2 = maybe_substitute_reqs_for (reqs2, oldfn);
976 return cp_tree_equal (reqs1, reqs2);
979 /* Subroutine of duplicate_decls: return truthvalue of whether
980 or not types of these decls match.
982 For C++, we must compare the parameter list so that `int' can match
983 `int&' in a parameter position, but `int&' is not confused with
984 `const int&'. */
987 decls_match (tree newdecl, tree olddecl, bool record_versions /* = true */)
989 int types_match;
991 if (newdecl == olddecl)
992 return 1;
994 if (TREE_CODE (newdecl) != TREE_CODE (olddecl))
995 /* If the two DECLs are not even the same kind of thing, we're not
996 interested in their types. */
997 return 0;
999 gcc_assert (DECL_P (newdecl));
1001 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1003 /* Specializations of different templates are different functions
1004 even if they have the same type. */
1005 tree t1 = (DECL_USE_TEMPLATE (newdecl)
1006 ? DECL_TI_TEMPLATE (newdecl)
1007 : NULL_TREE);
1008 tree t2 = (DECL_USE_TEMPLATE (olddecl)
1009 ? DECL_TI_TEMPLATE (olddecl)
1010 : NULL_TREE);
1011 if (t1 != t2)
1012 return 0;
1014 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
1015 && ! (DECL_EXTERN_C_P (newdecl)
1016 && DECL_EXTERN_C_P (olddecl)))
1017 return 0;
1019 /* A new declaration doesn't match a built-in one unless it
1020 is also extern "C". */
1021 if (DECL_IS_UNDECLARED_BUILTIN (olddecl)
1022 && DECL_EXTERN_C_P (olddecl) && !DECL_EXTERN_C_P (newdecl))
1023 return 0;
1025 tree f1 = TREE_TYPE (newdecl);
1026 tree f2 = TREE_TYPE (olddecl);
1027 if (TREE_CODE (f1) != TREE_CODE (f2))
1028 return 0;
1030 /* A declaration with deduced return type should use its pre-deduction
1031 type for declaration matching. */
1032 tree r2 = fndecl_declared_return_type (olddecl);
1033 tree r1 = fndecl_declared_return_type (newdecl);
1035 tree p1 = TYPE_ARG_TYPES (f1);
1036 tree p2 = TYPE_ARG_TYPES (f2);
1038 if (same_type_p (r1, r2))
1040 if (!prototype_p (f2) && DECL_EXTERN_C_P (olddecl)
1041 && fndecl_built_in_p (olddecl))
1043 types_match = self_promoting_args_p (p1);
1044 if (p1 == void_list_node)
1045 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
1047 else
1048 types_match =
1049 compparms (p1, p2)
1050 && type_memfn_rqual (f1) == type_memfn_rqual (f2)
1051 && (TYPE_ATTRIBUTES (TREE_TYPE (newdecl)) == NULL_TREE
1052 || comp_type_attributes (TREE_TYPE (newdecl),
1053 TREE_TYPE (olddecl)) != 0);
1055 else
1056 types_match = 0;
1058 /* Two function declarations match if either has a requires-clause
1059 then both have a requires-clause and their constraints-expressions
1060 are equivalent. */
1061 if (types_match && flag_concepts)
1062 types_match = function_requirements_equivalent_p (newdecl, olddecl);
1064 /* The decls dont match if they correspond to two different versions
1065 of the same function. Disallow extern "C" functions to be
1066 versions for now. */
1067 if (types_match
1068 && !DECL_EXTERN_C_P (newdecl)
1069 && !DECL_EXTERN_C_P (olddecl)
1070 && targetm.target_option.function_versions (newdecl, olddecl))
1072 if (record_versions)
1073 maybe_version_functions (newdecl, olddecl,
1074 (!DECL_FUNCTION_VERSIONED (newdecl)
1075 || !DECL_FUNCTION_VERSIONED (olddecl)));
1076 return 0;
1079 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1081 if (!template_heads_equivalent_p (newdecl, olddecl))
1082 return 0;
1084 tree oldres = DECL_TEMPLATE_RESULT (olddecl);
1085 tree newres = DECL_TEMPLATE_RESULT (newdecl);
1087 if (TREE_CODE (newres) != TREE_CODE (oldres))
1088 return 0;
1090 /* Two template types match if they are the same. Otherwise, compare
1091 the underlying declarations. */
1092 if (TREE_CODE (newres) == TYPE_DECL)
1093 types_match = same_type_p (TREE_TYPE (newres), TREE_TYPE (oldres));
1094 else
1095 types_match = decls_match (newres, oldres);
1097 else
1099 /* Need to check scope for variable declaration (VAR_DECL).
1100 For typedef (TYPE_DECL), scope is ignored. */
1101 if (VAR_P (newdecl)
1102 && CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
1103 /* [dcl.link]
1104 Two declarations for an object with C language linkage
1105 with the same name (ignoring the namespace that qualify
1106 it) that appear in different namespace scopes refer to
1107 the same object. */
1108 && !(DECL_EXTERN_C_P (olddecl) && DECL_EXTERN_C_P (newdecl)))
1109 return 0;
1111 if (TREE_TYPE (newdecl) == error_mark_node)
1112 types_match = TREE_TYPE (olddecl) == error_mark_node;
1113 else if (TREE_TYPE (olddecl) == NULL_TREE)
1114 types_match = TREE_TYPE (newdecl) == NULL_TREE;
1115 else if (TREE_TYPE (newdecl) == NULL_TREE)
1116 types_match = 0;
1117 else
1118 types_match = comptypes (TREE_TYPE (newdecl),
1119 TREE_TYPE (olddecl),
1120 COMPARE_REDECLARATION);
1123 return types_match;
1126 /* Mark DECL as versioned if it isn't already. */
1128 static void
1129 maybe_mark_function_versioned (tree decl)
1131 if (!DECL_FUNCTION_VERSIONED (decl))
1133 DECL_FUNCTION_VERSIONED (decl) = 1;
1134 /* If DECL_ASSEMBLER_NAME has already been set, re-mangle
1135 to include the version marker. */
1136 if (DECL_ASSEMBLER_NAME_SET_P (decl))
1137 mangle_decl (decl);
1141 /* NEWDECL and OLDDECL have identical signatures. If they are
1142 different versions adjust them and return true.
1143 If RECORD is set to true, record function versions. */
1145 bool
1146 maybe_version_functions (tree newdecl, tree olddecl, bool record)
1148 if (!targetm.target_option.function_versions (newdecl, olddecl))
1149 return false;
1151 maybe_mark_function_versioned (olddecl);
1152 if (DECL_LOCAL_DECL_P (olddecl))
1154 olddecl = DECL_LOCAL_DECL_ALIAS (olddecl);
1155 maybe_mark_function_versioned (olddecl);
1158 maybe_mark_function_versioned (newdecl);
1159 if (DECL_LOCAL_DECL_P (newdecl))
1161 /* Unfortunately, we can get here before pushdecl naturally calls
1162 push_local_extern_decl_alias, so we need to call it directly. */
1163 if (!DECL_LOCAL_DECL_ALIAS (newdecl))
1164 push_local_extern_decl_alias (newdecl);
1165 newdecl = DECL_LOCAL_DECL_ALIAS (newdecl);
1166 maybe_mark_function_versioned (newdecl);
1169 if (record)
1170 cgraph_node::record_function_versions (olddecl, newdecl);
1172 return true;
1175 /* If NEWDECL is `static' and an `extern' was seen previously,
1176 warn about it. OLDDECL is the previous declaration.
1178 Note that this does not apply to the C++ case of declaring
1179 a variable `extern const' and then later `const'.
1181 Don't complain about built-in functions, since they are beyond
1182 the user's control. */
1184 void
1185 warn_extern_redeclared_static (tree newdecl, tree olddecl)
1187 if (TREE_CODE (newdecl) == TYPE_DECL
1188 || TREE_CODE (newdecl) == TEMPLATE_DECL
1189 || TREE_CODE (newdecl) == CONST_DECL
1190 || TREE_CODE (newdecl) == NAMESPACE_DECL)
1191 return;
1193 /* Don't get confused by static member functions; that's a different
1194 use of `static'. */
1195 if (TREE_CODE (newdecl) == FUNCTION_DECL
1196 && DECL_STATIC_FUNCTION_P (newdecl))
1197 return;
1199 /* If the old declaration was `static', or the new one isn't, then
1200 everything is OK. */
1201 if (DECL_THIS_STATIC (olddecl) || !DECL_THIS_STATIC (newdecl))
1202 return;
1204 /* It's OK to declare a builtin function as `static'. */
1205 if (TREE_CODE (olddecl) == FUNCTION_DECL
1206 && DECL_ARTIFICIAL (olddecl))
1207 return;
1209 auto_diagnostic_group d;
1210 if (permerror (DECL_SOURCE_LOCATION (newdecl),
1211 "%qD was declared %<extern%> and later %<static%>", newdecl))
1212 inform (DECL_SOURCE_LOCATION (olddecl),
1213 "previous declaration of %qD", olddecl);
1216 /* NEW_DECL is a redeclaration of OLD_DECL; both are functions or
1217 function templates. If their exception specifications do not
1218 match, issue a diagnostic. */
1220 static void
1221 check_redeclaration_exception_specification (tree new_decl,
1222 tree old_decl)
1224 tree new_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl));
1225 tree old_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl));
1227 /* Two default specs are equivalent, don't force evaluation. */
1228 if (UNEVALUATED_NOEXCEPT_SPEC_P (new_exceptions)
1229 && UNEVALUATED_NOEXCEPT_SPEC_P (old_exceptions))
1230 return;
1232 if (!type_dependent_expression_p (old_decl))
1234 maybe_instantiate_noexcept (new_decl);
1235 maybe_instantiate_noexcept (old_decl);
1237 new_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl));
1238 old_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl));
1240 /* [except.spec]
1242 If any declaration of a function has an exception-specification,
1243 all declarations, including the definition and an explicit
1244 specialization, of that function shall have an
1245 exception-specification with the same set of type-ids. */
1246 if (!DECL_IS_UNDECLARED_BUILTIN (old_decl)
1247 && !DECL_IS_UNDECLARED_BUILTIN (new_decl)
1248 && !comp_except_specs (new_exceptions, old_exceptions, ce_normal))
1250 const char *const msg
1251 = G_("declaration of %qF has a different exception specifier");
1252 bool complained = true;
1253 location_t new_loc = DECL_SOURCE_LOCATION (new_decl);
1254 auto_diagnostic_group d;
1255 if (DECL_IN_SYSTEM_HEADER (old_decl))
1256 complained = pedwarn (new_loc, OPT_Wsystem_headers, msg, new_decl);
1257 else if (!flag_exceptions)
1258 /* We used to silently permit mismatched eh specs with
1259 -fno-exceptions, so make them a pedwarn now. */
1260 complained = pedwarn (new_loc, OPT_Wpedantic, msg, new_decl);
1261 else
1262 error_at (new_loc, msg, new_decl);
1263 if (complained)
1264 inform (DECL_SOURCE_LOCATION (old_decl),
1265 "from previous declaration %qF", old_decl);
1269 /* Return true if OLD_DECL and NEW_DECL agree on constexprness.
1270 Otherwise issue diagnostics. */
1272 static bool
1273 validate_constexpr_redeclaration (tree old_decl, tree new_decl)
1275 old_decl = STRIP_TEMPLATE (old_decl);
1276 new_decl = STRIP_TEMPLATE (new_decl);
1277 if (!VAR_OR_FUNCTION_DECL_P (old_decl)
1278 || !VAR_OR_FUNCTION_DECL_P (new_decl))
1279 return true;
1280 if (DECL_DECLARED_CONSTEXPR_P (old_decl)
1281 == DECL_DECLARED_CONSTEXPR_P (new_decl))
1283 if (TREE_CODE (old_decl) != FUNCTION_DECL)
1284 return true;
1285 if (DECL_IMMEDIATE_FUNCTION_P (old_decl)
1286 == DECL_IMMEDIATE_FUNCTION_P (new_decl))
1287 return true;
1289 if (TREE_CODE (old_decl) == FUNCTION_DECL)
1291 /* With -fimplicit-constexpr, ignore changes in the constexpr
1292 keyword. */
1293 if (flag_implicit_constexpr
1294 && (DECL_IMMEDIATE_FUNCTION_P (new_decl)
1295 == DECL_IMMEDIATE_FUNCTION_P (old_decl)))
1296 return true;
1297 if (fndecl_built_in_p (old_decl))
1299 /* Hide a built-in declaration. */
1300 DECL_DECLARED_CONSTEXPR_P (old_decl)
1301 = DECL_DECLARED_CONSTEXPR_P (new_decl);
1302 if (DECL_IMMEDIATE_FUNCTION_P (new_decl))
1303 SET_DECL_IMMEDIATE_FUNCTION_P (old_decl);
1304 return true;
1306 /* 7.1.5 [dcl.constexpr]
1307 Note: An explicit specialization can differ from the template
1308 declaration with respect to the constexpr specifier. */
1309 if (! DECL_TEMPLATE_SPECIALIZATION (old_decl)
1310 && DECL_TEMPLATE_SPECIALIZATION (new_decl))
1311 return true;
1313 const char *kind = "constexpr";
1314 if (DECL_IMMEDIATE_FUNCTION_P (old_decl)
1315 || DECL_IMMEDIATE_FUNCTION_P (new_decl))
1316 kind = "consteval";
1317 error_at (DECL_SOURCE_LOCATION (new_decl),
1318 "redeclaration %qD differs in %qs "
1319 "from previous declaration", new_decl,
1320 kind);
1321 inform (DECL_SOURCE_LOCATION (old_decl),
1322 "previous declaration %qD", old_decl);
1323 return false;
1325 return true;
1328 // If OLDDECL and NEWDECL are concept declarations with the same type
1329 // (i.e., and template parameters), but different requirements,
1330 // emit diagnostics and return true. Otherwise, return false.
1331 static inline bool
1332 check_concept_refinement (tree olddecl, tree newdecl)
1334 if (!DECL_DECLARED_CONCEPT_P (olddecl) || !DECL_DECLARED_CONCEPT_P (newdecl))
1335 return false;
1337 tree d1 = DECL_TEMPLATE_RESULT (olddecl);
1338 tree d2 = DECL_TEMPLATE_RESULT (newdecl);
1339 if (TREE_CODE (d1) != TREE_CODE (d2))
1340 return false;
1342 tree t1 = TREE_TYPE (d1);
1343 tree t2 = TREE_TYPE (d2);
1344 if (TREE_CODE (d1) == FUNCTION_DECL)
1346 if (compparms (TYPE_ARG_TYPES (t1), TYPE_ARG_TYPES (t2))
1347 && comp_template_parms (DECL_TEMPLATE_PARMS (olddecl),
1348 DECL_TEMPLATE_PARMS (newdecl))
1349 && !equivalently_constrained (olddecl, newdecl))
1351 error ("cannot specialize concept %q#D", olddecl);
1352 return true;
1355 return false;
1358 /* DECL is a redeclaration of a function or function template. If
1359 it does have default arguments issue a diagnostic. Note: this
1360 function is used to enforce the requirements in C++11 8.3.6 about
1361 no default arguments in redeclarations. */
1363 static void
1364 check_redeclaration_no_default_args (tree decl)
1366 gcc_assert (DECL_DECLARES_FUNCTION_P (decl));
1368 for (tree t = FUNCTION_FIRST_USER_PARMTYPE (decl);
1369 t && t != void_list_node; t = TREE_CHAIN (t))
1370 if (TREE_PURPOSE (t))
1372 permerror (DECL_SOURCE_LOCATION (decl),
1373 "redeclaration of %q#D may not have default "
1374 "arguments", decl);
1375 return;
1379 /* NEWDECL is a redeclaration of a function or function template OLDDECL,
1380 in any case represented as FUNCTION_DECLs (the DECL_TEMPLATE_RESULTs of
1381 the TEMPLATE_DECLs in case of function templates). This function is used
1382 to enforce the final part of C++17 11.3.6/4, about a single declaration:
1383 "If a friend declaration specifies a default argument expression, that
1384 declaration shall be a definition and shall be the only declaration of
1385 the function or function template in the translation unit." */
1387 static void
1388 check_no_redeclaration_friend_default_args (tree olddecl, tree newdecl)
1390 if (!DECL_UNIQUE_FRIEND_P (olddecl) && !DECL_UNIQUE_FRIEND_P (newdecl))
1391 return;
1393 for (tree t1 = FUNCTION_FIRST_USER_PARMTYPE (olddecl),
1394 t2 = FUNCTION_FIRST_USER_PARMTYPE (newdecl);
1395 t1 && t1 != void_list_node;
1396 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
1397 if ((DECL_UNIQUE_FRIEND_P (olddecl) && TREE_PURPOSE (t1))
1398 || (DECL_UNIQUE_FRIEND_P (newdecl) && TREE_PURPOSE (t2)))
1400 auto_diagnostic_group d;
1401 if (permerror (DECL_SOURCE_LOCATION (newdecl),
1402 "friend declaration of %q#D specifies default "
1403 "arguments and isn%'t the only declaration", newdecl))
1404 inform (DECL_SOURCE_LOCATION (olddecl),
1405 "previous declaration of %q#D", olddecl);
1406 return;
1410 /* Merge tree bits that correspond to attributes noreturn, nothrow,
1411 const, malloc, and pure from NEWDECL with those of OLDDECL. */
1413 static void
1414 merge_attribute_bits (tree newdecl, tree olddecl)
1416 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1417 TREE_THIS_VOLATILE (olddecl) |= TREE_THIS_VOLATILE (newdecl);
1418 TREE_NOTHROW (newdecl) |= TREE_NOTHROW (olddecl);
1419 TREE_NOTHROW (olddecl) |= TREE_NOTHROW (newdecl);
1420 TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
1421 TREE_READONLY (olddecl) |= TREE_READONLY (newdecl);
1422 DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
1423 DECL_IS_MALLOC (olddecl) |= DECL_IS_MALLOC (newdecl);
1424 DECL_PURE_P (newdecl) |= DECL_PURE_P (olddecl);
1425 DECL_PURE_P (olddecl) |= DECL_PURE_P (newdecl);
1426 DECL_UNINLINABLE (newdecl) |= DECL_UNINLINABLE (olddecl);
1427 DECL_UNINLINABLE (olddecl) |= DECL_UNINLINABLE (newdecl);
1430 #define GNU_INLINE_P(fn) (DECL_DECLARED_INLINE_P (fn) \
1431 && lookup_attribute ("gnu_inline", \
1432 DECL_ATTRIBUTES (fn)))
1434 /* A subroutine of duplicate_decls. Emits a diagnostic when newdecl
1435 ambiguates olddecl. Returns true if an error occurs. */
1437 static bool
1438 duplicate_function_template_decls (tree newdecl, tree olddecl)
1441 tree newres = DECL_TEMPLATE_RESULT (newdecl);
1442 tree oldres = DECL_TEMPLATE_RESULT (olddecl);
1443 /* Function template declarations can be differentiated by parameter
1444 and return type. */
1445 if (compparms (TYPE_ARG_TYPES (TREE_TYPE (oldres)),
1446 TYPE_ARG_TYPES (TREE_TYPE (newres)))
1447 && same_type_p (TREE_TYPE (TREE_TYPE (newdecl)),
1448 TREE_TYPE (TREE_TYPE (olddecl))))
1450 /* ... and also by their template-heads and requires-clauses. */
1451 if (template_heads_equivalent_p (newdecl, olddecl)
1452 && function_requirements_equivalent_p (newres, oldres))
1454 error ("ambiguating new declaration %q+#D", newdecl);
1455 inform (DECL_SOURCE_LOCATION (olddecl),
1456 "old declaration %q#D", olddecl);
1457 return true;
1460 /* FIXME: The types are the same but the are differences
1461 in either the template heads or function requirements.
1462 We should be able to diagnose a set of common errors
1463 stemming from these declarations. For example:
1465 template<typename T> requires C void f(...);
1466 template<typename T> void f(...) requires C;
1468 These are functionally equivalent but not equivalent. */
1471 return false;
1474 /* OLD_PARMS is the innermost set of template parameters for some template
1475 declaration, and NEW_PARMS is the corresponding set of template parameters
1476 for a redeclaration of that template. Merge the default arguments within
1477 these two sets of parameters. CLASS_P is true iff the template in
1478 question is a class template. */
1480 bool
1481 merge_default_template_args (tree new_parms, tree old_parms, bool class_p)
1483 gcc_checking_assert (TREE_VEC_LENGTH (new_parms)
1484 == TREE_VEC_LENGTH (old_parms));
1485 for (int i = 0; i < TREE_VEC_LENGTH (new_parms); i++)
1487 tree new_parm = TREE_VALUE (TREE_VEC_ELT (new_parms, i));
1488 tree old_parm = TREE_VALUE (TREE_VEC_ELT (old_parms, i));
1489 tree& new_default = TREE_PURPOSE (TREE_VEC_ELT (new_parms, i));
1490 tree& old_default = TREE_PURPOSE (TREE_VEC_ELT (old_parms, i));
1491 if (new_default != NULL_TREE && old_default != NULL_TREE)
1493 auto_diagnostic_group d;
1494 error ("redefinition of default argument for %q+#D", new_parm);
1495 inform (DECL_SOURCE_LOCATION (old_parm),
1496 "original definition appeared here");
1497 return false;
1499 else if (new_default != NULL_TREE)
1500 /* Update the previous template parameters (which are the ones
1501 that will really count) with the new default value. */
1502 old_default = new_default;
1503 else if (class_p && old_default != NULL_TREE)
1504 /* Update the new parameters, too; they'll be used as the
1505 parameters for any members. */
1506 new_default = old_default;
1508 return true;
1511 /* If NEWDECL is a redeclaration of OLDDECL, merge the declarations.
1512 If the redeclaration is invalid, a diagnostic is issued, and the
1513 error_mark_node is returned. Otherwise, OLDDECL is returned.
1515 If NEWDECL is not a redeclaration of OLDDECL, NULL_TREE is
1516 returned.
1518 HIDING is true if the new decl is being hidden. WAS_HIDDEN is true
1519 if the old decl was hidden.
1521 Hidden decls can be anticipated builtins, injected friends, or
1522 (coming soon) injected from a local-extern decl. */
1524 tree
1525 duplicate_decls (tree newdecl, tree olddecl, bool hiding, bool was_hidden)
1527 unsigned olddecl_uid = DECL_UID (olddecl);
1528 int types_match = 0;
1529 int new_defines_function = 0;
1530 tree new_template_info;
1531 location_t olddecl_loc = DECL_SOURCE_LOCATION (olddecl);
1532 location_t newdecl_loc = DECL_SOURCE_LOCATION (newdecl);
1534 if (newdecl == olddecl)
1535 return olddecl;
1537 types_match = decls_match (newdecl, olddecl);
1539 /* If either the type of the new decl or the type of the old decl is an
1540 error_mark_node, then that implies that we have already issued an
1541 error (earlier) for some bogus type specification, and in that case,
1542 it is rather pointless to harass the user with yet more error message
1543 about the same declaration, so just pretend the types match here. */
1544 if (TREE_TYPE (newdecl) == error_mark_node
1545 || TREE_TYPE (olddecl) == error_mark_node)
1546 return error_mark_node;
1548 /* Check for redeclaration and other discrepancies. */
1549 if (TREE_CODE (olddecl) == FUNCTION_DECL
1550 && DECL_IS_UNDECLARED_BUILTIN (olddecl))
1552 if (TREE_CODE (newdecl) != FUNCTION_DECL)
1554 /* Avoid warnings redeclaring built-ins which have not been
1555 explicitly declared. */
1556 if (was_hidden)
1558 if (TREE_PUBLIC (newdecl)
1559 && CP_DECL_CONTEXT (newdecl) == global_namespace)
1560 warning_at (newdecl_loc,
1561 OPT_Wbuiltin_declaration_mismatch,
1562 "built-in function %qD declared as non-function",
1563 newdecl);
1564 return NULL_TREE;
1567 /* If you declare a built-in or predefined function name as static,
1568 the old definition is overridden, but optionally warn this was a
1569 bad choice of name. */
1570 if (! TREE_PUBLIC (newdecl))
1572 warning_at (newdecl_loc,
1573 OPT_Wshadow,
1574 fndecl_built_in_p (olddecl)
1575 ? G_("shadowing built-in function %q#D")
1576 : G_("shadowing library function %q#D"), olddecl);
1577 /* Discard the old built-in function. */
1578 return NULL_TREE;
1580 /* If the built-in is not ansi, then programs can override
1581 it even globally without an error. */
1582 else if (! fndecl_built_in_p (olddecl))
1583 warning_at (newdecl_loc, 0,
1584 "library function %q#D redeclared as non-function %q#D",
1585 olddecl, newdecl);
1586 else
1587 error_at (newdecl_loc,
1588 "declaration of %q#D conflicts with built-in "
1589 "declaration %q#D", newdecl, olddecl);
1590 return NULL_TREE;
1592 else if (!types_match)
1594 /* Avoid warnings redeclaring built-ins which have not been
1595 explicitly declared. */
1596 if (was_hidden)
1598 tree t1, t2;
1600 /* A new declaration doesn't match a built-in one unless it
1601 is also extern "C". */
1602 gcc_assert (DECL_IS_UNDECLARED_BUILTIN (olddecl));
1603 gcc_assert (DECL_EXTERN_C_P (olddecl));
1604 if (!DECL_EXTERN_C_P (newdecl))
1605 return NULL_TREE;
1607 for (t1 = TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1608 t2 = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1609 t1 || t2;
1610 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
1612 if (!t1 || !t2)
1613 break;
1614 /* FILE, tm types are not known at the time
1615 we create the builtins. */
1616 for (unsigned i = 0;
1617 i < sizeof (builtin_structptr_types)
1618 / sizeof (builtin_structptr_type);
1619 ++i)
1620 if (TREE_VALUE (t2) == builtin_structptr_types[i].node)
1622 tree t = TREE_VALUE (t1);
1624 if (TYPE_PTR_P (t)
1625 && TYPE_IDENTIFIER (TREE_TYPE (t))
1626 == get_identifier (builtin_structptr_types[i].str)
1627 && compparms (TREE_CHAIN (t1), TREE_CHAIN (t2)))
1629 tree oldargs = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1631 TYPE_ARG_TYPES (TREE_TYPE (olddecl))
1632 = TYPE_ARG_TYPES (TREE_TYPE (newdecl));
1633 types_match = decls_match (newdecl, olddecl);
1634 if (types_match)
1635 return duplicate_decls (newdecl, olddecl,
1636 hiding, was_hidden);
1637 TYPE_ARG_TYPES (TREE_TYPE (olddecl)) = oldargs;
1639 goto next_arg;
1642 if (! same_type_p (TREE_VALUE (t1), TREE_VALUE (t2)))
1643 break;
1644 next_arg:;
1647 warning_at (newdecl_loc,
1648 OPT_Wbuiltin_declaration_mismatch,
1649 "declaration of %q#D conflicts with built-in "
1650 "declaration %q#D", newdecl, olddecl);
1652 else if ((DECL_EXTERN_C_P (newdecl)
1653 && DECL_EXTERN_C_P (olddecl))
1654 || compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1655 TYPE_ARG_TYPES (TREE_TYPE (olddecl))))
1657 /* Don't really override olddecl for __* prefixed builtins
1658 except for __[^b]*_chk, the compiler might be using those
1659 explicitly. */
1660 if (fndecl_built_in_p (olddecl))
1662 tree id = DECL_NAME (olddecl);
1663 const char *name = IDENTIFIER_POINTER (id);
1664 size_t len;
1666 if (name[0] == '_'
1667 && name[1] == '_'
1668 && (startswith (name + 2, "builtin_")
1669 || (len = strlen (name)) <= strlen ("___chk")
1670 || memcmp (name + len - strlen ("_chk"),
1671 "_chk", strlen ("_chk") + 1) != 0))
1673 if (DECL_INITIAL (newdecl))
1675 error_at (newdecl_loc,
1676 "definition of %q#D ambiguates built-in "
1677 "declaration %q#D", newdecl, olddecl);
1678 return error_mark_node;
1680 auto_diagnostic_group d;
1681 if (permerror (newdecl_loc,
1682 "new declaration %q#D ambiguates built-in"
1683 " declaration %q#D", newdecl, olddecl)
1684 && flag_permissive)
1685 inform (newdecl_loc,
1686 "ignoring the %q#D declaration", newdecl);
1687 return flag_permissive ? olddecl : error_mark_node;
1691 /* A near match; override the builtin. */
1693 if (TREE_PUBLIC (newdecl))
1694 warning_at (newdecl_loc,
1695 OPT_Wbuiltin_declaration_mismatch,
1696 "new declaration %q#D ambiguates built-in "
1697 "declaration %q#D", newdecl, olddecl);
1698 else
1699 warning (OPT_Wshadow,
1700 fndecl_built_in_p (olddecl)
1701 ? G_("shadowing built-in function %q#D")
1702 : G_("shadowing library function %q#D"), olddecl);
1704 else
1705 /* Discard the old built-in function. */
1706 return NULL_TREE;
1708 /* Replace the old RTL to avoid problems with inlining. */
1709 COPY_DECL_RTL (newdecl, olddecl);
1711 else
1713 /* Even if the types match, prefer the new declarations type
1714 for built-ins which have not been explicitly declared,
1715 for exception lists, etc... */
1716 tree type = TREE_TYPE (newdecl);
1717 tree attribs = (*targetm.merge_type_attributes)
1718 (TREE_TYPE (olddecl), type);
1720 type = cp_build_type_attribute_variant (type, attribs);
1721 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = type;
1724 /* If a function is explicitly declared "throw ()", propagate that to
1725 the corresponding builtin. */
1726 if (DECL_BUILT_IN_CLASS (olddecl) == BUILT_IN_NORMAL
1727 && was_hidden
1728 && TREE_NOTHROW (newdecl)
1729 && !TREE_NOTHROW (olddecl))
1731 enum built_in_function fncode = DECL_FUNCTION_CODE (olddecl);
1732 tree tmpdecl = builtin_decl_explicit (fncode);
1733 if (tmpdecl && tmpdecl != olddecl && types_match)
1734 TREE_NOTHROW (tmpdecl) = 1;
1737 /* Whether or not the builtin can throw exceptions has no
1738 bearing on this declarator. */
1739 TREE_NOTHROW (olddecl) = 0;
1741 if (DECL_THIS_STATIC (newdecl) && !DECL_THIS_STATIC (olddecl))
1743 /* If a builtin function is redeclared as `static', merge
1744 the declarations, but make the original one static. */
1745 DECL_THIS_STATIC (olddecl) = 1;
1746 TREE_PUBLIC (olddecl) = 0;
1748 /* Make the old declaration consistent with the new one so
1749 that all remnants of the builtin-ness of this function
1750 will be banished. */
1751 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
1752 COPY_DECL_RTL (newdecl, olddecl);
1755 else if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1757 /* C++ Standard, 3.3, clause 4:
1758 "[Note: a namespace name or a class template name must be unique
1759 in its declarative region (7.3.2, clause 14). ]" */
1760 if (TREE_CODE (olddecl) == NAMESPACE_DECL
1761 || TREE_CODE (newdecl) == NAMESPACE_DECL)
1762 /* Namespace conflicts with not namespace. */;
1763 else if (DECL_TYPE_TEMPLATE_P (olddecl)
1764 || DECL_TYPE_TEMPLATE_P (newdecl))
1765 /* Class template conflicts. */;
1766 else if ((TREE_CODE (olddecl) == TEMPLATE_DECL
1767 && DECL_TEMPLATE_RESULT (olddecl)
1768 && TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == VAR_DECL)
1769 || (TREE_CODE (newdecl) == TEMPLATE_DECL
1770 && DECL_TEMPLATE_RESULT (newdecl)
1771 && TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == VAR_DECL))
1772 /* Variable template conflicts. */;
1773 else if (concept_definition_p (olddecl)
1774 || concept_definition_p (newdecl))
1775 /* Concept conflicts. */;
1776 else if ((TREE_CODE (newdecl) == FUNCTION_DECL
1777 && DECL_FUNCTION_TEMPLATE_P (olddecl))
1778 || (TREE_CODE (olddecl) == FUNCTION_DECL
1779 && DECL_FUNCTION_TEMPLATE_P (newdecl)))
1781 /* One is a function and the other is a template
1782 function. */
1783 if (!UDLIT_OPER_P (DECL_NAME (newdecl)))
1784 return NULL_TREE;
1786 /* There can only be one! */
1787 if (TREE_CODE (newdecl) == TEMPLATE_DECL
1788 && check_raw_literal_operator (olddecl))
1789 error_at (newdecl_loc,
1790 "literal operator %q#D conflicts with"
1791 " raw literal operator", newdecl);
1792 else if (check_raw_literal_operator (newdecl))
1793 error_at (newdecl_loc,
1794 "raw literal operator %q#D conflicts with"
1795 " literal operator template", newdecl);
1796 else
1797 return NULL_TREE;
1799 inform (olddecl_loc, "previous declaration %q#D", olddecl);
1800 return error_mark_node;
1802 else if ((VAR_P (olddecl) && DECL_DECOMPOSITION_P (olddecl))
1803 || (VAR_P (newdecl) && DECL_DECOMPOSITION_P (newdecl)))
1804 /* A structured binding must be unique in its declarative region. */;
1805 else if (DECL_IMPLICIT_TYPEDEF_P (olddecl)
1806 || DECL_IMPLICIT_TYPEDEF_P (newdecl))
1807 /* One is an implicit typedef, that's ok. */
1808 return NULL_TREE;
1810 error ("%q#D redeclared as different kind of entity", newdecl);
1811 inform (olddecl_loc, "previous declaration %q#D", olddecl);
1813 return error_mark_node;
1815 else if (!types_match)
1817 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl))
1818 /* These are certainly not duplicate declarations; they're
1819 from different scopes. */
1820 return NULL_TREE;
1822 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1824 tree oldres = DECL_TEMPLATE_RESULT (olddecl);
1825 tree newres = DECL_TEMPLATE_RESULT (newdecl);
1827 /* The name of a class template may not be declared to refer to
1828 any other template, class, function, object, namespace, value,
1829 or type in the same scope. */
1830 if (TREE_CODE (oldres) == TYPE_DECL
1831 || TREE_CODE (newres) == TYPE_DECL)
1833 error_at (newdecl_loc,
1834 "conflicting declaration of template %q#D", newdecl);
1835 inform (olddecl_loc,
1836 "previous declaration %q#D", olddecl);
1837 return error_mark_node;
1840 else if (TREE_CODE (oldres) == FUNCTION_DECL
1841 && TREE_CODE (newres) == FUNCTION_DECL)
1843 if (duplicate_function_template_decls (newdecl, olddecl))
1844 return error_mark_node;
1845 return NULL_TREE;
1847 else if (check_concept_refinement (olddecl, newdecl))
1848 return error_mark_node;
1849 return NULL_TREE;
1851 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1853 if (DECL_EXTERN_C_P (newdecl) && DECL_EXTERN_C_P (olddecl))
1855 error_at (newdecl_loc,
1856 "conflicting declaration of C function %q#D",
1857 newdecl);
1858 inform (olddecl_loc,
1859 "previous declaration %q#D", olddecl);
1860 return error_mark_node;
1862 /* For function versions, params and types match, but they
1863 are not ambiguous. */
1864 else if ((!DECL_FUNCTION_VERSIONED (newdecl)
1865 && !DECL_FUNCTION_VERSIONED (olddecl))
1866 // The functions have the same parameter types.
1867 && compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1868 TYPE_ARG_TYPES (TREE_TYPE (olddecl)))
1869 // And the same constraints.
1870 && equivalently_constrained (newdecl, olddecl))
1872 error_at (newdecl_loc,
1873 "ambiguating new declaration of %q#D", newdecl);
1874 inform (olddecl_loc,
1875 "old declaration %q#D", olddecl);
1876 return error_mark_node;
1878 else
1879 return NULL_TREE;
1881 else
1883 error_at (newdecl_loc, "conflicting declaration %q#D", newdecl);
1884 inform (olddecl_loc,
1885 "previous declaration as %q#D", olddecl);
1886 return error_mark_node;
1889 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1890 && DECL_OMP_DECLARE_REDUCTION_P (newdecl))
1892 /* OMP UDRs are never duplicates. */
1893 gcc_assert (DECL_OMP_DECLARE_REDUCTION_P (olddecl));
1894 error_at (newdecl_loc,
1895 "redeclaration of %<pragma omp declare reduction%>");
1896 inform (olddecl_loc,
1897 "previous %<pragma omp declare reduction%> declaration");
1898 return error_mark_node;
1900 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1901 && ((DECL_TEMPLATE_SPECIALIZATION (olddecl)
1902 && (!DECL_TEMPLATE_INFO (newdecl)
1903 || (DECL_TI_TEMPLATE (newdecl)
1904 != DECL_TI_TEMPLATE (olddecl))))
1905 || (DECL_TEMPLATE_SPECIALIZATION (newdecl)
1906 && (!DECL_TEMPLATE_INFO (olddecl)
1907 || (DECL_TI_TEMPLATE (olddecl)
1908 != DECL_TI_TEMPLATE (newdecl))))))
1909 /* It's OK to have a template specialization and a non-template
1910 with the same type, or to have specializations of two
1911 different templates with the same type. Note that if one is a
1912 specialization, and the other is an instantiation of the same
1913 template, that we do not exit at this point. That situation
1914 can occur if we instantiate a template class, and then
1915 specialize one of its methods. This situation is valid, but
1916 the declarations must be merged in the usual way. */
1917 return NULL_TREE;
1918 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1919 && ((DECL_TEMPLATE_INSTANTIATION (olddecl)
1920 && !DECL_USE_TEMPLATE (newdecl))
1921 || (DECL_TEMPLATE_INSTANTIATION (newdecl)
1922 && !DECL_USE_TEMPLATE (olddecl))))
1923 /* One of the declarations is a template instantiation, and the
1924 other is not a template at all. That's OK. */
1925 return NULL_TREE;
1926 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
1928 /* In [namespace.alias] we have:
1930 In a declarative region, a namespace-alias-definition can be
1931 used to redefine a namespace-alias declared in that declarative
1932 region to refer only to the namespace to which it already
1933 refers.
1935 Therefore, if we encounter a second alias directive for the same
1936 alias, we can just ignore the second directive. */
1937 if (DECL_NAMESPACE_ALIAS (newdecl)
1938 && (DECL_NAMESPACE_ALIAS (newdecl)
1939 == DECL_NAMESPACE_ALIAS (olddecl)))
1940 return olddecl;
1942 /* Leave it to update_binding to merge or report error. */
1943 return NULL_TREE;
1945 else
1947 const char *errmsg = redeclaration_error_message (newdecl, olddecl);
1948 if (errmsg)
1950 auto_diagnostic_group d;
1951 error_at (newdecl_loc, errmsg, newdecl);
1952 if (DECL_NAME (olddecl) != NULL_TREE)
1953 inform (olddecl_loc,
1954 (DECL_INITIAL (olddecl) && namespace_bindings_p ())
1955 ? G_("%q#D previously defined here")
1956 : G_("%q#D previously declared here"), olddecl);
1957 return error_mark_node;
1959 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1960 && DECL_INITIAL (olddecl) != NULL_TREE
1961 && !prototype_p (TREE_TYPE (olddecl))
1962 && prototype_p (TREE_TYPE (newdecl)))
1964 /* Prototype decl follows defn w/o prototype. */
1965 auto_diagnostic_group d;
1966 if (warning_at (newdecl_loc, 0,
1967 "prototype specified for %q#D", newdecl))
1968 inform (olddecl_loc,
1969 "previous non-prototype definition here");
1971 else if (VAR_OR_FUNCTION_DECL_P (olddecl)
1972 && DECL_LANGUAGE (newdecl) != DECL_LANGUAGE (olddecl))
1974 /* [dcl.link]
1975 If two declarations of the same function or object
1976 specify different linkage-specifications ..., the program
1977 is ill-formed.... Except for functions with C++ linkage,
1978 a function declaration without a linkage specification
1979 shall not precede the first linkage specification for
1980 that function. A function can be declared without a
1981 linkage specification after an explicit linkage
1982 specification has been seen; the linkage explicitly
1983 specified in the earlier declaration is not affected by
1984 such a function declaration.
1986 DR 563 raises the question why the restrictions on
1987 functions should not also apply to objects. Older
1988 versions of G++ silently ignore the linkage-specification
1989 for this example:
1991 namespace N {
1992 extern int i;
1993 extern "C" int i;
1996 which is clearly wrong. Therefore, we now treat objects
1997 like functions. */
1998 if (current_lang_depth () == 0)
2000 /* There is no explicit linkage-specification, so we use
2001 the linkage from the previous declaration. */
2002 retrofit_lang_decl (newdecl);
2003 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
2005 else
2007 auto_diagnostic_group d;
2008 error_at (newdecl_loc,
2009 "conflicting declaration of %q#D with %qL linkage",
2010 newdecl, DECL_LANGUAGE (newdecl));
2011 inform (olddecl_loc,
2012 "previous declaration with %qL linkage",
2013 DECL_LANGUAGE (olddecl));
2017 if (DECL_LANG_SPECIFIC (olddecl) && DECL_USE_TEMPLATE (olddecl))
2019 else if (TREE_CODE (olddecl) == FUNCTION_DECL)
2021 /* Note: free functions, as TEMPLATE_DECLs, are handled below. */
2022 if (DECL_FUNCTION_MEMBER_P (olddecl)
2023 && (/* grokfndecl passes member function templates too
2024 as FUNCTION_DECLs. */
2025 DECL_TEMPLATE_INFO (olddecl)
2026 /* C++11 8.3.6/6.
2027 Default arguments for a member function of a class
2028 template shall be specified on the initial declaration
2029 of the member function within the class template. */
2030 || CLASSTYPE_TEMPLATE_INFO (CP_DECL_CONTEXT (olddecl))))
2032 check_redeclaration_no_default_args (newdecl);
2034 if (DECL_TEMPLATE_INFO (olddecl)
2035 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (olddecl)))
2037 tree new_parms = DECL_TEMPLATE_INFO (newdecl)
2038 ? DECL_INNERMOST_TEMPLATE_PARMS (DECL_TI_TEMPLATE (newdecl))
2039 : INNERMOST_TEMPLATE_PARMS (current_template_parms);
2040 tree old_parms
2041 = DECL_INNERMOST_TEMPLATE_PARMS (DECL_TI_TEMPLATE (olddecl));
2042 merge_default_template_args (new_parms, old_parms,
2043 /*class_p=*/false);
2046 else
2048 tree t1 = FUNCTION_FIRST_USER_PARMTYPE (olddecl);
2049 tree t2 = FUNCTION_FIRST_USER_PARMTYPE (newdecl);
2050 int i = 1;
2052 for (; t1 && t1 != void_list_node;
2053 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2), i++)
2054 if (TREE_PURPOSE (t1) && TREE_PURPOSE (t2))
2056 if (simple_cst_equal (TREE_PURPOSE (t1),
2057 TREE_PURPOSE (t2)) == 1)
2059 auto_diagnostic_group d;
2060 if (permerror (newdecl_loc,
2061 "default argument given for parameter "
2062 "%d of %q#D", i, newdecl))
2063 inform (olddecl_loc,
2064 "previous specification in %q#D here",
2065 olddecl);
2067 else
2069 auto_diagnostic_group d;
2070 error_at (newdecl_loc,
2071 "default argument given for parameter %d "
2072 "of %q#D", i, newdecl);
2073 inform (olddecl_loc,
2074 "previous specification in %q#D here",
2075 olddecl);
2079 /* C++17 11.3.6/4: "If a friend declaration specifies a default
2080 argument expression, that declaration... shall be the only
2081 declaration of the function or function template in the
2082 translation unit." */
2083 check_no_redeclaration_friend_default_args (olddecl, newdecl);
2088 /* Do not merge an implicit typedef with an explicit one. In:
2090 class A;
2092 typedef class A A __attribute__ ((foo));
2094 the attribute should apply only to the typedef. */
2095 if (TREE_CODE (olddecl) == TYPE_DECL
2096 && (DECL_IMPLICIT_TYPEDEF_P (olddecl)
2097 || DECL_IMPLICIT_TYPEDEF_P (newdecl)))
2098 return NULL_TREE;
2100 if (DECL_TEMPLATE_PARM_P (olddecl) != DECL_TEMPLATE_PARM_P (newdecl))
2101 return NULL_TREE;
2103 if (!validate_constexpr_redeclaration (olddecl, newdecl))
2104 return error_mark_node;
2106 if (modules_p ()
2107 && TREE_CODE (CP_DECL_CONTEXT (olddecl)) == NAMESPACE_DECL
2108 && TREE_CODE (olddecl) != NAMESPACE_DECL
2109 && !hiding)
2111 if (!module_may_redeclare (olddecl))
2113 if (DECL_ARTIFICIAL (olddecl))
2114 error ("declaration %qD conflicts with builtin", newdecl);
2115 else
2117 error ("declaration %qD conflicts with import", newdecl);
2118 inform (olddecl_loc, "import declared %q#D here", olddecl);
2121 return error_mark_node;
2124 tree not_tmpl = STRIP_TEMPLATE (olddecl);
2125 if (DECL_LANG_SPECIFIC (not_tmpl) && DECL_MODULE_ATTACH_P (not_tmpl))
2127 if (DECL_MODULE_EXPORT_P (STRIP_TEMPLATE (newdecl))
2128 && !DECL_MODULE_EXPORT_P (not_tmpl))
2130 error ("conflicting exporting declaration %qD", newdecl);
2131 inform (olddecl_loc, "previous declaration %q#D here", olddecl);
2134 else if (DECL_MODULE_EXPORT_P (newdecl))
2135 DECL_MODULE_EXPORT_P (not_tmpl) = true;
2138 /* We have committed to returning OLDDECL at this point. */
2140 /* If new decl is `static' and an `extern' was seen previously,
2141 warn about it. */
2142 warn_extern_redeclared_static (newdecl, olddecl);
2144 /* True to merge attributes between the declarations, false to
2145 set OLDDECL's attributes to those of NEWDECL (for template
2146 explicit specializations that specify their own attributes
2147 independent of those specified for the primary template). */
2148 const bool merge_attr = (TREE_CODE (newdecl) != FUNCTION_DECL
2149 || !DECL_TEMPLATE_SPECIALIZATION (newdecl)
2150 || DECL_TEMPLATE_SPECIALIZATION (olddecl));
2152 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2154 if (merge_attr)
2156 if (diagnose_mismatched_attributes (olddecl, newdecl))
2157 inform (olddecl_loc, DECL_INITIAL (olddecl)
2158 ? G_("previous definition of %qD here")
2159 : G_("previous declaration of %qD here"), olddecl);
2161 /* [dcl.attr.noreturn]: The first declaration of a function shall
2162 specify the noreturn attribute if any declaration of that function
2163 specifies the noreturn attribute. */
2164 tree a;
2165 if (TREE_THIS_VOLATILE (newdecl)
2166 && !TREE_THIS_VOLATILE (olddecl)
2167 /* This applies to [[noreturn]] only, not its GNU variants. */
2168 && (a = lookup_attribute ("noreturn", DECL_ATTRIBUTES (newdecl)))
2169 && cxx11_attribute_p (a)
2170 && get_attribute_namespace (a) == NULL_TREE)
2172 error_at (newdecl_loc, "function %qD declared %<[[noreturn]]%> "
2173 "but its first declaration was not", newdecl);
2174 inform (olddecl_loc, "previous declaration of %qD", olddecl);
2178 /* Now that functions must hold information normally held
2179 by field decls, there is extra work to do so that
2180 declaration information does not get destroyed during
2181 definition. */
2182 if (DECL_VINDEX (olddecl))
2183 DECL_VINDEX (newdecl) = DECL_VINDEX (olddecl);
2184 if (DECL_CONTEXT (olddecl))
2185 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
2186 DECL_STATIC_CONSTRUCTOR (newdecl) |= DECL_STATIC_CONSTRUCTOR (olddecl);
2187 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
2188 DECL_PURE_VIRTUAL_P (newdecl) |= DECL_PURE_VIRTUAL_P (olddecl);
2189 DECL_VIRTUAL_P (newdecl) |= DECL_VIRTUAL_P (olddecl);
2190 DECL_INVALID_OVERRIDER_P (newdecl) |= DECL_INVALID_OVERRIDER_P (olddecl);
2191 DECL_FINAL_P (newdecl) |= DECL_FINAL_P (olddecl);
2192 DECL_OVERRIDE_P (newdecl) |= DECL_OVERRIDE_P (olddecl);
2193 DECL_THIS_STATIC (newdecl) |= DECL_THIS_STATIC (olddecl);
2194 DECL_HAS_DEPENDENT_EXPLICIT_SPEC_P (newdecl)
2195 |= DECL_HAS_DEPENDENT_EXPLICIT_SPEC_P (olddecl);
2196 if (DECL_OVERLOADED_OPERATOR_P (olddecl))
2197 DECL_OVERLOADED_OPERATOR_CODE_RAW (newdecl)
2198 = DECL_OVERLOADED_OPERATOR_CODE_RAW (olddecl);
2199 new_defines_function = DECL_INITIAL (newdecl) != NULL_TREE;
2201 /* Optionally warn about more than one declaration for the same
2202 name, but don't warn about a function declaration followed by a
2203 definition. */
2204 if (warn_redundant_decls && ! DECL_ARTIFICIAL (olddecl)
2205 && !(new_defines_function && DECL_INITIAL (olddecl) == NULL_TREE)
2206 /* Don't warn about extern decl followed by definition. */
2207 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl))
2208 /* Don't warn if at least one is/was hidden. */
2209 && !(hiding || was_hidden)
2210 /* Don't warn about declaration followed by specialization. */
2211 && (! DECL_TEMPLATE_SPECIALIZATION (newdecl)
2212 || DECL_TEMPLATE_SPECIALIZATION (olddecl)))
2214 auto_diagnostic_group d;
2215 if (warning_at (newdecl_loc,
2216 OPT_Wredundant_decls,
2217 "redundant redeclaration of %qD in same scope",
2218 newdecl))
2219 inform (olddecl_loc,
2220 "previous declaration of %qD", olddecl);
2223 /* [dcl.fct.def.delete] A deleted definition of a function shall be the
2224 first declaration of the function or, for an explicit specialization
2225 of a function template, the first declaration of that
2226 specialization. */
2227 if (!(DECL_TEMPLATE_INSTANTIATION (olddecl)
2228 && DECL_TEMPLATE_SPECIALIZATION (newdecl)))
2230 if (DECL_DELETED_FN (newdecl))
2232 auto_diagnostic_group d;
2233 if (pedwarn (newdecl_loc, 0, "deleted definition of %qD "
2234 "is not first declaration", newdecl))
2235 inform (olddecl_loc,
2236 "previous declaration of %qD", olddecl);
2238 DECL_DELETED_FN (newdecl) |= DECL_DELETED_FN (olddecl);
2242 /* Deal with C++: must preserve virtual function table size. */
2243 if (TREE_CODE (olddecl) == TYPE_DECL)
2245 tree newtype = TREE_TYPE (newdecl);
2246 tree oldtype = TREE_TYPE (olddecl);
2248 if (newtype != error_mark_node && oldtype != error_mark_node
2249 && TYPE_LANG_SPECIFIC (newtype) && TYPE_LANG_SPECIFIC (oldtype))
2250 CLASSTYPE_FRIEND_CLASSES (newtype)
2251 = CLASSTYPE_FRIEND_CLASSES (oldtype);
2253 DECL_ORIGINAL_TYPE (newdecl) = DECL_ORIGINAL_TYPE (olddecl);
2256 /* Copy all the DECL_... slots specified in the new decl except for
2257 any that we copy here from the old type. */
2258 if (merge_attr)
2259 DECL_ATTRIBUTES (newdecl)
2260 = (*targetm.merge_decl_attributes) (olddecl, newdecl);
2261 else
2262 DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
2264 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
2266 tree old_result = DECL_TEMPLATE_RESULT (olddecl);
2267 tree new_result = DECL_TEMPLATE_RESULT (newdecl);
2268 TREE_TYPE (olddecl) = TREE_TYPE (old_result);
2270 /* The new decl should not already have gathered any
2271 specializations. */
2272 gcc_assert (!DECL_TEMPLATE_SPECIALIZATIONS (newdecl));
2274 DECL_ATTRIBUTES (old_result)
2275 = (*targetm.merge_decl_attributes) (old_result, new_result);
2277 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
2279 if (DECL_SOURCE_LOCATION (newdecl)
2280 != DECL_SOURCE_LOCATION (olddecl))
2282 /* Per C++11 8.3.6/4, default arguments cannot be added in
2283 later declarations of a function template. */
2284 check_redeclaration_no_default_args (newdecl);
2285 /* C++17 11.3.6/4: "If a friend declaration specifies a default
2286 argument expression, that declaration... shall be the only
2287 declaration of the function or function template in the
2288 translation unit." */
2289 check_no_redeclaration_friend_default_args
2290 (old_result, new_result);
2292 tree new_parms = DECL_INNERMOST_TEMPLATE_PARMS (newdecl);
2293 tree old_parms = DECL_INNERMOST_TEMPLATE_PARMS (olddecl);
2294 merge_default_template_args (new_parms, old_parms,
2295 /*class_p=*/false);
2297 if (!DECL_UNIQUE_FRIEND_P (new_result))
2298 DECL_UNIQUE_FRIEND_P (old_result) = false;
2300 check_default_args (newdecl);
2302 if (GNU_INLINE_P (old_result) != GNU_INLINE_P (new_result)
2303 && DECL_INITIAL (new_result))
2305 if (DECL_INITIAL (old_result))
2306 DECL_UNINLINABLE (old_result) = 1;
2307 else
2308 DECL_UNINLINABLE (old_result) = DECL_UNINLINABLE (new_result);
2309 DECL_EXTERNAL (old_result) = DECL_EXTERNAL (new_result);
2310 DECL_NOT_REALLY_EXTERN (old_result)
2311 = DECL_NOT_REALLY_EXTERN (new_result);
2312 DECL_INTERFACE_KNOWN (old_result)
2313 = DECL_INTERFACE_KNOWN (new_result);
2314 DECL_DECLARED_INLINE_P (old_result)
2315 = DECL_DECLARED_INLINE_P (new_result);
2316 DECL_DISREGARD_INLINE_LIMITS (old_result)
2317 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
2320 else
2322 DECL_DECLARED_INLINE_P (old_result)
2323 |= DECL_DECLARED_INLINE_P (new_result);
2324 DECL_DISREGARD_INLINE_LIMITS (old_result)
2325 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
2326 check_redeclaration_exception_specification (newdecl, olddecl);
2328 merge_attribute_bits (new_result, old_result);
2332 /* If the new declaration is a definition, update the file and
2333 line information on the declaration, and also make
2334 the old declaration the same definition. */
2335 if (DECL_INITIAL (new_result) != NULL_TREE)
2337 DECL_SOURCE_LOCATION (olddecl)
2338 = DECL_SOURCE_LOCATION (old_result)
2339 = DECL_SOURCE_LOCATION (newdecl);
2340 DECL_INITIAL (old_result) = DECL_INITIAL (new_result);
2341 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
2343 tree parm;
2344 DECL_ARGUMENTS (old_result)
2345 = DECL_ARGUMENTS (new_result);
2346 for (parm = DECL_ARGUMENTS (old_result); parm;
2347 parm = DECL_CHAIN (parm))
2348 DECL_CONTEXT (parm) = old_result;
2350 if (tree fc = DECL_FRIEND_CONTEXT (new_result))
2351 SET_DECL_FRIEND_CONTEXT (old_result, fc);
2355 return olddecl;
2358 if (types_match)
2360 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2361 check_redeclaration_exception_specification (newdecl, olddecl);
2363 /* Automatically handles default parameters. */
2364 tree oldtype = TREE_TYPE (olddecl);
2365 tree newtype;
2367 /* For typedefs use the old type, as the new type's DECL_NAME points
2368 at newdecl, which will be ggc_freed. */
2369 if (TREE_CODE (newdecl) == TYPE_DECL)
2371 /* But NEWTYPE might have an attribute, honor that. */
2372 tree tem = TREE_TYPE (newdecl);
2373 newtype = oldtype;
2375 if (TYPE_USER_ALIGN (tem))
2377 if (TYPE_ALIGN (tem) > TYPE_ALIGN (newtype))
2378 SET_TYPE_ALIGN (newtype, TYPE_ALIGN (tem));
2379 TYPE_USER_ALIGN (newtype) = true;
2382 /* And remove the new type from the variants list. */
2383 if (TYPE_NAME (TREE_TYPE (newdecl)) == newdecl)
2385 tree remove = TREE_TYPE (newdecl);
2386 if (TYPE_MAIN_VARIANT (remove) == remove)
2388 gcc_assert (TYPE_NEXT_VARIANT (remove) == NULL_TREE);
2389 /* If remove is the main variant, no need to remove that
2390 from the list. One of the DECL_ORIGINAL_TYPE
2391 variants, e.g. created for aligned attribute, might still
2392 refer to the newdecl TYPE_DECL though, so remove that one
2393 in that case. */
2394 if (tree orig = DECL_ORIGINAL_TYPE (newdecl))
2395 if (orig != remove)
2396 for (tree t = TYPE_MAIN_VARIANT (orig); t;
2397 t = TYPE_MAIN_VARIANT (t))
2398 if (TYPE_NAME (TYPE_NEXT_VARIANT (t)) == newdecl)
2400 TYPE_NEXT_VARIANT (t)
2401 = TYPE_NEXT_VARIANT (TYPE_NEXT_VARIANT (t));
2402 break;
2405 else
2406 for (tree t = TYPE_MAIN_VARIANT (remove); ;
2407 t = TYPE_NEXT_VARIANT (t))
2408 if (TYPE_NEXT_VARIANT (t) == remove)
2410 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (remove);
2411 break;
2415 else if (merge_attr)
2416 newtype = merge_types (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
2417 else
2418 newtype = TREE_TYPE (newdecl);
2420 if (VAR_P (newdecl))
2422 DECL_THIS_EXTERN (newdecl) |= DECL_THIS_EXTERN (olddecl);
2423 /* For already initialized vars, TREE_READONLY could have been
2424 cleared in cp_finish_decl, because the var needs runtime
2425 initialization or destruction. Make sure not to set
2426 TREE_READONLY on it again. */
2427 if (DECL_INITIALIZED_P (olddecl)
2428 && !DECL_EXTERNAL (olddecl)
2429 && !TREE_READONLY (olddecl))
2430 TREE_READONLY (newdecl) = 0;
2431 DECL_INITIALIZED_P (newdecl) |= DECL_INITIALIZED_P (olddecl);
2432 DECL_NONTRIVIALLY_INITIALIZED_P (newdecl)
2433 |= DECL_NONTRIVIALLY_INITIALIZED_P (olddecl);
2434 if (DECL_DEPENDENT_INIT_P (olddecl))
2435 SET_DECL_DEPENDENT_INIT_P (newdecl, true);
2436 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (newdecl)
2437 |= DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (olddecl);
2438 DECL_DECLARED_CONSTEXPR_P (newdecl)
2439 |= DECL_DECLARED_CONSTEXPR_P (olddecl);
2440 DECL_DECLARED_CONSTINIT_P (newdecl)
2441 |= DECL_DECLARED_CONSTINIT_P (olddecl);
2443 /* Merge the threadprivate attribute from OLDDECL into NEWDECL. */
2444 if (DECL_LANG_SPECIFIC (olddecl)
2445 && CP_DECL_THREADPRIVATE_P (olddecl))
2447 /* Allocate a LANG_SPECIFIC structure for NEWDECL, if needed. */
2448 retrofit_lang_decl (newdecl);
2449 CP_DECL_THREADPRIVATE_P (newdecl) = 1;
2453 /* An explicit specialization of a function template or of a member
2454 function of a class template can be declared transaction_safe
2455 independently of whether the corresponding template entity is declared
2456 transaction_safe. */
2457 if (flag_tm && TREE_CODE (newdecl) == FUNCTION_DECL
2458 && DECL_TEMPLATE_INSTANTIATION (olddecl)
2459 && DECL_TEMPLATE_SPECIALIZATION (newdecl)
2460 && tx_safe_fn_type_p (newtype)
2461 && !tx_safe_fn_type_p (TREE_TYPE (newdecl)))
2462 newtype = tx_unsafe_fn_variant (newtype);
2464 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = newtype;
2466 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2467 check_default_args (newdecl);
2469 /* Lay the type out, unless already done. */
2470 if (! same_type_p (newtype, oldtype)
2471 && TREE_TYPE (newdecl) != error_mark_node
2472 && !(processing_template_decl && uses_template_parms (newdecl)))
2473 layout_type (TREE_TYPE (newdecl));
2475 if ((VAR_P (newdecl)
2476 || TREE_CODE (newdecl) == PARM_DECL
2477 || TREE_CODE (newdecl) == RESULT_DECL
2478 || TREE_CODE (newdecl) == FIELD_DECL
2479 || TREE_CODE (newdecl) == TYPE_DECL)
2480 && !(processing_template_decl && uses_template_parms (newdecl)))
2481 layout_decl (newdecl, 0);
2483 /* Merge deprecatedness. */
2484 if (TREE_DEPRECATED (newdecl))
2485 TREE_DEPRECATED (olddecl) = 1;
2487 /* Merge unavailability. */
2488 if (TREE_UNAVAILABLE (newdecl))
2489 TREE_UNAVAILABLE (olddecl) = 1;
2491 /* Preserve function specific target and optimization options */
2492 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2494 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl)
2495 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl))
2496 DECL_FUNCTION_SPECIFIC_TARGET (newdecl)
2497 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl);
2499 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl)
2500 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl))
2501 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl)
2502 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl);
2504 if (!DECL_UNIQUE_FRIEND_P (olddecl))
2505 DECL_UNIQUE_FRIEND_P (newdecl) = false;
2507 else
2509 /* Merge the const type qualifier. */
2510 if (TREE_READONLY (newdecl))
2511 TREE_READONLY (olddecl) = 1;
2512 /* Merge the volatile type qualifier. */
2513 if (TREE_THIS_VOLATILE (newdecl))
2514 TREE_THIS_VOLATILE (olddecl) = 1;
2517 /* Merge the initialization information. */
2518 if (DECL_INITIAL (newdecl) == NULL_TREE
2519 && DECL_INITIAL (olddecl) != NULL_TREE)
2521 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2522 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2523 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2525 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
2526 DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl);
2530 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2532 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
2533 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
2534 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
2535 if (DECL_IS_OPERATOR_NEW_P (olddecl))
2536 DECL_SET_IS_OPERATOR_NEW (newdecl, true);
2537 DECL_LOOPING_CONST_OR_PURE_P (newdecl)
2538 |= DECL_LOOPING_CONST_OR_PURE_P (olddecl);
2539 DECL_IS_REPLACEABLE_OPERATOR (newdecl)
2540 |= DECL_IS_REPLACEABLE_OPERATOR (olddecl);
2542 if (merge_attr)
2543 merge_attribute_bits (newdecl, olddecl);
2544 else
2546 /* Merge the noreturn bit. */
2547 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
2548 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
2549 TREE_NOTHROW (olddecl) = TREE_NOTHROW (newdecl);
2550 DECL_IS_MALLOC (olddecl) = DECL_IS_MALLOC (newdecl);
2551 DECL_PURE_P (olddecl) = DECL_PURE_P (newdecl);
2553 /* Keep the old RTL. */
2554 COPY_DECL_RTL (olddecl, newdecl);
2556 else if (VAR_P (newdecl)
2557 && (DECL_SIZE (olddecl) || !DECL_SIZE (newdecl)))
2559 /* Keep the old RTL. We cannot keep the old RTL if the old
2560 declaration was for an incomplete object and the new
2561 declaration is not since many attributes of the RTL will
2562 change. */
2563 COPY_DECL_RTL (olddecl, newdecl);
2566 /* If cannot merge, then use the new type and qualifiers,
2567 and don't preserve the old rtl. */
2568 else
2570 /* Clean out any memory we had of the old declaration. */
2571 tree oldstatic = value_member (olddecl, static_aggregates);
2572 if (oldstatic)
2573 TREE_VALUE (oldstatic) = error_mark_node;
2575 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
2576 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
2577 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
2578 TREE_NOTHROW (olddecl) = TREE_NOTHROW (newdecl);
2579 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
2582 /* Merge the storage class information. */
2583 merge_weak (newdecl, olddecl);
2585 DECL_DEFER_OUTPUT (newdecl) |= DECL_DEFER_OUTPUT (olddecl);
2586 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
2587 TREE_STATIC (olddecl) = TREE_STATIC (newdecl) |= TREE_STATIC (olddecl);
2588 if (! DECL_EXTERNAL (olddecl))
2589 DECL_EXTERNAL (newdecl) = 0;
2590 if (! DECL_COMDAT (olddecl))
2591 DECL_COMDAT (newdecl) = 0;
2593 if (VAR_OR_FUNCTION_DECL_P (newdecl) && DECL_LOCAL_DECL_P (newdecl))
2595 if (!DECL_LOCAL_DECL_P (olddecl))
2596 /* This can happen if olddecl was brought in from the
2597 enclosing namespace via a using-decl. The new decl is
2598 then not a block-scope extern at all. */
2599 DECL_LOCAL_DECL_P (newdecl) = false;
2600 else
2602 retrofit_lang_decl (newdecl);
2603 tree alias = DECL_LOCAL_DECL_ALIAS (newdecl)
2604 = DECL_LOCAL_DECL_ALIAS (olddecl);
2605 DECL_ATTRIBUTES (alias)
2606 = (*targetm.merge_decl_attributes) (alias, newdecl);
2607 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2608 merge_attribute_bits (newdecl, alias);
2612 new_template_info = NULL_TREE;
2613 if (DECL_LANG_SPECIFIC (newdecl) && DECL_LANG_SPECIFIC (olddecl))
2615 bool new_redefines_gnu_inline = false;
2617 if (new_defines_function
2618 && ((DECL_INTERFACE_KNOWN (olddecl)
2619 && TREE_CODE (olddecl) == FUNCTION_DECL)
2620 || (TREE_CODE (olddecl) == TEMPLATE_DECL
2621 && (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl))
2622 == FUNCTION_DECL))))
2623 new_redefines_gnu_inline = GNU_INLINE_P (STRIP_TEMPLATE (olddecl));
2625 if (!new_redefines_gnu_inline)
2627 DECL_INTERFACE_KNOWN (newdecl) |= DECL_INTERFACE_KNOWN (olddecl);
2628 DECL_NOT_REALLY_EXTERN (newdecl) |= DECL_NOT_REALLY_EXTERN (olddecl);
2629 DECL_COMDAT (newdecl) |= DECL_COMDAT (olddecl);
2632 if (TREE_CODE (newdecl) != TYPE_DECL)
2634 DECL_TEMPLATE_INSTANTIATED (newdecl)
2635 |= DECL_TEMPLATE_INSTANTIATED (olddecl);
2636 DECL_ODR_USED (newdecl) |= DECL_ODR_USED (olddecl);
2638 /* If the OLDDECL is an instantiation and/or specialization,
2639 then the NEWDECL must be too. But, it may not yet be marked
2640 as such if the caller has created NEWDECL, but has not yet
2641 figured out that it is a redeclaration. */
2642 if (!DECL_USE_TEMPLATE (newdecl))
2643 DECL_USE_TEMPLATE (newdecl) = DECL_USE_TEMPLATE (olddecl);
2645 if (!DECL_TEMPLATE_SPECIALIZATION (newdecl))
2646 DECL_INITIALIZED_IN_CLASS_P (newdecl)
2647 |= DECL_INITIALIZED_IN_CLASS_P (olddecl);
2650 /* Don't really know how much of the language-specific
2651 values we should copy from old to new. */
2652 DECL_IN_AGGR_P (newdecl) = DECL_IN_AGGR_P (olddecl);
2654 if (LANG_DECL_HAS_MIN (newdecl))
2656 DECL_ACCESS (newdecl) = DECL_ACCESS (olddecl);
2657 if (DECL_TEMPLATE_INFO (newdecl))
2659 new_template_info = DECL_TEMPLATE_INFO (newdecl);
2660 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
2661 && DECL_TEMPLATE_SPECIALIZATION (newdecl))
2662 /* Remember the presence of explicit specialization args. */
2663 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (olddecl))
2664 = TINFO_USED_TEMPLATE_ID (new_template_info);
2667 /* We don't want to copy template info from a non-templated friend
2668 (PR105761), but these shouldn't have DECL_TEMPLATE_INFO now. */
2669 gcc_checking_assert (!DECL_TEMPLATE_INFO (olddecl)
2670 || !non_templated_friend_p (olddecl));
2671 DECL_TEMPLATE_INFO (newdecl) = DECL_TEMPLATE_INFO (olddecl);
2674 if (DECL_DECLARES_FUNCTION_P (newdecl))
2676 /* Only functions have these fields. */
2677 DECL_NONCONVERTING_P (newdecl) = DECL_NONCONVERTING_P (olddecl);
2678 DECL_BEFRIENDING_CLASSES (newdecl)
2679 = chainon (DECL_BEFRIENDING_CLASSES (newdecl),
2680 DECL_BEFRIENDING_CLASSES (olddecl));
2681 /* DECL_THUNKS is only valid for virtual functions,
2682 otherwise it is a DECL_FRIEND_CONTEXT. */
2683 if (DECL_VIRTUAL_P (newdecl))
2684 SET_DECL_THUNKS (newdecl, DECL_THUNKS (olddecl));
2685 else if (tree fc = DECL_FRIEND_CONTEXT (newdecl))
2686 SET_DECL_FRIEND_CONTEXT (olddecl, fc);
2688 else if (VAR_P (newdecl))
2690 /* Only variables have this field. */
2691 if (VAR_HAD_UNKNOWN_BOUND (olddecl))
2692 SET_VAR_HAD_UNKNOWN_BOUND (newdecl);
2696 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2698 tree parm;
2700 /* Merge parameter attributes. */
2701 tree oldarg, newarg;
2702 for (oldarg = DECL_ARGUMENTS(olddecl), newarg = DECL_ARGUMENTS(newdecl);
2703 oldarg && newarg;
2704 oldarg = DECL_CHAIN(oldarg), newarg = DECL_CHAIN(newarg))
2706 DECL_ATTRIBUTES (newarg)
2707 = (*targetm.merge_decl_attributes) (oldarg, newarg);
2708 DECL_ATTRIBUTES (oldarg) = DECL_ATTRIBUTES (newarg);
2711 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
2712 && !DECL_TEMPLATE_INSTANTIATION (newdecl))
2714 /* If newdecl is not a specialization, then it is not a
2715 template-related function at all. And that means that we
2716 should have exited above, returning 0. */
2717 gcc_assert (DECL_TEMPLATE_SPECIALIZATION (newdecl));
2719 if (DECL_ODR_USED (olddecl))
2720 /* From [temp.expl.spec]:
2722 If a template, a member template or the member of a class
2723 template is explicitly specialized then that
2724 specialization shall be declared before the first use of
2725 that specialization that would cause an implicit
2726 instantiation to take place, in every translation unit in
2727 which such a use occurs. */
2728 error ("explicit specialization of %qD after first use",
2729 olddecl);
2731 SET_DECL_TEMPLATE_SPECIALIZATION (olddecl);
2732 DECL_COMDAT (newdecl) = (TREE_PUBLIC (newdecl)
2733 && DECL_DECLARED_INLINE_P (newdecl));
2735 /* Don't propagate visibility from the template to the
2736 specialization here. We'll do that in determine_visibility if
2737 appropriate. */
2738 DECL_VISIBILITY_SPECIFIED (olddecl) = 0;
2740 /* [temp.expl.spec/14] We don't inline explicit specialization
2741 just because the primary template says so. */
2742 gcc_assert (!merge_attr);
2744 DECL_DECLARED_INLINE_P (olddecl)
2745 = DECL_DECLARED_INLINE_P (newdecl);
2747 DECL_DISREGARD_INLINE_LIMITS (olddecl)
2748 = DECL_DISREGARD_INLINE_LIMITS (newdecl);
2750 DECL_UNINLINABLE (olddecl) = DECL_UNINLINABLE (newdecl);
2752 else if (new_defines_function && DECL_INITIAL (olddecl))
2754 /* Never inline re-defined extern inline functions.
2755 FIXME: this could be better handled by keeping both
2756 function as separate declarations. */
2757 DECL_UNINLINABLE (newdecl) = 1;
2759 else
2761 if (DECL_PENDING_INLINE_P (olddecl))
2763 DECL_PENDING_INLINE_P (newdecl) = 1;
2764 DECL_PENDING_INLINE_INFO (newdecl)
2765 = DECL_PENDING_INLINE_INFO (olddecl);
2767 else if (DECL_PENDING_INLINE_P (newdecl))
2769 else if (DECL_SAVED_AUTO_RETURN_TYPE (newdecl) == NULL)
2770 DECL_SAVED_AUTO_RETURN_TYPE (newdecl)
2771 = DECL_SAVED_AUTO_RETURN_TYPE (olddecl);
2773 DECL_DECLARED_INLINE_P (newdecl) |= DECL_DECLARED_INLINE_P (olddecl);
2775 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
2776 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
2778 DECL_DISREGARD_INLINE_LIMITS (newdecl)
2779 = DECL_DISREGARD_INLINE_LIMITS (olddecl)
2780 = (DECL_DISREGARD_INLINE_LIMITS (newdecl)
2781 || DECL_DISREGARD_INLINE_LIMITS (olddecl));
2784 /* Preserve abstractness on cloned [cd]tors. */
2785 DECL_ABSTRACT_P (newdecl) = DECL_ABSTRACT_P (olddecl);
2787 /* Update newdecl's parms to point at olddecl. */
2788 for (parm = DECL_ARGUMENTS (newdecl); parm;
2789 parm = DECL_CHAIN (parm))
2790 DECL_CONTEXT (parm) = olddecl;
2792 if (! types_match)
2794 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
2795 COPY_DECL_ASSEMBLER_NAME (newdecl, olddecl);
2796 COPY_DECL_RTL (newdecl, olddecl);
2798 if (! types_match || new_defines_function)
2800 /* These need to be copied so that the names are available.
2801 Note that if the types do match, we'll preserve inline
2802 info and other bits, but if not, we won't. */
2803 DECL_ARGUMENTS (olddecl) = DECL_ARGUMENTS (newdecl);
2804 DECL_RESULT (olddecl) = DECL_RESULT (newdecl);
2806 /* If redeclaring a builtin function, it stays built in
2807 if newdecl is a gnu_inline definition, or if newdecl is just
2808 a declaration. */
2809 if (fndecl_built_in_p (olddecl)
2810 && (new_defines_function ? GNU_INLINE_P (newdecl) : types_match))
2812 copy_decl_built_in_function (newdecl, olddecl);
2813 /* If we're keeping the built-in definition, keep the rtl,
2814 regardless of declaration matches. */
2815 COPY_DECL_RTL (olddecl, newdecl);
2816 if (DECL_BUILT_IN_CLASS (newdecl) == BUILT_IN_NORMAL)
2818 enum built_in_function fncode = DECL_FUNCTION_CODE (newdecl);
2819 if (builtin_decl_explicit_p (fncode))
2821 /* A compatible prototype of these builtin functions
2822 is seen, assume the runtime implements it with
2823 the expected semantics. */
2824 switch (fncode)
2826 case BUILT_IN_STPCPY:
2827 set_builtin_decl_implicit_p (fncode, true);
2828 break;
2829 default:
2830 set_builtin_decl_declared_p (fncode, true);
2831 break;
2835 copy_attributes_to_builtin (newdecl);
2838 if (new_defines_function)
2839 /* If defining a function declared with other language
2840 linkage, use the previously declared language linkage. */
2841 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
2842 else if (types_match)
2844 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2845 /* Don't clear out the arguments if we're just redeclaring a
2846 function. */
2847 if (DECL_ARGUMENTS (olddecl))
2848 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
2851 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
2852 NAMESPACE_LEVEL (newdecl) = NAMESPACE_LEVEL (olddecl);
2854 /* Now preserve various other info from the definition. */
2855 TREE_ADDRESSABLE (newdecl) = TREE_ADDRESSABLE (olddecl);
2856 TREE_ASM_WRITTEN (newdecl) = TREE_ASM_WRITTEN (olddecl);
2857 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
2858 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
2860 /* Warn about conflicting visibility specifications. */
2861 if (DECL_VISIBILITY_SPECIFIED (olddecl)
2862 && DECL_VISIBILITY_SPECIFIED (newdecl)
2863 && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
2865 auto_diagnostic_group d;
2866 if (warning_at (newdecl_loc, OPT_Wattributes,
2867 "%qD: visibility attribute ignored because it "
2868 "conflicts with previous declaration", newdecl))
2869 inform (olddecl_loc,
2870 "previous declaration of %qD", olddecl);
2872 /* Choose the declaration which specified visibility. */
2873 if (DECL_VISIBILITY_SPECIFIED (olddecl))
2875 DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
2876 DECL_VISIBILITY_SPECIFIED (newdecl) = 1;
2878 /* Init priority used to be merged from newdecl to olddecl by the memcpy,
2879 so keep this behavior. */
2880 if (VAR_P (newdecl) && DECL_HAS_INIT_PRIORITY_P (newdecl))
2882 SET_DECL_INIT_PRIORITY (olddecl, DECL_INIT_PRIORITY (newdecl));
2883 DECL_HAS_INIT_PRIORITY_P (olddecl) = 1;
2885 /* Likewise for DECL_ALIGN, DECL_USER_ALIGN and DECL_PACKED. */
2886 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
2888 SET_DECL_ALIGN (newdecl, DECL_ALIGN (olddecl));
2889 DECL_USER_ALIGN (newdecl) |= DECL_USER_ALIGN (olddecl);
2891 else if (DECL_ALIGN (olddecl) == DECL_ALIGN (newdecl)
2892 && DECL_USER_ALIGN (olddecl) != DECL_USER_ALIGN (newdecl))
2893 DECL_USER_ALIGN (newdecl) = 1;
2895 DECL_USER_ALIGN (olddecl) = DECL_USER_ALIGN (newdecl);
2896 if (DECL_WARN_IF_NOT_ALIGN (olddecl)
2897 > DECL_WARN_IF_NOT_ALIGN (newdecl))
2898 SET_DECL_WARN_IF_NOT_ALIGN (newdecl,
2899 DECL_WARN_IF_NOT_ALIGN (olddecl));
2900 if (TREE_CODE (newdecl) == FIELD_DECL)
2901 DECL_PACKED (olddecl) = DECL_PACKED (newdecl);
2903 /* The DECL_LANG_SPECIFIC information in OLDDECL will be replaced
2904 with that from NEWDECL below. */
2905 if (DECL_LANG_SPECIFIC (olddecl))
2907 gcc_checking_assert (DECL_LANG_SPECIFIC (olddecl)
2908 != DECL_LANG_SPECIFIC (newdecl));
2909 ggc_free (DECL_LANG_SPECIFIC (olddecl));
2912 /* Merge the USED information. */
2913 if (TREE_USED (olddecl))
2914 TREE_USED (newdecl) = 1;
2915 else if (TREE_USED (newdecl))
2916 TREE_USED (olddecl) = 1;
2918 if (VAR_P (newdecl))
2920 if (DECL_READ_P (olddecl))
2921 DECL_READ_P (newdecl) = 1;
2922 else if (DECL_READ_P (newdecl))
2923 DECL_READ_P (olddecl) = 1;
2926 if (DECL_PRESERVE_P (olddecl))
2927 DECL_PRESERVE_P (newdecl) = 1;
2928 else if (DECL_PRESERVE_P (newdecl))
2929 DECL_PRESERVE_P (olddecl) = 1;
2931 /* Merge the DECL_FUNCTION_VERSIONED information. newdecl will be copied
2932 to olddecl and deleted. */
2933 if (TREE_CODE (newdecl) == FUNCTION_DECL
2934 && DECL_FUNCTION_VERSIONED (olddecl))
2936 /* Set the flag for newdecl so that it gets copied to olddecl. */
2937 DECL_FUNCTION_VERSIONED (newdecl) = 1;
2938 /* newdecl will be purged after copying to olddecl and is no longer
2939 a version. */
2940 cgraph_node::delete_function_version_by_decl (newdecl);
2943 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2945 int function_size;
2946 struct symtab_node *snode = symtab_node::get (olddecl);
2948 function_size = sizeof (struct tree_decl_common);
2950 memcpy ((char *) olddecl + sizeof (struct tree_common),
2951 (char *) newdecl + sizeof (struct tree_common),
2952 function_size - sizeof (struct tree_common));
2954 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2955 (char *) newdecl + sizeof (struct tree_decl_common),
2956 sizeof (struct tree_function_decl) - sizeof (struct tree_decl_common));
2958 /* Preserve symtab node mapping. */
2959 olddecl->decl_with_vis.symtab_node = snode;
2961 if (new_template_info)
2962 /* If newdecl is a template instantiation, it is possible that
2963 the following sequence of events has occurred:
2965 o A friend function was declared in a class template. The
2966 class template was instantiated.
2968 o The instantiation of the friend declaration was
2969 recorded on the instantiation list, and is newdecl.
2971 o Later, however, instantiate_class_template called pushdecl
2972 on the newdecl to perform name injection. But, pushdecl in
2973 turn called duplicate_decls when it discovered that another
2974 declaration of a global function with the same name already
2975 existed.
2977 o Here, in duplicate_decls, we decided to clobber newdecl.
2979 If we're going to do that, we'd better make sure that
2980 olddecl, and not newdecl, is on the list of
2981 instantiations so that if we try to do the instantiation
2982 again we won't get the clobbered declaration. */
2983 reregister_specialization (newdecl,
2984 new_template_info,
2985 olddecl);
2987 else
2989 size_t size = tree_code_size (TREE_CODE (newdecl));
2991 memcpy ((char *) olddecl + sizeof (struct tree_common),
2992 (char *) newdecl + sizeof (struct tree_common),
2993 sizeof (struct tree_decl_common) - sizeof (struct tree_common));
2995 switch (TREE_CODE (newdecl))
2997 case LABEL_DECL:
2998 case VAR_DECL:
2999 case RESULT_DECL:
3000 case PARM_DECL:
3001 case FIELD_DECL:
3002 case TYPE_DECL:
3003 case CONST_DECL:
3005 struct symtab_node *snode = NULL;
3007 if (VAR_P (newdecl)
3008 && (TREE_STATIC (olddecl) || TREE_PUBLIC (olddecl)
3009 || DECL_EXTERNAL (olddecl)))
3010 snode = symtab_node::get (olddecl);
3011 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
3012 (char *) newdecl + sizeof (struct tree_decl_common),
3013 size - sizeof (struct tree_decl_common)
3014 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
3015 if (VAR_P (newdecl))
3016 olddecl->decl_with_vis.symtab_node = snode;
3018 break;
3019 default:
3020 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
3021 (char *) newdecl + sizeof (struct tree_decl_common),
3022 sizeof (struct tree_decl_non_common) - sizeof (struct tree_decl_common)
3023 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
3024 break;
3028 if (VAR_OR_FUNCTION_DECL_P (newdecl))
3030 if (DECL_EXTERNAL (olddecl)
3031 || TREE_PUBLIC (olddecl)
3032 || TREE_STATIC (olddecl))
3034 /* Merge the section attribute.
3035 We want to issue an error if the sections conflict but that must be
3036 done later in decl_attributes since we are called before attributes
3037 are assigned. */
3038 if (DECL_SECTION_NAME (newdecl) != NULL)
3039 set_decl_section_name (olddecl, newdecl);
3041 if (DECL_ONE_ONLY (newdecl))
3043 struct symtab_node *oldsym, *newsym;
3044 if (TREE_CODE (olddecl) == FUNCTION_DECL)
3045 oldsym = cgraph_node::get_create (olddecl);
3046 else
3047 oldsym = varpool_node::get_create (olddecl);
3048 newsym = symtab_node::get (newdecl);
3049 oldsym->set_comdat_group (newsym->get_comdat_group ());
3053 if (VAR_P (newdecl)
3054 && CP_DECL_THREAD_LOCAL_P (newdecl))
3056 CP_DECL_THREAD_LOCAL_P (olddecl) = true;
3057 if (!processing_template_decl)
3058 set_decl_tls_model (olddecl, DECL_TLS_MODEL (newdecl));
3062 DECL_UID (olddecl) = olddecl_uid;
3064 /* NEWDECL contains the merged attribute lists.
3065 Update OLDDECL to be the same. */
3066 DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
3068 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
3069 so that encode_section_info has a chance to look at the new decl
3070 flags and attributes. */
3071 if (DECL_RTL_SET_P (olddecl)
3072 && (TREE_CODE (olddecl) == FUNCTION_DECL
3073 || (VAR_P (olddecl)
3074 && TREE_STATIC (olddecl))))
3075 make_decl_rtl (olddecl);
3077 /* The NEWDECL will no longer be needed. Because every out-of-class
3078 declaration of a member results in a call to duplicate_decls,
3079 freeing these nodes represents in a significant savings.
3081 Before releasing the node, be sore to remove function from symbol
3082 table that might have been inserted there to record comdat group.
3083 Be sure to however do not free DECL_STRUCT_FUNCTION because this
3084 structure is shared in between newdecl and oldecl. */
3085 if (TREE_CODE (newdecl) == FUNCTION_DECL)
3086 DECL_STRUCT_FUNCTION (newdecl) = NULL;
3087 if (VAR_OR_FUNCTION_DECL_P (newdecl))
3089 struct symtab_node *snode = symtab_node::get (newdecl);
3090 if (snode)
3091 snode->remove ();
3094 if (TREE_CODE (olddecl) == FUNCTION_DECL)
3096 tree clone;
3097 FOR_EACH_CLONE (clone, olddecl)
3099 DECL_ATTRIBUTES (clone) = DECL_ATTRIBUTES (olddecl);
3100 DECL_PRESERVE_P (clone) |= DECL_PRESERVE_P (olddecl);
3104 /* Remove the associated constraints for newdecl, if any, before
3105 reclaiming memory. */
3106 if (flag_concepts)
3107 remove_constraints (newdecl);
3109 ggc_free (newdecl);
3111 return olddecl;
3114 /* Return zero if the declaration NEWDECL is valid
3115 when the declaration OLDDECL (assumed to be for the same name)
3116 has already been seen.
3117 Otherwise return an error message format string with a %s
3118 where the identifier should go. */
3120 static const char *
3121 redeclaration_error_message (tree newdecl, tree olddecl)
3123 if (TREE_CODE (newdecl) == TYPE_DECL)
3125 /* Because C++ can put things into name space for free,
3126 constructs like "typedef struct foo { ... } foo"
3127 would look like an erroneous redeclaration. */
3128 if (same_type_p (TREE_TYPE (newdecl), TREE_TYPE (olddecl)))
3129 return NULL;
3130 else
3131 return G_("redefinition of %q#D");
3133 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
3135 /* If this is a pure function, its olddecl will actually be
3136 the original initialization to `0' (which we force to call
3137 abort()). Don't complain about redefinition in this case. */
3138 if (DECL_LANG_SPECIFIC (olddecl) && DECL_PURE_VIRTUAL_P (olddecl)
3139 && DECL_INITIAL (olddecl) == NULL_TREE)
3140 return NULL;
3142 /* If both functions come from different namespaces, this is not
3143 a redeclaration - this is a conflict with a used function. */
3144 if (DECL_NAMESPACE_SCOPE_P (olddecl)
3145 && DECL_CONTEXT (olddecl) != DECL_CONTEXT (newdecl)
3146 && ! decls_match (olddecl, newdecl))
3147 return G_("%qD conflicts with used function");
3149 /* We'll complain about linkage mismatches in
3150 warn_extern_redeclared_static. */
3152 /* Defining the same name twice is no good. */
3153 if (decl_defined_p (olddecl)
3154 && decl_defined_p (newdecl))
3156 if (DECL_NAME (olddecl) == NULL_TREE)
3157 return G_("%q#D not declared in class");
3158 else if (!GNU_INLINE_P (olddecl)
3159 || GNU_INLINE_P (newdecl))
3160 return G_("redefinition of %q#D");
3163 if (DECL_DECLARED_INLINE_P (olddecl) && DECL_DECLARED_INLINE_P (newdecl))
3165 bool olda = GNU_INLINE_P (olddecl);
3166 bool newa = GNU_INLINE_P (newdecl);
3168 if (olda != newa)
3170 if (newa)
3171 return G_("%q+D redeclared inline with "
3172 "%<gnu_inline%> attribute");
3173 else
3174 return G_("%q+D redeclared inline without "
3175 "%<gnu_inline%> attribute");
3179 if (deduction_guide_p (olddecl)
3180 && deduction_guide_p (newdecl))
3181 return G_("deduction guide %q+D redeclared");
3183 /* [class.compare.default]: A definition of a comparison operator as
3184 defaulted that appears in a class shall be the first declaration of
3185 that function. */
3186 special_function_kind sfk = special_function_p (olddecl);
3187 if (sfk == sfk_comparison && DECL_DEFAULTED_FN (newdecl))
3188 return G_("comparison operator %q+D defaulted after "
3189 "its first declaration");
3191 check_abi_tag_redeclaration
3192 (olddecl, lookup_attribute ("abi_tag", DECL_ATTRIBUTES (olddecl)),
3193 lookup_attribute ("abi_tag", DECL_ATTRIBUTES (newdecl)));
3195 return NULL;
3197 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
3199 tree nt, ot;
3201 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == CONCEPT_DECL)
3202 return G_("redefinition of %q#D");
3204 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != FUNCTION_DECL)
3205 return redeclaration_error_message (DECL_TEMPLATE_RESULT (newdecl),
3206 DECL_TEMPLATE_RESULT (olddecl));
3208 if (DECL_TEMPLATE_RESULT (newdecl) == DECL_TEMPLATE_RESULT (olddecl))
3209 return NULL;
3211 nt = DECL_TEMPLATE_RESULT (newdecl);
3212 if (DECL_TEMPLATE_INFO (nt))
3213 nt = DECL_TEMPLATE_RESULT (template_for_substitution (nt));
3214 ot = DECL_TEMPLATE_RESULT (olddecl);
3215 if (DECL_TEMPLATE_INFO (ot))
3216 ot = DECL_TEMPLATE_RESULT (template_for_substitution (ot));
3217 if (DECL_INITIAL (nt) && DECL_INITIAL (ot)
3218 && (!GNU_INLINE_P (ot) || GNU_INLINE_P (nt)))
3219 return G_("redefinition of %q#D");
3221 if (DECL_DECLARED_INLINE_P (ot) && DECL_DECLARED_INLINE_P (nt))
3223 bool olda = GNU_INLINE_P (ot);
3224 bool newa = GNU_INLINE_P (nt);
3226 if (olda != newa)
3228 if (newa)
3229 return G_("%q+D redeclared inline with "
3230 "%<gnu_inline%> attribute");
3231 else
3232 return G_("%q+D redeclared inline without "
3233 "%<gnu_inline%> attribute");
3237 if (deduction_guide_p (olddecl)
3238 && deduction_guide_p (newdecl))
3239 return G_("deduction guide %q+D redeclared");
3241 /* Core issue #226 (C++11):
3243 If a friend function template declaration specifies a
3244 default template-argument, that declaration shall be a
3245 definition and shall be the only declaration of the
3246 function template in the translation unit. */
3247 if ((cxx_dialect != cxx98)
3248 && TREE_CODE (ot) == FUNCTION_DECL && DECL_UNIQUE_FRIEND_P (ot)
3249 && !check_default_tmpl_args (nt, DECL_TEMPLATE_PARMS (newdecl),
3250 /*is_primary=*/true,
3251 /*is_partial=*/false,
3252 /*is_friend_decl=*/2))
3253 return G_("redeclaration of friend %q#D "
3254 "may not have default template arguments");
3256 return NULL;
3258 else if (VAR_P (newdecl)
3259 && (CP_DECL_THREAD_LOCAL_P (newdecl)
3260 != CP_DECL_THREAD_LOCAL_P (olddecl))
3261 && (! DECL_LANG_SPECIFIC (olddecl)
3262 || ! CP_DECL_THREADPRIVATE_P (olddecl)
3263 || CP_DECL_THREAD_LOCAL_P (newdecl)))
3265 /* Only variables can be thread-local, and all declarations must
3266 agree on this property. */
3267 if (CP_DECL_THREAD_LOCAL_P (newdecl))
3268 return G_("thread-local declaration of %q#D follows "
3269 "non-thread-local declaration");
3270 else
3271 return G_("non-thread-local declaration of %q#D follows "
3272 "thread-local declaration");
3274 else if (toplevel_bindings_p () || DECL_NAMESPACE_SCOPE_P (newdecl))
3276 /* The objects have been declared at namespace scope. If either
3277 is a member of an anonymous union, then this is an invalid
3278 redeclaration. For example:
3280 int i;
3281 union { int i; };
3283 is invalid. */
3284 if ((VAR_P (newdecl) && DECL_ANON_UNION_VAR_P (newdecl))
3285 || (VAR_P (olddecl) && DECL_ANON_UNION_VAR_P (olddecl)))
3286 return G_("redeclaration of %q#D");
3287 /* If at least one declaration is a reference, there is no
3288 conflict. For example:
3290 int i = 3;
3291 extern int i;
3293 is valid. */
3294 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
3295 return NULL;
3297 /* Static data member declared outside a class definition
3298 if the variable is defined within the class with constexpr
3299 specifier is declaration rather than definition (and
3300 deprecated). */
3301 if (cxx_dialect >= cxx17
3302 && VAR_P (olddecl)
3303 && DECL_CLASS_SCOPE_P (olddecl)
3304 && DECL_DECLARED_CONSTEXPR_P (olddecl)
3305 && !DECL_INITIAL (newdecl))
3307 DECL_EXTERNAL (newdecl) = 1;
3308 /* For now, only warn with explicit -Wdeprecated. */
3309 if (OPTION_SET_P (warn_deprecated))
3311 auto_diagnostic_group d;
3312 if (warning_at (DECL_SOURCE_LOCATION (newdecl), OPT_Wdeprecated,
3313 "redundant redeclaration of %<constexpr%> "
3314 "static data member %qD", newdecl))
3315 inform (DECL_SOURCE_LOCATION (olddecl),
3316 "previous declaration of %qD", olddecl);
3318 return NULL;
3321 /* Reject two definitions. */
3322 return G_("redefinition of %q#D");
3324 else
3326 /* Objects declared with block scope: */
3327 /* Reject two definitions, and reject a definition
3328 together with an external reference. */
3329 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl)))
3330 return G_("redeclaration of %q#D");
3331 return NULL;
3336 /* Hash and equality functions for the named_label table. */
3338 hashval_t
3339 named_label_hash::hash (const value_type entry)
3341 return IDENTIFIER_HASH_VALUE (entry->name);
3344 bool
3345 named_label_hash::equal (const value_type entry, compare_type name)
3347 return name == entry->name;
3350 /* Look for a label named ID in the current function. If one cannot
3351 be found, create one. Return the named_label_entry, or NULL on
3352 failure. */
3354 static named_label_entry *
3355 lookup_label_1 (tree id, bool making_local_p)
3357 auto_cond_timevar tv (TV_NAME_LOOKUP);
3359 /* You can't use labels at global scope. */
3360 if (current_function_decl == NULL_TREE)
3362 error ("label %qE referenced outside of any function", id);
3363 return NULL;
3366 if (!named_labels)
3367 named_labels = hash_table<named_label_hash>::create_ggc (13);
3369 hashval_t hash = IDENTIFIER_HASH_VALUE (id);
3370 named_label_entry **slot
3371 = named_labels->find_slot_with_hash (id, hash, INSERT);
3372 named_label_entry *old = *slot;
3374 if (old && old->label_decl)
3376 if (!making_local_p)
3377 return old;
3379 if (old->binding_level == current_binding_level)
3381 error ("local label %qE conflicts with existing label", id);
3382 inform (DECL_SOURCE_LOCATION (old->label_decl), "previous label");
3383 return NULL;
3387 /* We are making a new decl, create or reuse the named_label_entry */
3388 named_label_entry *ent = NULL;
3389 if (old && !old->label_decl)
3390 ent = old;
3391 else
3393 ent = ggc_cleared_alloc<named_label_entry> ();
3394 ent->name = id;
3395 ent->outer = old;
3396 *slot = ent;
3399 /* Now create the LABEL_DECL. */
3400 tree decl = build_decl (input_location, LABEL_DECL, id, void_type_node);
3402 DECL_CONTEXT (decl) = current_function_decl;
3403 SET_DECL_MODE (decl, VOIDmode);
3404 if (making_local_p)
3406 C_DECLARED_LABEL_FLAG (decl) = true;
3407 DECL_CHAIN (decl) = current_binding_level->names;
3408 current_binding_level->names = decl;
3411 ent->label_decl = decl;
3413 return ent;
3416 /* Wrapper for lookup_label_1. */
3418 tree
3419 lookup_label (tree id)
3421 named_label_entry *ent = lookup_label_1 (id, false);
3422 return ent ? ent->label_decl : NULL_TREE;
3425 tree
3426 declare_local_label (tree id)
3428 named_label_entry *ent = lookup_label_1 (id, true);
3429 return ent ? ent->label_decl : NULL_TREE;
3432 /* Returns nonzero if it is ill-formed to jump past the declaration of
3433 DECL. Returns 2 if it's also a real problem. */
3435 static int
3436 decl_jump_unsafe (tree decl)
3438 /* [stmt.dcl]/3: A program that jumps from a point where a local variable
3439 with automatic storage duration is not in scope to a point where it is
3440 in scope is ill-formed unless the variable has scalar type, class type
3441 with a trivial default constructor and a trivial destructor, a
3442 cv-qualified version of one of these types, or an array of one of the
3443 preceding types and is declared without an initializer (8.5). */
3444 tree type = TREE_TYPE (decl);
3446 if (!VAR_P (decl) || TREE_STATIC (decl)
3447 || type == error_mark_node)
3448 return 0;
3450 if (DECL_NONTRIVIALLY_INITIALIZED_P (decl)
3451 || variably_modified_type_p (type, NULL_TREE))
3452 return 2;
3454 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
3455 return 1;
3457 return 0;
3460 /* A subroutine of check_previous_goto_1 and check_goto to identify a branch
3461 to the user. */
3463 static bool
3464 identify_goto (tree decl, location_t loc, const location_t *locus,
3465 diagnostic_t diag_kind)
3467 bool complained
3468 = emit_diagnostic (diag_kind, loc, 0,
3469 decl ? N_("jump to label %qD")
3470 : N_("jump to case label"), decl);
3471 if (complained && locus)
3472 inform (*locus, " from here");
3473 return complained;
3476 /* Check that a single previously seen jump to a newly defined label
3477 is OK. DECL is the LABEL_DECL or 0; LEVEL is the binding_level for
3478 the jump context; NAMES are the names in scope in LEVEL at the jump
3479 context; LOCUS is the source position of the jump or 0. Returns
3480 true if all is well. */
3482 static bool
3483 check_previous_goto_1 (tree decl, cp_binding_level* level, tree names,
3484 bool exited_omp, const location_t *locus)
3486 cp_binding_level *b;
3487 bool complained = false;
3488 int identified = 0;
3489 bool saw_eh = false, saw_omp = false, saw_tm = false, saw_cxif = false;
3490 bool saw_ceif = false;
3492 if (exited_omp)
3494 complained = identify_goto (decl, input_location, locus, DK_ERROR);
3495 if (complained)
3496 inform (input_location, " exits OpenMP structured block");
3497 saw_omp = true;
3498 identified = 2;
3501 for (b = current_binding_level; b ; b = b->level_chain)
3503 tree new_decls, old_decls = (b == level ? names : NULL_TREE);
3505 for (new_decls = b->names; new_decls != old_decls;
3506 new_decls = (DECL_P (new_decls) ? DECL_CHAIN (new_decls)
3507 : TREE_CHAIN (new_decls)))
3509 int problem = decl_jump_unsafe (new_decls);
3510 if (! problem)
3511 continue;
3513 if (!identified)
3515 complained = identify_goto (decl, input_location, locus,
3516 problem > 1
3517 ? DK_ERROR : DK_PERMERROR);
3518 identified = 1;
3520 if (complained)
3522 if (problem > 1)
3523 inform (DECL_SOURCE_LOCATION (new_decls),
3524 " crosses initialization of %q#D", new_decls);
3525 else
3526 inform (DECL_SOURCE_LOCATION (new_decls),
3527 " enters scope of %q#D, which has "
3528 "non-trivial destructor", new_decls);
3532 if (b == level)
3533 break;
3535 const char *inf = NULL;
3536 location_t loc = input_location;
3537 switch (b->kind)
3539 case sk_try:
3540 if (!saw_eh)
3541 inf = G_(" enters %<try%> block");
3542 saw_eh = true;
3543 break;
3545 case sk_catch:
3546 if (!saw_eh)
3547 inf = G_(" enters %<catch%> block");
3548 saw_eh = true;
3549 break;
3551 case sk_omp:
3552 if (!saw_omp)
3553 inf = G_(" enters OpenMP structured block");
3554 saw_omp = true;
3555 break;
3557 case sk_transaction:
3558 if (!saw_tm)
3559 inf = G_(" enters synchronized or atomic statement");
3560 saw_tm = true;
3561 break;
3563 case sk_block:
3564 if (!saw_cxif && level_for_constexpr_if (b->level_chain))
3566 inf = G_(" enters %<constexpr if%> statement");
3567 loc = EXPR_LOCATION (b->level_chain->this_entity);
3568 saw_cxif = true;
3570 else if (!saw_ceif && level_for_consteval_if (b->level_chain))
3572 inf = G_(" enters %<consteval if%> statement");
3573 loc = EXPR_LOCATION (b->level_chain->this_entity);
3574 saw_ceif = true;
3576 break;
3578 default:
3579 break;
3582 if (inf)
3584 if (identified < 2)
3585 complained = identify_goto (decl, input_location, locus, DK_ERROR);
3586 identified = 2;
3587 if (complained)
3588 inform (loc, inf);
3592 return !identified;
3595 static void
3596 check_previous_goto (tree decl, struct named_label_use_entry *use)
3598 check_previous_goto_1 (decl, use->binding_level,
3599 use->names_in_scope, use->in_omp_scope,
3600 &use->o_goto_locus);
3603 static bool
3604 check_switch_goto (cp_binding_level* level)
3606 return check_previous_goto_1 (NULL_TREE, level, level->names, false, NULL);
3609 /* Check that a new jump to a label DECL is OK. Called by
3610 finish_goto_stmt. */
3612 void
3613 check_goto (tree decl)
3615 /* We can't know where a computed goto is jumping.
3616 So we assume that it's OK. */
3617 if (TREE_CODE (decl) != LABEL_DECL)
3618 return;
3620 hashval_t hash = IDENTIFIER_HASH_VALUE (DECL_NAME (decl));
3621 named_label_entry **slot
3622 = named_labels->find_slot_with_hash (DECL_NAME (decl), hash, NO_INSERT);
3623 named_label_entry *ent = *slot;
3625 /* If the label hasn't been defined yet, defer checking. */
3626 if (! DECL_INITIAL (decl))
3628 /* Don't bother creating another use if the last goto had the
3629 same data, and will therefore create the same set of errors. */
3630 if (ent->uses
3631 && ent->uses->names_in_scope == current_binding_level->names)
3632 return;
3634 named_label_use_entry *new_use
3635 = ggc_alloc<named_label_use_entry> ();
3636 new_use->binding_level = current_binding_level;
3637 new_use->names_in_scope = current_binding_level->names;
3638 new_use->o_goto_locus = input_location;
3639 new_use->in_omp_scope = false;
3641 new_use->next = ent->uses;
3642 ent->uses = new_use;
3643 return;
3646 bool saw_catch = false, complained = false;
3647 int identified = 0;
3648 tree bad;
3649 unsigned ix;
3651 if (ent->in_try_scope || ent->in_catch_scope || ent->in_transaction_scope
3652 || ent->in_constexpr_if || ent->in_consteval_if
3653 || ent->in_omp_scope || !vec_safe_is_empty (ent->bad_decls))
3655 diagnostic_t diag_kind = DK_PERMERROR;
3656 if (ent->in_try_scope || ent->in_catch_scope || ent->in_constexpr_if
3657 || ent->in_consteval_if || ent->in_transaction_scope
3658 || ent->in_omp_scope)
3659 diag_kind = DK_ERROR;
3660 complained = identify_goto (decl, DECL_SOURCE_LOCATION (decl),
3661 &input_location, diag_kind);
3662 identified = 1 + (diag_kind == DK_ERROR);
3665 FOR_EACH_VEC_SAFE_ELT (ent->bad_decls, ix, bad)
3667 int u = decl_jump_unsafe (bad);
3669 if (u > 1 && DECL_ARTIFICIAL (bad))
3671 /* Can't skip init of __exception_info. */
3672 if (identified == 1)
3674 complained = identify_goto (decl, DECL_SOURCE_LOCATION (decl),
3675 &input_location, DK_ERROR);
3676 identified = 2;
3678 if (complained)
3679 inform (DECL_SOURCE_LOCATION (bad), " enters %<catch%> block");
3680 saw_catch = true;
3682 else if (complained)
3684 if (u > 1)
3685 inform (DECL_SOURCE_LOCATION (bad),
3686 " skips initialization of %q#D", bad);
3687 else
3688 inform (DECL_SOURCE_LOCATION (bad),
3689 " enters scope of %q#D which has "
3690 "non-trivial destructor", bad);
3694 if (complained)
3696 if (ent->in_try_scope)
3697 inform (input_location, " enters %<try%> block");
3698 else if (ent->in_catch_scope && !saw_catch)
3699 inform (input_location, " enters %<catch%> block");
3700 else if (ent->in_transaction_scope)
3701 inform (input_location, " enters synchronized or atomic statement");
3702 else if (ent->in_constexpr_if)
3703 inform (input_location, " enters %<constexpr if%> statement");
3704 else if (ent->in_consteval_if)
3705 inform (input_location, " enters %<consteval if%> statement");
3708 if (ent->in_omp_scope)
3710 if (complained)
3711 inform (input_location, " enters OpenMP structured block");
3713 else if (flag_openmp)
3714 for (cp_binding_level *b = current_binding_level; b ; b = b->level_chain)
3716 if (b == ent->binding_level)
3717 break;
3718 if (b->kind == sk_omp)
3720 if (identified < 2)
3722 complained = identify_goto (decl,
3723 DECL_SOURCE_LOCATION (decl),
3724 &input_location, DK_ERROR);
3725 identified = 2;
3727 if (complained)
3728 inform (input_location, " exits OpenMP structured block");
3729 break;
3734 /* Check that a return is ok wrt OpenMP structured blocks.
3735 Called by finish_return_stmt. Returns true if all is well. */
3737 bool
3738 check_omp_return (void)
3740 for (cp_binding_level *b = current_binding_level; b ; b = b->level_chain)
3741 if (b->kind == sk_omp)
3743 error ("invalid exit from OpenMP structured block");
3744 return false;
3746 else if (b->kind == sk_function_parms)
3747 break;
3748 return true;
3751 /* Define a label, specifying the location in the source file.
3752 Return the LABEL_DECL node for the label. */
3754 tree
3755 define_label (location_t location, tree name)
3757 auto_cond_timevar tv (TV_NAME_LOOKUP);
3759 /* After labels, make any new cleanups in the function go into their
3760 own new (temporary) binding contour. */
3761 for (cp_binding_level *p = current_binding_level;
3762 p->kind != sk_function_parms;
3763 p = p->level_chain)
3764 p->more_cleanups_ok = 0;
3766 named_label_entry *ent = lookup_label_1 (name, false);
3767 tree decl = ent->label_decl;
3769 if (DECL_INITIAL (decl) != NULL_TREE)
3771 error ("duplicate label %qD", decl);
3772 return error_mark_node;
3774 else
3776 /* Mark label as having been defined. */
3777 DECL_INITIAL (decl) = error_mark_node;
3778 /* Say where in the source. */
3779 DECL_SOURCE_LOCATION (decl) = location;
3781 ent->binding_level = current_binding_level;
3782 ent->names_in_scope = current_binding_level->names;
3784 for (named_label_use_entry *use = ent->uses; use; use = use->next)
3785 check_previous_goto (decl, use);
3786 ent->uses = NULL;
3789 return decl;
3792 struct cp_switch
3794 cp_binding_level *level;
3795 struct cp_switch *next;
3796 /* The SWITCH_STMT being built. */
3797 tree switch_stmt;
3798 /* A splay-tree mapping the low element of a case range to the high
3799 element, or NULL_TREE if there is no high element. Used to
3800 determine whether or not a new case label duplicates an old case
3801 label. We need a tree, rather than simply a hash table, because
3802 of the GNU case range extension. */
3803 splay_tree cases;
3804 /* Remember whether a default: case label has been seen. */
3805 bool has_default_p;
3806 /* Remember whether a BREAK_STMT has been seen in this SWITCH_STMT. */
3807 bool break_stmt_seen_p;
3808 /* Set if inside of {FOR,DO,WHILE}_BODY nested inside of a switch,
3809 where BREAK_STMT doesn't belong to the SWITCH_STMT. */
3810 bool in_loop_body_p;
3813 /* A stack of the currently active switch statements. The innermost
3814 switch statement is on the top of the stack. There is no need to
3815 mark the stack for garbage collection because it is only active
3816 during the processing of the body of a function, and we never
3817 collect at that point. */
3819 static struct cp_switch *switch_stack;
3821 /* Called right after a switch-statement condition is parsed.
3822 SWITCH_STMT is the switch statement being parsed. */
3824 void
3825 push_switch (tree switch_stmt)
3827 struct cp_switch *p = XNEW (struct cp_switch);
3828 p->level = current_binding_level;
3829 p->next = switch_stack;
3830 p->switch_stmt = switch_stmt;
3831 p->cases = splay_tree_new (case_compare, NULL, NULL);
3832 p->has_default_p = false;
3833 p->break_stmt_seen_p = false;
3834 p->in_loop_body_p = false;
3835 switch_stack = p;
3838 void
3839 pop_switch (void)
3841 struct cp_switch *cs = switch_stack;
3843 /* Emit warnings as needed. */
3844 location_t switch_location = cp_expr_loc_or_input_loc (cs->switch_stmt);
3845 tree cond = SWITCH_STMT_COND (cs->switch_stmt);
3846 const bool bool_cond_p
3847 = (SWITCH_STMT_TYPE (cs->switch_stmt)
3848 && TREE_CODE (SWITCH_STMT_TYPE (cs->switch_stmt)) == BOOLEAN_TYPE);
3849 if (!processing_template_decl)
3850 c_do_switch_warnings (cs->cases, switch_location,
3851 SWITCH_STMT_TYPE (cs->switch_stmt), cond,
3852 bool_cond_p);
3854 /* For the benefit of block_may_fallthru remember if the switch body
3855 case labels cover all possible values and if there are break; stmts. */
3856 if (cs->has_default_p
3857 || (!processing_template_decl
3858 && c_switch_covers_all_cases_p (cs->cases,
3859 SWITCH_STMT_TYPE (cs->switch_stmt))))
3860 SWITCH_STMT_ALL_CASES_P (cs->switch_stmt) = 1;
3861 if (!cs->break_stmt_seen_p)
3862 SWITCH_STMT_NO_BREAK_P (cs->switch_stmt) = 1;
3863 /* Now that we're done with the switch warnings, set the switch type
3864 to the type of the condition if the index type was of scoped enum type.
3865 (Such types don't participate in the integer promotions.) We do this
3866 because of bit-fields whose declared type is a scoped enum type:
3867 gimplification will use the lowered index type, but convert the
3868 case values to SWITCH_STMT_TYPE, which would have been the declared type
3869 and verify_gimple_switch doesn't accept that. */
3870 if (is_bitfield_expr_with_lowered_type (cond))
3871 SWITCH_STMT_TYPE (cs->switch_stmt) = TREE_TYPE (cond);
3872 gcc_assert (!cs->in_loop_body_p);
3873 splay_tree_delete (cs->cases);
3874 switch_stack = switch_stack->next;
3875 free (cs);
3878 /* Note that a BREAK_STMT is about to be added. If it is inside of
3879 a SWITCH_STMT and not inside of a loop body inside of it, note
3880 in switch_stack we've seen a BREAK_STMT. */
3882 void
3883 note_break_stmt (void)
3885 if (switch_stack && !switch_stack->in_loop_body_p)
3886 switch_stack->break_stmt_seen_p = true;
3889 /* Note the start of processing of an iteration statement's body.
3890 The note_break_stmt function will do nothing while processing it.
3891 Return a flag that should be passed to note_iteration_stmt_body_end. */
3893 bool
3894 note_iteration_stmt_body_start (void)
3896 if (!switch_stack)
3897 return false;
3898 bool ret = switch_stack->in_loop_body_p;
3899 switch_stack->in_loop_body_p = true;
3900 return ret;
3903 /* Note the end of processing of an iteration statement's body. */
3905 void
3906 note_iteration_stmt_body_end (bool prev)
3908 if (switch_stack)
3909 switch_stack->in_loop_body_p = prev;
3912 /* Convert a case constant VALUE in a switch to the type TYPE of the switch
3913 condition. Note that if TYPE and VALUE are already integral we don't
3914 really do the conversion because the language-independent
3915 warning/optimization code will work better that way. */
3917 static tree
3918 case_conversion (tree type, tree value)
3920 if (value == NULL_TREE)
3921 return value;
3923 value = mark_rvalue_use (value);
3925 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
3926 type = type_promotes_to (type);
3928 tree ovalue = value;
3929 /* The constant-expression VALUE shall be a converted constant expression
3930 of the adjusted type of the switch condition, which doesn't allow
3931 narrowing conversions. */
3932 value = build_converted_constant_expr (type, value, tf_warning_or_error);
3934 if (cxx_dialect >= cxx11
3935 && (SCOPED_ENUM_P (type)
3936 || !INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (ovalue))))
3937 /* Use the converted value. */;
3938 else
3939 /* The already integral case. */
3940 value = ovalue;
3942 return cxx_constant_value (value);
3945 /* Note that we've seen a definition of a case label, and complain if this
3946 is a bad place for one. */
3948 tree
3949 finish_case_label (location_t loc, tree low_value, tree high_value)
3951 tree cond, r;
3952 cp_binding_level *p;
3953 tree type;
3955 if (low_value == NULL_TREE && high_value == NULL_TREE)
3956 switch_stack->has_default_p = true;
3958 if (processing_template_decl)
3960 tree label;
3962 /* For templates, just add the case label; we'll do semantic
3963 analysis at instantiation-time. */
3964 label = build_decl (loc, LABEL_DECL, NULL_TREE, void_type_node);
3965 return add_stmt (build_case_label (low_value, high_value, label));
3968 /* Find the condition on which this switch statement depends. */
3969 cond = SWITCH_STMT_COND (switch_stack->switch_stmt);
3970 if (cond && TREE_CODE (cond) == TREE_LIST)
3971 cond = TREE_VALUE (cond);
3973 if (!check_switch_goto (switch_stack->level))
3974 return error_mark_node;
3976 type = SWITCH_STMT_TYPE (switch_stack->switch_stmt);
3977 if (type == error_mark_node)
3978 return error_mark_node;
3980 low_value = case_conversion (type, low_value);
3981 high_value = case_conversion (type, high_value);
3983 r = c_add_case_label (loc, switch_stack->cases, cond, low_value, high_value);
3985 /* After labels, make any new cleanups in the function go into their
3986 own new (temporary) binding contour. */
3987 for (p = current_binding_level;
3988 p->kind != sk_function_parms;
3989 p = p->level_chain)
3990 p->more_cleanups_ok = 0;
3992 return r;
3995 struct typename_info {
3996 tree scope;
3997 tree name;
3998 tree template_id;
3999 bool enum_p;
4000 bool class_p;
4003 struct typename_hasher : ggc_ptr_hash<tree_node>
4005 typedef typename_info *compare_type;
4007 /* Hash a TYPENAME_TYPE. */
4009 static hashval_t
4010 hash (tree context, tree fullname)
4012 hashval_t hash = 0;
4013 hash = iterative_hash_object (context, hash);
4014 hash = iterative_hash_object (fullname, hash);
4015 return hash;
4018 static hashval_t
4019 hash (const typename_info *ti)
4021 return typename_hasher::hash (ti->scope, ti->template_id);
4024 static hashval_t
4025 hash (tree t)
4027 return typename_hasher::hash (TYPE_CONTEXT (t), TYPENAME_TYPE_FULLNAME (t));
4030 /* Compare two TYPENAME_TYPEs. */
4032 static bool
4033 equal (tree t1, const typename_info *t2)
4035 return (TYPE_IDENTIFIER (t1) == t2->name
4036 && TYPE_CONTEXT (t1) == t2->scope
4037 && TYPENAME_TYPE_FULLNAME (t1) == t2->template_id
4038 && TYPENAME_IS_ENUM_P (t1) == t2->enum_p
4039 && TYPENAME_IS_CLASS_P (t1) == t2->class_p);
4043 /* Build a TYPENAME_TYPE. If the type is `typename T::t', CONTEXT is
4044 the type of `T', NAME is the IDENTIFIER_NODE for `t'.
4046 Returns the new TYPENAME_TYPE. */
4048 static GTY (()) hash_table<typename_hasher> *typename_htab;
4050 tree
4051 build_typename_type (tree context, tree name, tree fullname,
4052 enum tag_types tag_type)
4054 typename_info ti;
4056 if (typename_htab == NULL)
4057 typename_htab = hash_table<typename_hasher>::create_ggc (61);
4059 ti.scope = FROB_CONTEXT (context);
4060 ti.name = name;
4061 ti.template_id = fullname;
4062 ti.enum_p = tag_type == enum_type;
4063 ti.class_p = (tag_type == class_type
4064 || tag_type == record_type
4065 || tag_type == union_type);
4066 hashval_t hash = typename_hasher::hash (&ti);
4068 /* See if we already have this type. */
4069 tree *e = typename_htab->find_slot_with_hash (&ti, hash, INSERT);
4070 tree t = *e;
4071 if (*e)
4072 t = *e;
4073 else
4075 /* Build the TYPENAME_TYPE. */
4076 t = cxx_make_type (TYPENAME_TYPE);
4077 TYPE_CONTEXT (t) = ti.scope;
4078 TYPENAME_TYPE_FULLNAME (t) = ti.template_id;
4079 TYPENAME_IS_ENUM_P (t) = ti.enum_p;
4080 TYPENAME_IS_CLASS_P (t) = ti.class_p;
4082 /* Build the corresponding TYPE_DECL. */
4083 tree d = build_decl (input_location, TYPE_DECL, name, t);
4084 TYPE_NAME (t) = d;
4085 TYPE_STUB_DECL (t) = d;
4086 DECL_CONTEXT (d) = ti.scope;
4087 DECL_ARTIFICIAL (d) = 1;
4089 /* Store it in the hash table. */
4090 *e = t;
4092 /* TYPENAME_TYPEs must always be compared structurally, because
4093 they may or may not resolve down to another type depending on
4094 the currently open classes. */
4095 SET_TYPE_STRUCTURAL_EQUALITY (t);
4098 return t;
4101 /* Resolve `typename CONTEXT::NAME'. TAG_TYPE indicates the tag
4102 provided to name the type. Returns an appropriate type, unless an
4103 error occurs, in which case error_mark_node is returned. If we
4104 locate a non-artificial TYPE_DECL and TF_KEEP_TYPE_DECL is set, we
4105 return that, rather than the _TYPE it corresponds to, in other
4106 cases we look through the type decl. If TF_ERROR is set, complain
4107 about errors, otherwise be quiet. */
4109 tree
4110 make_typename_type (tree context, tree name, enum tag_types tag_type,
4111 tsubst_flags_t complain)
4113 tree fullname;
4114 tree t;
4115 bool want_template;
4117 if (name == error_mark_node
4118 || context == NULL_TREE
4119 || context == error_mark_node)
4120 return error_mark_node;
4122 if (TYPE_P (name))
4124 if (!(TYPE_LANG_SPECIFIC (name)
4125 && (CLASSTYPE_IS_TEMPLATE (name)
4126 || CLASSTYPE_USE_TEMPLATE (name))))
4127 name = TYPE_IDENTIFIER (name);
4128 else
4129 /* Create a TEMPLATE_ID_EXPR for the type. */
4130 name = build_nt (TEMPLATE_ID_EXPR,
4131 CLASSTYPE_TI_TEMPLATE (name),
4132 CLASSTYPE_TI_ARGS (name));
4134 else if (TREE_CODE (name) == TYPE_DECL)
4135 name = DECL_NAME (name);
4137 fullname = name;
4139 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
4141 name = TREE_OPERAND (name, 0);
4142 if (DECL_TYPE_TEMPLATE_P (name))
4143 name = TREE_OPERAND (fullname, 0) = DECL_NAME (name);
4144 if (TREE_CODE (name) != IDENTIFIER_NODE)
4146 if (complain & tf_error)
4147 error ("%qD is not a type", name);
4148 return error_mark_node;
4151 if (TREE_CODE (name) == TEMPLATE_DECL)
4153 if (complain & tf_error)
4154 error ("%qD used without template arguments", name);
4155 return error_mark_node;
4157 else if (is_overloaded_fn (name))
4159 if (complain & tf_error)
4160 error ("%qD is a function, not a type", name);
4161 return error_mark_node;
4163 gcc_assert (identifier_p (name));
4164 gcc_assert (TYPE_P (context));
4166 if (TREE_CODE (context) == TYPE_PACK_EXPANSION)
4167 /* This can happen for C++17 variadic using (c++/88986). */;
4168 else if (!MAYBE_CLASS_TYPE_P (context))
4170 if (complain & tf_error)
4171 error ("%q#T is not a class", context);
4172 return error_mark_node;
4175 /* When the CONTEXT is a dependent type, NAME could refer to a
4176 dependent base class of CONTEXT. But look inside it anyway
4177 if CONTEXT is a currently open scope, in case it refers to a
4178 member of the current instantiation or a non-dependent base;
4179 lookup will stop when we hit a dependent base. */
4180 if (!dependent_scope_p (context))
4181 /* We should only set WANT_TYPE when we're a nested typename type.
4182 Then we can give better diagnostics if we find a non-type. */
4183 t = lookup_field (context, name, 2, /*want_type=*/true);
4184 else
4185 t = NULL_TREE;
4187 if ((!t || TREE_CODE (t) == TREE_LIST) && dependent_type_p (context))
4188 return build_typename_type (context, name, fullname, tag_type);
4190 want_template = TREE_CODE (fullname) == TEMPLATE_ID_EXPR;
4192 if (!t)
4194 if (complain & tf_error)
4196 if (!COMPLETE_TYPE_P (context))
4197 cxx_incomplete_type_error (NULL_TREE, context);
4198 else
4199 error (want_template ? G_("no class template named %q#T in %q#T")
4200 : G_("no type named %q#T in %q#T"), name, context);
4202 return error_mark_node;
4205 /* Pull out the template from an injected-class-name (or multiple). */
4206 if (want_template)
4207 t = maybe_get_template_decl_from_type_decl (t);
4209 if (TREE_CODE (t) == TREE_LIST)
4211 if (complain & tf_error)
4213 error ("lookup of %qT in %qT is ambiguous", name, context);
4214 print_candidates (t);
4216 return error_mark_node;
4219 if (want_template && !DECL_TYPE_TEMPLATE_P (t))
4221 if (complain & tf_error)
4222 error ("%<typename %T::%D%> names %q#T, which is not a class template",
4223 context, name, t);
4224 return error_mark_node;
4226 if (!want_template && TREE_CODE (t) != TYPE_DECL)
4228 if ((complain & tf_tst_ok) && cxx_dialect >= cxx17
4229 && DECL_TYPE_TEMPLATE_P (t))
4230 /* The caller permits this typename-specifier to name a template
4231 (because it appears in a CTAD-enabled context). */;
4232 else
4234 if (complain & tf_error)
4235 error ("%<typename %T::%D%> names %q#T, which is not a type",
4236 context, name, t);
4237 return error_mark_node;
4241 if (!check_accessibility_of_qualified_id (t, /*object_type=*/NULL_TREE,
4242 context, complain))
4243 return error_mark_node;
4245 if (!want_template && DECL_TYPE_TEMPLATE_P (t))
4246 return make_template_placeholder (t);
4248 if (want_template)
4250 t = lookup_template_class (t, TREE_OPERAND (fullname, 1),
4251 NULL_TREE, context,
4252 /*entering_scope=*/0,
4253 complain | tf_user);
4254 if (t == error_mark_node)
4255 return error_mark_node;
4256 t = TYPE_NAME (t);
4259 if (DECL_ARTIFICIAL (t) || !(complain & tf_keep_type_decl))
4260 t = TREE_TYPE (t);
4262 maybe_record_typedef_use (t);
4264 return t;
4267 /* Resolve `CONTEXT::template NAME'. Returns a TEMPLATE_DECL if the name
4268 can be resolved or an UNBOUND_CLASS_TEMPLATE, unless an error occurs,
4269 in which case error_mark_node is returned.
4271 If PARM_LIST is non-NULL, also make sure that the template parameter
4272 list of TEMPLATE_DECL matches.
4274 If COMPLAIN zero, don't complain about any errors that occur. */
4276 tree
4277 make_unbound_class_template (tree context, tree name, tree parm_list,
4278 tsubst_flags_t complain)
4280 if (TYPE_P (name))
4281 name = TYPE_IDENTIFIER (name);
4282 else if (DECL_P (name))
4283 name = DECL_NAME (name);
4284 gcc_assert (identifier_p (name));
4286 if (!dependent_type_p (context)
4287 || currently_open_class (context))
4289 tree tmpl = NULL_TREE;
4291 if (MAYBE_CLASS_TYPE_P (context))
4292 tmpl = lookup_field (context, name, 0, false);
4294 if (tmpl && TREE_CODE (tmpl) == TYPE_DECL)
4295 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
4297 if (!tmpl || !DECL_TYPE_TEMPLATE_P (tmpl))
4299 if (complain & tf_error)
4300 error ("no class template named %q#T in %q#T", name, context);
4301 return error_mark_node;
4304 if (parm_list
4305 && !comp_template_parms (DECL_TEMPLATE_PARMS (tmpl), parm_list))
4307 if (complain & tf_error)
4309 error ("template parameters do not match template %qD", tmpl);
4310 inform (DECL_SOURCE_LOCATION (tmpl),
4311 "%qD declared here", tmpl);
4313 return error_mark_node;
4316 if (!perform_or_defer_access_check (TYPE_BINFO (context), tmpl, tmpl,
4317 complain))
4318 return error_mark_node;
4320 return tmpl;
4323 return make_unbound_class_template_raw (context, name, parm_list);
4326 /* Build an UNBOUND_CLASS_TEMPLATE. */
4328 tree
4329 make_unbound_class_template_raw (tree context, tree name, tree parm_list)
4331 /* Build the UNBOUND_CLASS_TEMPLATE. */
4332 tree t = cxx_make_type (UNBOUND_CLASS_TEMPLATE);
4333 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
4334 TREE_TYPE (t) = NULL_TREE;
4335 SET_TYPE_STRUCTURAL_EQUALITY (t);
4337 /* Build the corresponding TEMPLATE_DECL. */
4338 tree d = build_decl (input_location, TEMPLATE_DECL, name, t);
4339 TYPE_NAME (t) = d;
4340 TYPE_STUB_DECL (t) = d;
4341 DECL_CONTEXT (d) = TYPE_CONTEXT (t);
4342 DECL_ARTIFICIAL (d) = 1;
4343 DECL_TEMPLATE_PARMS (d) = parm_list;
4345 return t;
4350 /* Push the declarations of builtin types into the global namespace.
4351 RID_INDEX is the index of the builtin type in the array
4352 RID_POINTERS. NAME is the name used when looking up the builtin
4353 type. TYPE is the _TYPE node for the builtin type.
4355 The calls to set_global_binding below should be
4356 eliminated. Built-in types should not be looked up name; their
4357 names are keywords that the parser can recognize. However, there
4358 is code in c-common.cc that uses identifier_global_value to look up
4359 built-in types by name. */
4361 void
4362 record_builtin_type (enum rid rid_index,
4363 const char* name,
4364 tree type)
4366 tree decl = NULL_TREE;
4368 if (name)
4370 tree tname = get_identifier (name);
4371 tree tdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, tname, type);
4372 DECL_ARTIFICIAL (tdecl) = 1;
4373 set_global_binding (tdecl);
4374 decl = tdecl;
4377 if ((int) rid_index < (int) RID_MAX)
4378 if (tree rname = ridpointers[(int) rid_index])
4379 if (!decl || DECL_NAME (decl) != rname)
4381 tree rdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, rname, type);
4382 DECL_ARTIFICIAL (rdecl) = 1;
4383 set_global_binding (rdecl);
4384 if (!decl)
4385 decl = rdecl;
4388 if (decl)
4390 if (!TYPE_NAME (type))
4391 TYPE_NAME (type) = decl;
4392 debug_hooks->type_decl (decl, 0);
4396 /* Push a type into the namespace so that the back ends ignore it. */
4398 static void
4399 record_unknown_type (tree type, const char* name)
4401 tree decl = pushdecl (build_decl (UNKNOWN_LOCATION,
4402 TYPE_DECL, get_identifier (name), type));
4403 /* Make sure the "unknown type" typedecl gets ignored for debug info. */
4404 DECL_IGNORED_P (decl) = 1;
4405 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
4406 TYPE_SIZE (type) = TYPE_SIZE (void_type_node);
4407 SET_TYPE_ALIGN (type, 1);
4408 TYPE_USER_ALIGN (type) = 0;
4409 SET_TYPE_MODE (type, TYPE_MODE (void_type_node));
4412 /* Create all the predefined identifiers. */
4414 static void
4415 initialize_predefined_identifiers (void)
4417 struct predefined_identifier
4419 const char *name; /* Name. */
4420 tree *node; /* Node to store it in. */
4421 cp_identifier_kind kind; /* Kind of identifier. */
4424 /* A table of identifiers to create at startup. */
4425 static const predefined_identifier predefined_identifiers[] = {
4426 {"C++", &lang_name_cplusplus, cik_normal},
4427 {"C", &lang_name_c, cik_normal},
4428 /* Some of these names have a trailing space so that it is
4429 impossible for them to conflict with names written by users. */
4430 {"__ct ", &ctor_identifier, cik_ctor},
4431 {"__ct_base ", &base_ctor_identifier, cik_ctor},
4432 {"__ct_comp ", &complete_ctor_identifier, cik_ctor},
4433 {"__dt ", &dtor_identifier, cik_dtor},
4434 {"__dt_base ", &base_dtor_identifier, cik_dtor},
4435 {"__dt_comp ", &complete_dtor_identifier, cik_dtor},
4436 {"__dt_del ", &deleting_dtor_identifier, cik_dtor},
4437 {"__conv_op ", &conv_op_identifier, cik_conv_op},
4438 {"__in_chrg", &in_charge_identifier, cik_normal},
4439 {"__as_base ", &as_base_identifier, cik_normal},
4440 {"this", &this_identifier, cik_normal},
4441 {"__delta", &delta_identifier, cik_normal},
4442 {"__pfn", &pfn_identifier, cik_normal},
4443 {"_vptr", &vptr_identifier, cik_normal},
4444 {"__vtt_parm", &vtt_parm_identifier, cik_normal},
4445 {"::", &global_identifier, cik_normal},
4446 /* The demangler expects anonymous namespaces to be called
4447 something starting with '_GLOBAL__N_'. It no longer needs
4448 to be unique to the TU. */
4449 {"_GLOBAL__N_1", &anon_identifier, cik_normal},
4450 {"auto", &auto_identifier, cik_normal},
4451 {"decltype(auto)", &decltype_auto_identifier, cik_normal},
4452 {"initializer_list", &init_list_identifier, cik_normal},
4453 {"__for_range ", &for_range__identifier, cik_normal},
4454 {"__for_begin ", &for_begin__identifier, cik_normal},
4455 {"__for_end ", &for_end__identifier, cik_normal},
4456 {"__for_range", &for_range_identifier, cik_normal},
4457 {"__for_begin", &for_begin_identifier, cik_normal},
4458 {"__for_end", &for_end_identifier, cik_normal},
4459 {"abi_tag", &abi_tag_identifier, cik_normal},
4460 {"aligned", &aligned_identifier, cik_normal},
4461 {"begin", &begin_identifier, cik_normal},
4462 {"end", &end_identifier, cik_normal},
4463 {"get", &get__identifier, cik_normal},
4464 {"gnu", &gnu_identifier, cik_normal},
4465 {"tuple_element", &tuple_element_identifier, cik_normal},
4466 {"tuple_size", &tuple_size_identifier, cik_normal},
4467 {"type", &type_identifier, cik_normal},
4468 {"value", &value_identifier, cik_normal},
4469 {"_FUN", &fun_identifier, cik_normal},
4470 {"__closure", &closure_identifier, cik_normal},
4471 {"heap uninit", &heap_uninit_identifier, cik_normal},
4472 {"heap ", &heap_identifier, cik_normal},
4473 {"heap deleted", &heap_deleted_identifier, cik_normal},
4474 {"heap [] uninit", &heap_vec_uninit_identifier, cik_normal},
4475 {"heap []", &heap_vec_identifier, cik_normal},
4476 {"omp", &omp_identifier, cik_normal},
4477 {NULL, NULL, cik_normal}
4480 for (const predefined_identifier *pid = predefined_identifiers;
4481 pid->name; ++pid)
4483 *pid->node = get_identifier (pid->name);
4484 /* Some of these identifiers already have a special kind. */
4485 if (pid->kind != cik_normal)
4486 set_identifier_kind (*pid->node, pid->kind);
4490 /* Create the predefined scalar types of C,
4491 and some nodes representing standard constants (0, 1, (void *)0).
4492 Initialize the global binding level.
4493 Make definitions for built-in primitive functions. */
4495 void
4496 cxx_init_decl_processing (void)
4498 tree void_ftype;
4499 tree void_ftype_ptr;
4501 /* Create all the identifiers we need. */
4502 initialize_predefined_identifiers ();
4504 /* Create the global variables. */
4505 push_to_top_level ();
4507 current_function_decl = NULL_TREE;
4508 current_binding_level = NULL;
4509 /* Enter the global namespace. */
4510 gcc_assert (global_namespace == NULL_TREE);
4511 global_namespace = build_lang_decl (NAMESPACE_DECL, global_identifier,
4512 void_type_node);
4513 TREE_PUBLIC (global_namespace) = true;
4514 DECL_MODULE_EXPORT_P (global_namespace) = true;
4515 DECL_CONTEXT (global_namespace)
4516 = build_translation_unit_decl (get_identifier (main_input_filename));
4517 /* Remember whether we want the empty class passing ABI change warning
4518 in this TU. */
4519 TRANSLATION_UNIT_WARN_EMPTY_P (DECL_CONTEXT (global_namespace))
4520 = warn_abi && abi_version_crosses (12);
4521 debug_hooks->register_main_translation_unit
4522 (DECL_CONTEXT (global_namespace));
4523 begin_scope (sk_namespace, global_namespace);
4524 current_namespace = global_namespace;
4526 if (flag_visibility_ms_compat)
4527 default_visibility = VISIBILITY_HIDDEN;
4529 /* Initially, C. */
4530 current_lang_name = lang_name_c;
4532 /* Create the `std' namespace. */
4533 push_namespace (get_identifier ("std"));
4534 std_node = current_namespace;
4535 pop_namespace ();
4537 flag_noexcept_type = (cxx_dialect >= cxx17);
4539 c_common_nodes_and_builtins ();
4541 tree bool_ftype = build_function_type_list (boolean_type_node, NULL_TREE);
4542 tree decl
4543 = add_builtin_function ("__builtin_is_constant_evaluated",
4544 bool_ftype, CP_BUILT_IN_IS_CONSTANT_EVALUATED,
4545 BUILT_IN_FRONTEND, NULL, NULL_TREE);
4546 set_call_expr_flags (decl, ECF_CONST | ECF_NOTHROW | ECF_LEAF);
4548 tree cptr_ftype = build_function_type_list (const_ptr_type_node, NULL_TREE);
4549 decl = add_builtin_function ("__builtin_source_location",
4550 cptr_ftype, CP_BUILT_IN_SOURCE_LOCATION,
4551 BUILT_IN_FRONTEND, NULL, NULL_TREE);
4552 set_call_expr_flags (decl, ECF_CONST | ECF_NOTHROW | ECF_LEAF);
4554 tree bool_vaftype = build_varargs_function_type_list (boolean_type_node,
4555 NULL_TREE);
4556 decl
4557 = add_builtin_function ("__builtin_is_corresponding_member",
4558 bool_vaftype,
4559 CP_BUILT_IN_IS_CORRESPONDING_MEMBER,
4560 BUILT_IN_FRONTEND, NULL, NULL_TREE);
4561 set_call_expr_flags (decl, ECF_CONST | ECF_NOTHROW | ECF_LEAF);
4563 decl
4564 = add_builtin_function ("__builtin_is_pointer_interconvertible_with_class",
4565 bool_vaftype,
4566 CP_BUILT_IN_IS_POINTER_INTERCONVERTIBLE_WITH_CLASS,
4567 BUILT_IN_FRONTEND, NULL, NULL_TREE);
4568 set_call_expr_flags (decl, ECF_CONST | ECF_NOTHROW | ECF_LEAF);
4570 integer_two_node = build_int_cst (NULL_TREE, 2);
4572 /* Guess at the initial static decls size. */
4573 vec_alloc (static_decls, 500);
4575 /* ... and keyed classes. */
4576 vec_alloc (keyed_classes, 100);
4578 record_builtin_type (RID_BOOL, "bool", boolean_type_node);
4579 truthvalue_type_node = boolean_type_node;
4580 truthvalue_false_node = boolean_false_node;
4581 truthvalue_true_node = boolean_true_node;
4583 empty_except_spec = build_tree_list (NULL_TREE, NULL_TREE);
4584 noexcept_true_spec = build_tree_list (boolean_true_node, NULL_TREE);
4585 noexcept_false_spec = build_tree_list (boolean_false_node, NULL_TREE);
4586 noexcept_deferred_spec = build_tree_list (make_node (DEFERRED_NOEXCEPT),
4587 NULL_TREE);
4589 #if 0
4590 record_builtin_type (RID_MAX, NULL, string_type_node);
4591 #endif
4593 delta_type_node = ptrdiff_type_node;
4594 vtable_index_type = ptrdiff_type_node;
4596 vtt_parm_type = build_pointer_type (const_ptr_type_node);
4597 void_ftype = build_function_type_list (void_type_node, NULL_TREE);
4598 void_ftype_ptr = build_function_type_list (void_type_node,
4599 ptr_type_node, NULL_TREE);
4600 void_ftype_ptr
4601 = build_exception_variant (void_ftype_ptr, empty_except_spec);
4603 /* Create the conversion operator marker. This operator's DECL_NAME
4604 is in the identifier table, so we can use identifier equality to
4605 find it. */
4606 conv_op_marker = build_lang_decl (FUNCTION_DECL, conv_op_identifier,
4607 void_ftype);
4609 /* C++ extensions */
4611 unknown_type_node = make_node (LANG_TYPE);
4612 record_unknown_type (unknown_type_node, "unknown type");
4614 /* Indirecting an UNKNOWN_TYPE node yields an UNKNOWN_TYPE node. */
4615 TREE_TYPE (unknown_type_node) = unknown_type_node;
4617 /* Looking up TYPE_POINTER_TO and TYPE_REFERENCE_TO yield the same
4618 result. */
4619 TYPE_POINTER_TO (unknown_type_node) = unknown_type_node;
4620 TYPE_REFERENCE_TO (unknown_type_node) = unknown_type_node;
4622 init_list_type_node = make_node (LANG_TYPE);
4623 record_unknown_type (init_list_type_node, "init list");
4625 /* Used when parsing to distinguish parameter-lists () and (void). */
4626 explicit_void_list_node = build_void_list_node ();
4629 /* Make sure we get a unique function type, so we can give
4630 its pointer type a name. (This wins for gdb.) */
4631 tree vfunc_type = make_node (FUNCTION_TYPE);
4632 TREE_TYPE (vfunc_type) = integer_type_node;
4633 TYPE_ARG_TYPES (vfunc_type) = NULL_TREE;
4634 layout_type (vfunc_type);
4636 vtable_entry_type = build_pointer_type (vfunc_type);
4638 record_builtin_type (RID_MAX, "__vtbl_ptr_type", vtable_entry_type);
4640 vtbl_type_node
4641 = build_cplus_array_type (vtable_entry_type, NULL_TREE);
4642 layout_type (vtbl_type_node);
4643 vtbl_type_node = cp_build_qualified_type (vtbl_type_node, TYPE_QUAL_CONST);
4644 record_builtin_type (RID_MAX, NULL, vtbl_type_node);
4645 vtbl_ptr_type_node = build_pointer_type (vtable_entry_type);
4646 layout_type (vtbl_ptr_type_node);
4647 record_builtin_type (RID_MAX, NULL, vtbl_ptr_type_node);
4649 push_namespace (get_identifier ("__cxxabiv1"));
4650 abi_node = current_namespace;
4651 pop_namespace ();
4653 any_targ_node = make_node (LANG_TYPE);
4654 record_unknown_type (any_targ_node, "any type");
4656 /* Now, C++. */
4657 current_lang_name = lang_name_cplusplus;
4659 if (aligned_new_threshold > 1
4660 && !pow2p_hwi (aligned_new_threshold))
4662 error ("%<-faligned-new=%d%> is not a power of two",
4663 aligned_new_threshold);
4664 aligned_new_threshold = 1;
4666 if (aligned_new_threshold == -1)
4667 aligned_new_threshold = (cxx_dialect >= cxx17) ? 1 : 0;
4668 if (aligned_new_threshold == 1)
4669 aligned_new_threshold = malloc_alignment () / BITS_PER_UNIT;
4672 tree newattrs, extvisattr;
4673 tree newtype, deltype;
4674 tree ptr_ftype_sizetype;
4675 tree new_eh_spec;
4677 ptr_ftype_sizetype
4678 = build_function_type_list (ptr_type_node, size_type_node, NULL_TREE);
4679 if (cxx_dialect == cxx98)
4681 tree bad_alloc_id;
4682 tree bad_alloc_type_node;
4683 tree bad_alloc_decl;
4685 push_nested_namespace (std_node);
4686 bad_alloc_id = get_identifier ("bad_alloc");
4687 bad_alloc_type_node = make_class_type (RECORD_TYPE);
4688 TYPE_CONTEXT (bad_alloc_type_node) = current_namespace;
4689 bad_alloc_decl
4690 = create_implicit_typedef (bad_alloc_id, bad_alloc_type_node);
4691 DECL_CONTEXT (bad_alloc_decl) = current_namespace;
4692 pop_nested_namespace (std_node);
4694 new_eh_spec
4695 = add_exception_specifier (NULL_TREE, bad_alloc_type_node, -1);
4697 else
4698 new_eh_spec = noexcept_false_spec;
4700 /* Ensure attribs.cc is initialized. */
4701 init_attributes ();
4703 extvisattr = build_tree_list (get_identifier ("externally_visible"),
4704 NULL_TREE);
4705 newattrs = tree_cons (get_identifier ("alloc_size"),
4706 build_tree_list (NULL_TREE, integer_one_node),
4707 extvisattr);
4708 newtype = cp_build_type_attribute_variant (ptr_ftype_sizetype, newattrs);
4709 newtype = build_exception_variant (newtype, new_eh_spec);
4710 deltype = cp_build_type_attribute_variant (void_ftype_ptr, extvisattr);
4711 deltype = build_exception_variant (deltype, empty_except_spec);
4712 tree opnew = push_cp_library_fn (NEW_EXPR, newtype, 0);
4713 DECL_IS_MALLOC (opnew) = 1;
4714 DECL_SET_IS_OPERATOR_NEW (opnew, true);
4715 DECL_IS_REPLACEABLE_OPERATOR (opnew) = 1;
4716 opnew = push_cp_library_fn (VEC_NEW_EXPR, newtype, 0);
4717 DECL_IS_MALLOC (opnew) = 1;
4718 DECL_SET_IS_OPERATOR_NEW (opnew, true);
4719 DECL_IS_REPLACEABLE_OPERATOR (opnew) = 1;
4720 tree opdel = push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4721 DECL_SET_IS_OPERATOR_DELETE (opdel, true);
4722 DECL_IS_REPLACEABLE_OPERATOR (opdel) = 1;
4723 opdel = push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4724 DECL_SET_IS_OPERATOR_DELETE (opdel, true);
4725 DECL_IS_REPLACEABLE_OPERATOR (opdel) = 1;
4726 if (flag_sized_deallocation)
4728 /* Also push the sized deallocation variants:
4729 void operator delete(void*, std::size_t) throw();
4730 void operator delete[](void*, std::size_t) throw(); */
4731 tree void_ftype_ptr_size
4732 = build_function_type_list (void_type_node, ptr_type_node,
4733 size_type_node, NULL_TREE);
4734 deltype = cp_build_type_attribute_variant (void_ftype_ptr_size,
4735 extvisattr);
4736 deltype = build_exception_variant (deltype, empty_except_spec);
4737 opdel = push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4738 DECL_SET_IS_OPERATOR_DELETE (opdel, true);
4739 DECL_IS_REPLACEABLE_OPERATOR (opdel) = 1;
4740 opdel = push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4741 DECL_SET_IS_OPERATOR_DELETE (opdel, true);
4742 DECL_IS_REPLACEABLE_OPERATOR (opdel) = 1;
4745 if (aligned_new_threshold)
4747 push_nested_namespace (std_node);
4748 tree align_id = get_identifier ("align_val_t");
4749 align_type_node = start_enum (align_id, NULL_TREE, size_type_node,
4750 NULL_TREE, /*scoped*/true, NULL);
4751 pop_nested_namespace (std_node);
4753 /* operator new (size_t, align_val_t); */
4754 newtype = build_function_type_list (ptr_type_node, size_type_node,
4755 align_type_node, NULL_TREE);
4756 newtype = cp_build_type_attribute_variant (newtype, newattrs);
4757 newtype = build_exception_variant (newtype, new_eh_spec);
4758 opnew = push_cp_library_fn (NEW_EXPR, newtype, 0);
4759 DECL_IS_MALLOC (opnew) = 1;
4760 DECL_SET_IS_OPERATOR_NEW (opnew, true);
4761 DECL_IS_REPLACEABLE_OPERATOR (opnew) = 1;
4762 opnew = push_cp_library_fn (VEC_NEW_EXPR, newtype, 0);
4763 DECL_IS_MALLOC (opnew) = 1;
4764 DECL_SET_IS_OPERATOR_NEW (opnew, true);
4765 DECL_IS_REPLACEABLE_OPERATOR (opnew) = 1;
4767 /* operator delete (void *, align_val_t); */
4768 deltype = build_function_type_list (void_type_node, ptr_type_node,
4769 align_type_node, NULL_TREE);
4770 deltype = cp_build_type_attribute_variant (deltype, extvisattr);
4771 deltype = build_exception_variant (deltype, empty_except_spec);
4772 opdel = push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4773 DECL_SET_IS_OPERATOR_DELETE (opdel, true);
4774 DECL_IS_REPLACEABLE_OPERATOR (opdel) = 1;
4775 opdel = push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4776 DECL_SET_IS_OPERATOR_DELETE (opdel, true);
4777 DECL_IS_REPLACEABLE_OPERATOR (opdel) = 1;
4779 if (flag_sized_deallocation)
4781 /* operator delete (void *, size_t, align_val_t); */
4782 deltype = build_function_type_list (void_type_node, ptr_type_node,
4783 size_type_node, align_type_node,
4784 NULL_TREE);
4785 deltype = cp_build_type_attribute_variant (deltype, extvisattr);
4786 deltype = build_exception_variant (deltype, empty_except_spec);
4787 opdel = push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4788 DECL_SET_IS_OPERATOR_DELETE (opdel, true);
4789 DECL_IS_REPLACEABLE_OPERATOR (opdel) = 1;
4790 opdel = push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4791 DECL_SET_IS_OPERATOR_DELETE (opdel, true);
4792 DECL_IS_REPLACEABLE_OPERATOR (opdel) = 1;
4796 nullptr_type_node = make_node (NULLPTR_TYPE);
4797 TYPE_SIZE (nullptr_type_node) = bitsize_int (GET_MODE_BITSIZE (ptr_mode));
4798 TYPE_SIZE_UNIT (nullptr_type_node) = size_int (GET_MODE_SIZE (ptr_mode));
4799 TYPE_UNSIGNED (nullptr_type_node) = 1;
4800 TYPE_PRECISION (nullptr_type_node) = GET_MODE_BITSIZE (ptr_mode);
4801 if (abi_version_at_least (9))
4802 SET_TYPE_ALIGN (nullptr_type_node, GET_MODE_ALIGNMENT (ptr_mode));
4803 SET_TYPE_MODE (nullptr_type_node, ptr_mode);
4804 record_builtin_type (RID_MAX, "decltype(nullptr)", nullptr_type_node);
4805 nullptr_node = build_int_cst (nullptr_type_node, 0);
4808 if (! supports_one_only ())
4809 flag_weak = 0;
4811 abort_fndecl
4812 = build_library_fn_ptr ("__cxa_pure_virtual", void_ftype,
4813 ECF_NORETURN | ECF_NOTHROW | ECF_COLD);
4814 if (flag_weak)
4815 /* If no definition is available, resolve references to NULL. */
4816 declare_weak (abort_fndecl);
4818 /* Perform other language dependent initializations. */
4819 init_class_processing ();
4820 init_rtti_processing ();
4821 init_template_processing ();
4823 if (flag_exceptions)
4824 init_exception_processing ();
4826 if (modules_p ())
4827 init_modules (parse_in);
4829 make_fname_decl = cp_make_fname_decl;
4830 start_fname_decls ();
4832 /* Show we use EH for cleanups. */
4833 if (flag_exceptions)
4834 using_eh_for_cleanups ();
4836 /* Check that the hardware interference sizes are at least
4837 alignof(max_align_t), as required by the standard. */
4838 const int max_align = max_align_t_align () / BITS_PER_UNIT;
4839 if (OPTION_SET_P (param_destruct_interfere_size))
4841 if (param_destruct_interfere_size < max_align)
4842 error ("%<--param destructive-interference-size=%d%> is less than "
4843 "%d", param_destruct_interfere_size, max_align);
4844 else if (param_destruct_interfere_size < param_l1_cache_line_size)
4845 warning (OPT_Winterference_size,
4846 "%<--param destructive-interference-size=%d%> "
4847 "is less than %<--param l1-cache-line-size=%d%>",
4848 param_destruct_interfere_size, param_l1_cache_line_size);
4850 else if (param_destruct_interfere_size)
4851 /* Assume the internal value is OK. */;
4852 else if (param_l1_cache_line_size >= max_align)
4853 param_destruct_interfere_size = param_l1_cache_line_size;
4854 /* else leave it unset. */
4856 if (OPTION_SET_P (param_construct_interfere_size))
4858 if (param_construct_interfere_size < max_align)
4859 error ("%<--param constructive-interference-size=%d%> is less than "
4860 "%d", param_construct_interfere_size, max_align);
4861 else if (param_construct_interfere_size > param_l1_cache_line_size
4862 && param_l1_cache_line_size >= max_align)
4863 warning (OPT_Winterference_size,
4864 "%<--param constructive-interference-size=%d%> "
4865 "is greater than %<--param l1-cache-line-size=%d%>",
4866 param_construct_interfere_size, param_l1_cache_line_size);
4868 else if (param_construct_interfere_size)
4869 /* Assume the internal value is OK. */;
4870 else if (param_l1_cache_line_size >= max_align)
4871 param_construct_interfere_size = param_l1_cache_line_size;
4874 /* Enter an abi node in global-module context. returns a cookie to
4875 give to pop_abi_namespace. */
4877 unsigned
4878 push_abi_namespace (tree node)
4880 push_nested_namespace (node);
4881 push_visibility ("default", 2);
4882 unsigned flags = module_kind;
4883 module_kind = 0;
4884 return flags;
4887 /* Pop an abi namespace, FLAGS is the cookie push_abi_namespace gave
4888 you. */
4890 void
4891 pop_abi_namespace (unsigned flags, tree node)
4893 module_kind = flags;
4894 pop_visibility (2);
4895 pop_nested_namespace (node);
4898 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give
4899 the decl, LOC is the location to give the decl, NAME is the
4900 initialization string and TYPE_DEP indicates whether NAME depended
4901 on the type of the function. We make use of that to detect
4902 __PRETTY_FUNCTION__ inside a template fn. This is being done lazily
4903 at the point of first use, so we mustn't push the decl now. */
4905 static tree
4906 cp_make_fname_decl (location_t loc, tree id, int type_dep)
4908 tree domain = NULL_TREE;
4909 tree init = NULL_TREE;
4911 if (!(type_dep && in_template_function ()))
4913 const char *name = NULL;
4914 bool release_name = false;
4916 if (current_function_decl == NULL_TREE)
4917 name = "top level";
4918 else if (type_dep == 0)
4920 /* __FUNCTION__ */
4921 name = fname_as_string (type_dep);
4922 release_name = true;
4924 else
4926 /* __PRETTY_FUNCTION__ */
4927 gcc_checking_assert (type_dep == 1);
4928 name = cxx_printable_name (current_function_decl, 2);
4931 size_t length = strlen (name);
4932 domain = build_index_type (size_int (length));
4933 init = build_string (length + 1, name);
4934 if (release_name)
4935 free (const_cast<char *> (name));
4938 tree type = cp_build_qualified_type (char_type_node, TYPE_QUAL_CONST);
4939 type = build_cplus_array_type (type, domain);
4941 if (init)
4942 TREE_TYPE (init) = type;
4943 else
4944 init = error_mark_node;
4946 tree decl = build_decl (loc, VAR_DECL, id, type);
4948 TREE_READONLY (decl) = 1;
4949 DECL_ARTIFICIAL (decl) = 1;
4950 DECL_DECLARED_CONSTEXPR_P (decl) = 1;
4951 TREE_STATIC (decl) = 1;
4953 TREE_USED (decl) = 1;
4955 SET_DECL_VALUE_EXPR (decl, init);
4956 DECL_HAS_VALUE_EXPR_P (decl) = 1;
4957 /* For decl_constant_var_p. */
4958 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = 1;
4960 if (current_function_decl)
4962 DECL_CONTEXT (decl) = current_function_decl;
4963 decl = pushdecl_outermost_localscope (decl);
4964 if (decl != error_mark_node)
4965 add_decl_expr (decl);
4967 else
4969 DECL_THIS_STATIC (decl) = true;
4970 decl = pushdecl_top_level_and_finish (decl, NULL_TREE);
4973 return decl;
4976 /* Install DECL as a builtin function at current global scope. Return
4977 the new decl (if we found an existing version). Also installs it
4978 into ::std, if it's not '_*'. */
4980 tree
4981 cxx_builtin_function (tree decl)
4983 retrofit_lang_decl (decl);
4985 DECL_ARTIFICIAL (decl) = 1;
4986 SET_DECL_LANGUAGE (decl, lang_c);
4987 /* Runtime library routines are, by definition, available in an
4988 external shared object. */
4989 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
4990 DECL_VISIBILITY_SPECIFIED (decl) = 1;
4992 tree id = DECL_NAME (decl);
4993 const char *name = IDENTIFIER_POINTER (id);
4994 bool hiding = false;
4995 if (name[0] != '_' || name[1] != '_')
4996 /* In the user's namespace, it must be declared before use. */
4997 hiding = true;
4998 else if (IDENTIFIER_LENGTH (id) > strlen ("___chk")
4999 && !startswith (name + 2, "builtin_")
5000 && 0 == memcmp (name + IDENTIFIER_LENGTH (id) - strlen ("_chk"),
5001 "_chk", strlen ("_chk") + 1))
5002 /* Treat __*_chk fortification functions as anticipated as well,
5003 unless they are __builtin_*_chk. */
5004 hiding = true;
5006 /* All builtins that don't begin with an '_' should additionally
5007 go in the 'std' namespace. */
5008 if (name[0] != '_')
5010 tree std_decl = copy_decl (decl);
5012 push_nested_namespace (std_node);
5013 DECL_CONTEXT (std_decl) = FROB_CONTEXT (std_node);
5014 pushdecl (std_decl, hiding);
5015 pop_nested_namespace (std_node);
5018 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
5019 decl = pushdecl (decl, hiding);
5021 return decl;
5024 /* Like cxx_builtin_function, but guarantee the function is added to the global
5025 scope. This is to allow function specific options to add new machine
5026 dependent builtins when the target ISA changes via attribute((target(...)))
5027 which saves space on program startup if the program does not use non-generic
5028 ISAs. */
5030 tree
5031 cxx_builtin_function_ext_scope (tree decl)
5033 push_nested_namespace (global_namespace);
5034 decl = cxx_builtin_function (decl);
5035 pop_nested_namespace (global_namespace);
5037 return decl;
5040 /* Implement LANG_HOOKS_SIMULATE_BUILTIN_FUNCTION_DECL. */
5042 tree
5043 cxx_simulate_builtin_function_decl (tree decl)
5045 retrofit_lang_decl (decl);
5047 DECL_ARTIFICIAL (decl) = 1;
5048 SET_DECL_LANGUAGE (decl, lang_cplusplus);
5049 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
5050 return pushdecl (decl);
5053 /* Generate a FUNCTION_DECL with the typical flags for a runtime library
5054 function. Not called directly. */
5056 static tree
5057 build_library_fn (tree name, enum tree_code operator_code, tree type,
5058 int ecf_flags)
5060 tree fn = build_lang_decl (FUNCTION_DECL, name, type);
5061 DECL_EXTERNAL (fn) = 1;
5062 TREE_PUBLIC (fn) = 1;
5063 DECL_ARTIFICIAL (fn) = 1;
5064 DECL_OVERLOADED_OPERATOR_CODE_RAW (fn)
5065 = OVL_OP_INFO (false, operator_code)->ovl_op_code;
5066 SET_DECL_LANGUAGE (fn, lang_c);
5067 /* Runtime library routines are, by definition, available in an
5068 external shared object. */
5069 DECL_VISIBILITY (fn) = VISIBILITY_DEFAULT;
5070 DECL_VISIBILITY_SPECIFIED (fn) = 1;
5071 set_call_expr_flags (fn, ecf_flags);
5072 return fn;
5075 /* Returns the _DECL for a library function with C++ linkage. */
5077 static tree
5078 build_cp_library_fn (tree name, enum tree_code operator_code, tree type,
5079 int ecf_flags)
5081 tree fn = build_library_fn (name, operator_code, type, ecf_flags);
5082 DECL_CONTEXT (fn) = FROB_CONTEXT (current_namespace);
5083 SET_DECL_LANGUAGE (fn, lang_cplusplus);
5084 return fn;
5087 /* Like build_library_fn, but takes a C string instead of an
5088 IDENTIFIER_NODE. */
5090 tree
5091 build_library_fn_ptr (const char* name, tree type, int ecf_flags)
5093 return build_library_fn (get_identifier (name), ERROR_MARK, type, ecf_flags);
5096 /* Like build_cp_library_fn, but takes a C string instead of an
5097 IDENTIFIER_NODE. */
5099 tree
5100 build_cp_library_fn_ptr (const char* name, tree type, int ecf_flags)
5102 return build_cp_library_fn (get_identifier (name), ERROR_MARK, type,
5103 ecf_flags);
5106 /* Like build_library_fn, but also pushes the function so that we will
5107 be able to find it via get_global_binding. Also, the function
5108 may throw exceptions listed in RAISES. */
5110 tree
5111 push_library_fn (tree name, tree type, tree raises, int ecf_flags)
5113 if (raises)
5114 type = build_exception_variant (type, raises);
5116 tree fn = build_library_fn (name, ERROR_MARK, type, ecf_flags);
5117 return pushdecl_top_level (fn);
5120 /* Like build_cp_library_fn, but also pushes the function so that it
5121 will be found by normal lookup. */
5123 static tree
5124 push_cp_library_fn (enum tree_code operator_code, tree type,
5125 int ecf_flags)
5127 tree fn = build_cp_library_fn (ovl_op_identifier (false, operator_code),
5128 operator_code, type, ecf_flags);
5129 pushdecl (fn);
5130 if (flag_tm)
5131 apply_tm_attr (fn, get_identifier ("transaction_safe"));
5132 return fn;
5135 /* Like push_library_fn, but also note that this function throws
5136 and does not return. Used for __throw_foo and the like. */
5138 tree
5139 push_throw_library_fn (tree name, tree type)
5141 tree fn = push_library_fn (name, type, NULL_TREE, ECF_NORETURN | ECF_COLD);
5142 return fn;
5145 /* When we call finish_struct for an anonymous union, we create
5146 default copy constructors and such. But, an anonymous union
5147 shouldn't have such things; this function undoes the damage to the
5148 anonymous union type T.
5150 (The reason that we create the synthesized methods is that we don't
5151 distinguish `union { int i; }' from `typedef union { int i; } U'.
5152 The first is an anonymous union; the second is just an ordinary
5153 union type.) */
5155 void
5156 fixup_anonymous_aggr (tree t)
5158 /* Wipe out memory of synthesized methods. */
5159 TYPE_HAS_USER_CONSTRUCTOR (t) = 0;
5160 TYPE_HAS_DEFAULT_CONSTRUCTOR (t) = 0;
5161 TYPE_HAS_COPY_CTOR (t) = 0;
5162 TYPE_HAS_CONST_COPY_CTOR (t) = 0;
5163 TYPE_HAS_COPY_ASSIGN (t) = 0;
5164 TYPE_HAS_CONST_COPY_ASSIGN (t) = 0;
5166 /* Splice the implicitly generated functions out of TYPE_FIELDS and diagnose
5167 invalid members. */
5168 for (tree probe, *prev_p = &TYPE_FIELDS (t); (probe = *prev_p);)
5170 if (TREE_CODE (probe) == FUNCTION_DECL && DECL_ARTIFICIAL (probe))
5171 *prev_p = DECL_CHAIN (probe);
5172 else
5173 prev_p = &DECL_CHAIN (probe);
5175 if (DECL_ARTIFICIAL (probe)
5176 && (!DECL_IMPLICIT_TYPEDEF_P (probe)
5177 || TYPE_ANON_P (TREE_TYPE (probe))))
5178 continue;
5180 if (TREE_CODE (probe) != FIELD_DECL
5181 || (TREE_PRIVATE (probe) || TREE_PROTECTED (probe)))
5183 /* We already complained about static data members in
5184 finish_static_data_member_decl. */
5185 if (!VAR_P (probe))
5187 auto_diagnostic_group d;
5188 if (permerror (DECL_SOURCE_LOCATION (probe),
5189 TREE_CODE (t) == UNION_TYPE
5190 ? "%q#D invalid; an anonymous union may "
5191 "only have public non-static data members"
5192 : "%q#D invalid; an anonymous struct may "
5193 "only have public non-static data members", probe))
5195 static bool hint;
5196 if (flag_permissive && !hint)
5198 hint = true;
5199 inform (DECL_SOURCE_LOCATION (probe),
5200 "this flexibility is deprecated and will be "
5201 "removed");
5208 /* Splice all functions out of CLASSTYPE_MEMBER_VEC. */
5209 vec<tree,va_gc>* vec = CLASSTYPE_MEMBER_VEC (t);
5210 unsigned store = 0;
5211 for (tree elt : vec)
5212 if (!is_overloaded_fn (elt))
5213 (*vec)[store++] = elt;
5214 vec_safe_truncate (vec, store);
5216 /* Wipe RTTI info. */
5217 CLASSTYPE_TYPEINFO_VAR (t) = NULL_TREE;
5219 /* Anonymous aggregates cannot have fields with ctors, dtors or complex
5220 assignment operators (because they cannot have these methods themselves).
5221 For anonymous unions this is already checked because they are not allowed
5222 in any union, otherwise we have to check it. */
5223 if (TREE_CODE (t) != UNION_TYPE)
5225 tree field, type;
5227 if (BINFO_N_BASE_BINFOS (TYPE_BINFO (t)))
5229 error_at (location_of (t), "anonymous struct with base classes");
5230 /* Avoid ICE after error on anon-struct9.C. */
5231 TYPE_NEEDS_CONSTRUCTING (t) = false;
5234 for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
5235 if (TREE_CODE (field) == FIELD_DECL)
5237 type = TREE_TYPE (field);
5238 if (CLASS_TYPE_P (type))
5240 if (TYPE_NEEDS_CONSTRUCTING (type))
5241 error ("member %q+#D with constructor not allowed "
5242 "in anonymous aggregate", field);
5243 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
5244 error ("member %q+#D with destructor not allowed "
5245 "in anonymous aggregate", field);
5246 if (TYPE_HAS_COMPLEX_COPY_ASSIGN (type))
5247 error ("member %q+#D with copy assignment operator "
5248 "not allowed in anonymous aggregate", field);
5254 /* Warn for an attribute located at LOCATION that appertains to the
5255 class type CLASS_TYPE that has not been properly placed after its
5256 class-key, in it class-specifier. */
5258 void
5259 warn_misplaced_attr_for_class_type (location_t location,
5260 tree class_type)
5262 gcc_assert (OVERLOAD_TYPE_P (class_type));
5264 auto_diagnostic_group d;
5265 if (warning_at (location, OPT_Wattributes,
5266 "attribute ignored in declaration "
5267 "of %q#T", class_type))
5268 inform (location,
5269 "attribute for %q#T must follow the %qs keyword",
5270 class_type, class_key_or_enum_as_string (class_type));
5273 /* Returns the cv-qualifiers that apply to the type specified
5274 by the DECLSPECS. */
5276 static int
5277 get_type_quals (const cp_decl_specifier_seq *declspecs)
5279 int type_quals = TYPE_UNQUALIFIED;
5281 if (decl_spec_seq_has_spec_p (declspecs, ds_const))
5282 type_quals |= TYPE_QUAL_CONST;
5283 if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
5284 type_quals |= TYPE_QUAL_VOLATILE;
5285 if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
5286 type_quals |= TYPE_QUAL_RESTRICT;
5288 return type_quals;
5291 /* Make sure that a declaration with no declarator is well-formed, i.e.
5292 just declares a tagged type or anonymous union.
5294 Returns the type declared; or NULL_TREE if none. */
5296 tree
5297 check_tag_decl (cp_decl_specifier_seq *declspecs,
5298 bool explicit_type_instantiation_p)
5300 int saw_friend = decl_spec_seq_has_spec_p (declspecs, ds_friend);
5301 int saw_typedef = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
5302 /* If a class, struct, or enum type is declared by the DECLSPECS
5303 (i.e, if a class-specifier, enum-specifier, or non-typename
5304 elaborated-type-specifier appears in the DECLSPECS),
5305 DECLARED_TYPE is set to the corresponding type. */
5306 tree declared_type = NULL_TREE;
5307 bool error_p = false;
5309 if (declspecs->multiple_types_p)
5310 error_at (smallest_type_location (declspecs),
5311 "multiple types in one declaration");
5312 else if (declspecs->redefined_builtin_type)
5314 location_t loc = declspecs->locations[ds_redefined_builtin_type_spec];
5315 if (!in_system_header_at (loc))
5316 permerror (loc, "redeclaration of C++ built-in type %qT",
5317 declspecs->redefined_builtin_type);
5318 return NULL_TREE;
5321 if (declspecs->type
5322 && TYPE_P (declspecs->type)
5323 && ((TREE_CODE (declspecs->type) != TYPENAME_TYPE
5324 && MAYBE_CLASS_TYPE_P (declspecs->type))
5325 || TREE_CODE (declspecs->type) == ENUMERAL_TYPE))
5326 declared_type = declspecs->type;
5327 else if (declspecs->type == error_mark_node)
5328 error_p = true;
5330 if (type_uses_auto (declared_type))
5332 error_at (declspecs->locations[ds_type_spec],
5333 "%<auto%> can only be specified for variables "
5334 "or function declarations");
5335 return error_mark_node;
5338 if (declared_type && !OVERLOAD_TYPE_P (declared_type))
5339 declared_type = NULL_TREE;
5341 if (!declared_type && !saw_friend && !error_p)
5342 permerror (input_location, "declaration does not declare anything");
5343 /* Check for an anonymous union. */
5344 else if (declared_type && RECORD_OR_UNION_CODE_P (TREE_CODE (declared_type))
5345 && TYPE_UNNAMED_P (declared_type))
5347 /* 7/3 In a simple-declaration, the optional init-declarator-list
5348 can be omitted only when declaring a class (clause 9) or
5349 enumeration (7.2), that is, when the decl-specifier-seq contains
5350 either a class-specifier, an elaborated-type-specifier with
5351 a class-key (9.1), or an enum-specifier. In these cases and
5352 whenever a class-specifier or enum-specifier is present in the
5353 decl-specifier-seq, the identifiers in these specifiers are among
5354 the names being declared by the declaration (as class-name,
5355 enum-names, or enumerators, depending on the syntax). In such
5356 cases, and except for the declaration of an unnamed bit-field (9.6),
5357 the decl-specifier-seq shall introduce one or more names into the
5358 program, or shall redeclare a name introduced by a previous
5359 declaration. [Example:
5360 enum { }; // ill-formed
5361 typedef class { }; // ill-formed
5362 --end example] */
5363 if (saw_typedef)
5365 error_at (declspecs->locations[ds_typedef],
5366 "missing type-name in typedef-declaration");
5367 return NULL_TREE;
5369 /* Anonymous unions are objects, so they can have specifiers. */;
5370 SET_ANON_AGGR_TYPE_P (declared_type);
5372 if (TREE_CODE (declared_type) != UNION_TYPE)
5373 pedwarn (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (declared_type)),
5374 OPT_Wpedantic, "ISO C++ prohibits anonymous structs");
5377 else
5379 if (decl_spec_seq_has_spec_p (declspecs, ds_inline))
5380 error_at (declspecs->locations[ds_inline],
5381 "%<inline%> can only be specified for functions");
5382 else if (decl_spec_seq_has_spec_p (declspecs, ds_virtual))
5383 error_at (declspecs->locations[ds_virtual],
5384 "%<virtual%> can only be specified for functions");
5385 else if (saw_friend
5386 && (!current_class_type
5387 || current_scope () != current_class_type))
5388 error_at (declspecs->locations[ds_friend],
5389 "%<friend%> can only be specified inside a class");
5390 else if (decl_spec_seq_has_spec_p (declspecs, ds_explicit))
5391 error_at (declspecs->locations[ds_explicit],
5392 "%<explicit%> can only be specified for constructors");
5393 else if (declspecs->storage_class)
5394 error_at (declspecs->locations[ds_storage_class],
5395 "a storage class can only be specified for objects "
5396 "and functions");
5397 else if (decl_spec_seq_has_spec_p (declspecs, ds_const))
5398 error_at (declspecs->locations[ds_const],
5399 "%<const%> can only be specified for objects and "
5400 "functions");
5401 else if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
5402 error_at (declspecs->locations[ds_volatile],
5403 "%<volatile%> can only be specified for objects and "
5404 "functions");
5405 else if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
5406 error_at (declspecs->locations[ds_restrict],
5407 "%<__restrict%> can only be specified for objects and "
5408 "functions");
5409 else if (decl_spec_seq_has_spec_p (declspecs, ds_thread))
5410 error_at (declspecs->locations[ds_thread],
5411 "%<__thread%> can only be specified for objects "
5412 "and functions");
5413 else if (saw_typedef)
5414 warning_at (declspecs->locations[ds_typedef], 0,
5415 "%<typedef%> was ignored in this declaration");
5416 else if (decl_spec_seq_has_spec_p (declspecs, ds_constexpr))
5417 error_at (declspecs->locations[ds_constexpr],
5418 "%qs cannot be used for type declarations", "constexpr");
5419 else if (decl_spec_seq_has_spec_p (declspecs, ds_constinit))
5420 error_at (declspecs->locations[ds_constinit],
5421 "%qs cannot be used for type declarations", "constinit");
5422 else if (decl_spec_seq_has_spec_p (declspecs, ds_consteval))
5423 error_at (declspecs->locations[ds_consteval],
5424 "%qs cannot be used for type declarations", "consteval");
5427 if (declspecs->attributes && warn_attributes && declared_type)
5429 location_t loc;
5430 if (!CLASS_TYPE_P (declared_type)
5431 || !CLASSTYPE_TEMPLATE_INSTANTIATION (declared_type))
5432 /* For a non-template class, use the name location. */
5433 loc = location_of (declared_type);
5434 else
5435 /* For a template class (an explicit instantiation), use the
5436 current location. */
5437 loc = input_location;
5439 if (explicit_type_instantiation_p)
5440 /* [dcl.attr.grammar]/4:
5442 No attribute-specifier-seq shall appertain to an explicit
5443 instantiation. */
5445 if (warning_at (loc, OPT_Wattributes,
5446 "attribute ignored in explicit instantiation %q#T",
5447 declared_type))
5448 inform (loc,
5449 "no attribute can be applied to "
5450 "an explicit instantiation");
5452 else
5453 warn_misplaced_attr_for_class_type (loc, declared_type);
5456 return declared_type;
5459 /* Called when a declaration is seen that contains no names to declare.
5460 If its type is a reference to a structure, union or enum inherited
5461 from a containing scope, shadow that tag name for the current scope
5462 with a forward reference.
5463 If its type defines a new named structure or union
5464 or defines an enum, it is valid but we need not do anything here.
5465 Otherwise, it is an error.
5467 C++: may have to grok the declspecs to learn about static,
5468 complain for anonymous unions.
5470 Returns the TYPE declared -- or NULL_TREE if none. */
5472 tree
5473 shadow_tag (cp_decl_specifier_seq *declspecs)
5475 tree t = check_tag_decl (declspecs,
5476 /*explicit_type_instantiation_p=*/false);
5478 if (!t)
5479 return NULL_TREE;
5481 t = maybe_process_partial_specialization (t);
5482 if (t == error_mark_node)
5483 return NULL_TREE;
5485 /* This is where the variables in an anonymous union are
5486 declared. An anonymous union declaration looks like:
5487 union { ... } ;
5488 because there is no declarator after the union, the parser
5489 sends that declaration here. */
5490 if (ANON_AGGR_TYPE_P (t))
5492 fixup_anonymous_aggr (t);
5494 if (TYPE_FIELDS (t))
5496 tree decl = grokdeclarator (/*declarator=*/NULL,
5497 declspecs, NORMAL, 0, NULL);
5498 finish_anon_union (decl);
5502 return t;
5505 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
5507 tree
5508 groktypename (cp_decl_specifier_seq *type_specifiers,
5509 const cp_declarator *declarator,
5510 bool is_template_arg)
5512 tree attrs;
5513 tree type;
5514 enum decl_context context
5515 = is_template_arg ? TEMPLATE_TYPE_ARG : TYPENAME;
5516 attrs = type_specifiers->attributes;
5517 type_specifiers->attributes = NULL_TREE;
5518 type = grokdeclarator (declarator, type_specifiers, context, 0, &attrs);
5519 if (attrs && type != error_mark_node)
5521 if (CLASS_TYPE_P (type))
5522 warning (OPT_Wattributes, "ignoring attributes applied to class type %qT "
5523 "outside of definition", type);
5524 else if (MAYBE_CLASS_TYPE_P (type))
5525 /* A template type parameter or other dependent type. */
5526 warning (OPT_Wattributes, "ignoring attributes applied to dependent "
5527 "type %qT without an associated declaration", type);
5528 else
5529 cplus_decl_attributes (&type, attrs, 0);
5531 return type;
5534 /* Process a DECLARATOR for a function-scope or namespace-scope
5535 variable or function declaration.
5536 (Function definitions go through start_function; class member
5537 declarations appearing in the body of the class go through
5538 grokfield.) The DECL corresponding to the DECLARATOR is returned.
5539 If an error occurs, the error_mark_node is returned instead.
5541 DECLSPECS are the decl-specifiers for the declaration. INITIALIZED is
5542 SD_INITIALIZED if an explicit initializer is present, or SD_DEFAULTED
5543 for an explicitly defaulted function, or SD_DELETED for an explicitly
5544 deleted function, but 0 (SD_UNINITIALIZED) if this is a variable
5545 implicitly initialized via a default constructor. It can also be
5546 SD_DECOMPOSITION which behaves much like SD_INITIALIZED, but we also
5547 mark the new decl as DECL_DECOMPOSITION_P.
5549 ATTRIBUTES and PREFIX_ATTRIBUTES are GNU attributes associated with this
5550 declaration.
5552 The scope represented by the context of the returned DECL is pushed
5553 (if it is not the global namespace) and is assigned to
5554 *PUSHED_SCOPE_P. The caller is then responsible for calling
5555 pop_scope on *PUSHED_SCOPE_P if it is set. */
5557 tree
5558 start_decl (const cp_declarator *declarator,
5559 cp_decl_specifier_seq *declspecs,
5560 int initialized,
5561 tree attributes,
5562 tree prefix_attributes,
5563 tree *pushed_scope_p)
5565 tree decl;
5566 tree context;
5567 bool was_public;
5568 int flags;
5569 bool alias;
5570 tree initial;
5572 *pushed_scope_p = NULL_TREE;
5574 if (prefix_attributes != error_mark_node)
5575 attributes = attr_chainon (attributes, prefix_attributes);
5577 decl = grokdeclarator (declarator, declspecs, NORMAL, initialized,
5578 &attributes);
5580 if (decl == NULL_TREE || VOID_TYPE_P (decl)
5581 || decl == error_mark_node
5582 || prefix_attributes == error_mark_node)
5583 return error_mark_node;
5585 context = CP_DECL_CONTEXT (decl);
5586 if (context != global_namespace)
5587 *pushed_scope_p = push_scope (context);
5589 if (initialized && TREE_CODE (decl) == TYPE_DECL)
5591 error_at (DECL_SOURCE_LOCATION (decl),
5592 "typedef %qD is initialized (use %qs instead)",
5593 decl, "decltype");
5594 return error_mark_node;
5597 /* Save the DECL_INITIAL value in case it gets clobbered to assist
5598 with attribute validation. */
5599 initial = DECL_INITIAL (decl);
5601 if (initialized)
5603 if (! toplevel_bindings_p ()
5604 && DECL_EXTERNAL (decl))
5605 warning (0, "declaration of %q#D has %<extern%> and is initialized",
5606 decl);
5607 DECL_EXTERNAL (decl) = 0;
5608 if (toplevel_bindings_p ())
5609 TREE_STATIC (decl) = 1;
5610 /* Tell 'cplus_decl_attributes' this is an initialized decl,
5611 even though we might not yet have the initializer expression. */
5612 if (!DECL_INITIAL (decl))
5613 DECL_INITIAL (decl) = error_mark_node;
5615 alias = lookup_attribute ("alias", DECL_ATTRIBUTES (decl)) != 0;
5617 if (alias && TREE_CODE (decl) == FUNCTION_DECL)
5618 record_key_method_defined (decl);
5620 /* If this is a typedef that names the class for linkage purposes
5621 (7.1.3p8), apply any attributes directly to the type. */
5622 if (TREE_CODE (decl) == TYPE_DECL
5623 && OVERLOAD_TYPE_P (TREE_TYPE (decl))
5624 && decl == TYPE_NAME (TYPE_MAIN_VARIANT (TREE_TYPE (decl))))
5625 flags = ATTR_FLAG_TYPE_IN_PLACE;
5626 else
5627 flags = 0;
5629 /* Set attributes here so if duplicate decl, will have proper attributes. */
5630 cplus_decl_attributes (&decl, attributes, flags);
5632 /* Restore the original DECL_INITIAL that we may have clobbered earlier to
5633 assist with attribute validation. */
5634 DECL_INITIAL (decl) = initial;
5636 /* Dllimported symbols cannot be defined. Static data members (which
5637 can be initialized in-class and dllimported) go through grokfield,
5638 not here, so we don't need to exclude those decls when checking for
5639 a definition. */
5640 if (initialized && DECL_DLLIMPORT_P (decl))
5642 error_at (DECL_SOURCE_LOCATION (decl),
5643 "definition of %q#D is marked %<dllimport%>", decl);
5644 DECL_DLLIMPORT_P (decl) = 0;
5647 /* If #pragma weak was used, mark the decl weak now. */
5648 if (!processing_template_decl && !DECL_DECOMPOSITION_P (decl))
5649 maybe_apply_pragma_weak (decl);
5651 if (TREE_CODE (decl) == FUNCTION_DECL
5652 && DECL_DECLARED_INLINE_P (decl)
5653 && DECL_UNINLINABLE (decl)
5654 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
5655 warning_at (DECL_SOURCE_LOCATION (decl), 0,
5656 "inline function %qD given attribute %qs", decl, "noinline");
5658 if (TYPE_P (context) && COMPLETE_TYPE_P (complete_type (context)))
5660 bool this_tmpl = (current_template_depth
5661 > template_class_depth (context));
5662 if (VAR_P (decl))
5664 tree field = lookup_field (context, DECL_NAME (decl), 0, false);
5665 if (field == NULL_TREE
5666 || !(VAR_P (field) || variable_template_p (field)))
5667 error ("%q+#D is not a static data member of %q#T", decl, context);
5668 else if (variable_template_p (field)
5669 && (DECL_LANG_SPECIFIC (decl)
5670 && DECL_TEMPLATE_SPECIALIZATION (decl)))
5671 /* OK, specialization was already checked. */;
5672 else if (variable_template_p (field) && !this_tmpl)
5674 error_at (DECL_SOURCE_LOCATION (decl),
5675 "non-member-template declaration of %qD", decl);
5676 inform (DECL_SOURCE_LOCATION (field), "does not match "
5677 "member template declaration here");
5678 return error_mark_node;
5680 else
5682 if (variable_template_p (field))
5683 field = DECL_TEMPLATE_RESULT (field);
5685 if (DECL_CONTEXT (field) != context)
5687 if (!same_type_p (DECL_CONTEXT (field), context))
5688 permerror (input_location, "ISO C++ does not permit %<%T::%D%> "
5689 "to be defined as %<%T::%D%>",
5690 DECL_CONTEXT (field), DECL_NAME (decl),
5691 context, DECL_NAME (decl));
5692 DECL_CONTEXT (decl) = DECL_CONTEXT (field);
5694 /* Static data member are tricky; an in-class initialization
5695 still doesn't provide a definition, so the in-class
5696 declaration will have DECL_EXTERNAL set, but will have an
5697 initialization. Thus, duplicate_decls won't warn
5698 about this situation, and so we check here. */
5699 if (initialized && DECL_INITIALIZED_IN_CLASS_P (field))
5700 error ("duplicate initialization of %qD", decl);
5701 field = duplicate_decls (decl, field);
5702 if (field == error_mark_node)
5703 return error_mark_node;
5704 else if (field)
5705 decl = field;
5708 else
5710 tree field = check_classfn (context, decl,
5711 this_tmpl
5712 ? current_template_parms
5713 : NULL_TREE);
5714 if (field && field != error_mark_node
5715 && duplicate_decls (decl, field))
5716 decl = field;
5719 /* cp_finish_decl sets DECL_EXTERNAL if DECL_IN_AGGR_P is set. */
5720 DECL_IN_AGGR_P (decl) = 0;
5721 /* Do not mark DECL as an explicit specialization if it was not
5722 already marked as an instantiation; a declaration should
5723 never be marked as a specialization unless we know what
5724 template is being specialized. */
5725 if (DECL_LANG_SPECIFIC (decl) && DECL_USE_TEMPLATE (decl))
5727 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
5728 if (TREE_CODE (decl) == FUNCTION_DECL)
5729 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
5730 && DECL_DECLARED_INLINE_P (decl));
5731 else
5732 DECL_COMDAT (decl) = false;
5734 /* [temp.expl.spec] An explicit specialization of a static data
5735 member of a template is a definition if the declaration
5736 includes an initializer; otherwise, it is a declaration.
5738 We check for processing_specialization so this only applies
5739 to the new specialization syntax. */
5740 if (!initialized && processing_specialization)
5741 DECL_EXTERNAL (decl) = 1;
5744 if (DECL_EXTERNAL (decl) && ! DECL_TEMPLATE_SPECIALIZATION (decl)
5745 /* Aliases are definitions. */
5746 && !alias)
5747 permerror (declarator->id_loc,
5748 "declaration of %q#D outside of class is not definition",
5749 decl);
5752 /* Create a DECL_LANG_SPECIFIC so that DECL_DECOMPOSITION_P works. */
5753 if (initialized == SD_DECOMPOSITION)
5754 fit_decomposition_lang_decl (decl, NULL_TREE);
5756 was_public = TREE_PUBLIC (decl);
5758 if ((DECL_EXTERNAL (decl) || TREE_CODE (decl) == FUNCTION_DECL)
5759 && current_function_decl)
5761 /* A function-scope decl of some namespace-scope decl. */
5762 DECL_LOCAL_DECL_P (decl) = true;
5763 if (named_module_purview_p ())
5764 error_at (declarator->id_loc,
5765 "block-scope extern declaration %q#D not permitted"
5766 " in module purview", decl);
5769 /* Enter this declaration into the symbol table. Don't push the plain
5770 VAR_DECL for a variable template. */
5771 if (!template_parm_scope_p ()
5772 || !VAR_P (decl))
5773 decl = maybe_push_decl (decl);
5775 if (processing_template_decl)
5776 decl = push_template_decl (decl);
5778 if (decl == error_mark_node)
5779 return error_mark_node;
5781 if (VAR_P (decl)
5782 && DECL_NAMESPACE_SCOPE_P (decl) && !TREE_PUBLIC (decl) && !was_public
5783 && !DECL_THIS_STATIC (decl) && !DECL_ARTIFICIAL (decl)
5784 /* But not templated variables. */
5785 && !(DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl)))
5787 /* This is a const variable with implicit 'static'. Set
5788 DECL_THIS_STATIC so we can tell it from variables that are
5789 !TREE_PUBLIC because of the anonymous namespace. */
5790 gcc_assert (CP_TYPE_CONST_P (TREE_TYPE (decl)) || errorcount);
5791 DECL_THIS_STATIC (decl) = 1;
5794 if (current_function_decl && VAR_P (decl)
5795 && DECL_DECLARED_CONSTEXPR_P (current_function_decl)
5796 && cxx_dialect < cxx23)
5798 bool ok = false;
5799 if (CP_DECL_THREAD_LOCAL_P (decl) && !DECL_REALLY_EXTERN (decl))
5800 error_at (DECL_SOURCE_LOCATION (decl),
5801 "%qD defined %<thread_local%> in %qs function only "
5802 "available with %<-std=c++2b%> or %<-std=gnu++2b%>", decl,
5803 DECL_IMMEDIATE_FUNCTION_P (current_function_decl)
5804 ? "consteval" : "constexpr");
5805 else if (TREE_STATIC (decl))
5806 error_at (DECL_SOURCE_LOCATION (decl),
5807 "%qD defined %<static%> in %qs function only available "
5808 "with %<-std=c++2b%> or %<-std=gnu++2b%>", decl,
5809 DECL_IMMEDIATE_FUNCTION_P (current_function_decl)
5810 ? "consteval" : "constexpr");
5811 else
5812 ok = true;
5813 if (!ok)
5814 cp_function_chain->invalid_constexpr = true;
5817 if (!processing_template_decl && VAR_P (decl))
5818 start_decl_1 (decl, initialized);
5820 return decl;
5823 /* Process the declaration of a variable DECL. INITIALIZED is true
5824 iff DECL is explicitly initialized. (INITIALIZED is false if the
5825 variable is initialized via an implicitly-called constructor.)
5826 This function must be called for ordinary variables (including, for
5827 example, implicit instantiations of templates), but must not be
5828 called for template declarations. */
5830 void
5831 start_decl_1 (tree decl, bool initialized)
5833 gcc_checking_assert (!processing_template_decl);
5835 if (error_operand_p (decl))
5836 return;
5838 gcc_checking_assert (VAR_P (decl));
5840 tree type = TREE_TYPE (decl);
5841 bool complete_p = COMPLETE_TYPE_P (type);
5842 bool aggregate_definition_p
5843 = MAYBE_CLASS_TYPE_P (type) && !DECL_EXTERNAL (decl);
5845 /* If an explicit initializer is present, or if this is a definition
5846 of an aggregate, then we need a complete type at this point.
5847 (Scalars are always complete types, so there is nothing to
5848 check.) This code just sets COMPLETE_P; errors (if necessary)
5849 are issued below. */
5850 if ((initialized || aggregate_definition_p)
5851 && !complete_p
5852 && COMPLETE_TYPE_P (complete_type (type)))
5854 complete_p = true;
5855 /* We will not yet have set TREE_READONLY on DECL if the type
5856 was "const", but incomplete, before this point. But, now, we
5857 have a complete type, so we can try again. */
5858 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
5861 if (initialized)
5862 /* Is it valid for this decl to have an initializer at all? */
5864 /* Don't allow initializations for incomplete types except for
5865 arrays which might be completed by the initialization. */
5866 if (complete_p)
5867 ; /* A complete type is ok. */
5868 else if (type_uses_auto (type))
5869 ; /* An auto type is ok. */
5870 else if (TREE_CODE (type) != ARRAY_TYPE)
5872 error ("variable %q#D has initializer but incomplete type", decl);
5873 type = TREE_TYPE (decl) = error_mark_node;
5875 else if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (type))))
5877 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
5878 error ("elements of array %q#D have incomplete type", decl);
5879 /* else we already gave an error in start_decl. */
5882 else if (aggregate_definition_p && !complete_p)
5884 if (type_uses_auto (type))
5885 gcc_assert (CLASS_PLACEHOLDER_TEMPLATE (type));
5886 else
5888 error ("aggregate %q#D has incomplete type and cannot be defined",
5889 decl);
5890 /* Change the type so that assemble_variable will give
5891 DECL an rtl we can live with: (mem (const_int 0)). */
5892 type = TREE_TYPE (decl) = error_mark_node;
5896 /* Create a new scope to hold this declaration if necessary.
5897 Whether or not a new scope is necessary cannot be determined
5898 until after the type has been completed; if the type is a
5899 specialization of a class template it is not until after
5900 instantiation has occurred that TYPE_HAS_NONTRIVIAL_DESTRUCTOR
5901 will be set correctly. */
5902 maybe_push_cleanup_level (type);
5905 /* Given a parenthesized list of values INIT, create a CONSTRUCTOR to handle
5906 C++20 P0960. TYPE is the type of the object we're initializing. */
5908 tree
5909 do_aggregate_paren_init (tree init, tree type)
5911 tree val = TREE_VALUE (init);
5913 if (TREE_CHAIN (init) == NULL_TREE)
5915 /* If the list has a single element and it's a string literal,
5916 then it's the initializer for the array as a whole. */
5917 if (TREE_CODE (type) == ARRAY_TYPE
5918 && char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (type)))
5919 && TREE_CODE (tree_strip_any_location_wrapper (val))
5920 == STRING_CST)
5921 return val;
5922 /* Handle non-standard extensions like compound literals. This also
5923 prevents triggering aggregate parenthesized-initialization in
5924 compiler-generated code for =default. */
5925 else if (same_type_ignoring_top_level_qualifiers_p (type,
5926 TREE_TYPE (val)))
5927 return val;
5930 init = build_constructor_from_list (init_list_type_node, init);
5931 CONSTRUCTOR_IS_DIRECT_INIT (init) = true;
5932 CONSTRUCTOR_IS_PAREN_INIT (init) = true;
5933 return init;
5936 /* Handle initialization of references. DECL, TYPE, and INIT have the
5937 same meaning as in cp_finish_decl. *CLEANUP must be NULL on entry,
5938 but will be set to a new CLEANUP_STMT if a temporary is created
5939 that must be destroyed subsequently.
5941 Returns an initializer expression to use to initialize DECL, or
5942 NULL if the initialization can be performed statically.
5944 Quotes on semantics can be found in ARM 8.4.3. */
5946 static tree
5947 grok_reference_init (tree decl, tree type, tree init, int flags)
5949 if (init == NULL_TREE)
5951 if ((DECL_LANG_SPECIFIC (decl) == 0
5952 || DECL_IN_AGGR_P (decl) == 0)
5953 && ! DECL_THIS_EXTERN (decl))
5954 error_at (DECL_SOURCE_LOCATION (decl),
5955 "%qD declared as reference but not initialized", decl);
5956 return NULL_TREE;
5959 tree ttype = TREE_TYPE (type);
5960 if (TREE_CODE (init) == TREE_LIST)
5962 /* This handles (C++20 only) code like
5964 const A& r(1, 2, 3);
5966 where we treat the parenthesized list as a CONSTRUCTOR. */
5967 if (TREE_TYPE (init) == NULL_TREE
5968 && CP_AGGREGATE_TYPE_P (ttype)
5969 && !DECL_DECOMPOSITION_P (decl)
5970 && (cxx_dialect >= cxx20))
5972 /* We don't know yet if we should treat const A& r(1) as
5973 const A& r{1}. */
5974 if (list_length (init) == 1)
5976 flags |= LOOKUP_AGGREGATE_PAREN_INIT;
5977 init = build_x_compound_expr_from_list (init, ELK_INIT,
5978 tf_warning_or_error);
5980 /* If the list had more than one element, the code is ill-formed
5981 pre-C++20, so we can build a constructor right away. */
5982 else
5983 init = do_aggregate_paren_init (init, ttype);
5985 else
5986 init = build_x_compound_expr_from_list (init, ELK_INIT,
5987 tf_warning_or_error);
5990 if (TREE_CODE (ttype) != ARRAY_TYPE
5991 && TREE_CODE (TREE_TYPE (init)) == ARRAY_TYPE)
5992 /* Note: default conversion is only called in very special cases. */
5993 init = decay_conversion (init, tf_warning_or_error);
5995 /* check_initializer handles this for non-reference variables, but for
5996 references we need to do it here or the initializer will get the
5997 incomplete array type and confuse later calls to
5998 cp_complete_array_type. */
5999 if (TREE_CODE (ttype) == ARRAY_TYPE
6000 && TYPE_DOMAIN (ttype) == NULL_TREE
6001 && (BRACE_ENCLOSED_INITIALIZER_P (init)
6002 || TREE_CODE (init) == STRING_CST))
6004 cp_complete_array_type (&ttype, init, false);
6005 if (ttype != TREE_TYPE (type))
6006 type = cp_build_reference_type (ttype, TYPE_REF_IS_RVALUE (type));
6009 /* Convert INIT to the reference type TYPE. This may involve the
6010 creation of a temporary, whose lifetime must be the same as that
6011 of the reference. If so, a DECL_EXPR for the temporary will be
6012 added just after the DECL_EXPR for DECL. That's why we don't set
6013 DECL_INITIAL for local references (instead assigning to them
6014 explicitly); we need to allow the temporary to be initialized
6015 first. */
6016 return initialize_reference (type, init, flags,
6017 tf_warning_or_error);
6020 /* Designated initializers in arrays are not supported in GNU C++.
6021 The parser cannot detect this error since it does not know whether
6022 a given brace-enclosed initializer is for a class type or for an
6023 array. This function checks that CE does not use a designated
6024 initializer. If it does, an error is issued. Returns true if CE
6025 is valid, i.e., does not have a designated initializer. */
6027 bool
6028 check_array_designated_initializer (constructor_elt *ce,
6029 unsigned HOST_WIDE_INT index)
6031 /* Designated initializers for array elements are not supported. */
6032 if (ce->index)
6034 /* The parser only allows identifiers as designated
6035 initializers. */
6036 if (ce->index == error_mark_node)
6038 error ("name used in a GNU-style designated "
6039 "initializer for an array");
6040 return false;
6042 else if (identifier_p (ce->index))
6044 error ("name %qD used in a GNU-style designated "
6045 "initializer for an array", ce->index);
6046 return false;
6049 tree ce_index = build_expr_type_conversion (WANT_INT | WANT_ENUM,
6050 ce->index, true);
6051 if (ce_index
6052 && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (ce_index))
6053 && (TREE_CODE (ce_index = fold_non_dependent_expr (ce_index))
6054 == INTEGER_CST))
6056 /* A C99 designator is OK if it matches the current index. */
6057 if (wi::to_wide (ce_index) == index)
6059 ce->index = ce_index;
6060 return true;
6062 else
6063 sorry ("non-trivial designated initializers not supported");
6065 else
6066 error_at (cp_expr_loc_or_input_loc (ce->index),
6067 "C99 designator %qE is not an integral constant-expression",
6068 ce->index);
6070 return false;
6073 return true;
6076 /* When parsing `int a[] = {1, 2};' we don't know the size of the
6077 array until we finish parsing the initializer. If that's the
6078 situation we're in, update DECL accordingly. */
6080 static void
6081 maybe_deduce_size_from_array_init (tree decl, tree init)
6083 tree type = TREE_TYPE (decl);
6085 if (TREE_CODE (type) == ARRAY_TYPE
6086 && TYPE_DOMAIN (type) == NULL_TREE
6087 && TREE_CODE (decl) != TYPE_DECL)
6089 /* do_default is really a C-ism to deal with tentative definitions.
6090 But let's leave it here to ease the eventual merge. */
6091 int do_default = !DECL_EXTERNAL (decl);
6092 tree initializer = init ? init : DECL_INITIAL (decl);
6093 int failure = 0;
6095 /* Check that there are no designated initializers in INIT, as
6096 those are not supported in GNU C++, and as the middle-end
6097 will crash if presented with a non-numeric designated
6098 initializer. */
6099 if (initializer && BRACE_ENCLOSED_INITIALIZER_P (initializer))
6101 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initializer);
6102 constructor_elt *ce;
6103 HOST_WIDE_INT i;
6104 FOR_EACH_VEC_SAFE_ELT (v, i, ce)
6106 if (instantiation_dependent_expression_p (ce->index))
6107 return;
6108 if (!check_array_designated_initializer (ce, i))
6109 failure = 1;
6110 /* If an un-designated initializer is type-dependent, we can't
6111 check brace elision yet. */
6112 if (ce->index == NULL_TREE
6113 && type_dependent_expression_p (ce->value))
6114 return;
6118 if (failure)
6119 TREE_TYPE (decl) = error_mark_node;
6120 else
6122 failure = cp_complete_array_type (&TREE_TYPE (decl), initializer,
6123 do_default);
6124 if (failure == 1)
6126 error_at (cp_expr_loc_or_loc (initializer,
6127 DECL_SOURCE_LOCATION (decl)),
6128 "initializer fails to determine size of %qD", decl);
6130 else if (failure == 2)
6132 if (do_default)
6134 error_at (DECL_SOURCE_LOCATION (decl),
6135 "array size missing in %qD", decl);
6137 /* If a `static' var's size isn't known, make it extern as
6138 well as static, so it does not get allocated. If it's not
6139 `static', then don't mark it extern; finish_incomplete_decl
6140 will give it a default size and it will get allocated. */
6141 else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
6142 DECL_EXTERNAL (decl) = 1;
6144 else if (failure == 3)
6146 error_at (DECL_SOURCE_LOCATION (decl),
6147 "zero-size array %qD", decl);
6151 cp_apply_type_quals_to_decl (cp_type_quals (TREE_TYPE (decl)), decl);
6153 relayout_decl (decl);
6157 /* Set DECL_SIZE, DECL_ALIGN, etc. for DECL (a VAR_DECL), and issue
6158 any appropriate error messages regarding the layout. */
6160 static void
6161 layout_var_decl (tree decl)
6163 tree type;
6165 type = TREE_TYPE (decl);
6166 if (type == error_mark_node)
6167 return;
6169 /* If we haven't already laid out this declaration, do so now.
6170 Note that we must not call complete type for an external object
6171 because it's type might involve templates that we are not
6172 supposed to instantiate yet. (And it's perfectly valid to say
6173 `extern X x' for some incomplete type `X'.) */
6174 if (!DECL_EXTERNAL (decl))
6175 complete_type (type);
6176 if (!DECL_SIZE (decl)
6177 && TREE_TYPE (decl) != error_mark_node
6178 && complete_or_array_type_p (type))
6179 layout_decl (decl, 0);
6181 if (!DECL_EXTERNAL (decl) && DECL_SIZE (decl) == NULL_TREE)
6183 /* An automatic variable with an incomplete type: that is an error.
6184 Don't talk about array types here, since we took care of that
6185 message in grokdeclarator. */
6186 error_at (DECL_SOURCE_LOCATION (decl),
6187 "storage size of %qD isn%'t known", decl);
6188 TREE_TYPE (decl) = error_mark_node;
6190 #if 0
6191 /* Keep this code around in case we later want to control debug info
6192 based on whether a type is "used". (jason 1999-11-11) */
6194 else if (!DECL_EXTERNAL (decl) && MAYBE_CLASS_TYPE_P (ttype))
6195 /* Let debugger know it should output info for this type. */
6196 note_debug_info_needed (ttype);
6198 if (TREE_STATIC (decl) && DECL_CLASS_SCOPE_P (decl))
6199 note_debug_info_needed (DECL_CONTEXT (decl));
6200 #endif
6202 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
6203 && DECL_SIZE (decl) != NULL_TREE
6204 && ! TREE_CONSTANT (DECL_SIZE (decl)))
6206 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST
6207 && !DECL_LOCAL_DECL_P (decl))
6208 constant_expression_warning (DECL_SIZE (decl));
6209 else
6211 error_at (DECL_SOURCE_LOCATION (decl),
6212 "storage size of %qD isn%'t constant", decl);
6213 TREE_TYPE (decl) = error_mark_node;
6214 type = error_mark_node;
6218 /* If the final element initializes a flexible array field, add the size of
6219 that initializer to DECL's size. */
6220 if (type != error_mark_node
6221 && DECL_INITIAL (decl)
6222 && TREE_CODE (DECL_INITIAL (decl)) == CONSTRUCTOR
6223 && !vec_safe_is_empty (CONSTRUCTOR_ELTS (DECL_INITIAL (decl)))
6224 && DECL_SIZE (decl) != NULL_TREE
6225 && TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST
6226 && TYPE_SIZE (type) != NULL_TREE
6227 && TREE_CODE (TYPE_SIZE (type)) == INTEGER_CST
6228 && tree_int_cst_equal (DECL_SIZE (decl), TYPE_SIZE (type)))
6230 constructor_elt &elt = CONSTRUCTOR_ELTS (DECL_INITIAL (decl))->last ();
6231 if (elt.index)
6233 tree itype = TREE_TYPE (elt.index);
6234 tree vtype = TREE_TYPE (elt.value);
6235 if (TREE_CODE (itype) == ARRAY_TYPE
6236 && TYPE_DOMAIN (itype) == NULL
6237 && TREE_CODE (vtype) == ARRAY_TYPE
6238 && COMPLETE_TYPE_P (vtype))
6240 DECL_SIZE (decl)
6241 = size_binop (PLUS_EXPR, DECL_SIZE (decl), TYPE_SIZE (vtype));
6242 DECL_SIZE_UNIT (decl)
6243 = size_binop (PLUS_EXPR, DECL_SIZE_UNIT (decl),
6244 TYPE_SIZE_UNIT (vtype));
6250 /* If a local static variable is declared in an inline function, or if
6251 we have a weak definition, we must endeavor to create only one
6252 instance of the variable at link-time. */
6254 void
6255 maybe_commonize_var (tree decl)
6257 /* Don't mess with __FUNCTION__ and similar. */
6258 if (DECL_ARTIFICIAL (decl))
6259 return;
6261 /* Static data in a function with comdat linkage also has comdat
6262 linkage. */
6263 if ((TREE_STATIC (decl)
6264 && DECL_FUNCTION_SCOPE_P (decl)
6265 && vague_linkage_p (DECL_CONTEXT (decl)))
6266 || (TREE_PUBLIC (decl) && DECL_INLINE_VAR_P (decl)))
6268 if (flag_weak)
6270 /* With weak symbols, we simply make the variable COMDAT;
6271 that will cause copies in multiple translations units to
6272 be merged. */
6273 comdat_linkage (decl);
6275 else
6277 if (DECL_INITIAL (decl) == NULL_TREE
6278 || DECL_INITIAL (decl) == error_mark_node)
6280 /* Without weak symbols, we can use COMMON to merge
6281 uninitialized variables. */
6282 TREE_PUBLIC (decl) = 1;
6283 DECL_COMMON (decl) = 1;
6285 else
6287 /* While for initialized variables, we must use internal
6288 linkage -- which means that multiple copies will not
6289 be merged. */
6290 TREE_PUBLIC (decl) = 0;
6291 DECL_COMMON (decl) = 0;
6292 DECL_INTERFACE_KNOWN (decl) = 1;
6293 const char *msg;
6294 if (DECL_INLINE_VAR_P (decl))
6295 msg = G_("sorry: semantics of inline variable "
6296 "%q#D are wrong (you%'ll wind up with "
6297 "multiple copies)");
6298 else
6299 msg = G_("sorry: semantics of inline function "
6300 "static data %q#D are wrong (you%'ll wind "
6301 "up with multiple copies)");
6302 if (warning_at (DECL_SOURCE_LOCATION (decl), 0,
6303 msg, decl))
6304 inform (DECL_SOURCE_LOCATION (decl),
6305 "you can work around this by removing the initializer");
6311 /* Issue an error message if DECL is an uninitialized const variable.
6312 CONSTEXPR_CONTEXT_P is true when the function is called in a constexpr
6313 context from potential_constant_expression. Returns true if all is well,
6314 false otherwise. */
6316 bool
6317 check_for_uninitialized_const_var (tree decl, bool constexpr_context_p,
6318 tsubst_flags_t complain)
6320 tree type = strip_array_types (TREE_TYPE (decl));
6322 /* ``Unless explicitly declared extern, a const object does not have
6323 external linkage and must be initialized. ($8.4; $12.1)'' ARM
6324 7.1.6 */
6325 if (VAR_P (decl)
6326 && !TYPE_REF_P (type)
6327 && (CP_TYPE_CONST_P (type)
6328 /* C++20 permits trivial default initialization in constexpr
6329 context (P1331R2). */
6330 || (cxx_dialect < cxx20
6331 && (constexpr_context_p
6332 || var_in_constexpr_fn (decl))))
6333 && !DECL_NONTRIVIALLY_INITIALIZED_P (decl))
6335 tree field = default_init_uninitialized_part (type);
6336 if (!field)
6337 return true;
6339 bool show_notes = true;
6341 if (!constexpr_context_p || cxx_dialect >= cxx20)
6343 if (CP_TYPE_CONST_P (type))
6345 if (complain & tf_error)
6346 show_notes = permerror (DECL_SOURCE_LOCATION (decl),
6347 "uninitialized %<const %D%>", decl);
6349 else
6351 if (!is_instantiation_of_constexpr (current_function_decl)
6352 && (complain & tf_error))
6353 error_at (DECL_SOURCE_LOCATION (decl),
6354 "uninitialized variable %qD in %<constexpr%> "
6355 "function", decl);
6356 else
6357 show_notes = false;
6358 cp_function_chain->invalid_constexpr = true;
6361 else if (complain & tf_error)
6362 error_at (DECL_SOURCE_LOCATION (decl),
6363 "uninitialized variable %qD in %<constexpr%> context",
6364 decl);
6366 if (show_notes && CLASS_TYPE_P (type) && (complain & tf_error))
6368 tree defaulted_ctor;
6370 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)),
6371 "%q#T has no user-provided default constructor", type);
6372 defaulted_ctor = in_class_defaulted_default_constructor (type);
6373 if (defaulted_ctor)
6374 inform (DECL_SOURCE_LOCATION (defaulted_ctor),
6375 "constructor is not user-provided because it is "
6376 "explicitly defaulted in the class body");
6377 inform (DECL_SOURCE_LOCATION (field),
6378 "and the implicitly-defined constructor does not "
6379 "initialize %q#D", field);
6382 return false;
6385 return true;
6388 /* Structure holding the current initializer being processed by reshape_init.
6389 CUR is a pointer to the current element being processed, END is a pointer
6390 after the last element present in the initializer. */
6391 struct reshape_iter
6393 constructor_elt *cur;
6394 constructor_elt *end;
6397 static tree reshape_init_r (tree, reshape_iter *, tree, tsubst_flags_t);
6399 /* FIELD is an element of TYPE_FIELDS or NULL. In the former case, the value
6400 returned is the next FIELD_DECL (possibly FIELD itself) that can be
6401 initialized as if for an aggregate class. If there are no more such fields,
6402 the return value will be NULL. */
6404 tree
6405 next_aggregate_field (tree field)
6407 while (field
6408 && (TREE_CODE (field) != FIELD_DECL
6409 || DECL_UNNAMED_BIT_FIELD (field)
6410 || (DECL_ARTIFICIAL (field)
6411 /* In C++17, aggregates can have bases. */
6412 && !(cxx_dialect >= cxx17 && DECL_FIELD_IS_BASE (field)))))
6413 field = DECL_CHAIN (field);
6415 return field;
6418 /* FIELD is an element of TYPE_FIELDS or NULL. In the former case, the value
6419 returned is the next FIELD_DECL (possibly FIELD itself) that corresponds
6420 to a subobject. If there are no more such fields, the return value will be
6421 NULL. */
6423 tree
6424 next_subobject_field (tree field)
6426 while (field
6427 && (TREE_CODE (field) != FIELD_DECL
6428 || DECL_UNNAMED_BIT_FIELD (field)
6429 || (DECL_ARTIFICIAL (field)
6430 && !DECL_FIELD_IS_BASE (field)
6431 && !DECL_VIRTUAL_P (field))))
6432 field = DECL_CHAIN (field);
6434 return field;
6437 /* Return true for [dcl.init.list] direct-list-initialization from
6438 single element of enumeration with a fixed underlying type. */
6440 bool
6441 is_direct_enum_init (tree type, tree init)
6443 if (cxx_dialect >= cxx17
6444 && TREE_CODE (type) == ENUMERAL_TYPE
6445 && ENUM_FIXED_UNDERLYING_TYPE_P (type)
6446 && TREE_CODE (init) == CONSTRUCTOR
6447 && CONSTRUCTOR_IS_DIRECT_INIT (init)
6448 && CONSTRUCTOR_NELTS (init) == 1
6449 /* DR 2374: The single element needs to be implicitly
6450 convertible to the underlying type of the enum. */
6451 && can_convert_arg (ENUM_UNDERLYING_TYPE (type),
6452 TREE_TYPE (CONSTRUCTOR_ELT (init, 0)->value),
6453 CONSTRUCTOR_ELT (init, 0)->value,
6454 LOOKUP_IMPLICIT, tf_none))
6455 return true;
6456 return false;
6459 /* Subroutine of reshape_init_array and reshape_init_vector, which does
6460 the actual work. ELT_TYPE is the element type of the array. MAX_INDEX is an
6461 INTEGER_CST representing the size of the array minus one (the maximum index),
6462 or NULL_TREE if the array was declared without specifying the size. D is
6463 the iterator within the constructor. */
6465 static tree
6466 reshape_init_array_1 (tree elt_type, tree max_index, reshape_iter *d,
6467 tree first_initializer_p, tsubst_flags_t complain)
6469 tree new_init;
6470 bool sized_array_p = (max_index && TREE_CONSTANT (max_index));
6471 unsigned HOST_WIDE_INT max_index_cst = 0;
6472 unsigned HOST_WIDE_INT index;
6474 /* The initializer for an array is always a CONSTRUCTOR. If this is the
6475 outermost CONSTRUCTOR and the element type is non-aggregate, we don't need
6476 to build a new one. But don't reuse if not complaining; if this is
6477 tentative, we might also reshape to another type (95319). */
6478 bool reuse = (first_initializer_p
6479 && (complain & tf_error)
6480 && !CP_AGGREGATE_TYPE_P (elt_type)
6481 && !TREE_SIDE_EFFECTS (first_initializer_p));
6482 if (reuse)
6483 new_init = first_initializer_p;
6484 else
6485 new_init = build_constructor (init_list_type_node, NULL);
6487 if (sized_array_p)
6489 /* Minus 1 is used for zero sized arrays. */
6490 if (integer_all_onesp (max_index))
6491 return new_init;
6493 if (tree_fits_uhwi_p (max_index))
6494 max_index_cst = tree_to_uhwi (max_index);
6495 /* sizetype is sign extended, not zero extended. */
6496 else
6497 max_index_cst = tree_to_uhwi (fold_convert (size_type_node, max_index));
6500 /* Loop until there are no more initializers. */
6501 for (index = 0;
6502 d->cur != d->end && (!sized_array_p || index <= max_index_cst);
6503 ++index)
6505 tree elt_init;
6506 constructor_elt *old_cur = d->cur;
6508 if (d->cur->index)
6509 CONSTRUCTOR_IS_DESIGNATED_INIT (new_init) = true;
6510 check_array_designated_initializer (d->cur, index);
6511 elt_init = reshape_init_r (elt_type, d,
6512 /*first_initializer_p=*/NULL_TREE,
6513 complain);
6514 if (elt_init == error_mark_node)
6515 return error_mark_node;
6516 tree idx = size_int (index);
6517 if (reuse)
6519 old_cur->index = idx;
6520 old_cur->value = elt_init;
6522 else
6523 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init),
6524 idx, elt_init);
6525 if (!TREE_CONSTANT (elt_init))
6526 TREE_CONSTANT (new_init) = false;
6528 /* This can happen with an invalid initializer (c++/54501). */
6529 if (d->cur == old_cur && !sized_array_p)
6530 break;
6533 return new_init;
6536 /* Subroutine of reshape_init_r, processes the initializers for arrays.
6537 Parameters are the same of reshape_init_r. */
6539 static tree
6540 reshape_init_array (tree type, reshape_iter *d, tree first_initializer_p,
6541 tsubst_flags_t complain)
6543 tree max_index = NULL_TREE;
6545 gcc_assert (TREE_CODE (type) == ARRAY_TYPE);
6547 if (TYPE_DOMAIN (type))
6548 max_index = array_type_nelts (type);
6550 return reshape_init_array_1 (TREE_TYPE (type), max_index, d,
6551 first_initializer_p, complain);
6554 /* Subroutine of reshape_init_r, processes the initializers for vectors.
6555 Parameters are the same of reshape_init_r. */
6557 static tree
6558 reshape_init_vector (tree type, reshape_iter *d, tsubst_flags_t complain)
6560 tree max_index = NULL_TREE;
6562 gcc_assert (VECTOR_TYPE_P (type));
6564 if (COMPOUND_LITERAL_P (d->cur->value))
6566 tree value = d->cur->value;
6567 if (!same_type_p (TREE_TYPE (value), type))
6569 if (complain & tf_error)
6570 error ("invalid type %qT as initializer for a vector of type %qT",
6571 TREE_TYPE (d->cur->value), type);
6572 value = error_mark_node;
6574 ++d->cur;
6575 return value;
6578 /* For a vector, we initialize it as an array of the appropriate size. */
6579 if (VECTOR_TYPE_P (type))
6580 max_index = size_int (TYPE_VECTOR_SUBPARTS (type) - 1);
6582 return reshape_init_array_1 (TREE_TYPE (type), max_index, d,
6583 NULL_TREE, complain);
6586 /* Subroutine of reshape_init*: We're initializing an element with TYPE from
6587 INIT, in isolation from any designator or other initializers. */
6589 static tree
6590 reshape_single_init (tree type, tree init, tsubst_flags_t complain)
6592 /* We could also implement this by wrapping init in a new CONSTRUCTOR and
6593 calling reshape_init, but this way can just live on the stack. */
6594 constructor_elt elt = { /*index=*/NULL_TREE, init };
6595 reshape_iter iter = { &elt, &elt + 1 };
6596 return reshape_init_r (type, &iter,
6597 /*first_initializer_p=*/NULL_TREE,
6598 complain);
6601 /* Subroutine of reshape_init_r, processes the initializers for classes
6602 or union. Parameters are the same of reshape_init_r. */
6604 static tree
6605 reshape_init_class (tree type, reshape_iter *d, bool first_initializer_p,
6606 tsubst_flags_t complain)
6608 tree field;
6609 tree new_init;
6611 gcc_assert (CLASS_TYPE_P (type));
6613 /* The initializer for a class is always a CONSTRUCTOR. */
6614 new_init = build_constructor (init_list_type_node, NULL);
6616 int binfo_idx = -1;
6617 tree binfo = TYPE_BINFO (type);
6618 tree base_binfo = NULL_TREE;
6619 if (cxx_dialect >= cxx17 && uses_template_parms (type))
6621 /* We get here from maybe_aggr_guide for C++20 class template argument
6622 deduction. In this case we need to look through the binfo because a
6623 template doesn't have base fields. */
6624 binfo_idx = 0;
6625 BINFO_BASE_ITERATE (binfo, binfo_idx, base_binfo);
6627 if (base_binfo)
6628 field = base_binfo;
6629 else
6630 field = next_aggregate_field (TYPE_FIELDS (type));
6632 if (!field)
6634 /* [dcl.init.aggr]
6636 An initializer for an aggregate member that is an
6637 empty class shall have the form of an empty
6638 initializer-list {}. */
6639 if (!first_initializer_p)
6641 if (complain & tf_error)
6642 error ("initializer for %qT must be brace-enclosed", type);
6643 return error_mark_node;
6645 return new_init;
6648 /* For C++20 CTAD, handle pack expansions in the base list. */
6649 tree last_was_pack_expansion = NULL_TREE;
6651 /* Loop through the initializable fields, gathering initializers. */
6652 while (d->cur != d->end)
6654 tree field_init;
6655 constructor_elt *old_cur = d->cur;
6656 bool direct_desig = false;
6658 /* Handle C++20 designated initializers. */
6659 if (d->cur->index)
6661 if (d->cur->index == error_mark_node)
6662 return error_mark_node;
6664 if (TREE_CODE (d->cur->index) == FIELD_DECL)
6666 /* We already reshaped this; we should have returned early from
6667 reshape_init. */
6668 gcc_checking_assert (false);
6669 if (field != d->cur->index)
6671 if (tree id = DECL_NAME (d->cur->index))
6672 gcc_checking_assert (d->cur->index
6673 == get_class_binding (type, id));
6674 field = d->cur->index;
6677 else if (TREE_CODE (d->cur->index) == IDENTIFIER_NODE)
6679 CONSTRUCTOR_IS_DESIGNATED_INIT (new_init) = true;
6680 field = get_class_binding (type, d->cur->index);
6681 direct_desig = true;
6683 else
6685 if (complain & tf_error)
6686 error ("%<[%E] =%> used in a GNU-style designated initializer"
6687 " for class %qT", d->cur->index, type);
6688 return error_mark_node;
6691 if (!field && ANON_AGGR_TYPE_P (type))
6692 /* Apparently the designator isn't for a member of this anonymous
6693 struct, so head back to the enclosing class. */
6694 break;
6696 if (!field || TREE_CODE (field) != FIELD_DECL)
6698 if (complain & tf_error)
6699 error ("%qT has no non-static data member named %qD", type,
6700 d->cur->index);
6701 return error_mark_node;
6704 /* If the element is an anonymous union object and the initializer
6705 list is a designated-initializer-list, the anonymous union object
6706 is initialized by the designated-initializer-list { D }, where D
6707 is the designated-initializer-clause naming a member of the
6708 anonymous union object. */
6709 tree ictx = DECL_CONTEXT (field);
6710 if (!same_type_ignoring_top_level_qualifiers_p (ictx, type))
6712 /* Find the anon aggr that is a direct member of TYPE. */
6713 while (ANON_AGGR_TYPE_P (ictx))
6715 tree cctx = TYPE_CONTEXT (ictx);
6716 if (same_type_ignoring_top_level_qualifiers_p (cctx, type))
6717 goto found;
6718 ictx = cctx;
6721 /* Not found, e.g. FIELD is a member of a base class. */
6722 if (complain & tf_error)
6723 error ("%qD is not a direct member of %qT", field, type);
6724 return error_mark_node;
6726 found:
6727 /* Now find the TYPE member with that anon aggr type. */
6728 tree aafield = TYPE_FIELDS (type);
6729 for (; aafield; aafield = TREE_CHAIN (aafield))
6730 if (TREE_TYPE (aafield) == ictx)
6731 break;
6732 gcc_assert (aafield);
6733 field = aafield;
6734 direct_desig = false;
6738 /* If we processed all the member of the class, we are done. */
6739 if (!field)
6740 break;
6742 last_was_pack_expansion = (PACK_EXPANSION_P (TREE_TYPE (field))
6743 ? field : NULL_TREE);
6744 if (last_was_pack_expansion)
6745 /* Each non-trailing aggregate element that is a pack expansion is
6746 assumed to correspond to no elements of the initializer list. */
6747 goto continue_;
6749 if (direct_desig)
6751 /* The designated field F is initialized from this one element.
6753 Note that we don't want to do this if we found the designator
6754 inside an anon aggr above; we use the normal code to implement:
6756 "If the element is an anonymous union member and the initializer
6757 list is a brace-enclosed designated- initializer-list, the element
6758 is initialized by the designated-initializer-list { D }, where D
6759 is the designated- initializer-clause naming a member of the
6760 anonymous union member." */
6761 field_init = reshape_single_init (TREE_TYPE (field),
6762 d->cur->value, complain);
6763 d->cur++;
6765 else
6766 field_init = reshape_init_r (TREE_TYPE (field), d,
6767 /*first_initializer_p=*/NULL_TREE,
6768 complain);
6770 if (field_init == error_mark_node)
6771 return error_mark_node;
6773 if (d->cur == old_cur && d->cur->index)
6775 /* This can happen with an invalid initializer for a flexible
6776 array member (c++/54441). */
6777 if (complain & tf_error)
6778 error ("invalid initializer for %q#D", field);
6779 return error_mark_node;
6782 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init), field, field_init);
6784 /* [dcl.init.aggr]
6786 When a union is initialized with a brace-enclosed
6787 initializer, the braces shall only contain an
6788 initializer for the first member of the union. */
6789 if (TREE_CODE (type) == UNION_TYPE)
6790 break;
6792 continue_:
6793 if (base_binfo)
6795 if (BINFO_BASE_ITERATE (binfo, ++binfo_idx, base_binfo))
6796 field = base_binfo;
6797 else
6798 field = next_aggregate_field (TYPE_FIELDS (type));
6800 else
6801 field = next_aggregate_field (DECL_CHAIN (field));
6804 /* A trailing aggregate element that is a pack expansion is assumed to
6805 correspond to all remaining elements of the initializer list (if any). */
6806 if (last_was_pack_expansion)
6808 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init),
6809 last_was_pack_expansion, d->cur->value);
6810 while (d->cur != d->end)
6811 d->cur++;
6814 return new_init;
6817 /* Subroutine of reshape_init_r. We're in a context where C99 initializer
6818 designators are not valid; either complain or return true to indicate
6819 that reshape_init_r should return error_mark_node. */
6821 static bool
6822 has_designator_problem (reshape_iter *d, tsubst_flags_t complain)
6824 if (d->cur->index)
6826 if (complain & tf_error)
6827 error_at (cp_expr_loc_or_input_loc (d->cur->index),
6828 "C99 designator %qE outside aggregate initializer",
6829 d->cur->index);
6830 else
6831 return true;
6833 return false;
6836 /* Subroutine of reshape_init, which processes a single initializer (part of
6837 a CONSTRUCTOR). TYPE is the type of the variable being initialized, D is the
6838 iterator within the CONSTRUCTOR which points to the initializer to process.
6839 If this is the first initializer of the outermost CONSTRUCTOR node,
6840 FIRST_INITIALIZER_P is that CONSTRUCTOR; otherwise, it is NULL_TREE. */
6842 static tree
6843 reshape_init_r (tree type, reshape_iter *d, tree first_initializer_p,
6844 tsubst_flags_t complain)
6846 tree init = d->cur->value;
6848 if (error_operand_p (init))
6849 return error_mark_node;
6851 if (first_initializer_p && !CP_AGGREGATE_TYPE_P (type)
6852 && has_designator_problem (d, complain))
6853 return error_mark_node;
6855 tree stripped_init = tree_strip_any_location_wrapper (init);
6857 if (TREE_CODE (type) == COMPLEX_TYPE)
6859 /* A complex type can be initialized from one or two initializers,
6860 but braces are not elided. */
6861 d->cur++;
6862 if (BRACE_ENCLOSED_INITIALIZER_P (stripped_init))
6864 if (CONSTRUCTOR_NELTS (stripped_init) > 2)
6866 if (complain & tf_error)
6867 error ("too many initializers for %qT", type);
6868 else
6869 return error_mark_node;
6872 else if (first_initializer_p && d->cur != d->end)
6874 vec<constructor_elt, va_gc> *v = 0;
6875 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, init);
6876 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, d->cur->value);
6877 if (has_designator_problem (d, complain))
6878 return error_mark_node;
6879 d->cur++;
6880 init = build_constructor (init_list_type_node, v);
6882 return init;
6885 /* A non-aggregate type is always initialized with a single
6886 initializer. */
6887 if (!CP_AGGREGATE_TYPE_P (type)
6888 /* As is an array with dependent bound, which we can see
6889 during C++20 aggregate CTAD. */
6890 || (cxx_dialect >= cxx20
6891 && TREE_CODE (type) == ARRAY_TYPE
6892 && uses_template_parms (TYPE_DOMAIN (type))))
6894 /* It is invalid to initialize a non-aggregate type with a
6895 brace-enclosed initializer before C++0x.
6896 We need to check for BRACE_ENCLOSED_INITIALIZER_P here because
6897 of g++.old-deja/g++.mike/p7626.C: a pointer-to-member constant is
6898 a CONSTRUCTOR (with a record type). */
6899 if (TREE_CODE (stripped_init) == CONSTRUCTOR
6900 /* Don't complain about a capture-init. */
6901 && !CONSTRUCTOR_IS_DIRECT_INIT (stripped_init)
6902 && BRACE_ENCLOSED_INITIALIZER_P (stripped_init)) /* p7626.C */
6904 if (SCALAR_TYPE_P (type))
6906 if (cxx_dialect < cxx11)
6908 if (complain & tf_error)
6909 error ("braces around scalar initializer for type %qT",
6910 type);
6911 init = error_mark_node;
6913 else if (first_initializer_p
6914 || (CONSTRUCTOR_NELTS (stripped_init) > 0
6915 && (BRACE_ENCLOSED_INITIALIZER_P
6916 (CONSTRUCTOR_ELT (stripped_init,0)->value))))
6918 if (complain & tf_error)
6919 error ("too many braces around scalar initializer "
6920 "for type %qT", type);
6921 init = error_mark_node;
6924 else
6925 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
6928 d->cur++;
6929 return init;
6932 /* "If T is a class type and the initializer list has a single element of
6933 type cv U, where U is T or a class derived from T, the object is
6934 initialized from that element." Even if T is an aggregate. */
6935 if (cxx_dialect >= cxx11 && (CLASS_TYPE_P (type) || VECTOR_TYPE_P (type))
6936 && first_initializer_p
6937 /* But not if it's a designated init. */
6938 && !d->cur->index
6939 && d->end - d->cur == 1
6940 && reference_related_p (type, TREE_TYPE (init)))
6942 d->cur++;
6943 return init;
6946 /* [dcl.init.aggr]
6948 All implicit type conversions (clause _conv_) are considered when
6949 initializing the aggregate member with an initializer from an
6950 initializer-list. If the initializer can initialize a member,
6951 the member is initialized. Otherwise, if the member is itself a
6952 non-empty subaggregate, brace elision is assumed and the
6953 initializer is considered for the initialization of the first
6954 member of the subaggregate. */
6955 if ((TREE_CODE (init) != CONSTRUCTOR || COMPOUND_LITERAL_P (init))
6956 /* But don't try this for the first initializer, since that would be
6957 looking through the outermost braces; A a2 = { a1 }; is not a
6958 valid aggregate initialization. */
6959 && !first_initializer_p
6960 && (same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (init))
6961 || can_convert_arg (type, TREE_TYPE (init), init, LOOKUP_NORMAL,
6962 complain)))
6964 d->cur++;
6965 return init;
6968 /* [dcl.init.string]
6970 A char array (whether plain char, signed char, or unsigned char)
6971 can be initialized by a string-literal (optionally enclosed in
6972 braces); a wchar_t array can be initialized by a wide
6973 string-literal (optionally enclosed in braces). */
6974 if (TREE_CODE (type) == ARRAY_TYPE
6975 && char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (type))))
6977 tree str_init = init;
6978 tree stripped_str_init = stripped_init;
6979 reshape_iter stripd = {};
6981 /* Strip one level of braces if and only if they enclose a single
6982 element (as allowed by [dcl.init.string]). */
6983 if (!first_initializer_p
6984 && TREE_CODE (stripped_str_init) == CONSTRUCTOR
6985 && CONSTRUCTOR_NELTS (stripped_str_init) == 1)
6987 stripd.cur = CONSTRUCTOR_ELT (stripped_str_init, 0);
6988 str_init = stripd.cur->value;
6989 stripped_str_init = tree_strip_any_location_wrapper (str_init);
6992 /* If it's a string literal, then it's the initializer for the array
6993 as a whole. Otherwise, continue with normal initialization for
6994 array types (one value per array element). */
6995 if (TREE_CODE (stripped_str_init) == STRING_CST)
6997 if ((first_initializer_p && has_designator_problem (d, complain))
6998 || (stripd.cur && has_designator_problem (&stripd, complain)))
6999 return error_mark_node;
7000 d->cur++;
7001 return str_init;
7005 /* The following cases are about aggregates. If we are not within a full
7006 initializer already, and there is not a CONSTRUCTOR, it means that there
7007 is a missing set of braces (that is, we are processing the case for
7008 which reshape_init exists). */
7009 bool braces_elided_p = false;
7010 if (!first_initializer_p)
7012 if (TREE_CODE (stripped_init) == CONSTRUCTOR)
7014 tree init_type = TREE_TYPE (init);
7015 if (init_type && TYPE_PTRMEMFUNC_P (init_type))
7016 /* There is no need to call reshape_init for pointer-to-member
7017 function initializers, as they are always constructed correctly
7018 by the front end. Here we have e.g. {.__pfn=0B, .__delta=0},
7019 which is missing outermost braces. We should warn below, and
7020 one of the routines below will wrap it in additional { }. */;
7021 /* For a nested compound literal, proceed to specialized routines,
7022 to handle initialization of arrays and similar. */
7023 else if (COMPOUND_LITERAL_P (stripped_init))
7024 gcc_assert (!BRACE_ENCLOSED_INITIALIZER_P (stripped_init));
7025 /* If we have an unresolved designator, we need to find the member it
7026 designates within TYPE, so proceed to the routines below. For
7027 FIELD_DECL or INTEGER_CST designators, we're already initializing
7028 the designated element. */
7029 else if (d->cur->index
7030 && TREE_CODE (d->cur->index) == IDENTIFIER_NODE)
7031 /* Brace elision with designators is only permitted for anonymous
7032 aggregates. */
7033 gcc_checking_assert (ANON_AGGR_TYPE_P (type));
7034 /* A CONSTRUCTOR of the target's type is a previously
7035 digested initializer. */
7036 else if (same_type_ignoring_top_level_qualifiers_p (type, init_type))
7038 ++d->cur;
7039 return init;
7041 else
7043 /* Something that hasn't been reshaped yet. */
7044 ++d->cur;
7045 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (stripped_init));
7046 return reshape_init (type, init, complain);
7050 if (complain & tf_warning)
7051 warning (OPT_Wmissing_braces,
7052 "missing braces around initializer for %qT",
7053 type);
7054 braces_elided_p = true;
7057 /* Dispatch to specialized routines. */
7058 tree new_init;
7059 if (CLASS_TYPE_P (type))
7060 new_init = reshape_init_class (type, d, first_initializer_p, complain);
7061 else if (TREE_CODE (type) == ARRAY_TYPE)
7062 new_init = reshape_init_array (type, d, first_initializer_p, complain);
7063 else if (VECTOR_TYPE_P (type))
7064 new_init = reshape_init_vector (type, d, complain);
7065 else
7066 gcc_unreachable();
7068 if (braces_elided_p
7069 && TREE_CODE (new_init) == CONSTRUCTOR)
7070 CONSTRUCTOR_BRACES_ELIDED_P (new_init) = true;
7072 return new_init;
7075 /* Undo the brace-elision allowed by [dcl.init.aggr] in a
7076 brace-enclosed aggregate initializer.
7078 INIT is the CONSTRUCTOR containing the list of initializers describing
7079 a brace-enclosed initializer for an entity of the indicated aggregate TYPE.
7080 It may not presently match the shape of the TYPE; for example:
7082 struct S { int a; int b; };
7083 struct S a[] = { 1, 2, 3, 4 };
7085 Here INIT will hold a vector of four elements, rather than a
7086 vector of two elements, each itself a vector of two elements. This
7087 routine transforms INIT from the former form into the latter. The
7088 revised CONSTRUCTOR node is returned. */
7090 tree
7091 reshape_init (tree type, tree init, tsubst_flags_t complain)
7093 vec<constructor_elt, va_gc> *v;
7094 reshape_iter d;
7095 tree new_init;
7097 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
7099 v = CONSTRUCTOR_ELTS (init);
7101 /* An empty constructor does not need reshaping, and it is always a valid
7102 initializer. */
7103 if (vec_safe_is_empty (v))
7104 return init;
7106 if ((*v)[0].index && TREE_CODE ((*v)[0].index) == FIELD_DECL)
7107 /* Already reshaped. */
7108 return init;
7110 /* Brace elision is not performed for a CONSTRUCTOR representing
7111 parenthesized aggregate initialization. */
7112 if (CONSTRUCTOR_IS_PAREN_INIT (init))
7114 tree elt = (*v)[0].value;
7115 /* If we're initializing a char array from a string-literal that is
7116 enclosed in braces, unwrap it here. */
7117 if (TREE_CODE (type) == ARRAY_TYPE
7118 && vec_safe_length (v) == 1
7119 && char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (type)))
7120 && TREE_CODE (tree_strip_any_location_wrapper (elt)) == STRING_CST)
7121 return elt;
7122 return init;
7125 /* Handle [dcl.init.list] direct-list-initialization from
7126 single element of enumeration with a fixed underlying type. */
7127 if (is_direct_enum_init (type, init))
7129 tree elt = CONSTRUCTOR_ELT (init, 0)->value;
7130 type = cv_unqualified (type);
7131 if (check_narrowing (ENUM_UNDERLYING_TYPE (type), elt, complain))
7133 warning_sentinel w (warn_useless_cast);
7134 warning_sentinel w2 (warn_ignored_qualifiers);
7135 return cp_build_c_cast (input_location, type, elt,
7136 tf_warning_or_error);
7138 else
7139 return error_mark_node;
7142 /* Recurse on this CONSTRUCTOR. */
7143 d.cur = &(*v)[0];
7144 d.end = d.cur + v->length ();
7146 new_init = reshape_init_r (type, &d, init, complain);
7147 if (new_init == error_mark_node)
7148 return error_mark_node;
7150 /* Make sure all the element of the constructor were used. Otherwise,
7151 issue an error about exceeding initializers. */
7152 if (d.cur != d.end)
7154 if (complain & tf_error)
7155 error ("too many initializers for %qT", type);
7156 return error_mark_node;
7159 if (CONSTRUCTOR_IS_DIRECT_INIT (init)
7160 && BRACE_ENCLOSED_INITIALIZER_P (new_init))
7161 CONSTRUCTOR_IS_DIRECT_INIT (new_init) = true;
7162 if (CONSTRUCTOR_IS_DESIGNATED_INIT (init)
7163 && BRACE_ENCLOSED_INITIALIZER_P (new_init))
7164 gcc_checking_assert (CONSTRUCTOR_IS_DESIGNATED_INIT (new_init)
7165 || seen_error ());
7167 return new_init;
7170 /* Verify array initializer. Returns true if errors have been reported. */
7172 bool
7173 check_array_initializer (tree decl, tree type, tree init)
7175 tree element_type = TREE_TYPE (type);
7177 /* Structured binding when initialized with an array type needs
7178 to have complete type. */
7179 if (decl
7180 && DECL_DECOMPOSITION_P (decl)
7181 && !DECL_DECOMP_BASE (decl)
7182 && !COMPLETE_TYPE_P (type))
7184 error_at (DECL_SOURCE_LOCATION (decl),
7185 "structured binding has incomplete type %qT", type);
7186 TREE_TYPE (decl) = error_mark_node;
7187 return true;
7190 /* The array type itself need not be complete, because the
7191 initializer may tell us how many elements are in the array.
7192 But, the elements of the array must be complete. */
7193 if (!COMPLETE_TYPE_P (complete_type (element_type)))
7195 if (decl)
7196 error_at (DECL_SOURCE_LOCATION (decl),
7197 "elements of array %q#D have incomplete type", decl);
7198 else
7199 error ("elements of array %q#T have incomplete type", type);
7200 return true;
7203 location_t loc = (decl ? location_of (decl) : input_location);
7204 if (!verify_type_context (loc, TCTX_ARRAY_ELEMENT, element_type))
7205 return true;
7207 /* A compound literal can't have variable size. */
7208 if (init && !decl
7209 && ((COMPLETE_TYPE_P (type) && !TREE_CONSTANT (TYPE_SIZE (type)))
7210 || !TREE_CONSTANT (TYPE_SIZE (element_type))))
7212 error ("variable-sized compound literal");
7213 return true;
7215 return false;
7218 /* Subroutine of check_initializer; args are passed down from that function.
7219 Set stmts_are_full_exprs_p to 1 across a call to build_aggr_init. */
7221 static tree
7222 build_aggr_init_full_exprs (tree decl, tree init, int flags)
7225 gcc_assert (stmts_are_full_exprs_p ());
7226 return build_aggr_init (decl, init, flags, tf_warning_or_error);
7229 /* Verify INIT (the initializer for DECL), and record the
7230 initialization in DECL_INITIAL, if appropriate. CLEANUP is as for
7231 grok_reference_init.
7233 If the return value is non-NULL, it is an expression that must be
7234 evaluated dynamically to initialize DECL. */
7236 static tree
7237 check_initializer (tree decl, tree init, int flags, vec<tree, va_gc> **cleanups)
7239 tree type;
7240 tree init_code = NULL;
7241 tree core_type;
7243 /* Things that are going to be initialized need to have complete
7244 type. */
7245 TREE_TYPE (decl) = type = complete_type (TREE_TYPE (decl));
7247 if (DECL_HAS_VALUE_EXPR_P (decl))
7249 /* A variable with DECL_HAS_VALUE_EXPR_P set is just a placeholder,
7250 it doesn't have storage to be initialized. */
7251 gcc_assert (init == NULL_TREE);
7252 return NULL_TREE;
7255 if (type == error_mark_node)
7256 /* We will have already complained. */
7257 return NULL_TREE;
7259 if (TREE_CODE (type) == ARRAY_TYPE)
7261 if (check_array_initializer (decl, type, init))
7262 return NULL_TREE;
7264 else if (!COMPLETE_TYPE_P (type))
7266 error_at (DECL_SOURCE_LOCATION (decl),
7267 "%q#D has incomplete type", decl);
7268 TREE_TYPE (decl) = error_mark_node;
7269 return NULL_TREE;
7271 else
7272 /* There is no way to make a variable-sized class type in GNU C++. */
7273 gcc_assert (TREE_CONSTANT (TYPE_SIZE (type)));
7275 if (init && BRACE_ENCLOSED_INITIALIZER_P (init))
7277 int init_len = CONSTRUCTOR_NELTS (init);
7278 if (SCALAR_TYPE_P (type))
7280 if (init_len == 0)
7282 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
7283 init = build_zero_init (type, NULL_TREE, false);
7285 else if (init_len != 1 && TREE_CODE (type) != COMPLEX_TYPE)
7287 error_at (cp_expr_loc_or_loc (init, DECL_SOURCE_LOCATION (decl)),
7288 "scalar object %qD requires one element in "
7289 "initializer", decl);
7290 TREE_TYPE (decl) = error_mark_node;
7291 return NULL_TREE;
7296 if (TREE_CODE (decl) == CONST_DECL)
7298 gcc_assert (!TYPE_REF_P (type));
7300 DECL_INITIAL (decl) = init;
7302 gcc_assert (init != NULL_TREE);
7303 init = NULL_TREE;
7305 else if (!init && DECL_REALLY_EXTERN (decl))
7307 else if (init || type_build_ctor_call (type)
7308 || TYPE_REF_P (type))
7310 if (TYPE_REF_P (type))
7312 init = grok_reference_init (decl, type, init, flags);
7313 flags |= LOOKUP_ALREADY_DIGESTED;
7315 else if (!init)
7316 check_for_uninitialized_const_var (decl, /*constexpr_context_p=*/false,
7317 tf_warning_or_error);
7318 /* Do not reshape constructors of vectors (they don't need to be
7319 reshaped. */
7320 else if (BRACE_ENCLOSED_INITIALIZER_P (init))
7322 if (is_std_init_list (type))
7324 init = perform_implicit_conversion (type, init,
7325 tf_warning_or_error);
7326 flags |= LOOKUP_ALREADY_DIGESTED;
7328 else if (TYPE_NON_AGGREGATE_CLASS (type))
7330 /* Don't reshape if the class has constructors. */
7331 if (cxx_dialect == cxx98)
7332 error_at (cp_expr_loc_or_loc (init, DECL_SOURCE_LOCATION (decl)),
7333 "in C++98 %qD must be initialized by "
7334 "constructor, not by %<{...}%>",
7335 decl);
7337 else if (VECTOR_TYPE_P (type) && TYPE_VECTOR_OPAQUE (type))
7339 error ("opaque vector types cannot be initialized");
7340 init = error_mark_node;
7342 else
7344 init = reshape_init (type, init, tf_warning_or_error);
7345 flags |= LOOKUP_NO_NARROWING;
7348 /* [dcl.init] "Otherwise, if the destination type is an array, the object
7349 is initialized as follows..." So handle things like
7351 int a[](1, 2, 3);
7353 which is permitted in C++20 by P0960. */
7354 else if (TREE_CODE (init) == TREE_LIST
7355 && TREE_TYPE (init) == NULL_TREE
7356 && TREE_CODE (type) == ARRAY_TYPE
7357 && !DECL_DECOMPOSITION_P (decl)
7358 && (cxx_dialect >= cxx20))
7359 init = do_aggregate_paren_init (init, type);
7360 else if (TREE_CODE (init) == TREE_LIST
7361 && TREE_TYPE (init) != unknown_type_node
7362 && !MAYBE_CLASS_TYPE_P (type))
7364 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
7366 /* We get here with code like `int a (2);' */
7367 init = build_x_compound_expr_from_list (init, ELK_INIT,
7368 tf_warning_or_error);
7371 /* If DECL has an array type without a specific bound, deduce the
7372 array size from the initializer. */
7373 maybe_deduce_size_from_array_init (decl, init);
7374 type = TREE_TYPE (decl);
7375 if (type == error_mark_node)
7376 return NULL_TREE;
7378 if (((type_build_ctor_call (type) || CLASS_TYPE_P (type))
7379 && !(flags & LOOKUP_ALREADY_DIGESTED)
7380 && !(init && BRACE_ENCLOSED_INITIALIZER_P (init)
7381 && CP_AGGREGATE_TYPE_P (type)
7382 && (CLASS_TYPE_P (type)
7383 /* The call to build_aggr_init below could end up
7384 calling build_vec_init, which may break when we
7385 are processing a template. */
7386 || processing_template_decl
7387 || !TYPE_NEEDS_CONSTRUCTING (type)
7388 || type_has_extended_temps (type))))
7389 || (DECL_DECOMPOSITION_P (decl) && TREE_CODE (type) == ARRAY_TYPE))
7391 init_code = build_aggr_init_full_exprs (decl, init, flags);
7393 /* A constructor call is a non-trivial initializer even if
7394 it isn't explicitly written. */
7395 if (TREE_SIDE_EFFECTS (init_code))
7396 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = true;
7398 /* If this is a constexpr initializer, expand_default_init will
7399 have returned an INIT_EXPR rather than a CALL_EXPR. In that
7400 case, pull the initializer back out and pass it down into
7401 store_init_value. */
7402 while (true)
7404 if (TREE_CODE (init_code) == EXPR_STMT
7405 || TREE_CODE (init_code) == STMT_EXPR
7406 || TREE_CODE (init_code) == CONVERT_EXPR)
7407 init_code = TREE_OPERAND (init_code, 0);
7408 else if (TREE_CODE (init_code) == BIND_EXPR)
7409 init_code = BIND_EXPR_BODY (init_code);
7410 else
7411 break;
7413 if (TREE_CODE (init_code) == INIT_EXPR)
7415 /* In C++20, the call to build_aggr_init could have created
7416 an INIT_EXPR with a CONSTRUCTOR as the RHS to handle
7417 A(1, 2). */
7418 tree rhs = TREE_OPERAND (init_code, 1);
7419 if (processing_template_decl && TREE_CODE (rhs) == TARGET_EXPR)
7420 /* Avoid leaking TARGET_EXPR into template trees. */
7421 rhs = build_implicit_conv_flags (type, init, flags);
7422 init = rhs;
7424 init_code = NULL_TREE;
7425 /* Don't call digest_init; it's unnecessary and will complain
7426 about aggregate initialization of non-aggregate classes. */
7427 flags |= LOOKUP_ALREADY_DIGESTED;
7429 else if (DECL_DECLARED_CONSTEXPR_P (decl)
7430 || DECL_DECLARED_CONSTINIT_P (decl))
7432 /* Declared constexpr or constinit, but no suitable initializer;
7433 massage init appropriately so we can pass it into
7434 store_init_value for the error. */
7435 tree new_init = NULL_TREE;
7436 if (!processing_template_decl
7437 && TREE_CODE (init_code) == CALL_EXPR)
7438 new_init = build_cplus_new (type, init_code, tf_none);
7439 else if (CLASS_TYPE_P (type)
7440 && (!init || TREE_CODE (init) == TREE_LIST))
7441 new_init = build_functional_cast (input_location, type,
7442 init, tf_none);
7443 if (new_init)
7445 init = new_init;
7446 if (TREE_CODE (init) == TARGET_EXPR
7447 && !(flags & LOOKUP_ONLYCONVERTING))
7448 TARGET_EXPR_DIRECT_INIT_P (init) = true;
7450 init_code = NULL_TREE;
7452 else
7453 init = NULL_TREE;
7456 if (init && TREE_CODE (init) != TREE_VEC)
7458 init_code = store_init_value (decl, init, cleanups, flags);
7460 if (DECL_INITIAL (decl)
7461 && TREE_CODE (DECL_INITIAL (decl)) == CONSTRUCTOR
7462 && !vec_safe_is_empty (CONSTRUCTOR_ELTS (DECL_INITIAL (decl))))
7464 tree elt = CONSTRUCTOR_ELTS (DECL_INITIAL (decl))->last ().value;
7465 if (TREE_CODE (TREE_TYPE (elt)) == ARRAY_TYPE
7466 && TYPE_SIZE (TREE_TYPE (elt)) == NULL_TREE)
7467 cp_complete_array_type (&TREE_TYPE (elt), elt, false);
7470 if (pedantic && TREE_CODE (type) == ARRAY_TYPE
7471 && DECL_INITIAL (decl)
7472 && TREE_CODE (DECL_INITIAL (decl)) == STRING_CST
7473 && PAREN_STRING_LITERAL_P (DECL_INITIAL (decl)))
7474 warning_at (cp_expr_loc_or_loc (DECL_INITIAL (decl),
7475 DECL_SOURCE_LOCATION (decl)),
7476 0, "array %qD initialized by parenthesized "
7477 "string literal %qE",
7478 decl, DECL_INITIAL (decl));
7479 init = NULL_TREE;
7482 else
7484 if (CLASS_TYPE_P (core_type = strip_array_types (type))
7485 && (CLASSTYPE_READONLY_FIELDS_NEED_INIT (core_type)
7486 || CLASSTYPE_REF_FIELDS_NEED_INIT (core_type)))
7487 diagnose_uninitialized_cst_or_ref_member (core_type, /*using_new=*/false,
7488 /*complain=*/true);
7490 check_for_uninitialized_const_var (decl, /*constexpr_context_p=*/false,
7491 tf_warning_or_error);
7494 if (init && init != error_mark_node)
7495 init_code = build2 (INIT_EXPR, type, decl, init);
7497 if (init_code && !TREE_SIDE_EFFECTS (init_code)
7498 && init_code != error_mark_node)
7499 init_code = NULL_TREE;
7501 if (init_code)
7503 /* We might have set these in cp_finish_decl. */
7504 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = false;
7505 TREE_CONSTANT (decl) = false;
7508 if (init_code
7509 && DECL_IN_AGGR_P (decl)
7510 && DECL_INITIALIZED_IN_CLASS_P (decl))
7512 static int explained = 0;
7514 if (cxx_dialect < cxx11)
7515 error ("initializer invalid for static member with constructor");
7516 else if (cxx_dialect < cxx17)
7517 error ("non-constant in-class initialization invalid for static "
7518 "member %qD", decl);
7519 else
7520 error ("non-constant in-class initialization invalid for non-inline "
7521 "static member %qD", decl);
7522 if (!explained)
7524 inform (input_location,
7525 "(an out of class initialization is required)");
7526 explained = 1;
7528 return NULL_TREE;
7531 return init_code;
7534 /* If DECL is not a local variable, give it RTL. */
7536 static void
7537 make_rtl_for_nonlocal_decl (tree decl, tree init, const char* asmspec)
7539 int toplev = toplevel_bindings_p ();
7540 int defer_p;
7542 /* Set the DECL_ASSEMBLER_NAME for the object. */
7543 if (asmspec)
7545 /* The `register' keyword, when used together with an
7546 asm-specification, indicates that the variable should be
7547 placed in a particular register. */
7548 if (VAR_P (decl) && DECL_REGISTER (decl))
7550 set_user_assembler_name (decl, asmspec);
7551 DECL_HARD_REGISTER (decl) = 1;
7553 else
7555 if (TREE_CODE (decl) == FUNCTION_DECL
7556 && fndecl_built_in_p (decl, BUILT_IN_NORMAL))
7557 set_builtin_user_assembler_name (decl, asmspec);
7558 set_user_assembler_name (decl, asmspec);
7559 if (DECL_LOCAL_DECL_P (decl))
7560 if (auto ns_decl = DECL_LOCAL_DECL_ALIAS (decl))
7561 /* We have to propagate the name to the ns-alias.
7562 This is horrible, as we're affecting a
7563 possibly-shared decl. Again, a one-true-decl
7564 model breaks down. */
7565 if (ns_decl != error_mark_node)
7566 set_user_assembler_name (ns_decl, asmspec);
7570 /* Handle non-variables up front. */
7571 if (!VAR_P (decl))
7573 rest_of_decl_compilation (decl, toplev, at_eof);
7574 return;
7577 /* If we see a class member here, it should be a static data
7578 member. */
7579 if (DECL_LANG_SPECIFIC (decl) && DECL_IN_AGGR_P (decl))
7581 gcc_assert (TREE_STATIC (decl));
7582 /* An in-class declaration of a static data member should be
7583 external; it is only a declaration, and not a definition. */
7584 if (init == NULL_TREE)
7585 gcc_assert (DECL_EXTERNAL (decl)
7586 || !TREE_PUBLIC (decl));
7589 /* We don't create any RTL for local variables. */
7590 if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
7591 return;
7593 /* We defer emission of local statics until the corresponding
7594 DECL_EXPR is expanded. But with constexpr its function might never
7595 be expanded, so go ahead and tell cgraph about the variable now. */
7596 defer_p = ((DECL_FUNCTION_SCOPE_P (decl)
7597 && !var_in_maybe_constexpr_fn (decl))
7598 || DECL_VIRTUAL_P (decl));
7600 /* Defer template instantiations. */
7601 if (DECL_LANG_SPECIFIC (decl)
7602 && DECL_IMPLICIT_INSTANTIATION (decl))
7603 defer_p = 1;
7605 /* If we're not deferring, go ahead and assemble the variable. */
7606 if (!defer_p)
7607 rest_of_decl_compilation (decl, toplev, at_eof);
7610 /* walk_tree helper for wrap_temporary_cleanups, below. */
7612 static tree
7613 wrap_cleanups_r (tree *stmt_p, int *walk_subtrees, void *data)
7615 /* Stop at types or full-expression boundaries. */
7616 if (TYPE_P (*stmt_p)
7617 || TREE_CODE (*stmt_p) == CLEANUP_POINT_EXPR)
7619 *walk_subtrees = 0;
7620 return NULL_TREE;
7623 if (TREE_CODE (*stmt_p) == TARGET_EXPR)
7625 tree guard = (tree)data;
7626 tree tcleanup = TARGET_EXPR_CLEANUP (*stmt_p);
7628 if (tcleanup && !CLEANUP_EH_ONLY (*stmt_p)
7629 && !expr_noexcept_p (tcleanup, tf_none))
7631 tcleanup = build2 (TRY_CATCH_EXPR, void_type_node, tcleanup, guard);
7632 /* Tell honor_protect_cleanup_actions to handle this as a separate
7633 cleanup. */
7634 TRY_CATCH_IS_CLEANUP (tcleanup) = 1;
7635 TARGET_EXPR_CLEANUP (*stmt_p) = tcleanup;
7639 return NULL_TREE;
7642 /* We're initializing a local variable which has a cleanup GUARD. If there
7643 are any temporaries used in the initializer INIT of this variable, we
7644 need to wrap their cleanups with TRY_CATCH_EXPR (, GUARD) so that the
7645 variable will be cleaned up properly if one of them throws.
7647 Unfortunately, there's no way to express this properly in terms of
7648 nesting, as the regions for the temporaries overlap the region for the
7649 variable itself; if there are two temporaries, the variable needs to be
7650 the first thing destroyed if either of them throws. However, we only
7651 want to run the variable's cleanup if it actually got constructed. So
7652 we need to guard the temporary cleanups with the variable's cleanup if
7653 they are run on the normal path, but not if they are run on the
7654 exceptional path. We implement this by telling
7655 honor_protect_cleanup_actions to strip the variable cleanup from the
7656 exceptional path.
7658 Another approach could be to make the variable cleanup region enclose
7659 initialization, but depend on a flag to indicate that the variable is
7660 initialized; that's effectively what we do for arrays. But the current
7661 approach works fine for non-arrays, and has no code overhead in the usual
7662 case where the temporary destructors are noexcept. */
7664 static void
7665 wrap_temporary_cleanups (tree init, tree guard)
7667 if (TREE_CODE (guard) == BIND_EXPR)
7669 /* An array cleanup region already encloses any temporary cleanups,
7670 don't wrap it around them again. */
7671 gcc_checking_assert (BIND_EXPR_VEC_DTOR (guard));
7672 return;
7674 cp_walk_tree_without_duplicates (&init, wrap_cleanups_r, (void *)guard);
7677 /* Generate code to initialize DECL (a local variable). */
7679 static void
7680 initialize_local_var (tree decl, tree init)
7682 tree type = TREE_TYPE (decl);
7683 tree cleanup;
7684 int already_used;
7686 gcc_assert (VAR_P (decl)
7687 || TREE_CODE (decl) == RESULT_DECL);
7688 gcc_assert (!TREE_STATIC (decl));
7690 if (DECL_SIZE (decl) == NULL_TREE)
7692 /* If we used it already as memory, it must stay in memory. */
7693 DECL_INITIAL (decl) = NULL_TREE;
7694 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
7695 return;
7698 if (type == error_mark_node)
7699 return;
7701 /* Compute and store the initial value. */
7702 already_used = TREE_USED (decl) || TREE_USED (type);
7703 if (TREE_USED (type))
7704 DECL_READ_P (decl) = 1;
7706 /* Generate a cleanup, if necessary. */
7707 cleanup = cxx_maybe_build_cleanup (decl, tf_warning_or_error);
7709 /* Perform the initialization. */
7710 if (init)
7712 tree rinit = (TREE_CODE (init) == INIT_EXPR
7713 ? TREE_OPERAND (init, 1) : NULL_TREE);
7714 if (rinit && !TREE_SIDE_EFFECTS (rinit)
7715 && TREE_OPERAND (init, 0) == decl)
7717 /* Stick simple initializers in DECL_INITIAL so that
7718 -Wno-init-self works (c++/34772). */
7719 DECL_INITIAL (decl) = rinit;
7721 if (warn_init_self && TYPE_REF_P (type))
7723 STRIP_NOPS (rinit);
7724 if (rinit == decl)
7725 warning_at (DECL_SOURCE_LOCATION (decl),
7726 OPT_Winit_self,
7727 "reference %qD is initialized with itself", decl);
7730 else
7732 int saved_stmts_are_full_exprs_p;
7734 /* If we're only initializing a single object, guard the
7735 destructors of any temporaries used in its initializer with
7736 its destructor. */
7737 if (cleanup)
7738 wrap_temporary_cleanups (init, cleanup);
7740 gcc_assert (building_stmt_list_p ());
7741 saved_stmts_are_full_exprs_p = stmts_are_full_exprs_p ();
7742 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
7743 finish_expr_stmt (init);
7744 current_stmt_tree ()->stmts_are_full_exprs_p =
7745 saved_stmts_are_full_exprs_p;
7749 /* Set this to 0 so we can tell whether an aggregate which was
7750 initialized was ever used. Don't do this if it has a
7751 destructor, so we don't complain about the 'resource
7752 allocation is initialization' idiom. Now set
7753 attribute((unused)) on types so decls of that type will be
7754 marked used. (see TREE_USED, above.) */
7755 if (TYPE_NEEDS_CONSTRUCTING (type)
7756 && ! already_used
7757 && TYPE_HAS_TRIVIAL_DESTRUCTOR (type)
7758 && DECL_NAME (decl))
7759 TREE_USED (decl) = 0;
7760 else if (already_used)
7761 TREE_USED (decl) = 1;
7763 if (cleanup)
7764 finish_decl_cleanup (decl, cleanup);
7767 /* DECL is a VAR_DECL for a compiler-generated variable with static
7768 storage duration (like a virtual table) whose initializer is a
7769 compile-time constant. Initialize the variable and provide it to the
7770 back end. */
7772 void
7773 initialize_artificial_var (tree decl, vec<constructor_elt, va_gc> *v)
7775 tree init;
7776 gcc_assert (DECL_ARTIFICIAL (decl));
7777 init = build_constructor (TREE_TYPE (decl), v);
7778 gcc_assert (TREE_CODE (init) == CONSTRUCTOR);
7779 DECL_INITIAL (decl) = init;
7780 DECL_INITIALIZED_P (decl) = 1;
7781 /* Mark the decl as constexpr so that we can access its content
7782 at compile time. */
7783 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = true;
7784 DECL_DECLARED_CONSTEXPR_P (decl) = true;
7785 determine_visibility (decl);
7786 layout_var_decl (decl);
7787 maybe_commonize_var (decl);
7788 make_rtl_for_nonlocal_decl (decl, init, /*asmspec=*/NULL);
7791 /* INIT is the initializer for a variable, as represented by the
7792 parser. Returns true iff INIT is value-dependent. */
7794 static bool
7795 value_dependent_init_p (tree init)
7797 if (TREE_CODE (init) == TREE_LIST)
7798 /* A parenthesized initializer, e.g.: int i (3, 2); ? */
7799 return any_value_dependent_elements_p (init);
7800 else if (TREE_CODE (init) == CONSTRUCTOR)
7801 /* A brace-enclosed initializer, e.g.: int i = { 3 }; ? */
7803 if (dependent_type_p (TREE_TYPE (init)))
7804 return true;
7806 vec<constructor_elt, va_gc> *elts;
7807 size_t nelts;
7808 size_t i;
7810 elts = CONSTRUCTOR_ELTS (init);
7811 nelts = vec_safe_length (elts);
7812 for (i = 0; i < nelts; ++i)
7813 if (value_dependent_init_p ((*elts)[i].value))
7814 return true;
7816 else
7817 /* It must be a simple expression, e.g., int i = 3; */
7818 return value_dependent_expression_p (init);
7820 return false;
7823 // Returns true if a DECL is VAR_DECL with the concept specifier.
7824 static inline bool
7825 is_concept_var (tree decl)
7827 return (VAR_P (decl)
7828 // Not all variables have DECL_LANG_SPECIFIC.
7829 && DECL_LANG_SPECIFIC (decl)
7830 && DECL_DECLARED_CONCEPT_P (decl));
7833 /* A helper function to be called via walk_tree. If any label exists
7834 under *TP, it is (going to be) forced. Set has_forced_label_in_static. */
7836 static tree
7837 notice_forced_label_r (tree *tp, int *walk_subtrees, void *)
7839 if (TYPE_P (*tp))
7840 *walk_subtrees = 0;
7841 if (TREE_CODE (*tp) == LABEL_DECL)
7842 cfun->has_forced_label_in_static = 1;
7843 return NULL_TREE;
7846 /* Return true if DECL has either a trivial destructor, or for C++20
7847 is constexpr and has a constexpr destructor. */
7849 static bool
7850 decl_maybe_constant_destruction (tree decl, tree type)
7852 return (TYPE_HAS_TRIVIAL_DESTRUCTOR (type)
7853 || (cxx_dialect >= cxx20
7854 && VAR_P (decl)
7855 && DECL_DECLARED_CONSTEXPR_P (decl)
7856 && type_has_constexpr_destructor (strip_array_types (type))));
7859 static tree declare_simd_adjust_this (tree *, int *, void *);
7861 /* Helper function of omp_declare_variant_finalize. Finalize one
7862 "omp declare variant base" attribute. Return true if it should be
7863 removed. */
7865 static bool
7866 omp_declare_variant_finalize_one (tree decl, tree attr)
7868 if (TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE)
7870 walk_tree (&TREE_VALUE (TREE_VALUE (attr)), declare_simd_adjust_this,
7871 DECL_ARGUMENTS (decl), NULL);
7872 walk_tree (&TREE_PURPOSE (TREE_VALUE (attr)), declare_simd_adjust_this,
7873 DECL_ARGUMENTS (decl), NULL);
7876 tree ctx = TREE_VALUE (TREE_VALUE (attr));
7877 tree simd = omp_get_context_selector (ctx, "construct", "simd");
7878 if (simd)
7880 TREE_VALUE (simd)
7881 = c_omp_declare_simd_clauses_to_numbers (DECL_ARGUMENTS (decl),
7882 TREE_VALUE (simd));
7883 /* FIXME, adjusting simd args unimplemented. */
7884 return true;
7887 tree chain = TREE_CHAIN (TREE_VALUE (attr));
7888 location_t varid_loc
7889 = cp_expr_loc_or_input_loc (TREE_PURPOSE (TREE_CHAIN (chain)));
7890 location_t match_loc = cp_expr_loc_or_input_loc (TREE_PURPOSE (chain));
7891 cp_id_kind idk = (cp_id_kind) tree_to_uhwi (TREE_VALUE (chain));
7892 tree variant = TREE_PURPOSE (TREE_VALUE (attr));
7894 location_t save_loc = input_location;
7895 input_location = varid_loc;
7897 releasing_vec args;
7898 tree parm = DECL_ARGUMENTS (decl);
7899 if (TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE)
7900 parm = DECL_CHAIN (parm);
7901 for (; parm; parm = DECL_CHAIN (parm))
7902 if (type_dependent_expression_p (parm))
7903 vec_safe_push (args, build_constructor (TREE_TYPE (parm), NULL));
7904 else if (MAYBE_CLASS_TYPE_P (TREE_TYPE (parm)))
7905 vec_safe_push (args, build_local_temp (TREE_TYPE (parm)));
7906 else
7907 vec_safe_push (args, build_zero_cst (TREE_TYPE (parm)));
7909 bool koenig_p = false;
7910 if (idk == CP_ID_KIND_UNQUALIFIED || idk == CP_ID_KIND_TEMPLATE_ID)
7912 if (identifier_p (variant)
7913 /* In C++20, we may need to perform ADL for a template
7914 name. */
7915 || (TREE_CODE (variant) == TEMPLATE_ID_EXPR
7916 && identifier_p (TREE_OPERAND (variant, 0))))
7918 if (!args->is_empty ())
7920 koenig_p = true;
7921 if (!any_type_dependent_arguments_p (args))
7922 variant = perform_koenig_lookup (variant, args,
7923 tf_warning_or_error);
7925 else
7926 variant = unqualified_fn_lookup_error (variant);
7928 else if (!args->is_empty () && is_overloaded_fn (variant))
7930 tree fn = get_first_fn (variant);
7931 fn = STRIP_TEMPLATE (fn);
7932 if (!((TREE_CODE (fn) == USING_DECL && DECL_DEPENDENT_P (fn))
7933 || DECL_FUNCTION_MEMBER_P (fn)
7934 || DECL_LOCAL_DECL_P (fn)))
7936 koenig_p = true;
7937 if (!any_type_dependent_arguments_p (args))
7938 variant = perform_koenig_lookup (variant, args,
7939 tf_warning_or_error);
7944 if (idk == CP_ID_KIND_QUALIFIED)
7945 variant = finish_call_expr (variant, &args, /*disallow_virtual=*/true,
7946 koenig_p, tf_warning_or_error);
7947 else
7948 variant = finish_call_expr (variant, &args, /*disallow_virtual=*/false,
7949 koenig_p, tf_warning_or_error);
7950 if (variant == error_mark_node && !processing_template_decl)
7951 return true;
7953 variant = cp_get_callee_fndecl_nofold (variant);
7954 input_location = save_loc;
7956 if (variant)
7958 const char *varname = IDENTIFIER_POINTER (DECL_NAME (variant));
7959 if (!comptypes (TREE_TYPE (decl), TREE_TYPE (variant), 0))
7961 error_at (varid_loc, "variant %qD and base %qD have incompatible "
7962 "types", variant, decl);
7963 return true;
7965 if (fndecl_built_in_p (variant)
7966 && (startswith (varname, "__builtin_")
7967 || startswith (varname, "__sync_")
7968 || startswith (varname, "__atomic_")))
7970 error_at (varid_loc, "variant %qD is a built-in", variant);
7971 return true;
7973 else
7975 tree construct = omp_get_context_selector (ctx, "construct", NULL);
7976 omp_mark_declare_variant (match_loc, variant, construct);
7977 if (!omp_context_selector_matches (ctx))
7978 return true;
7979 TREE_PURPOSE (TREE_VALUE (attr)) = variant;
7982 else if (!processing_template_decl)
7984 error_at (varid_loc, "could not find variant declaration");
7985 return true;
7988 return false;
7991 /* Helper function, finish up "omp declare variant base" attribute
7992 now that there is a DECL. ATTR is the first "omp declare variant base"
7993 attribute. */
7995 void
7996 omp_declare_variant_finalize (tree decl, tree attr)
7998 size_t attr_len = strlen ("omp declare variant base");
7999 tree *list = &DECL_ATTRIBUTES (decl);
8000 bool remove_all = false;
8001 location_t match_loc = DECL_SOURCE_LOCATION (decl);
8002 if (TREE_CHAIN (TREE_VALUE (attr))
8003 && TREE_PURPOSE (TREE_CHAIN (TREE_VALUE (attr)))
8004 && EXPR_HAS_LOCATION (TREE_PURPOSE (TREE_CHAIN (TREE_VALUE (attr)))))
8005 match_loc = EXPR_LOCATION (TREE_PURPOSE (TREE_CHAIN (TREE_VALUE (attr))));
8006 if (DECL_CONSTRUCTOR_P (decl))
8008 error_at (match_loc, "%<declare variant%> on constructor %qD", decl);
8009 remove_all = true;
8011 else if (DECL_DESTRUCTOR_P (decl))
8013 error_at (match_loc, "%<declare variant%> on destructor %qD", decl);
8014 remove_all = true;
8016 else if (DECL_DEFAULTED_FN (decl))
8018 error_at (match_loc, "%<declare variant%> on defaulted %qD", decl);
8019 remove_all = true;
8021 else if (DECL_DELETED_FN (decl))
8023 error_at (match_loc, "%<declare variant%> on deleted %qD", decl);
8024 remove_all = true;
8026 else if (DECL_VIRTUAL_P (decl))
8028 error_at (match_loc, "%<declare variant%> on virtual %qD", decl);
8029 remove_all = true;
8031 /* This loop is like private_lookup_attribute, except that it works
8032 with tree * rather than tree, as we might want to remove the
8033 attributes that are diagnosed as errorneous. */
8034 while (*list)
8036 tree attr = get_attribute_name (*list);
8037 size_t ident_len = IDENTIFIER_LENGTH (attr);
8038 if (cmp_attribs ("omp declare variant base", attr_len,
8039 IDENTIFIER_POINTER (attr), ident_len))
8041 if (remove_all || omp_declare_variant_finalize_one (decl, *list))
8043 *list = TREE_CHAIN (*list);
8044 continue;
8047 list = &TREE_CHAIN (*list);
8051 /* Finish processing of a declaration;
8052 install its line number and initial value.
8053 If the length of an array type is not known before,
8054 it must be determined now, from the initial value, or it is an error.
8056 INIT is the initializer (if any) for DECL. If INIT_CONST_EXPR_P is
8057 true, then INIT is an integral constant expression.
8059 FLAGS is LOOKUP_ONLYCONVERTING if the = init syntax was used, else 0
8060 if the (init) syntax was used. */
8062 void
8063 cp_finish_decl (tree decl, tree init, bool init_const_expr_p,
8064 tree asmspec_tree, int flags)
8066 tree type;
8067 vec<tree, va_gc> *cleanups = NULL;
8068 const char *asmspec = NULL;
8069 int was_readonly = 0;
8070 bool var_definition_p = false;
8071 tree auto_node;
8073 if (decl == error_mark_node)
8074 return;
8075 else if (! decl)
8077 if (init)
8078 error ("assignment (not initialization) in declaration");
8079 return;
8082 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
8083 /* Parameters are handled by store_parm_decls, not cp_finish_decl. */
8084 gcc_assert (TREE_CODE (decl) != PARM_DECL);
8086 type = TREE_TYPE (decl);
8087 if (type == error_mark_node)
8088 return;
8090 if (VAR_P (decl) && is_copy_initialization (init))
8091 flags |= LOOKUP_ONLYCONVERTING;
8093 /* Warn about register storage specifiers except when in GNU global
8094 or local register variable extension. */
8095 if (VAR_P (decl) && DECL_REGISTER (decl) && asmspec_tree == NULL_TREE)
8097 if (cxx_dialect >= cxx17)
8098 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
8099 "ISO C++17 does not allow %<register%> storage "
8100 "class specifier");
8101 else
8102 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
8103 "%<register%> storage class specifier used");
8106 /* If a name was specified, get the string. */
8107 if (at_namespace_scope_p ())
8108 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
8109 if (asmspec_tree && asmspec_tree != error_mark_node)
8110 asmspec = TREE_STRING_POINTER (asmspec_tree);
8112 bool in_class_decl
8113 = (current_class_type
8114 && CP_DECL_CONTEXT (decl) == current_class_type
8115 && TYPE_BEING_DEFINED (current_class_type)
8116 && !CLASSTYPE_TEMPLATE_INSTANTIATION (current_class_type));
8118 if (in_class_decl
8119 && (DECL_INITIAL (decl) || init))
8120 DECL_INITIALIZED_IN_CLASS_P (decl) = 1;
8122 if (VAR_P (decl)
8123 && (auto_node = type_uses_auto (type)))
8125 tree d_init;
8126 if (init == NULL_TREE)
8128 if (DECL_LANG_SPECIFIC (decl)
8129 && DECL_TEMPLATE_INSTANTIATION (decl)
8130 && !DECL_TEMPLATE_INSTANTIATED (decl))
8132 /* init is null because we're deferring instantiating the
8133 initializer until we need it. Well, we need it now. */
8134 instantiate_decl (decl, /*defer_ok*/true, /*expl*/false);
8135 return;
8138 gcc_assert (CLASS_PLACEHOLDER_TEMPLATE (auto_node));
8140 d_init = init;
8141 if (d_init)
8143 if (TREE_CODE (d_init) == TREE_LIST
8144 && !CLASS_PLACEHOLDER_TEMPLATE (auto_node))
8145 d_init = build_x_compound_expr_from_list (d_init, ELK_INIT,
8146 tf_warning_or_error);
8147 d_init = resolve_nondeduced_context (d_init, tf_warning_or_error);
8149 enum auto_deduction_context adc = adc_variable_type;
8150 if (DECL_DECOMPOSITION_P (decl))
8151 adc = adc_decomp_type;
8152 tree outer_targs = NULL_TREE;
8153 if (PLACEHOLDER_TYPE_CONSTRAINTS_INFO (auto_node)
8154 && DECL_LANG_SPECIFIC (decl)
8155 && DECL_TEMPLATE_INFO (decl)
8156 && !DECL_FUNCTION_SCOPE_P (decl))
8157 /* The outer template arguments might be needed for satisfaction.
8158 (For function scope variables, do_auto_deduction will obtain the
8159 outer template arguments from current_function_decl.) */
8160 outer_targs = DECL_TI_ARGS (decl);
8161 type = TREE_TYPE (decl) = do_auto_deduction (type, d_init, auto_node,
8162 tf_warning_or_error, adc,
8163 outer_targs, flags);
8164 if (type == error_mark_node)
8165 return;
8166 if (TREE_CODE (type) == FUNCTION_TYPE)
8168 error ("initializer for %<decltype(auto) %D%> has function type; "
8169 "did you forget the %<()%>?", decl);
8170 TREE_TYPE (decl) = error_mark_node;
8171 return;
8173 /* As in start_decl_1, complete so TREE_READONLY is set properly. */
8174 if (!processing_template_decl
8175 && !type_uses_auto (type)
8176 && !COMPLETE_TYPE_P (complete_type (type)))
8178 error_at (location_of (decl),
8179 "deduced type %qT for %qD is incomplete", type, decl);
8180 cxx_incomplete_type_inform (type);
8181 TREE_TYPE (decl) = error_mark_node;
8182 return;
8184 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
8187 if (ensure_literal_type_for_constexpr_object (decl) == error_mark_node)
8189 DECL_DECLARED_CONSTEXPR_P (decl) = 0;
8190 if (VAR_P (decl) && DECL_CLASS_SCOPE_P (decl))
8192 init = NULL_TREE;
8193 DECL_EXTERNAL (decl) = 1;
8197 if (VAR_P (decl)
8198 && DECL_CLASS_SCOPE_P (decl)
8199 && verify_type_context (DECL_SOURCE_LOCATION (decl),
8200 TCTX_STATIC_STORAGE, type)
8201 && DECL_INITIALIZED_IN_CLASS_P (decl))
8202 check_static_variable_definition (decl, type);
8204 if (!processing_template_decl && VAR_P (decl) && is_global_var (decl))
8206 type_context_kind context = (DECL_THREAD_LOCAL_P (decl)
8207 ? TCTX_THREAD_STORAGE
8208 : TCTX_STATIC_STORAGE);
8209 verify_type_context (input_location, context, TREE_TYPE (decl));
8212 if (init && TREE_CODE (decl) == FUNCTION_DECL)
8214 tree clone;
8215 if (init == ridpointers[(int)RID_DELETE])
8217 /* FIXME check this is 1st decl. */
8218 DECL_DELETED_FN (decl) = 1;
8219 DECL_DECLARED_INLINE_P (decl) = 1;
8220 DECL_INITIAL (decl) = error_mark_node;
8221 FOR_EACH_CLONE (clone, decl)
8223 DECL_DELETED_FN (clone) = 1;
8224 DECL_DECLARED_INLINE_P (clone) = 1;
8225 DECL_INITIAL (clone) = error_mark_node;
8227 init = NULL_TREE;
8229 else if (init == ridpointers[(int)RID_DEFAULT])
8231 if (defaultable_fn_check (decl))
8232 DECL_DEFAULTED_FN (decl) = 1;
8233 else
8234 DECL_INITIAL (decl) = NULL_TREE;
8238 if (init && VAR_P (decl))
8240 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = 1;
8241 /* If DECL is a reference, then we want to know whether init is a
8242 reference constant; init_const_expr_p as passed tells us whether
8243 it's an rvalue constant. */
8244 if (TYPE_REF_P (type))
8245 init_const_expr_p = potential_constant_expression (init);
8246 if (init_const_expr_p)
8248 /* Set these flags now for templates. We'll update the flags in
8249 store_init_value for instantiations. */
8250 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = 1;
8251 if (decl_maybe_constant_var_p (decl)
8252 /* FIXME setting TREE_CONSTANT on refs breaks the back end. */
8253 && !TYPE_REF_P (type))
8254 TREE_CONSTANT (decl) = 1;
8258 if (flag_openmp
8259 && TREE_CODE (decl) == FUNCTION_DECL
8260 /* #pragma omp declare variant on methods handled in finish_struct
8261 instead. */
8262 && (!DECL_NONSTATIC_MEMBER_FUNCTION_P (decl)
8263 || COMPLETE_TYPE_P (DECL_CONTEXT (decl))))
8264 if (tree attr = lookup_attribute ("omp declare variant base",
8265 DECL_ATTRIBUTES (decl)))
8266 omp_declare_variant_finalize (decl, attr);
8268 if (processing_template_decl)
8270 bool type_dependent_p;
8272 /* Add this declaration to the statement-tree. */
8273 if (at_function_scope_p ())
8274 add_decl_expr (decl);
8276 type_dependent_p = dependent_type_p (type);
8278 if (check_for_bare_parameter_packs (init))
8280 init = NULL_TREE;
8281 DECL_INITIAL (decl) = NULL_TREE;
8284 /* Generally, initializers in templates are expanded when the
8285 template is instantiated. But, if DECL is a variable constant
8286 then it can be used in future constant expressions, so its value
8287 must be available. */
8289 bool dep_init = false;
8291 if (!VAR_P (decl) || type_dependent_p)
8292 /* We can't do anything if the decl has dependent type. */;
8293 else if (!init && is_concept_var (decl))
8295 error ("variable concept has no initializer");
8296 init = boolean_true_node;
8298 else if (init
8299 && (init_const_expr_p || DECL_DECLARED_CONSTEXPR_P (decl))
8300 && !TYPE_REF_P (type)
8301 && decl_maybe_constant_var_p (decl)
8302 && !(dep_init = value_dependent_init_p (init)))
8304 /* This variable seems to be a non-dependent constant, so process
8305 its initializer. If check_initializer returns non-null the
8306 initialization wasn't constant after all. */
8307 tree init_code;
8308 cleanups = make_tree_vector ();
8309 init_code = check_initializer (decl, init, flags, &cleanups);
8310 if (init_code == NULL_TREE)
8311 init = NULL_TREE;
8312 release_tree_vector (cleanups);
8314 else
8316 gcc_assert (!DECL_PRETTY_FUNCTION_P (decl));
8317 /* Try to deduce array size. */
8318 maybe_deduce_size_from_array_init (decl, init);
8319 /* And complain about multiple initializers. */
8320 if (init && TREE_CODE (init) == TREE_LIST && TREE_CHAIN (init)
8321 && !MAYBE_CLASS_TYPE_P (type))
8322 init = build_x_compound_expr_from_list (init, ELK_INIT,
8323 tf_warning_or_error);
8326 if (init)
8327 DECL_INITIAL (decl) = init;
8329 if (dep_init)
8331 retrofit_lang_decl (decl);
8332 SET_DECL_DEPENDENT_INIT_P (decl, true);
8335 if (VAR_P (decl) && DECL_REGISTER (decl) && asmspec)
8337 set_user_assembler_name (decl, asmspec);
8338 DECL_HARD_REGISTER (decl) = 1;
8340 return;
8343 /* Just store non-static data member initializers for later. */
8344 if (init && TREE_CODE (decl) == FIELD_DECL)
8345 DECL_INITIAL (decl) = init;
8347 /* Take care of TYPE_DECLs up front. */
8348 if (TREE_CODE (decl) == TYPE_DECL)
8350 if (type != error_mark_node
8351 && MAYBE_CLASS_TYPE_P (type) && DECL_NAME (decl))
8353 if (TREE_TYPE (DECL_NAME (decl)) && TREE_TYPE (decl) != type)
8354 warning (0, "shadowing previous type declaration of %q#D", decl);
8355 set_identifier_type_value (DECL_NAME (decl), decl);
8358 /* If we have installed this as the canonical typedef for this
8359 type, and that type has not been defined yet, delay emitting
8360 the debug information for it, as we will emit it later. */
8361 if (TYPE_MAIN_DECL (TREE_TYPE (decl)) == decl
8362 && !COMPLETE_TYPE_P (TREE_TYPE (decl)))
8363 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
8365 rest_of_decl_compilation (decl, DECL_FILE_SCOPE_P (decl),
8366 at_eof);
8367 return;
8370 /* A reference will be modified here, as it is initialized. */
8371 if (! DECL_EXTERNAL (decl)
8372 && TREE_READONLY (decl)
8373 && TYPE_REF_P (type))
8375 was_readonly = 1;
8376 TREE_READONLY (decl) = 0;
8379 /* This needs to happen before extend_ref_init_temps. */
8380 if (VAR_OR_FUNCTION_DECL_P (decl))
8382 if (VAR_P (decl))
8383 maybe_commonize_var (decl);
8384 determine_visibility (decl);
8387 if (VAR_P (decl))
8389 duration_kind dk = decl_storage_duration (decl);
8390 /* [dcl.constinit]/1 "The constinit specifier shall be applied
8391 only to a declaration of a variable with static or thread storage
8392 duration." */
8393 if (DECL_DECLARED_CONSTINIT_P (decl)
8394 && !(dk == dk_thread || dk == dk_static))
8396 error_at (DECL_SOURCE_LOCATION (decl),
8397 "%<constinit%> can only be applied to a variable with "
8398 "static or thread storage duration");
8399 return;
8402 /* If this is a local variable that will need a mangled name,
8403 register it now. We must do this before processing the
8404 initializer for the variable, since the initialization might
8405 require a guard variable, and since the mangled name of the
8406 guard variable will depend on the mangled name of this
8407 variable. */
8408 if (DECL_FUNCTION_SCOPE_P (decl)
8409 && TREE_STATIC (decl)
8410 && !DECL_ARTIFICIAL (decl))
8412 /* The variable holding an anonymous union will have had its
8413 discriminator set in finish_anon_union, after which it's
8414 NAME will have been cleared. */
8415 if (DECL_NAME (decl))
8416 determine_local_discriminator (decl);
8417 /* Normally has_forced_label_in_static is set during GIMPLE
8418 lowering, but [cd]tors are never actually compiled directly.
8419 We need to set this early so we can deal with the label
8420 address extension. */
8421 if ((DECL_CONSTRUCTOR_P (current_function_decl)
8422 || DECL_DESTRUCTOR_P (current_function_decl))
8423 && init)
8425 walk_tree (&init, notice_forced_label_r, NULL, NULL);
8426 add_local_decl (cfun, decl);
8428 /* And make sure it's in the symbol table for
8429 c_parse_final_cleanups to find. */
8430 varpool_node::get_create (decl);
8433 /* Convert the initializer to the type of DECL, if we have not
8434 already initialized DECL. */
8435 if (!DECL_INITIALIZED_P (decl)
8436 /* If !DECL_EXTERNAL then DECL is being defined. In the
8437 case of a static data member initialized inside the
8438 class-specifier, there can be an initializer even if DECL
8439 is *not* defined. */
8440 && (!DECL_EXTERNAL (decl) || init))
8442 cleanups = make_tree_vector ();
8443 init = check_initializer (decl, init, flags, &cleanups);
8445 /* Handle:
8447 [dcl.init]
8449 The memory occupied by any object of static storage
8450 duration is zero-initialized at program startup before
8451 any other initialization takes place.
8453 We cannot create an appropriate initializer until after
8454 the type of DECL is finalized. If DECL_INITIAL is set,
8455 then the DECL is statically initialized, and any
8456 necessary zero-initialization has already been performed. */
8457 if (TREE_STATIC (decl) && !DECL_INITIAL (decl))
8458 DECL_INITIAL (decl) = build_zero_init (TREE_TYPE (decl),
8459 /*nelts=*/NULL_TREE,
8460 /*static_storage_p=*/true);
8461 /* Remember that the initialization for this variable has
8462 taken place. */
8463 DECL_INITIALIZED_P (decl) = 1;
8464 /* This declaration is the definition of this variable,
8465 unless we are initializing a static data member within
8466 the class specifier. */
8467 if (!DECL_EXTERNAL (decl))
8468 var_definition_p = true;
8470 /* If the variable has an array type, lay out the type, even if
8471 there is no initializer. It is valid to index through the
8472 array, and we must get TYPE_ALIGN set correctly on the array
8473 type. */
8474 else if (TREE_CODE (type) == ARRAY_TYPE)
8475 layout_type (type);
8477 if (TREE_STATIC (decl)
8478 && !at_function_scope_p ()
8479 && current_function_decl == NULL)
8480 /* So decl is a global variable or a static member of a
8481 non local class. Record the types it uses
8482 so that we can decide later to emit debug info for them. */
8483 record_types_used_by_current_var_decl (decl);
8486 /* Add this declaration to the statement-tree. This needs to happen
8487 after the call to check_initializer so that the DECL_EXPR for a
8488 reference temp is added before the DECL_EXPR for the reference itself. */
8489 if (DECL_FUNCTION_SCOPE_P (decl))
8491 /* If we're building a variable sized type, and we might be
8492 reachable other than via the top of the current binding
8493 level, then create a new BIND_EXPR so that we deallocate
8494 the object at the right time. */
8495 if (VAR_P (decl)
8496 && DECL_SIZE (decl)
8497 && !TREE_CONSTANT (DECL_SIZE (decl))
8498 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list))
8500 tree bind;
8501 bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
8502 TREE_SIDE_EFFECTS (bind) = 1;
8503 add_stmt (bind);
8504 BIND_EXPR_BODY (bind) = push_stmt_list ();
8506 add_decl_expr (decl);
8509 /* Let the middle end know about variables and functions -- but not
8510 static data members in uninstantiated class templates. */
8511 if (VAR_OR_FUNCTION_DECL_P (decl))
8513 if (VAR_P (decl))
8515 layout_var_decl (decl);
8516 if (!flag_weak)
8517 /* Check again now that we have an initializer. */
8518 maybe_commonize_var (decl);
8519 /* A class-scope constexpr variable with an out-of-class declaration.
8520 C++17 makes them implicitly inline, but still force it out. */
8521 if (DECL_INLINE_VAR_P (decl)
8522 && !DECL_VAR_DECLARED_INLINE_P (decl)
8523 && !DECL_TEMPLATE_INSTANTIATION (decl)
8524 && !in_class_decl)
8525 mark_needed (decl);
8528 if (var_definition_p
8529 /* With -fmerge-all-constants, gimplify_init_constructor
8530 might add TREE_STATIC to the variable. */
8531 && (TREE_STATIC (decl) || flag_merge_constants >= 2))
8533 /* If a TREE_READONLY variable needs initialization
8534 at runtime, it is no longer readonly and we need to
8535 avoid MEM_READONLY_P being set on RTL created for it. */
8536 if (init)
8538 if (TREE_READONLY (decl))
8539 TREE_READONLY (decl) = 0;
8540 was_readonly = 0;
8542 else if (was_readonly)
8543 TREE_READONLY (decl) = 1;
8545 /* Likewise if it needs destruction. */
8546 if (!decl_maybe_constant_destruction (decl, type))
8547 TREE_READONLY (decl) = 0;
8550 make_rtl_for_nonlocal_decl (decl, init, asmspec);
8552 /* Check for abstractness of the type. */
8553 if (var_definition_p)
8554 abstract_virtuals_error (decl, type);
8556 if (TREE_TYPE (decl) == error_mark_node)
8557 /* No initialization required. */
8559 else if (TREE_CODE (decl) == FUNCTION_DECL)
8561 if (init)
8563 if (init == ridpointers[(int)RID_DEFAULT])
8565 /* An out-of-class default definition is defined at
8566 the point where it is explicitly defaulted. */
8567 if (DECL_DELETED_FN (decl))
8568 maybe_explain_implicit_delete (decl);
8569 else if (DECL_INITIAL (decl) == error_mark_node)
8570 synthesize_method (decl);
8572 else
8573 error_at (cp_expr_loc_or_loc (init,
8574 DECL_SOURCE_LOCATION (decl)),
8575 "function %q#D is initialized like a variable",
8576 decl);
8578 /* else no initialization required. */
8580 else if (DECL_EXTERNAL (decl)
8581 && ! (DECL_LANG_SPECIFIC (decl)
8582 && DECL_NOT_REALLY_EXTERN (decl)))
8584 /* check_initializer will have done any constant initialization. */
8586 /* A variable definition. */
8587 else if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
8588 /* Initialize the local variable. */
8589 initialize_local_var (decl, init);
8591 /* If a variable is defined, and then a subsequent
8592 definition with external linkage is encountered, we will
8593 get here twice for the same variable. We want to avoid
8594 calling expand_static_init more than once. For variables
8595 that are not static data members, we can call
8596 expand_static_init only when we actually process the
8597 initializer. It is not legal to redeclare a static data
8598 member, so this issue does not arise in that case. */
8599 else if (var_definition_p && TREE_STATIC (decl))
8600 expand_static_init (decl, init);
8603 /* If a CLEANUP_STMT was created to destroy a temporary bound to a
8604 reference, insert it in the statement-tree now. */
8605 if (cleanups)
8607 for (tree t : *cleanups)
8609 push_cleanup (NULL_TREE, t, false);
8610 /* As in initialize_local_var. */
8611 wrap_temporary_cleanups (init, t);
8613 release_tree_vector (cleanups);
8616 if (was_readonly)
8617 TREE_READONLY (decl) = 1;
8619 if (flag_openmp
8620 && VAR_P (decl)
8621 && lookup_attribute ("omp declare target implicit",
8622 DECL_ATTRIBUTES (decl)))
8624 DECL_ATTRIBUTES (decl)
8625 = remove_attribute ("omp declare target implicit",
8626 DECL_ATTRIBUTES (decl));
8627 complete_type (TREE_TYPE (decl));
8628 if (!cp_omp_mappable_type (TREE_TYPE (decl)))
8630 error ("%q+D in declare target directive does not have mappable"
8631 " type", decl);
8632 cp_omp_emit_unmappable_type_notes (TREE_TYPE (decl));
8634 else if (!lookup_attribute ("omp declare target",
8635 DECL_ATTRIBUTES (decl))
8636 && !lookup_attribute ("omp declare target link",
8637 DECL_ATTRIBUTES (decl)))
8639 DECL_ATTRIBUTES (decl)
8640 = tree_cons (get_identifier ("omp declare target"),
8641 NULL_TREE, DECL_ATTRIBUTES (decl));
8642 symtab_node *node = symtab_node::get (decl);
8643 if (node != NULL)
8645 node->offloadable = 1;
8646 if (ENABLE_OFFLOADING)
8648 g->have_offload = true;
8649 if (is_a <varpool_node *> (node))
8650 vec_safe_push (offload_vars, decl);
8656 /* This is the last point we can lower alignment so give the target the
8657 chance to do so. */
8658 if (VAR_P (decl)
8659 && !is_global_var (decl)
8660 && !DECL_HARD_REGISTER (decl))
8661 targetm.lower_local_decl_alignment (decl);
8663 invoke_plugin_callbacks (PLUGIN_FINISH_DECL, decl);
8666 /* For class TYPE return itself or some its bases that contain
8667 any direct non-static data members. Return error_mark_node if an
8668 error has been diagnosed. */
8670 static tree
8671 find_decomp_class_base (location_t loc, tree type, tree ret)
8673 bool member_seen = false;
8674 for (tree field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
8675 if (TREE_CODE (field) != FIELD_DECL
8676 || DECL_ARTIFICIAL (field)
8677 || DECL_UNNAMED_BIT_FIELD (field))
8678 continue;
8679 else if (ret)
8680 return type;
8681 else if (ANON_AGGR_TYPE_P (TREE_TYPE (field)))
8683 if (TREE_CODE (TREE_TYPE (field)) == RECORD_TYPE)
8684 error_at (loc, "cannot decompose class type %qT because it has an "
8685 "anonymous struct member", type);
8686 else
8687 error_at (loc, "cannot decompose class type %qT because it has an "
8688 "anonymous union member", type);
8689 inform (DECL_SOURCE_LOCATION (field), "declared here");
8690 return error_mark_node;
8692 else if (!accessible_p (type, field, true))
8694 error_at (loc, "cannot decompose inaccessible member %qD of %qT",
8695 field, type);
8696 inform (DECL_SOURCE_LOCATION (field),
8697 TREE_PRIVATE (field)
8698 ? G_("declared private here")
8699 : G_("declared protected here"));
8700 return error_mark_node;
8702 else
8703 member_seen = true;
8705 tree base_binfo, binfo;
8706 tree orig_ret = ret;
8707 int i;
8708 if (member_seen)
8709 ret = type;
8710 for (binfo = TYPE_BINFO (type), i = 0;
8711 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
8713 tree t = find_decomp_class_base (loc, TREE_TYPE (base_binfo), ret);
8714 if (t == error_mark_node)
8715 return error_mark_node;
8716 if (t != NULL_TREE && t != ret)
8718 if (ret == type)
8720 error_at (loc, "cannot decompose class type %qT: both it and "
8721 "its base class %qT have non-static data members",
8722 type, t);
8723 return error_mark_node;
8725 else if (orig_ret != NULL_TREE)
8726 return t;
8727 else if (ret != NULL_TREE)
8729 error_at (loc, "cannot decompose class type %qT: its base "
8730 "classes %qT and %qT have non-static data "
8731 "members", type, ret, t);
8732 return error_mark_node;
8734 else
8735 ret = t;
8738 return ret;
8741 /* Return std::tuple_size<TYPE>::value. */
8743 static tree
8744 get_tuple_size (tree type)
8746 tree args = make_tree_vec (1);
8747 TREE_VEC_ELT (args, 0) = type;
8748 tree inst = lookup_template_class (tuple_size_identifier, args,
8749 /*in_decl*/NULL_TREE,
8750 /*context*/std_node,
8751 /*entering_scope*/false, tf_none);
8752 inst = complete_type (inst);
8753 if (inst == error_mark_node || !COMPLETE_TYPE_P (inst))
8754 return NULL_TREE;
8755 tree val = lookup_qualified_name (inst, value_identifier,
8756 LOOK_want::NORMAL, /*complain*/false);
8757 if (TREE_CODE (val) == VAR_DECL || TREE_CODE (val) == CONST_DECL)
8758 val = maybe_constant_value (val);
8759 if (TREE_CODE (val) == INTEGER_CST)
8760 return val;
8761 else
8762 return error_mark_node;
8765 /* Return std::tuple_element<I,TYPE>::type. */
8767 static tree
8768 get_tuple_element_type (tree type, unsigned i)
8770 tree args = make_tree_vec (2);
8771 TREE_VEC_ELT (args, 0) = build_int_cst (integer_type_node, i);
8772 TREE_VEC_ELT (args, 1) = type;
8773 tree inst = lookup_template_class (tuple_element_identifier, args,
8774 /*in_decl*/NULL_TREE,
8775 /*context*/std_node,
8776 /*entering_scope*/false,
8777 tf_warning_or_error);
8778 return make_typename_type (inst, type_identifier,
8779 none_type, tf_warning_or_error);
8782 /* Return e.get<i>() or get<i>(e). */
8784 static tree
8785 get_tuple_decomp_init (tree decl, unsigned i)
8787 tree targs = make_tree_vec (1);
8788 TREE_VEC_ELT (targs, 0) = build_int_cst (integer_type_node, i);
8790 tree etype = TREE_TYPE (decl);
8791 tree e = convert_from_reference (decl);
8793 /* [The id-expression] e is an lvalue if the type of the entity e is an
8794 lvalue reference and an xvalue otherwise. */
8795 if (!TYPE_REF_P (etype)
8796 || TYPE_REF_IS_RVALUE (etype))
8797 e = move (e);
8799 tree fns = lookup_qualified_name (TREE_TYPE (e), get__identifier,
8800 LOOK_want::NORMAL, /*complain*/false);
8801 bool use_member_get = false;
8803 /* To use a member get, member lookup must find at least one
8804 declaration that is a function template
8805 whose first template parameter is a non-type parameter. */
8806 for (lkp_iterator iter (MAYBE_BASELINK_FUNCTIONS (fns)); iter; ++iter)
8808 tree fn = *iter;
8809 if (TREE_CODE (fn) == TEMPLATE_DECL)
8811 tree tparms = DECL_TEMPLATE_PARMS (fn);
8812 tree parm = TREE_VEC_ELT (INNERMOST_TEMPLATE_PARMS (tparms), 0);
8813 if (TREE_CODE (TREE_VALUE (parm)) == PARM_DECL)
8815 use_member_get = true;
8816 break;
8821 if (use_member_get)
8823 fns = lookup_template_function (fns, targs);
8824 return build_new_method_call (e, fns, /*args*/NULL,
8825 /*path*/NULL_TREE, LOOKUP_NORMAL,
8826 /*fn_p*/NULL, tf_warning_or_error);
8828 else
8830 releasing_vec args (make_tree_vector_single (e));
8831 fns = lookup_template_function (get__identifier, targs);
8832 fns = perform_koenig_lookup (fns, args, tf_warning_or_error);
8833 return finish_call_expr (fns, &args, /*novirt*/false,
8834 /*koenig*/true, tf_warning_or_error);
8838 /* It's impossible to recover the decltype of a tuple decomposition variable
8839 based on the actual type of the variable, so store it in a hash table. */
8841 static GTY((cache)) decl_tree_cache_map *decomp_type_table;
8843 tree
8844 lookup_decomp_type (tree v)
8846 return *decomp_type_table->get (v);
8849 /* Mangle a decomposition declaration if needed. Arguments like
8850 in cp_finish_decomp. */
8852 void
8853 cp_maybe_mangle_decomp (tree decl, tree first, unsigned int count)
8855 if (!processing_template_decl
8856 && !error_operand_p (decl)
8857 && TREE_STATIC (decl))
8859 auto_vec<tree, 16> v;
8860 v.safe_grow (count, true);
8861 tree d = first;
8862 for (unsigned int i = 0; i < count; i++, d = DECL_CHAIN (d))
8863 v[count - i - 1] = d;
8864 SET_DECL_ASSEMBLER_NAME (decl, mangle_decomp (decl, v));
8865 maybe_apply_pragma_weak (decl);
8869 /* Finish a decomposition declaration. DECL is the underlying declaration
8870 "e", FIRST is the head of a chain of decls for the individual identifiers
8871 chained through DECL_CHAIN in reverse order and COUNT is the number of
8872 those decls. */
8874 void
8875 cp_finish_decomp (tree decl, tree first, unsigned int count)
8877 if (error_operand_p (decl))
8879 error_out:
8880 while (count--)
8882 TREE_TYPE (first) = error_mark_node;
8883 if (DECL_HAS_VALUE_EXPR_P (first))
8885 SET_DECL_VALUE_EXPR (first, NULL_TREE);
8886 DECL_HAS_VALUE_EXPR_P (first) = 0;
8888 first = DECL_CHAIN (first);
8890 if (DECL_P (decl) && DECL_NAMESPACE_SCOPE_P (decl))
8891 SET_DECL_ASSEMBLER_NAME (decl, get_identifier ("<decomp>"));
8892 return;
8895 location_t loc = DECL_SOURCE_LOCATION (decl);
8896 if (type_dependent_expression_p (decl)
8897 /* This happens for range for when not in templates.
8898 Still add the DECL_VALUE_EXPRs for later processing. */
8899 || (!processing_template_decl
8900 && type_uses_auto (TREE_TYPE (decl))))
8902 for (unsigned int i = 0; i < count; i++)
8904 if (!DECL_HAS_VALUE_EXPR_P (first))
8906 tree v = build_nt (ARRAY_REF, decl,
8907 size_int (count - i - 1),
8908 NULL_TREE, NULL_TREE);
8909 SET_DECL_VALUE_EXPR (first, v);
8910 DECL_HAS_VALUE_EXPR_P (first) = 1;
8912 if (processing_template_decl)
8913 fit_decomposition_lang_decl (first, decl);
8914 first = DECL_CHAIN (first);
8916 return;
8919 auto_vec<tree, 16> v;
8920 v.safe_grow (count, true);
8921 tree d = first;
8922 for (unsigned int i = 0; i < count; i++, d = DECL_CHAIN (d))
8924 v[count - i - 1] = d;
8925 fit_decomposition_lang_decl (d, decl);
8928 tree type = TREE_TYPE (decl);
8929 tree dexp = decl;
8931 if (TYPE_REF_P (type))
8933 dexp = convert_from_reference (dexp);
8934 type = complete_type (TREE_TYPE (type));
8935 if (type == error_mark_node)
8936 goto error_out;
8937 if (!COMPLETE_TYPE_P (type))
8939 error_at (loc, "structured binding refers to incomplete type %qT",
8940 type);
8941 goto error_out;
8945 tree eltype = NULL_TREE;
8946 unsigned HOST_WIDE_INT eltscnt = 0;
8947 if (TREE_CODE (type) == ARRAY_TYPE)
8949 tree nelts;
8950 nelts = array_type_nelts_top (type);
8951 if (nelts == error_mark_node)
8952 goto error_out;
8953 if (!tree_fits_uhwi_p (nelts))
8955 error_at (loc, "cannot decompose variable length array %qT", type);
8956 goto error_out;
8958 eltscnt = tree_to_uhwi (nelts);
8959 if (count != eltscnt)
8961 cnt_mismatch:
8962 if (count > eltscnt)
8963 error_n (loc, count,
8964 "%u name provided for structured binding",
8965 "%u names provided for structured binding", count);
8966 else
8967 error_n (loc, count,
8968 "only %u name provided for structured binding",
8969 "only %u names provided for structured binding", count);
8970 inform_n (loc, eltscnt,
8971 "while %qT decomposes into %wu element",
8972 "while %qT decomposes into %wu elements",
8973 type, eltscnt);
8974 goto error_out;
8976 eltype = TREE_TYPE (type);
8977 for (unsigned int i = 0; i < count; i++)
8979 TREE_TYPE (v[i]) = eltype;
8980 layout_decl (v[i], 0);
8981 if (processing_template_decl)
8982 continue;
8983 tree t = unshare_expr (dexp);
8984 t = build4_loc (DECL_SOURCE_LOCATION (v[i]), ARRAY_REF,
8985 eltype, t, size_int (i), NULL_TREE,
8986 NULL_TREE);
8987 SET_DECL_VALUE_EXPR (v[i], t);
8988 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
8991 /* 2 GNU extensions. */
8992 else if (TREE_CODE (type) == COMPLEX_TYPE)
8994 eltscnt = 2;
8995 if (count != eltscnt)
8996 goto cnt_mismatch;
8997 eltype = cp_build_qualified_type (TREE_TYPE (type), TYPE_QUALS (type));
8998 for (unsigned int i = 0; i < count; i++)
9000 TREE_TYPE (v[i]) = eltype;
9001 layout_decl (v[i], 0);
9002 if (processing_template_decl)
9003 continue;
9004 tree t = unshare_expr (dexp);
9005 t = build1_loc (DECL_SOURCE_LOCATION (v[i]),
9006 i ? IMAGPART_EXPR : REALPART_EXPR, eltype,
9008 SET_DECL_VALUE_EXPR (v[i], t);
9009 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
9012 else if (TREE_CODE (type) == VECTOR_TYPE)
9014 if (!TYPE_VECTOR_SUBPARTS (type).is_constant (&eltscnt))
9016 error_at (loc, "cannot decompose variable length vector %qT", type);
9017 goto error_out;
9019 if (count != eltscnt)
9020 goto cnt_mismatch;
9021 eltype = cp_build_qualified_type (TREE_TYPE (type), TYPE_QUALS (type));
9022 for (unsigned int i = 0; i < count; i++)
9024 TREE_TYPE (v[i]) = eltype;
9025 layout_decl (v[i], 0);
9026 if (processing_template_decl)
9027 continue;
9028 tree t = unshare_expr (dexp);
9029 convert_vector_to_array_for_subscript (DECL_SOURCE_LOCATION (v[i]),
9030 &t, size_int (i));
9031 t = build4_loc (DECL_SOURCE_LOCATION (v[i]), ARRAY_REF,
9032 eltype, t, size_int (i), NULL_TREE,
9033 NULL_TREE);
9034 SET_DECL_VALUE_EXPR (v[i], t);
9035 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
9038 else if (tree tsize = get_tuple_size (type))
9040 if (tsize == error_mark_node)
9042 error_at (loc, "%<std::tuple_size<%T>::value%> is not an integral "
9043 "constant expression", type);
9044 goto error_out;
9046 if (!tree_fits_uhwi_p (tsize))
9048 error_n (loc, count,
9049 "%u name provided for structured binding",
9050 "%u names provided for structured binding", count);
9051 inform (loc, "while %qT decomposes into %E elements",
9052 type, tsize);
9053 goto error_out;
9055 eltscnt = tree_to_uhwi (tsize);
9056 if (count != eltscnt)
9057 goto cnt_mismatch;
9058 int save_read = DECL_READ_P (decl);
9059 for (unsigned i = 0; i < count; ++i)
9061 location_t sloc = input_location;
9062 location_t dloc = DECL_SOURCE_LOCATION (v[i]);
9064 input_location = dloc;
9065 tree init = get_tuple_decomp_init (decl, i);
9066 tree eltype = (init == error_mark_node ? error_mark_node
9067 : get_tuple_element_type (type, i));
9068 input_location = sloc;
9070 if (VOID_TYPE_P (eltype))
9072 error ("%<std::tuple_element<%u, %T>::type%> is %<void%>",
9073 i, type);
9074 eltype = error_mark_node;
9076 if (init == error_mark_node || eltype == error_mark_node)
9078 inform (dloc, "in initialization of structured binding "
9079 "variable %qD", v[i]);
9080 goto error_out;
9082 /* Save the decltype away before reference collapse. */
9083 hash_map_safe_put<hm_ggc> (decomp_type_table, v[i], eltype);
9084 eltype = cp_build_reference_type (eltype, !lvalue_p (init));
9085 TREE_TYPE (v[i]) = eltype;
9086 layout_decl (v[i], 0);
9087 if (DECL_HAS_VALUE_EXPR_P (v[i]))
9089 /* In this case the names are variables, not just proxies. */
9090 SET_DECL_VALUE_EXPR (v[i], NULL_TREE);
9091 DECL_HAS_VALUE_EXPR_P (v[i]) = 0;
9093 if (!processing_template_decl)
9095 copy_linkage (v[i], decl);
9096 cp_finish_decl (v[i], init, /*constexpr*/false,
9097 /*asm*/NULL_TREE, LOOKUP_NORMAL);
9100 /* Ignore reads from the underlying decl performed during initialization
9101 of the individual variables. If those will be read, we'll mark
9102 the underlying decl as read at that point. */
9103 DECL_READ_P (decl) = save_read;
9105 else if (TREE_CODE (type) == UNION_TYPE)
9107 error_at (loc, "cannot decompose union type %qT", type);
9108 goto error_out;
9110 else if (!CLASS_TYPE_P (type))
9112 error_at (loc, "cannot decompose non-array non-class type %qT", type);
9113 goto error_out;
9115 else if (LAMBDA_TYPE_P (type))
9117 error_at (loc, "cannot decompose lambda closure type %qT", type);
9118 goto error_out;
9120 else if (processing_template_decl && complete_type (type) == error_mark_node)
9121 goto error_out;
9122 else if (processing_template_decl && !COMPLETE_TYPE_P (type))
9123 pedwarn (loc, 0, "structured binding refers to incomplete class type %qT",
9124 type);
9125 else
9127 tree btype = find_decomp_class_base (loc, type, NULL_TREE);
9128 if (btype == error_mark_node)
9129 goto error_out;
9130 else if (btype == NULL_TREE)
9132 error_at (loc, "cannot decompose class type %qT without non-static "
9133 "data members", type);
9134 goto error_out;
9136 for (tree field = TYPE_FIELDS (btype); field; field = TREE_CHAIN (field))
9137 if (TREE_CODE (field) != FIELD_DECL
9138 || DECL_ARTIFICIAL (field)
9139 || DECL_UNNAMED_BIT_FIELD (field))
9140 continue;
9141 else
9142 eltscnt++;
9143 if (count != eltscnt)
9144 goto cnt_mismatch;
9145 tree t = dexp;
9146 if (type != btype)
9148 t = convert_to_base (t, btype, /*check_access*/true,
9149 /*nonnull*/false, tf_warning_or_error);
9150 type = btype;
9152 unsigned int i = 0;
9153 for (tree field = TYPE_FIELDS (btype); field; field = TREE_CHAIN (field))
9154 if (TREE_CODE (field) != FIELD_DECL
9155 || DECL_ARTIFICIAL (field)
9156 || DECL_UNNAMED_BIT_FIELD (field))
9157 continue;
9158 else
9160 tree tt = finish_non_static_data_member (field, unshare_expr (t),
9161 NULL_TREE);
9162 if (REFERENCE_REF_P (tt))
9163 tt = TREE_OPERAND (tt, 0);
9164 TREE_TYPE (v[i]) = TREE_TYPE (tt);
9165 layout_decl (v[i], 0);
9166 if (!processing_template_decl)
9168 SET_DECL_VALUE_EXPR (v[i], tt);
9169 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
9171 i++;
9174 if (processing_template_decl)
9176 for (unsigned int i = 0; i < count; i++)
9177 if (!DECL_HAS_VALUE_EXPR_P (v[i]))
9179 tree a = build_nt (ARRAY_REF, decl, size_int (i),
9180 NULL_TREE, NULL_TREE);
9181 SET_DECL_VALUE_EXPR (v[i], a);
9182 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
9187 /* Returns a declaration for a VAR_DECL as if:
9189 extern "C" TYPE NAME;
9191 had been seen. Used to create compiler-generated global
9192 variables. */
9194 static tree
9195 declare_global_var (tree name, tree type)
9197 auto cookie = push_abi_namespace (global_namespace);
9198 tree decl = build_decl (input_location, VAR_DECL, name, type);
9199 TREE_PUBLIC (decl) = 1;
9200 DECL_EXTERNAL (decl) = 1;
9201 DECL_ARTIFICIAL (decl) = 1;
9202 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
9203 /* If the user has explicitly declared this variable (perhaps
9204 because the code we are compiling is part of a low-level runtime
9205 library), then it is possible that our declaration will be merged
9206 with theirs by pushdecl. */
9207 decl = pushdecl (decl);
9208 cp_finish_decl (decl, NULL_TREE, false, NULL_TREE, 0);
9209 pop_abi_namespace (cookie, global_namespace);
9211 return decl;
9214 /* Returns the type for the argument to "__cxa_atexit" (or "atexit",
9215 if "__cxa_atexit" is not being used) corresponding to the function
9216 to be called when the program exits. */
9218 static tree
9219 get_atexit_fn_ptr_type (void)
9221 tree fn_type;
9223 if (!atexit_fn_ptr_type_node)
9225 tree arg_type;
9226 if (flag_use_cxa_atexit
9227 && !targetm.cxx.use_atexit_for_cxa_atexit ())
9228 /* The parameter to "__cxa_atexit" is "void (*)(void *)". */
9229 arg_type = ptr_type_node;
9230 else
9231 /* The parameter to "atexit" is "void (*)(void)". */
9232 arg_type = NULL_TREE;
9234 fn_type = build_function_type_list (void_type_node,
9235 arg_type, NULL_TREE);
9236 atexit_fn_ptr_type_node = build_pointer_type (fn_type);
9239 return atexit_fn_ptr_type_node;
9242 /* Returns a pointer to the `atexit' function. Note that if
9243 FLAG_USE_CXA_ATEXIT is nonzero, then this will actually be the new
9244 `__cxa_atexit' function specified in the IA64 C++ ABI. */
9246 static tree
9247 get_atexit_node (void)
9249 tree atexit_fndecl;
9250 tree fn_type;
9251 tree fn_ptr_type;
9252 const char *name;
9253 bool use_aeabi_atexit;
9254 tree ctx = global_namespace;
9256 if (atexit_node)
9257 return atexit_node;
9259 if (flag_use_cxa_atexit && !targetm.cxx.use_atexit_for_cxa_atexit ())
9261 /* The declaration for `__cxa_atexit' is:
9263 int __cxa_atexit (void (*)(void *), void *, void *)
9265 We build up the argument types and then the function type
9266 itself. */
9267 tree argtype0, argtype1, argtype2;
9269 use_aeabi_atexit = targetm.cxx.use_aeabi_atexit ();
9270 /* First, build the pointer-to-function type for the first
9271 argument. */
9272 fn_ptr_type = get_atexit_fn_ptr_type ();
9273 /* Then, build the rest of the argument types. */
9274 argtype2 = ptr_type_node;
9275 if (use_aeabi_atexit)
9277 argtype1 = fn_ptr_type;
9278 argtype0 = ptr_type_node;
9280 else
9282 argtype1 = ptr_type_node;
9283 argtype0 = fn_ptr_type;
9285 /* And the final __cxa_atexit type. */
9286 fn_type = build_function_type_list (integer_type_node,
9287 argtype0, argtype1, argtype2,
9288 NULL_TREE);
9289 /* ... which needs noexcept. */
9290 fn_type = build_exception_variant (fn_type, noexcept_true_spec);
9291 if (use_aeabi_atexit)
9293 name = "__aeabi_atexit";
9294 push_to_top_level ();
9295 int n = push_namespace (get_identifier ("__aeabiv1"), false);
9296 ctx = current_namespace;
9297 while (n--)
9298 pop_namespace ();
9299 pop_from_top_level ();
9301 else
9303 name = "__cxa_atexit";
9304 ctx = abi_node;
9307 else
9309 /* The declaration for `atexit' is:
9311 int atexit (void (*)());
9313 We build up the argument types and then the function type
9314 itself. */
9315 fn_ptr_type = get_atexit_fn_ptr_type ();
9316 /* Build the final atexit type. */
9317 fn_type = build_function_type_list (integer_type_node,
9318 fn_ptr_type, NULL_TREE);
9319 /* ... which needs noexcept. */
9320 fn_type = build_exception_variant (fn_type, noexcept_true_spec);
9321 name = "atexit";
9324 /* Now, build the function declaration. */
9325 push_lang_context (lang_name_c);
9326 auto cookie = push_abi_namespace (ctx);
9327 atexit_fndecl = build_library_fn_ptr (name, fn_type, ECF_LEAF | ECF_NOTHROW);
9328 DECL_CONTEXT (atexit_fndecl) = FROB_CONTEXT (current_namespace);
9329 /* Install as hidden builtin so we're (a) more relaxed about
9330 exception spec matching and (b) will not give a confusing location
9331 in diagnostic and (c) won't magically appear in user-visible name
9332 lookups. */
9333 DECL_SOURCE_LOCATION (atexit_fndecl) = BUILTINS_LOCATION;
9334 atexit_fndecl = pushdecl (atexit_fndecl, /*hiding=*/true);
9335 pop_abi_namespace (cookie, ctx);
9336 mark_used (atexit_fndecl);
9337 pop_lang_context ();
9338 atexit_node = decay_conversion (atexit_fndecl, tf_warning_or_error);
9340 return atexit_node;
9343 /* Like get_atexit_node, but for thread-local cleanups. */
9345 static tree
9346 get_thread_atexit_node (void)
9348 /* The declaration for `__cxa_thread_atexit' is:
9350 int __cxa_thread_atexit (void (*)(void *), void *, void *) */
9351 tree fn_type = build_function_type_list (integer_type_node,
9352 get_atexit_fn_ptr_type (),
9353 ptr_type_node, ptr_type_node,
9354 NULL_TREE);
9356 /* Now, build the function declaration. */
9357 tree atexit_fndecl = build_library_fn_ptr ("__cxa_thread_atexit", fn_type,
9358 ECF_LEAF | ECF_NOTHROW);
9359 return decay_conversion (atexit_fndecl, tf_warning_or_error);
9362 /* Returns the __dso_handle VAR_DECL. */
9364 static tree
9365 get_dso_handle_node (void)
9367 if (dso_handle_node)
9368 return dso_handle_node;
9370 /* Declare the variable. */
9371 dso_handle_node = declare_global_var (get_identifier ("__dso_handle"),
9372 ptr_type_node);
9374 #ifdef HAVE_GAS_HIDDEN
9375 if (dso_handle_node != error_mark_node)
9377 DECL_VISIBILITY (dso_handle_node) = VISIBILITY_HIDDEN;
9378 DECL_VISIBILITY_SPECIFIED (dso_handle_node) = 1;
9380 #endif
9382 return dso_handle_node;
9385 /* Begin a new function with internal linkage whose job will be simply
9386 to destroy some particular variable. */
9388 static GTY(()) int start_cleanup_cnt;
9390 static tree
9391 start_cleanup_fn (void)
9393 char name[32];
9395 push_to_top_level ();
9397 /* No need to mangle this. */
9398 push_lang_context (lang_name_c);
9400 /* Build the name of the function. */
9401 sprintf (name, "__tcf_%d", start_cleanup_cnt++);
9402 /* Build the function declaration. */
9403 tree fntype = TREE_TYPE (get_atexit_fn_ptr_type ());
9404 tree fndecl = build_lang_decl (FUNCTION_DECL, get_identifier (name), fntype);
9405 DECL_CONTEXT (fndecl) = FROB_CONTEXT (current_namespace);
9406 /* It's a function with internal linkage, generated by the
9407 compiler. */
9408 TREE_PUBLIC (fndecl) = 0;
9409 DECL_ARTIFICIAL (fndecl) = 1;
9410 /* Make the function `inline' so that it is only emitted if it is
9411 actually needed. It is unlikely that it will be inlined, since
9412 it is only called via a function pointer, but we avoid unnecessary
9413 emissions this way. */
9414 DECL_DECLARED_INLINE_P (fndecl) = 1;
9415 DECL_INTERFACE_KNOWN (fndecl) = 1;
9416 if (flag_use_cxa_atexit && !targetm.cxx.use_atexit_for_cxa_atexit ())
9418 /* Build the parameter. */
9419 tree parmdecl = cp_build_parm_decl (fndecl, NULL_TREE, ptr_type_node);
9420 TREE_USED (parmdecl) = 1;
9421 DECL_READ_P (parmdecl) = 1;
9422 DECL_ARGUMENTS (fndecl) = parmdecl;
9425 fndecl = pushdecl (fndecl, /*hidden=*/true);
9426 start_preparsed_function (fndecl, NULL_TREE, SF_PRE_PARSED);
9428 pop_lang_context ();
9430 return current_function_decl;
9433 /* Finish the cleanup function begun by start_cleanup_fn. */
9435 static void
9436 end_cleanup_fn (void)
9438 expand_or_defer_fn (finish_function (/*inline_p=*/false));
9440 pop_from_top_level ();
9443 /* Generate code to handle the destruction of DECL, an object with
9444 static storage duration. */
9446 tree
9447 register_dtor_fn (tree decl)
9449 tree cleanup;
9450 tree addr;
9451 tree compound_stmt;
9452 tree fcall;
9453 tree type;
9454 bool ob_parm, dso_parm, use_dtor;
9455 tree arg0, arg1, arg2;
9456 tree atex_node;
9458 type = TREE_TYPE (decl);
9459 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
9460 return void_node;
9462 if (decl_maybe_constant_destruction (decl, type)
9463 && DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl))
9465 cxx_maybe_build_cleanup (decl, tf_warning_or_error);
9466 return void_node;
9469 /* If we're using "__cxa_atexit" (or "__cxa_thread_atexit" or
9470 "__aeabi_atexit"), and DECL is a class object, we can just pass the
9471 destructor to "__cxa_atexit"; we don't have to build a temporary
9472 function to do the cleanup. */
9473 dso_parm = (flag_use_cxa_atexit
9474 && !targetm.cxx.use_atexit_for_cxa_atexit ());
9475 ob_parm = (CP_DECL_THREAD_LOCAL_P (decl) || dso_parm);
9476 use_dtor = ob_parm && CLASS_TYPE_P (type);
9477 if (use_dtor)
9479 cleanup = get_class_binding (type, complete_dtor_identifier);
9481 /* Make sure it is accessible. */
9482 perform_or_defer_access_check (TYPE_BINFO (type), cleanup, cleanup,
9483 tf_warning_or_error);
9485 else
9487 /* Call build_cleanup before we enter the anonymous function so
9488 that any access checks will be done relative to the current
9489 scope, rather than the scope of the anonymous function. */
9490 build_cleanup (decl);
9492 /* Now start the function. */
9493 cleanup = start_cleanup_fn ();
9495 /* Now, recompute the cleanup. It may contain SAVE_EXPRs that refer
9496 to the original function, rather than the anonymous one. That
9497 will make the back end think that nested functions are in use,
9498 which causes confusion. */
9499 push_deferring_access_checks (dk_no_check);
9500 fcall = build_cleanup (decl);
9501 pop_deferring_access_checks ();
9503 /* Create the body of the anonymous function. */
9504 compound_stmt = begin_compound_stmt (BCS_FN_BODY);
9505 finish_expr_stmt (fcall);
9506 finish_compound_stmt (compound_stmt);
9507 end_cleanup_fn ();
9510 /* Call atexit with the cleanup function. */
9511 mark_used (cleanup);
9512 cleanup = build_address (cleanup);
9514 if (CP_DECL_THREAD_LOCAL_P (decl))
9515 atex_node = get_thread_atexit_node ();
9516 else
9517 atex_node = get_atexit_node ();
9519 if (use_dtor)
9521 /* We must convert CLEANUP to the type that "__cxa_atexit"
9522 expects. */
9523 cleanup = build_nop (get_atexit_fn_ptr_type (), cleanup);
9524 /* "__cxa_atexit" will pass the address of DECL to the
9525 cleanup function. */
9526 mark_used (decl);
9527 addr = build_address (decl);
9528 /* The declared type of the parameter to "__cxa_atexit" is
9529 "void *". For plain "T*", we could just let the
9530 machinery in cp_build_function_call convert it -- but if the
9531 type is "cv-qualified T *", then we need to convert it
9532 before passing it in, to avoid spurious errors. */
9533 addr = build_nop (ptr_type_node, addr);
9535 else
9536 /* Since the cleanup functions we build ignore the address
9537 they're given, there's no reason to pass the actual address
9538 in, and, in general, it's cheaper to pass NULL than any
9539 other value. */
9540 addr = null_pointer_node;
9542 if (dso_parm)
9543 arg2 = cp_build_addr_expr (get_dso_handle_node (),
9544 tf_warning_or_error);
9545 else if (ob_parm)
9546 /* Just pass NULL to the dso handle parm if we don't actually
9547 have a DSO handle on this target. */
9548 arg2 = null_pointer_node;
9549 else
9550 arg2 = NULL_TREE;
9552 if (ob_parm)
9554 if (!CP_DECL_THREAD_LOCAL_P (decl)
9555 && targetm.cxx.use_aeabi_atexit ())
9557 arg1 = cleanup;
9558 arg0 = addr;
9560 else
9562 arg1 = addr;
9563 arg0 = cleanup;
9566 else
9568 arg0 = cleanup;
9569 arg1 = NULL_TREE;
9571 return cp_build_function_call_nary (atex_node, tf_warning_or_error,
9572 arg0, arg1, arg2, NULL_TREE);
9575 /* DECL is a VAR_DECL with static storage duration. INIT, if present,
9576 is its initializer. Generate code to handle the construction
9577 and destruction of DECL. */
9579 static void
9580 expand_static_init (tree decl, tree init)
9582 gcc_assert (VAR_P (decl));
9583 gcc_assert (TREE_STATIC (decl));
9585 /* Some variables require no dynamic initialization. */
9586 if (decl_maybe_constant_destruction (decl, TREE_TYPE (decl)))
9588 /* Make sure the destructor is callable. */
9589 cxx_maybe_build_cleanup (decl, tf_warning_or_error);
9590 if (!init)
9591 return;
9594 if (CP_DECL_THREAD_LOCAL_P (decl) && DECL_GNU_TLS_P (decl)
9595 && !DECL_FUNCTION_SCOPE_P (decl))
9597 location_t dloc = DECL_SOURCE_LOCATION (decl);
9598 if (init)
9599 error_at (dloc, "non-local variable %qD declared %<__thread%> "
9600 "needs dynamic initialization", decl);
9601 else
9602 error_at (dloc, "non-local variable %qD declared %<__thread%> "
9603 "has a non-trivial destructor", decl);
9604 static bool informed;
9605 if (!informed)
9607 inform (dloc, "C++11 %<thread_local%> allows dynamic "
9608 "initialization and destruction");
9609 informed = true;
9611 return;
9614 if (DECL_FUNCTION_SCOPE_P (decl))
9616 /* Emit code to perform this initialization but once. */
9617 tree if_stmt = NULL_TREE, inner_if_stmt = NULL_TREE;
9618 tree then_clause = NULL_TREE, inner_then_clause = NULL_TREE;
9619 tree guard, guard_addr;
9620 tree flag, begin;
9621 /* We don't need thread-safety code for thread-local vars. */
9622 bool thread_guard = (flag_threadsafe_statics
9623 && !CP_DECL_THREAD_LOCAL_P (decl));
9625 /* Emit code to perform this initialization but once. This code
9626 looks like:
9628 static <type> guard;
9629 if (!__atomic_load (guard.first_byte)) {
9630 if (__cxa_guard_acquire (&guard)) {
9631 bool flag = false;
9632 try {
9633 // Do initialization.
9634 flag = true; __cxa_guard_release (&guard);
9635 // Register variable for destruction at end of program.
9636 } catch {
9637 if (!flag) __cxa_guard_abort (&guard);
9642 Note that the `flag' variable is only set to 1 *after* the
9643 initialization is complete. This ensures that an exception,
9644 thrown during the construction, will cause the variable to
9645 reinitialized when we pass through this code again, as per:
9647 [stmt.dcl]
9649 If the initialization exits by throwing an exception, the
9650 initialization is not complete, so it will be tried again
9651 the next time control enters the declaration.
9653 This process should be thread-safe, too; multiple threads
9654 should not be able to initialize the variable more than
9655 once. */
9657 /* Create the guard variable. */
9658 guard = get_guard (decl);
9660 /* Begin the conditional initialization. */
9661 if_stmt = begin_if_stmt ();
9663 finish_if_stmt_cond (get_guard_cond (guard, thread_guard), if_stmt);
9664 then_clause = begin_compound_stmt (BCS_NO_SCOPE);
9666 if (thread_guard)
9668 tree vfntype = NULL_TREE;
9669 tree acquire_name, release_name, abort_name;
9670 tree acquire_fn, release_fn, abort_fn;
9671 guard_addr = build_address (guard);
9673 acquire_name = get_identifier ("__cxa_guard_acquire");
9674 release_name = get_identifier ("__cxa_guard_release");
9675 abort_name = get_identifier ("__cxa_guard_abort");
9676 acquire_fn = get_global_binding (acquire_name);
9677 release_fn = get_global_binding (release_name);
9678 abort_fn = get_global_binding (abort_name);
9679 if (!acquire_fn)
9680 acquire_fn = push_library_fn
9681 (acquire_name, build_function_type_list (integer_type_node,
9682 TREE_TYPE (guard_addr),
9683 NULL_TREE),
9684 NULL_TREE, ECF_NOTHROW);
9685 if (!release_fn || !abort_fn)
9686 vfntype = build_function_type_list (void_type_node,
9687 TREE_TYPE (guard_addr),
9688 NULL_TREE);
9689 if (!release_fn)
9690 release_fn = push_library_fn (release_name, vfntype, NULL_TREE,
9691 ECF_NOTHROW);
9692 if (!abort_fn)
9693 abort_fn = push_library_fn (abort_name, vfntype, NULL_TREE,
9694 ECF_NOTHROW | ECF_LEAF);
9696 inner_if_stmt = begin_if_stmt ();
9697 finish_if_stmt_cond (build_call_n (acquire_fn, 1, guard_addr),
9698 inner_if_stmt);
9700 inner_then_clause = begin_compound_stmt (BCS_NO_SCOPE);
9701 begin = get_target_expr (boolean_false_node);
9702 flag = TARGET_EXPR_SLOT (begin);
9704 TARGET_EXPR_CLEANUP (begin)
9705 = build3 (COND_EXPR, void_type_node, flag,
9706 void_node,
9707 build_call_n (abort_fn, 1, guard_addr));
9708 CLEANUP_EH_ONLY (begin) = 1;
9710 /* Do the initialization itself. */
9711 init = add_stmt_to_compound (begin, init);
9712 init = add_stmt_to_compound (init,
9713 build2 (MODIFY_EXPR, void_type_node,
9714 flag, boolean_true_node));
9716 /* Use atexit to register a function for destroying this static
9717 variable. Do this before calling __cxa_guard_release. */
9718 init = add_stmt_to_compound (init, register_dtor_fn (decl));
9720 init = add_stmt_to_compound (init, build_call_n (release_fn, 1,
9721 guard_addr));
9723 else
9725 init = add_stmt_to_compound (init, set_guard (guard));
9727 /* Use atexit to register a function for destroying this static
9728 variable. */
9729 init = add_stmt_to_compound (init, register_dtor_fn (decl));
9732 finish_expr_stmt (init);
9734 if (thread_guard)
9736 finish_compound_stmt (inner_then_clause);
9737 finish_then_clause (inner_if_stmt);
9738 finish_if_stmt (inner_if_stmt);
9741 finish_compound_stmt (then_clause);
9742 finish_then_clause (if_stmt);
9743 finish_if_stmt (if_stmt);
9745 else if (CP_DECL_THREAD_LOCAL_P (decl))
9746 tls_aggregates = tree_cons (init, decl, tls_aggregates);
9747 else
9748 static_aggregates = tree_cons (init, decl, static_aggregates);
9752 /* Make TYPE a complete type based on INITIAL_VALUE.
9753 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
9754 2 if there was no information (in which case assume 0 if DO_DEFAULT),
9755 3 if the initializer list is empty (in pedantic mode). */
9758 cp_complete_array_type (tree *ptype, tree initial_value, bool do_default)
9760 int failure;
9761 tree type, elt_type;
9763 /* Don't get confused by a CONSTRUCTOR for some other type. */
9764 if (initial_value && TREE_CODE (initial_value) == CONSTRUCTOR
9765 && !BRACE_ENCLOSED_INITIALIZER_P (initial_value)
9766 && TREE_CODE (TREE_TYPE (initial_value)) != ARRAY_TYPE)
9767 return 1;
9769 if (initial_value)
9771 /* An array of character type can be initialized from a
9772 brace-enclosed string constant so call reshape_init to
9773 remove the optional braces from a braced string literal. */
9774 if (char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (*ptype)))
9775 && BRACE_ENCLOSED_INITIALIZER_P (initial_value))
9776 initial_value = reshape_init (*ptype, initial_value,
9777 tf_warning_or_error);
9779 /* If any of the elements are parameter packs, we can't actually
9780 complete this type now because the array size is dependent. */
9781 if (TREE_CODE (initial_value) == CONSTRUCTOR)
9782 for (auto &e: CONSTRUCTOR_ELTS (initial_value))
9783 if (PACK_EXPANSION_P (e.value))
9784 return 0;
9787 failure = complete_array_type (ptype, initial_value, do_default);
9789 /* We can create the array before the element type is complete, which
9790 means that we didn't have these two bits set in the original type
9791 either. In completing the type, we are expected to propagate these
9792 bits. See also complete_type which does the same thing for arrays
9793 of fixed size. */
9794 type = *ptype;
9795 if (type != error_mark_node && TYPE_DOMAIN (type))
9797 elt_type = TREE_TYPE (type);
9798 TYPE_NEEDS_CONSTRUCTING (type) = TYPE_NEEDS_CONSTRUCTING (elt_type);
9799 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
9800 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (elt_type);
9803 return failure;
9806 /* As above, but either give an error or reject zero-size arrays, depending
9807 on COMPLAIN. */
9810 cp_complete_array_type_or_error (tree *ptype, tree initial_value,
9811 bool do_default, tsubst_flags_t complain)
9813 int failure;
9814 bool sfinae = !(complain & tf_error);
9815 /* In SFINAE context we can't be lenient about zero-size arrays. */
9816 if (sfinae)
9817 ++pedantic;
9818 failure = cp_complete_array_type (ptype, initial_value, do_default);
9819 if (sfinae)
9820 --pedantic;
9821 if (failure)
9823 if (sfinae)
9824 /* Not an error. */;
9825 else if (failure == 1)
9826 error ("initializer fails to determine size of %qT", *ptype);
9827 else if (failure == 2)
9829 if (do_default)
9830 error ("array size missing in %qT", *ptype);
9832 else if (failure == 3)
9833 error ("zero-size array %qT", *ptype);
9834 *ptype = error_mark_node;
9836 return failure;
9839 /* Return zero if something is declared to be a member of type
9840 CTYPE when in the context of CUR_TYPE. STRING is the error
9841 message to print in that case. Otherwise, quietly return 1. */
9843 static int
9844 member_function_or_else (tree ctype, tree cur_type, enum overload_flags flags)
9846 if (ctype && ctype != cur_type)
9848 if (flags == DTOR_FLAG)
9849 error ("destructor for alien class %qT cannot be a member", ctype);
9850 else
9851 error ("constructor for alien class %qT cannot be a member", ctype);
9852 return 0;
9854 return 1;
9857 /* Subroutine of `grokdeclarator'. */
9859 /* Generate errors possibly applicable for a given set of specifiers.
9860 This is for ARM $7.1.2. */
9862 static void
9863 bad_specifiers (tree object,
9864 enum bad_spec_place type,
9865 int virtualp,
9866 int quals,
9867 int inlinep,
9868 int friendp,
9869 int raises,
9870 const location_t* locations)
9872 switch (type)
9874 case BSP_VAR:
9875 if (virtualp)
9876 error_at (locations[ds_virtual],
9877 "%qD declared as a %<virtual%> variable", object);
9878 if (quals)
9879 error ("%<const%> and %<volatile%> function specifiers on "
9880 "%qD invalid in variable declaration", object);
9881 break;
9882 case BSP_PARM:
9883 if (virtualp)
9884 error_at (locations[ds_virtual],
9885 "%qD declared as a %<virtual%> parameter", object);
9886 if (inlinep)
9887 error_at (locations[ds_inline],
9888 "%qD declared as an %<inline%> parameter", object);
9889 if (quals)
9890 error ("%<const%> and %<volatile%> function specifiers on "
9891 "%qD invalid in parameter declaration", object);
9892 break;
9893 case BSP_TYPE:
9894 if (virtualp)
9895 error_at (locations[ds_virtual],
9896 "%qD declared as a %<virtual%> type", object);
9897 if (inlinep)
9898 error_at (locations[ds_inline],
9899 "%qD declared as an %<inline%> type", object);
9900 if (quals)
9901 error ("%<const%> and %<volatile%> function specifiers on "
9902 "%qD invalid in type declaration", object);
9903 break;
9904 case BSP_FIELD:
9905 if (virtualp)
9906 error_at (locations[ds_virtual],
9907 "%qD declared as a %<virtual%> field", object);
9908 if (inlinep)
9909 error_at (locations[ds_inline],
9910 "%qD declared as an %<inline%> field", object);
9911 if (quals)
9912 error ("%<const%> and %<volatile%> function specifiers on "
9913 "%qD invalid in field declaration", object);
9914 break;
9915 default:
9916 gcc_unreachable();
9918 if (friendp)
9919 error ("%q+D declared as a friend", object);
9920 if (raises
9921 && !flag_noexcept_type
9922 && (TREE_CODE (object) == TYPE_DECL
9923 || (!TYPE_PTRFN_P (TREE_TYPE (object))
9924 && !TYPE_REFFN_P (TREE_TYPE (object))
9925 && !TYPE_PTRMEMFUNC_P (TREE_TYPE (object)))))
9926 error ("%q+D declared with an exception specification", object);
9929 /* DECL is a member function or static data member and is presently
9930 being defined. Check that the definition is taking place in a
9931 valid namespace. */
9933 static void
9934 check_class_member_definition_namespace (tree decl)
9936 /* These checks only apply to member functions and static data
9937 members. */
9938 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl));
9939 /* We check for problems with specializations in pt.cc in
9940 check_specialization_namespace, where we can issue better
9941 diagnostics. */
9942 if (processing_specialization)
9943 return;
9944 /* We check this in check_explicit_instantiation_namespace. */
9945 if (processing_explicit_instantiation)
9946 return;
9947 /* [class.mfct]
9949 A member function definition that appears outside of the
9950 class definition shall appear in a namespace scope enclosing
9951 the class definition.
9953 [class.static.data]
9955 The definition for a static data member shall appear in a
9956 namespace scope enclosing the member's class definition. */
9957 if (!is_ancestor (current_namespace, DECL_CONTEXT (decl)))
9958 permerror (input_location, "definition of %qD is not in namespace enclosing %qT",
9959 decl, DECL_CONTEXT (decl));
9962 /* Build a PARM_DECL for the "this" parameter of FN. TYPE is the
9963 METHOD_TYPE for a non-static member function; QUALS are the
9964 cv-qualifiers that apply to the function. */
9966 tree
9967 build_this_parm (tree fn, tree type, cp_cv_quals quals)
9969 tree this_type;
9970 tree qual_type;
9971 tree parm;
9972 cp_cv_quals this_quals;
9974 if (CLASS_TYPE_P (type))
9976 this_type
9977 = cp_build_qualified_type (type, quals & ~TYPE_QUAL_RESTRICT);
9978 this_type = build_pointer_type (this_type);
9980 else
9981 this_type = type_of_this_parm (type);
9982 /* The `this' parameter is implicitly `const'; it cannot be
9983 assigned to. */
9984 this_quals = (quals & TYPE_QUAL_RESTRICT) | TYPE_QUAL_CONST;
9985 qual_type = cp_build_qualified_type (this_type, this_quals);
9986 parm = build_artificial_parm (fn, this_identifier, qual_type);
9987 cp_apply_type_quals_to_decl (this_quals, parm);
9988 return parm;
9991 /* DECL is a static member function. Complain if it was declared
9992 with function-cv-quals. */
9994 static void
9995 check_static_quals (tree decl, cp_cv_quals quals)
9997 if (quals != TYPE_UNQUALIFIED)
9998 error ("static member function %q#D declared with type qualifiers",
9999 decl);
10002 // Check that FN takes no arguments and returns bool.
10003 static void
10004 check_concept_fn (tree fn)
10006 // A constraint is nullary.
10007 if (DECL_ARGUMENTS (fn))
10008 error_at (DECL_SOURCE_LOCATION (fn),
10009 "concept %q#D declared with function parameters", fn);
10011 // The declared return type of the concept shall be bool, and
10012 // it shall not be deduced from it definition.
10013 tree type = TREE_TYPE (TREE_TYPE (fn));
10014 if (is_auto (type))
10015 error_at (DECL_SOURCE_LOCATION (fn),
10016 "concept %q#D declared with a deduced return type", fn);
10017 else if (type != boolean_type_node)
10018 error_at (DECL_SOURCE_LOCATION (fn),
10019 "concept %q#D with non-%<bool%> return type %qT", fn, type);
10022 /* Helper function. Replace the temporary this parameter injected
10023 during cp_finish_omp_declare_simd with the real this parameter. */
10025 static tree
10026 declare_simd_adjust_this (tree *tp, int *walk_subtrees, void *data)
10028 tree this_parm = (tree) data;
10029 if (TREE_CODE (*tp) == PARM_DECL
10030 && DECL_NAME (*tp) == this_identifier
10031 && *tp != this_parm)
10032 *tp = this_parm;
10033 else if (TYPE_P (*tp))
10034 *walk_subtrees = 0;
10035 return NULL_TREE;
10038 /* CTYPE is class type, or null if non-class.
10039 TYPE is type this FUNCTION_DECL should have, either FUNCTION_TYPE
10040 or METHOD_TYPE.
10041 DECLARATOR is the function's name.
10042 PARMS is a chain of PARM_DECLs for the function.
10043 VIRTUALP is truthvalue of whether the function is virtual or not.
10044 FLAGS are to be passed through to `grokclassfn'.
10045 QUALS are qualifiers indicating whether the function is `const'
10046 or `volatile'.
10047 RAISES is a list of exceptions that this function can raise.
10048 CHECK is 1 if we must find this method in CTYPE, 0 if we should
10049 not look, and -1 if we should not call `grokclassfn' at all.
10051 SFK is the kind of special function (if any) for the new function.
10053 Returns `NULL_TREE' if something goes wrong, after issuing
10054 applicable error messages. */
10056 static tree
10057 grokfndecl (tree ctype,
10058 tree type,
10059 tree declarator,
10060 tree parms,
10061 tree orig_declarator,
10062 const cp_decl_specifier_seq *declspecs,
10063 tree decl_reqs,
10064 int virtualp,
10065 enum overload_flags flags,
10066 cp_cv_quals quals,
10067 cp_ref_qualifier rqual,
10068 tree raises,
10069 int check,
10070 int friendp,
10071 int publicp,
10072 int inlinep,
10073 bool deletedp,
10074 special_function_kind sfk,
10075 bool funcdef_flag,
10076 bool late_return_type_p,
10077 int template_count,
10078 tree in_namespace,
10079 tree* attrlist,
10080 location_t location)
10082 tree decl;
10083 int staticp = ctype && TREE_CODE (type) == FUNCTION_TYPE;
10084 tree t;
10086 if (location == UNKNOWN_LOCATION)
10087 location = input_location;
10089 /* Was the concept specifier present? */
10090 bool concept_p = inlinep & 4;
10092 /* Concept declarations must have a corresponding definition. */
10093 if (concept_p && !funcdef_flag)
10095 error_at (location, "concept %qD has no definition", declarator);
10096 return NULL_TREE;
10099 type = build_cp_fntype_variant (type, rqual, raises, late_return_type_p);
10101 decl = build_lang_decl_loc (location, FUNCTION_DECL, declarator, type);
10103 /* Set the constraints on the declaration. */
10104 if (flag_concepts)
10106 tree tmpl_reqs = NULL_TREE;
10107 tree ctx = friendp ? current_class_type : ctype;
10108 bool block_local = TREE_CODE (current_scope ()) == FUNCTION_DECL;
10109 bool memtmpl = (!block_local
10110 && (current_template_depth
10111 > template_class_depth (ctx)));
10112 if (memtmpl)
10114 if (!current_template_parms)
10115 /* If there are no template parameters, something must have
10116 gone wrong. */
10117 gcc_assert (seen_error ());
10118 else
10119 tmpl_reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
10121 tree ci = build_constraints (tmpl_reqs, decl_reqs);
10122 if (concept_p && ci)
10124 error_at (location, "a function concept cannot be constrained");
10125 ci = NULL_TREE;
10127 /* C++20 CA378: Remove non-templated constrained functions. */
10128 if (ci
10129 && (block_local
10130 || (!flag_concepts_ts
10131 && (!processing_template_decl
10132 || (friendp && !memtmpl && !funcdef_flag)))))
10134 error_at (location, "constraints on a non-templated function");
10135 ci = NULL_TREE;
10137 set_constraints (decl, ci);
10140 if (TREE_CODE (type) == METHOD_TYPE)
10142 tree parm = build_this_parm (decl, type, quals);
10143 DECL_CHAIN (parm) = parms;
10144 parms = parm;
10146 /* Allocate space to hold the vptr bit if needed. */
10147 SET_DECL_ALIGN (decl, MINIMUM_METHOD_BOUNDARY);
10150 DECL_ARGUMENTS (decl) = parms;
10151 for (t = parms; t; t = DECL_CHAIN (t))
10152 DECL_CONTEXT (t) = decl;
10154 /* Propagate volatile out from type to decl. */
10155 if (TYPE_VOLATILE (type))
10156 TREE_THIS_VOLATILE (decl) = 1;
10158 /* Setup decl according to sfk. */
10159 switch (sfk)
10161 case sfk_constructor:
10162 case sfk_copy_constructor:
10163 case sfk_move_constructor:
10164 DECL_CXX_CONSTRUCTOR_P (decl) = 1;
10165 DECL_NAME (decl) = ctor_identifier;
10166 break;
10167 case sfk_destructor:
10168 DECL_CXX_DESTRUCTOR_P (decl) = 1;
10169 DECL_NAME (decl) = dtor_identifier;
10170 break;
10171 default:
10172 break;
10175 if (friendp && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)
10177 if (funcdef_flag)
10178 error_at (location,
10179 "defining explicit specialization %qD in friend declaration",
10180 orig_declarator);
10181 else
10183 tree fns = TREE_OPERAND (orig_declarator, 0);
10184 tree args = TREE_OPERAND (orig_declarator, 1);
10186 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
10188 /* Something like `template <class T> friend void f<T>()'. */
10189 error_at (location,
10190 "invalid use of template-id %qD in declaration "
10191 "of primary template",
10192 orig_declarator);
10193 return NULL_TREE;
10197 /* A friend declaration of the form friend void f<>(). Record
10198 the information in the TEMPLATE_ID_EXPR. */
10199 SET_DECL_IMPLICIT_INSTANTIATION (decl);
10201 gcc_assert (identifier_p (fns) || OVL_P (fns));
10202 DECL_TEMPLATE_INFO (decl) = build_template_info (fns, args);
10204 for (t = TYPE_ARG_TYPES (TREE_TYPE (decl)); t; t = TREE_CHAIN (t))
10205 if (TREE_PURPOSE (t)
10206 && TREE_CODE (TREE_PURPOSE (t)) == DEFERRED_PARSE)
10208 error_at (defparse_location (TREE_PURPOSE (t)),
10209 "default arguments are not allowed in declaration "
10210 "of friend template specialization %qD",
10211 decl);
10212 return NULL_TREE;
10215 if (inlinep & 1)
10217 error_at (declspecs->locations[ds_inline],
10218 "%<inline%> is not allowed in declaration of friend "
10219 "template specialization %qD",
10220 decl);
10221 return NULL_TREE;
10226 /* C++17 11.3.6/4: "If a friend declaration specifies a default argument
10227 expression, that declaration shall be a definition..." */
10228 if (friendp && !funcdef_flag)
10230 for (tree t = FUNCTION_FIRST_USER_PARMTYPE (decl);
10231 t && t != void_list_node; t = TREE_CHAIN (t))
10232 if (TREE_PURPOSE (t))
10234 permerror (DECL_SOURCE_LOCATION (decl),
10235 "friend declaration of %qD specifies default "
10236 "arguments and isn%'t a definition", decl);
10237 break;
10241 /* If this decl has namespace scope, set that up. */
10242 if (in_namespace)
10243 set_decl_namespace (decl, in_namespace, friendp);
10244 else if (ctype)
10245 DECL_CONTEXT (decl) = ctype;
10246 else
10247 DECL_CONTEXT (decl) = FROB_CONTEXT (current_decl_namespace ());
10249 /* `main' and builtins have implicit 'C' linkage. */
10250 if (ctype == NULL_TREE
10251 && DECL_FILE_SCOPE_P (decl)
10252 && current_lang_name == lang_name_cplusplus
10253 && (MAIN_NAME_P (declarator)
10254 || (IDENTIFIER_LENGTH (declarator) > 10
10255 && IDENTIFIER_POINTER (declarator)[0] == '_'
10256 && IDENTIFIER_POINTER (declarator)[1] == '_'
10257 && startswith (IDENTIFIER_POINTER (declarator) + 2,
10258 "builtin_"))
10259 || (targetcm.cxx_implicit_extern_c
10260 && (targetcm.cxx_implicit_extern_c
10261 (IDENTIFIER_POINTER (declarator))))))
10262 SET_DECL_LANGUAGE (decl, lang_c);
10264 /* Should probably propagate const out from type to decl I bet (mrs). */
10265 if (staticp)
10267 DECL_STATIC_FUNCTION_P (decl) = 1;
10268 DECL_CONTEXT (decl) = ctype;
10271 if (deletedp)
10272 DECL_DELETED_FN (decl) = 1;
10274 if (ctype && funcdef_flag)
10275 check_class_member_definition_namespace (decl);
10277 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
10279 if (PROCESSING_REAL_TEMPLATE_DECL_P())
10280 error_at (location, "cannot declare %<::main%> to be a template");
10281 if (inlinep & 1)
10282 error_at (declspecs->locations[ds_inline],
10283 "cannot declare %<::main%> to be inline");
10284 if (inlinep & 2)
10285 error_at (declspecs->locations[ds_constexpr],
10286 "cannot declare %<::main%> to be %qs", "constexpr");
10287 if (inlinep & 8)
10288 error_at (declspecs->locations[ds_consteval],
10289 "cannot declare %<::main%> to be %qs", "consteval");
10290 if (!publicp)
10291 error_at (location, "cannot declare %<::main%> to be static");
10292 inlinep = 0;
10293 publicp = 1;
10296 /* Members of anonymous types and local classes have no linkage; make
10297 them internal. If a typedef is made later, this will be changed. */
10298 if (ctype && (!TREE_PUBLIC (TYPE_MAIN_DECL (ctype))
10299 || decl_function_context (TYPE_MAIN_DECL (ctype))))
10300 publicp = 0;
10302 if (publicp && cxx_dialect == cxx98)
10304 /* [basic.link]: A name with no linkage (notably, the name of a class
10305 or enumeration declared in a local scope) shall not be used to
10306 declare an entity with linkage.
10308 DR 757 relaxes this restriction for C++0x. */
10309 no_linkage_error (decl);
10312 TREE_PUBLIC (decl) = publicp;
10313 if (! publicp)
10315 DECL_INTERFACE_KNOWN (decl) = 1;
10316 DECL_NOT_REALLY_EXTERN (decl) = 1;
10319 /* If the declaration was declared inline, mark it as such. */
10320 if (inlinep)
10322 DECL_DECLARED_INLINE_P (decl) = 1;
10323 if (publicp)
10324 DECL_COMDAT (decl) = 1;
10326 if (inlinep & 2)
10327 DECL_DECLARED_CONSTEXPR_P (decl) = true;
10328 else if (inlinep & 8)
10330 DECL_DECLARED_CONSTEXPR_P (decl) = true;
10331 SET_DECL_IMMEDIATE_FUNCTION_P (decl);
10334 // If the concept declaration specifier was found, check
10335 // that the declaration satisfies the necessary requirements.
10336 if (concept_p)
10338 DECL_DECLARED_CONCEPT_P (decl) = true;
10339 check_concept_fn (decl);
10342 DECL_EXTERNAL (decl) = 1;
10343 if (TREE_CODE (type) == FUNCTION_TYPE)
10345 if (quals || rqual)
10346 TREE_TYPE (decl) = apply_memfn_quals (TREE_TYPE (decl),
10347 TYPE_UNQUALIFIED,
10348 REF_QUAL_NONE);
10350 if (quals)
10352 error (ctype
10353 ? G_("static member function %qD cannot have cv-qualifier")
10354 : G_("non-member function %qD cannot have cv-qualifier"),
10355 decl);
10356 quals = TYPE_UNQUALIFIED;
10359 if (rqual)
10361 error (ctype
10362 ? G_("static member function %qD cannot have ref-qualifier")
10363 : G_("non-member function %qD cannot have ref-qualifier"),
10364 decl);
10365 rqual = REF_QUAL_NONE;
10369 if (deduction_guide_p (decl))
10371 tree type = TREE_TYPE (DECL_NAME (decl));
10372 if (in_namespace == NULL_TREE
10373 && CP_DECL_CONTEXT (decl) != CP_TYPE_CONTEXT (type))
10375 error_at (location, "deduction guide %qD must be declared in the "
10376 "same scope as %qT", decl, type);
10377 inform (location_of (type), " declared here");
10378 return NULL_TREE;
10380 if (DECL_CLASS_SCOPE_P (decl)
10381 && current_access_specifier != declared_access (TYPE_NAME (type)))
10383 error_at (location, "deduction guide %qD must have the same access "
10384 "as %qT", decl, type);
10385 inform (location_of (type), " declared here");
10387 if (funcdef_flag)
10388 error_at (location,
10389 "deduction guide %qD must not have a function body", decl);
10391 else if (IDENTIFIER_ANY_OP_P (DECL_NAME (decl))
10392 && !grok_op_properties (decl, /*complain=*/true))
10393 return NULL_TREE;
10394 else if (UDLIT_OPER_P (DECL_NAME (decl)))
10396 bool long_long_unsigned_p;
10397 bool long_double_p;
10398 const char *suffix = NULL;
10399 /* [over.literal]/6: Literal operators shall not have C linkage. */
10400 if (DECL_LANGUAGE (decl) == lang_c)
10402 error_at (location, "literal operator with C linkage");
10403 maybe_show_extern_c_location ();
10404 return NULL_TREE;
10407 if (DECL_NAMESPACE_SCOPE_P (decl))
10409 if (!check_literal_operator_args (decl, &long_long_unsigned_p,
10410 &long_double_p))
10412 error_at (location, "%qD has invalid argument list", decl);
10413 return NULL_TREE;
10416 suffix = UDLIT_OP_SUFFIX (DECL_NAME (decl));
10417 if (long_long_unsigned_p)
10419 if (cpp_interpret_int_suffix (parse_in, suffix, strlen (suffix)))
10420 warning_at (location, 0, "integer suffix %qs"
10421 " shadowed by implementation", suffix);
10423 else if (long_double_p)
10425 if (cpp_interpret_float_suffix (parse_in, suffix, strlen (suffix)))
10426 warning_at (location, 0, "floating-point suffix %qs"
10427 " shadowed by implementation", suffix);
10429 /* 17.6.3.3.5 */
10430 if (suffix[0] != '_'
10431 && !current_function_decl && !(friendp && !funcdef_flag))
10432 warning_at (location, OPT_Wliteral_suffix,
10433 "literal operator suffixes not preceded by %<_%>"
10434 " are reserved for future standardization");
10436 else
10438 error_at (location, "%qD must be a non-member function", decl);
10439 return NULL_TREE;
10443 if (funcdef_flag)
10444 /* Make the init_value nonzero so pushdecl knows this is not
10445 tentative. error_mark_node is replaced later with the BLOCK. */
10446 DECL_INITIAL (decl) = error_mark_node;
10448 if (TYPE_NOTHROW_P (type) || nothrow_libfn_p (decl))
10449 TREE_NOTHROW (decl) = 1;
10451 if (flag_openmp || flag_openmp_simd)
10453 /* Adjust "omp declare simd" attributes. */
10454 tree ods = lookup_attribute ("omp declare simd", *attrlist);
10455 if (ods)
10457 tree attr;
10458 for (attr = ods; attr;
10459 attr = lookup_attribute ("omp declare simd", TREE_CHAIN (attr)))
10461 if (TREE_CODE (type) == METHOD_TYPE)
10462 walk_tree (&TREE_VALUE (attr), declare_simd_adjust_this,
10463 DECL_ARGUMENTS (decl), NULL);
10464 if (TREE_VALUE (attr) != NULL_TREE)
10466 tree cl = TREE_VALUE (TREE_VALUE (attr));
10467 cl = c_omp_declare_simd_clauses_to_numbers
10468 (DECL_ARGUMENTS (decl), cl);
10469 if (cl)
10470 TREE_VALUE (TREE_VALUE (attr)) = cl;
10471 else
10472 TREE_VALUE (attr) = NULL_TREE;
10478 /* Caller will do the rest of this. */
10479 if (check < 0)
10480 return decl;
10482 if (ctype != NULL_TREE)
10483 grokclassfn (ctype, decl, flags);
10485 /* 12.4/3 */
10486 if (cxx_dialect >= cxx11
10487 && DECL_DESTRUCTOR_P (decl)
10488 && !TYPE_BEING_DEFINED (DECL_CONTEXT (decl))
10489 && !processing_template_decl)
10490 deduce_noexcept_on_destructor (decl);
10492 set_originating_module (decl);
10494 decl = check_explicit_specialization (orig_declarator, decl,
10495 template_count,
10496 2 * funcdef_flag +
10497 4 * (friendp != 0) +
10498 8 * concept_p,
10499 *attrlist);
10500 if (decl == error_mark_node)
10501 return NULL_TREE;
10503 if (DECL_STATIC_FUNCTION_P (decl))
10504 check_static_quals (decl, quals);
10506 if (attrlist)
10508 cplus_decl_attributes (&decl, *attrlist, 0);
10509 *attrlist = NULL_TREE;
10512 /* Check main's type after attributes have been applied. */
10513 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
10515 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
10516 integer_type_node))
10518 tree oldtypeargs = TYPE_ARG_TYPES (TREE_TYPE (decl));
10519 tree newtype;
10520 error_at (declspecs->locations[ds_type_spec],
10521 "%<::main%> must return %<int%>");
10522 newtype = build_function_type (integer_type_node, oldtypeargs);
10523 TREE_TYPE (decl) = newtype;
10525 if (warn_main)
10526 check_main_parameter_types (decl);
10529 if (ctype != NULL_TREE && check)
10531 tree old_decl = check_classfn (ctype, decl,
10532 (current_template_depth
10533 > template_class_depth (ctype))
10534 ? current_template_parms
10535 : NULL_TREE);
10537 if (old_decl == error_mark_node)
10538 return NULL_TREE;
10540 if (old_decl)
10542 tree ok;
10543 tree pushed_scope;
10545 if (TREE_CODE (old_decl) == TEMPLATE_DECL)
10546 /* Because grokfndecl is always supposed to return a
10547 FUNCTION_DECL, we pull out the DECL_TEMPLATE_RESULT
10548 here. We depend on our callers to figure out that its
10549 really a template that's being returned. */
10550 old_decl = DECL_TEMPLATE_RESULT (old_decl);
10552 if (DECL_STATIC_FUNCTION_P (old_decl)
10553 && TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE)
10555 /* Remove the `this' parm added by grokclassfn. */
10556 revert_static_member_fn (decl);
10557 check_static_quals (decl, quals);
10559 if (DECL_ARTIFICIAL (old_decl))
10561 error ("definition of implicitly-declared %qD", old_decl);
10562 return NULL_TREE;
10564 else if (DECL_DEFAULTED_FN (old_decl))
10566 error ("definition of explicitly-defaulted %q+D", decl);
10567 inform (DECL_SOURCE_LOCATION (old_decl),
10568 "%q#D explicitly defaulted here", old_decl);
10569 return NULL_TREE;
10572 /* Since we've smashed OLD_DECL to its
10573 DECL_TEMPLATE_RESULT, we must do the same to DECL. */
10574 if (TREE_CODE (decl) == TEMPLATE_DECL)
10575 decl = DECL_TEMPLATE_RESULT (decl);
10577 /* Attempt to merge the declarations. This can fail, in
10578 the case of some invalid specialization declarations. */
10579 pushed_scope = push_scope (ctype);
10580 ok = duplicate_decls (decl, old_decl);
10581 if (pushed_scope)
10582 pop_scope (pushed_scope);
10583 if (!ok)
10585 error ("no %q#D member function declared in class %qT",
10586 decl, ctype);
10587 return NULL_TREE;
10589 if (ok == error_mark_node)
10590 return NULL_TREE;
10591 return old_decl;
10595 if (DECL_CONSTRUCTOR_P (decl) && !grok_ctor_properties (ctype, decl))
10596 return NULL_TREE;
10598 if (ctype == NULL_TREE || check)
10599 return decl;
10601 if (virtualp)
10602 DECL_VIRTUAL_P (decl) = 1;
10604 return decl;
10607 /* decl is a FUNCTION_DECL.
10608 specifiers are the parsed virt-specifiers.
10610 Set flags to reflect the virt-specifiers.
10612 Returns decl. */
10614 static tree
10615 set_virt_specifiers (tree decl, cp_virt_specifiers specifiers)
10617 if (decl == NULL_TREE)
10618 return decl;
10619 if (specifiers & VIRT_SPEC_OVERRIDE)
10620 DECL_OVERRIDE_P (decl) = 1;
10621 if (specifiers & VIRT_SPEC_FINAL)
10622 DECL_FINAL_P (decl) = 1;
10623 return decl;
10626 /* DECL is a VAR_DECL for a static data member. Set flags to reflect
10627 the linkage that DECL will receive in the object file. */
10629 static void
10630 set_linkage_for_static_data_member (tree decl)
10632 /* A static data member always has static storage duration and
10633 external linkage. Note that static data members are forbidden in
10634 local classes -- the only situation in which a class has
10635 non-external linkage. */
10636 TREE_PUBLIC (decl) = 1;
10637 TREE_STATIC (decl) = 1;
10638 /* For non-template classes, static data members are always put
10639 out in exactly those files where they are defined, just as
10640 with ordinary namespace-scope variables. */
10641 if (!processing_template_decl)
10642 DECL_INTERFACE_KNOWN (decl) = 1;
10645 /* Create a VAR_DECL named NAME with the indicated TYPE.
10647 If SCOPE is non-NULL, it is the class type or namespace containing
10648 the variable. If SCOPE is NULL, the variable should is created in
10649 the innermost enclosing scope. */
10651 static tree
10652 grokvardecl (tree type,
10653 tree name,
10654 tree orig_declarator,
10655 const cp_decl_specifier_seq *declspecs,
10656 int initialized,
10657 int type_quals,
10658 int inlinep,
10659 bool conceptp,
10660 int template_count,
10661 tree scope,
10662 location_t location)
10664 tree decl;
10665 tree explicit_scope;
10667 gcc_assert (!name || identifier_p (name));
10669 bool constp = (type_quals & TYPE_QUAL_CONST) != 0;
10670 bool volatilep = (type_quals & TYPE_QUAL_VOLATILE) != 0;
10672 /* Compute the scope in which to place the variable, but remember
10673 whether or not that scope was explicitly specified by the user. */
10674 explicit_scope = scope;
10675 if (!scope)
10677 /* An explicit "extern" specifier indicates a namespace-scope
10678 variable. */
10679 if (declspecs->storage_class == sc_extern)
10680 scope = current_decl_namespace ();
10681 else if (!at_function_scope_p ())
10682 scope = current_scope ();
10685 if (scope
10686 && (/* If the variable is a namespace-scope variable declared in a
10687 template, we need DECL_LANG_SPECIFIC. */
10688 (TREE_CODE (scope) == NAMESPACE_DECL && processing_template_decl)
10689 /* Similarly for namespace-scope variables with language linkage
10690 other than C++. */
10691 || (TREE_CODE (scope) == NAMESPACE_DECL
10692 && current_lang_name != lang_name_cplusplus)
10693 /* Similarly for static data members. */
10694 || TYPE_P (scope)
10695 /* Similarly for explicit specializations. */
10696 || (orig_declarator
10697 && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)))
10698 decl = build_lang_decl_loc (location, VAR_DECL, name, type);
10699 else
10700 decl = build_decl (location, VAR_DECL, name, type);
10702 if (explicit_scope && TREE_CODE (explicit_scope) == NAMESPACE_DECL)
10703 set_decl_namespace (decl, explicit_scope, 0);
10704 else
10705 DECL_CONTEXT (decl) = FROB_CONTEXT (scope);
10707 if (declspecs->storage_class == sc_extern)
10709 DECL_THIS_EXTERN (decl) = 1;
10710 DECL_EXTERNAL (decl) = !initialized;
10713 if (DECL_CLASS_SCOPE_P (decl))
10715 set_linkage_for_static_data_member (decl);
10716 /* This function is only called with out-of-class definitions. */
10717 DECL_EXTERNAL (decl) = 0;
10718 check_class_member_definition_namespace (decl);
10720 /* At top level, either `static' or no s.c. makes a definition
10721 (perhaps tentative), and absence of `static' makes it public. */
10722 else if (toplevel_bindings_p ())
10724 TREE_PUBLIC (decl) = (declspecs->storage_class != sc_static
10725 && (DECL_THIS_EXTERN (decl)
10726 || ! constp
10727 || volatilep
10728 || inlinep));
10729 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
10731 /* Not at top level, only `static' makes a static definition. */
10732 else
10734 TREE_STATIC (decl) = declspecs->storage_class == sc_static;
10735 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
10738 set_originating_module (decl);
10740 if (decl_spec_seq_has_spec_p (declspecs, ds_thread))
10742 if (DECL_EXTERNAL (decl) || TREE_STATIC (decl))
10744 CP_DECL_THREAD_LOCAL_P (decl) = true;
10745 if (!processing_template_decl)
10746 set_decl_tls_model (decl, decl_default_tls_model (decl));
10748 if (declspecs->gnu_thread_keyword_p)
10749 SET_DECL_GNU_TLS_P (decl);
10752 /* If the type of the decl has no linkage, make sure that we'll
10753 notice that in mark_used. */
10754 if (cxx_dialect > cxx98
10755 && decl_linkage (decl) != lk_none
10756 && DECL_LANG_SPECIFIC (decl) == NULL
10757 && !DECL_EXTERN_C_P (decl)
10758 && no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/false))
10759 retrofit_lang_decl (decl);
10761 if (TREE_PUBLIC (decl))
10763 /* [basic.link]: A name with no linkage (notably, the name of a class
10764 or enumeration declared in a local scope) shall not be used to
10765 declare an entity with linkage.
10767 DR 757 relaxes this restriction for C++0x. */
10768 if (cxx_dialect < cxx11)
10769 no_linkage_error (decl);
10771 else
10772 DECL_INTERFACE_KNOWN (decl) = 1;
10774 if (DECL_NAME (decl)
10775 && MAIN_NAME_P (DECL_NAME (decl))
10776 && scope == global_namespace)
10777 error_at (DECL_SOURCE_LOCATION (decl),
10778 "cannot declare %<::main%> to be a global variable");
10780 /* Check that the variable can be safely declared as a concept.
10781 Note that this also forbids explicit specializations. */
10782 if (conceptp)
10784 if (!processing_template_decl)
10786 error_at (declspecs->locations[ds_concept],
10787 "a non-template variable cannot be %<concept%>");
10788 return NULL_TREE;
10790 else if (!at_namespace_scope_p ())
10792 error_at (declspecs->locations[ds_concept],
10793 "concept must be defined at namespace scope");
10794 return NULL_TREE;
10796 else
10797 DECL_DECLARED_CONCEPT_P (decl) = true;
10798 if (!same_type_ignoring_top_level_qualifiers_p (type, boolean_type_node))
10799 error_at (declspecs->locations[ds_type_spec],
10800 "concept must have type %<bool%>");
10801 if (TEMPLATE_PARMS_CONSTRAINTS (current_template_parms))
10803 error_at (location, "a variable concept cannot be constrained");
10804 TEMPLATE_PARMS_CONSTRAINTS (current_template_parms) = NULL_TREE;
10807 else if (flag_concepts
10808 && current_template_depth > template_class_depth (scope))
10810 tree ci = current_template_constraints ();
10811 set_constraints (decl, ci);
10814 // Handle explicit specializations and instantiations of variable templates.
10815 if (orig_declarator)
10816 decl = check_explicit_specialization (orig_declarator, decl,
10817 template_count, conceptp * 8);
10819 return decl != error_mark_node ? decl : NULL_TREE;
10822 /* Create and return a canonical pointer to member function type, for
10823 TYPE, which is a POINTER_TYPE to a METHOD_TYPE. */
10825 tree
10826 build_ptrmemfunc_type (tree type)
10828 tree field, fields;
10829 tree t;
10831 if (type == error_mark_node)
10832 return type;
10834 /* Make sure that we always have the unqualified pointer-to-member
10835 type first. */
10836 if (cp_cv_quals quals = cp_type_quals (type))
10838 tree unqual = build_ptrmemfunc_type (TYPE_MAIN_VARIANT (type));
10839 return cp_build_qualified_type (unqual, quals);
10842 /* If a canonical type already exists for this type, use it. We use
10843 this method instead of type_hash_canon, because it only does a
10844 simple equality check on the list of field members. */
10846 t = TYPE_PTRMEMFUNC_TYPE (type);
10847 if (t)
10848 return t;
10850 t = make_node (RECORD_TYPE);
10852 /* Let the front end know this is a pointer to member function. */
10853 TYPE_PTRMEMFUNC_FLAG (t) = 1;
10855 field = build_decl (input_location, FIELD_DECL, pfn_identifier, type);
10856 DECL_NONADDRESSABLE_P (field) = 1;
10857 fields = field;
10859 field = build_decl (input_location, FIELD_DECL, delta_identifier,
10860 delta_type_node);
10861 DECL_NONADDRESSABLE_P (field) = 1;
10862 DECL_CHAIN (field) = fields;
10863 fields = field;
10865 finish_builtin_struct (t, "__ptrmemfunc_type", fields, ptr_type_node);
10867 /* Zap out the name so that the back end will give us the debugging
10868 information for this anonymous RECORD_TYPE. */
10869 TYPE_NAME (t) = NULL_TREE;
10871 /* Cache this pointer-to-member type so that we can find it again
10872 later. */
10873 TYPE_PTRMEMFUNC_TYPE (type) = t;
10875 if (TYPE_STRUCTURAL_EQUALITY_P (type))
10876 SET_TYPE_STRUCTURAL_EQUALITY (t);
10877 else if (TYPE_CANONICAL (type) != type)
10878 TYPE_CANONICAL (t) = build_ptrmemfunc_type (TYPE_CANONICAL (type));
10880 return t;
10883 /* Create and return a pointer to data member type. */
10885 tree
10886 build_ptrmem_type (tree class_type, tree member_type)
10888 if (TREE_CODE (member_type) == METHOD_TYPE)
10890 cp_cv_quals quals = type_memfn_quals (member_type);
10891 cp_ref_qualifier rqual = type_memfn_rqual (member_type);
10892 member_type = build_memfn_type (member_type, class_type, quals, rqual);
10893 return build_ptrmemfunc_type (build_pointer_type (member_type));
10895 else
10897 gcc_assert (TREE_CODE (member_type) != FUNCTION_TYPE);
10898 return build_offset_type (class_type, member_type);
10902 /* DECL is a VAR_DECL defined in-class, whose TYPE is also given.
10903 Check to see that the definition is valid. Issue appropriate error
10904 messages. */
10906 static void
10907 check_static_variable_definition (tree decl, tree type)
10909 /* Avoid redundant diagnostics on out-of-class definitions. */
10910 if (!current_class_type || !TYPE_BEING_DEFINED (current_class_type))
10912 /* Can't check yet if we don't know the type. */
10913 else if (dependent_type_p (type))
10915 /* If DECL is declared constexpr, we'll do the appropriate checks
10916 in check_initializer. Similarly for inline static data members. */
10917 else if (DECL_P (decl)
10918 && (DECL_DECLARED_CONSTEXPR_P (decl)
10919 || DECL_VAR_DECLARED_INLINE_P (decl)))
10921 else if (cxx_dialect >= cxx11 && !INTEGRAL_OR_ENUMERATION_TYPE_P (type))
10923 if (!COMPLETE_TYPE_P (type))
10924 error_at (DECL_SOURCE_LOCATION (decl),
10925 "in-class initialization of static data member %q#D of "
10926 "incomplete type", decl);
10927 else if (literal_type_p (type))
10928 permerror (DECL_SOURCE_LOCATION (decl),
10929 "%<constexpr%> needed for in-class initialization of "
10930 "static data member %q#D of non-integral type", decl);
10931 else
10932 error_at (DECL_SOURCE_LOCATION (decl),
10933 "in-class initialization of static data member %q#D of "
10934 "non-literal type", decl);
10936 /* Motion 10 at San Diego: If a static const integral data member is
10937 initialized with an integral constant expression, the initializer
10938 may appear either in the declaration (within the class), or in
10939 the definition, but not both. If it appears in the class, the
10940 member is a member constant. The file-scope definition is always
10941 required. */
10942 else if (!ARITHMETIC_TYPE_P (type) && TREE_CODE (type) != ENUMERAL_TYPE)
10943 error_at (DECL_SOURCE_LOCATION (decl),
10944 "invalid in-class initialization of static data member "
10945 "of non-integral type %qT",
10946 type);
10947 else if (!CP_TYPE_CONST_P (type))
10948 error_at (DECL_SOURCE_LOCATION (decl),
10949 "ISO C++ forbids in-class initialization of non-const "
10950 "static member %qD",
10951 decl);
10952 else if (!INTEGRAL_OR_ENUMERATION_TYPE_P (type))
10953 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wpedantic,
10954 "ISO C++ forbids initialization of member constant "
10955 "%qD of non-integral type %qT", decl, type);
10958 /* *expr_p is part of the TYPE_SIZE of a variably-sized array. If any
10959 SAVE_EXPRs in *expr_p wrap expressions with side-effects, break those
10960 expressions out into temporary variables so that walk_tree doesn't
10961 step into them (c++/15764). */
10963 static tree
10964 stabilize_save_expr_r (tree *expr_p, int *walk_subtrees, void *data)
10966 hash_set<tree> *pset = (hash_set<tree> *)data;
10967 tree expr = *expr_p;
10968 if (TREE_CODE (expr) == SAVE_EXPR)
10970 tree op = TREE_OPERAND (expr, 0);
10971 cp_walk_tree (&op, stabilize_save_expr_r, data, pset);
10972 if (TREE_SIDE_EFFECTS (op))
10973 TREE_OPERAND (expr, 0) = get_temp_regvar (TREE_TYPE (op), op);
10974 *walk_subtrees = 0;
10976 else if (!EXPR_P (expr) || !TREE_SIDE_EFFECTS (expr))
10977 *walk_subtrees = 0;
10978 return NULL;
10981 /* Entry point for the above. */
10983 static void
10984 stabilize_vla_size (tree size)
10986 hash_set<tree> pset;
10987 /* Break out any function calls into temporary variables. */
10988 cp_walk_tree (&size, stabilize_save_expr_r, &pset, &pset);
10991 /* Reduce a SIZEOF_EXPR to its value. */
10993 tree
10994 fold_sizeof_expr (tree t)
10996 tree r;
10997 if (SIZEOF_EXPR_TYPE_P (t))
10998 r = cxx_sizeof_or_alignof_type (EXPR_LOCATION (t),
10999 TREE_TYPE (TREE_OPERAND (t, 0)),
11000 SIZEOF_EXPR, false, false);
11001 else if (TYPE_P (TREE_OPERAND (t, 0)))
11002 r = cxx_sizeof_or_alignof_type (EXPR_LOCATION (t),
11003 TREE_OPERAND (t, 0), SIZEOF_EXPR,
11004 false, false);
11005 else
11006 r = cxx_sizeof_or_alignof_expr (EXPR_LOCATION (t),
11007 TREE_OPERAND (t, 0), SIZEOF_EXPR,
11008 false, false);
11009 if (r == error_mark_node)
11010 r = size_one_node;
11011 return r;
11014 /* Given the SIZE (i.e., number of elements) in an array, compute
11015 an appropriate index type for the array. If non-NULL, NAME is
11016 the name of the entity being declared. */
11018 static tree
11019 compute_array_index_type_loc (location_t name_loc, tree name, tree size,
11020 tsubst_flags_t complain)
11022 if (error_operand_p (size))
11023 return error_mark_node;
11025 /* The type of the index being computed. */
11026 tree itype;
11028 /* The original numeric size as seen in the source code before
11029 conversion to size_t. */
11030 tree origsize = size;
11032 location_t loc = cp_expr_loc_or_loc (size, name ? name_loc : input_location);
11034 if (!type_dependent_expression_p (size))
11036 origsize = size = mark_rvalue_use (size);
11038 if (cxx_dialect < cxx11 && TREE_CODE (size) == NOP_EXPR
11039 && TREE_SIDE_EFFECTS (size))
11040 /* In C++98, we mark a non-constant array bound with a magic
11041 NOP_EXPR with TREE_SIDE_EFFECTS; don't fold in that case. */;
11042 else
11044 size = build_converted_constant_expr (size_type_node, size, complain);
11045 /* Pedantically a constant expression is required here and so
11046 __builtin_is_constant_evaluated () should fold to true if it
11047 is successfully folded into a constant. */
11048 size = fold_non_dependent_expr (size, complain,
11049 /*manifestly_const_eval=*/true);
11051 if (!TREE_CONSTANT (size))
11052 size = origsize;
11055 if (error_operand_p (size))
11056 return error_mark_node;
11058 /* The array bound must be an integer type. */
11059 tree type = TREE_TYPE (size);
11060 if (!INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
11062 if (!(complain & tf_error))
11063 return error_mark_node;
11064 if (name)
11065 error_at (loc, "size of array %qD has non-integral type %qT",
11066 name, type);
11067 else
11068 error_at (loc, "size of array has non-integral type %qT", type);
11069 size = integer_one_node;
11073 /* A type is dependent if it is...an array type constructed from any
11074 dependent type or whose size is specified by a constant expression
11075 that is value-dependent. */
11076 /* We can only call value_dependent_expression_p on integral constant
11077 expressions. */
11078 if (processing_template_decl
11079 && potential_constant_expression (size)
11080 && value_dependent_expression_p (size))
11082 /* Just build the index type and mark that it requires
11083 structural equality checks. */
11084 in_template:
11085 itype = build_index_type (build_min (MINUS_EXPR, sizetype,
11086 size, size_one_node));
11087 TYPE_DEPENDENT_P (itype) = 1;
11088 TYPE_DEPENDENT_P_VALID (itype) = 1;
11089 SET_TYPE_STRUCTURAL_EQUALITY (itype);
11090 return itype;
11093 if (TREE_CODE (size) != INTEGER_CST)
11095 tree folded = cp_fully_fold (size);
11096 if (TREE_CODE (folded) == INTEGER_CST)
11098 if (name)
11099 pedwarn (loc, OPT_Wpedantic, "size of array %qD is not an "
11100 "integral constant-expression", name);
11101 else
11102 pedwarn (loc, OPT_Wpedantic,
11103 "size of array is not an integral constant-expression");
11105 if (TREE_CONSTANT (size) && !TREE_CONSTANT (folded))
11106 /* We might have lost the TREE_CONSTANT flag e.g. when we are
11107 folding a conversion from a pointer to integral type. In that
11108 case issue an error below and don't treat this as a VLA. */;
11109 else
11110 /* Use the folded result for VLAs, too; it will have resolved
11111 SIZEOF_EXPR. */
11112 size = folded;
11115 /* Normally, the array-bound will be a constant. */
11116 if (TREE_CODE (size) == INTEGER_CST)
11118 /* The size to use in diagnostics that reflects the constant
11119 size used in the source, rather than SIZE massaged above. */
11120 tree diagsize = size;
11122 /* If the original size before conversion to size_t was signed
11123 and negative, convert it to ssizetype to restore the sign. */
11124 if (!TYPE_UNSIGNED (TREE_TYPE (origsize))
11125 && TREE_CODE (size) == INTEGER_CST
11126 && tree_int_cst_sign_bit (size))
11128 diagsize = fold_convert (ssizetype, size);
11130 /* Clear the overflow bit that may have been set as a result
11131 of the conversion from the sizetype of the new size to
11132 ssizetype. */
11133 TREE_OVERFLOW (diagsize) = false;
11136 /* Verify that the array has a positive number of elements
11137 and issue the appropriate diagnostic if it doesn't. */
11138 if (!valid_array_size_p (loc, diagsize, name, (complain & tf_error)))
11140 if (!(complain & tf_error))
11141 return error_mark_node;
11142 size = integer_one_node;
11144 /* As an extension we allow zero-sized arrays. */
11145 else if (integer_zerop (size))
11147 if (!(complain & tf_error))
11148 /* We must fail if performing argument deduction (as
11149 indicated by the state of complain), so that
11150 another substitution can be found. */
11151 return error_mark_node;
11152 else if (name)
11153 pedwarn (loc, OPT_Wpedantic,
11154 "ISO C++ forbids zero-size array %qD", name);
11155 else
11156 pedwarn (loc, OPT_Wpedantic,
11157 "ISO C++ forbids zero-size array");
11160 else if (TREE_CONSTANT (size)
11161 /* We don't allow VLAs at non-function scopes, or during
11162 tentative template substitution. */
11163 || !at_function_scope_p ()
11164 || !(complain & tf_error))
11166 if (!(complain & tf_error))
11167 return error_mark_node;
11168 /* `(int) &fn' is not a valid array bound. */
11169 if (name)
11170 error_at (loc,
11171 "size of array %qD is not an integral constant-expression",
11172 name);
11173 else
11174 error_at (loc, "size of array is not an integral constant-expression");
11175 size = integer_one_node;
11177 else if (pedantic && warn_vla != 0)
11179 if (name)
11180 pedwarn (name_loc, OPT_Wvla,
11181 "ISO C++ forbids variable length array %qD", name);
11182 else
11183 pedwarn (input_location, OPT_Wvla,
11184 "ISO C++ forbids variable length array");
11186 else if (warn_vla > 0)
11188 if (name)
11189 warning_at (name_loc, OPT_Wvla,
11190 "variable length array %qD is used", name);
11191 else
11192 warning (OPT_Wvla,
11193 "variable length array is used");
11196 if (processing_template_decl && !TREE_CONSTANT (size))
11197 goto in_template;
11198 else
11200 if (!TREE_CONSTANT (size))
11202 /* A variable sized array. Arrange for the SAVE_EXPR on the inside
11203 of the MINUS_EXPR, which allows the -1 to get folded with the +1
11204 that happens when building TYPE_SIZE. */
11205 size = variable_size (size);
11206 stabilize_vla_size (size);
11209 /* Compute the index of the largest element in the array. It is
11210 one less than the number of elements in the array. We save
11211 and restore PROCESSING_TEMPLATE_DECL so that computations in
11212 cp_build_binary_op will be appropriately folded. */
11214 processing_template_decl_sentinel s;
11215 itype = cp_build_binary_op (input_location,
11216 MINUS_EXPR,
11217 cp_convert (ssizetype, size, complain),
11218 cp_convert (ssizetype, integer_one_node,
11219 complain),
11220 complain);
11221 itype = maybe_constant_value (itype, NULL_TREE, true);
11224 if (!TREE_CONSTANT (itype))
11226 if (sanitize_flags_p (SANITIZE_VLA)
11227 && current_function_decl != NULL_TREE)
11229 /* We have to add 1 -- in the ubsan routine we generate
11230 LE_EXPR rather than LT_EXPR. */
11231 tree t = fold_build2 (PLUS_EXPR, TREE_TYPE (itype), itype,
11232 build_one_cst (TREE_TYPE (itype)));
11233 t = ubsan_instrument_vla (input_location, t);
11234 finish_expr_stmt (t);
11237 /* Make sure that there was no overflow when creating to a signed
11238 index type. (For example, on a 32-bit machine, an array with
11239 size 2^32 - 1 is too big.) */
11240 else if (TREE_CODE (itype) == INTEGER_CST
11241 && TREE_OVERFLOW (itype))
11243 if (!(complain & tf_error))
11244 return error_mark_node;
11245 error ("overflow in array dimension");
11246 TREE_OVERFLOW (itype) = 0;
11250 /* Create and return the appropriate index type. */
11251 itype = build_index_type (itype);
11253 /* If the index type were dependent, we would have returned early, so
11254 remember that it isn't. */
11255 TYPE_DEPENDENT_P (itype) = 0;
11256 TYPE_DEPENDENT_P_VALID (itype) = 1;
11257 return itype;
11260 tree
11261 compute_array_index_type (tree name, tree size, tsubst_flags_t complain)
11263 return compute_array_index_type_loc (input_location, name, size, complain);
11266 /* Returns the scope (if any) in which the entity declared by
11267 DECLARATOR will be located. If the entity was declared with an
11268 unqualified name, NULL_TREE is returned. */
11270 tree
11271 get_scope_of_declarator (const cp_declarator *declarator)
11273 while (declarator && declarator->kind != cdk_id)
11274 declarator = declarator->declarator;
11276 /* If the declarator-id is a SCOPE_REF, the scope in which the
11277 declaration occurs is the first operand. */
11278 if (declarator
11279 && declarator->u.id.qualifying_scope)
11280 return declarator->u.id.qualifying_scope;
11282 /* Otherwise, the declarator is not a qualified name; the entity will
11283 be declared in the current scope. */
11284 return NULL_TREE;
11287 /* Returns an ARRAY_TYPE for an array with SIZE elements of the
11288 indicated TYPE. If non-NULL, NAME is the NAME of the declaration
11289 with this type. */
11291 static tree
11292 create_array_type_for_decl (tree name, tree type, tree size, location_t loc)
11294 tree itype = NULL_TREE;
11296 /* If things have already gone awry, bail now. */
11297 if (type == error_mark_node || size == error_mark_node)
11298 return error_mark_node;
11300 /* [dcl.type.class.deduct] prohibits forming an array of placeholder
11301 for a deduced class type. */
11302 if (template_placeholder_p (type))
11304 if (name)
11305 error_at (loc, "%qD declared as array of template placeholder "
11306 "type %qT", name, type);
11307 else
11308 error ("creating array of template placeholder type %qT", type);
11309 return error_mark_node;
11312 /* If there are some types which cannot be array elements,
11313 issue an error-message and return. */
11314 switch (TREE_CODE (type))
11316 case VOID_TYPE:
11317 if (name)
11318 error_at (loc, "declaration of %qD as array of void", name);
11319 else
11320 error ("creating array of void");
11321 return error_mark_node;
11323 case FUNCTION_TYPE:
11324 if (name)
11325 error_at (loc, "declaration of %qD as array of functions", name);
11326 else
11327 error ("creating array of functions");
11328 return error_mark_node;
11330 case REFERENCE_TYPE:
11331 if (name)
11332 error_at (loc, "declaration of %qD as array of references", name);
11333 else
11334 error ("creating array of references");
11335 return error_mark_node;
11337 case METHOD_TYPE:
11338 if (name)
11339 error_at (loc, "declaration of %qD as array of function members",
11340 name);
11341 else
11342 error ("creating array of function members");
11343 return error_mark_node;
11345 default:
11346 break;
11349 if (!verify_type_context (name ? loc : input_location,
11350 TCTX_ARRAY_ELEMENT, type))
11351 return error_mark_node;
11353 /* [dcl.array]
11355 The constant expressions that specify the bounds of the arrays
11356 can be omitted only for the first member of the sequence. */
11357 if (TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type))
11359 if (name)
11360 error_at (loc, "declaration of %qD as multidimensional array must "
11361 "have bounds for all dimensions except the first",
11362 name);
11363 else
11364 error ("multidimensional array must have bounds for all "
11365 "dimensions except the first");
11367 return error_mark_node;
11370 /* Figure out the index type for the array. */
11371 if (size)
11373 itype = compute_array_index_type_loc (loc, name, size,
11374 tf_warning_or_error);
11375 if (type_uses_auto (type)
11376 && variably_modified_type_p (itype, /*fn=*/NULL_TREE))
11378 sorry_at (loc, "variable-length array of %<auto%>");
11379 return error_mark_node;
11383 return build_cplus_array_type (type, itype);
11386 /* Returns the smallest location that is not UNKNOWN_LOCATION. */
11388 static location_t
11389 min_location (location_t loca, location_t locb)
11391 if (loca == UNKNOWN_LOCATION
11392 || (locb != UNKNOWN_LOCATION
11393 && linemap_location_before_p (line_table, locb, loca)))
11394 return locb;
11395 return loca;
11398 /* Returns the smallest location != UNKNOWN_LOCATION among the
11399 three stored in LOCATIONS[ds_const], LOCATIONS[ds_volatile],
11400 and LOCATIONS[ds_restrict]. */
11402 static location_t
11403 smallest_type_quals_location (int type_quals, const location_t* locations)
11405 location_t loc = UNKNOWN_LOCATION;
11407 if (type_quals & TYPE_QUAL_CONST)
11408 loc = locations[ds_const];
11410 if (type_quals & TYPE_QUAL_VOLATILE)
11411 loc = min_location (loc, locations[ds_volatile]);
11413 if (type_quals & TYPE_QUAL_RESTRICT)
11414 loc = min_location (loc, locations[ds_restrict]);
11416 return loc;
11419 /* Returns the smallest among the latter and locations[ds_type_spec]. */
11421 static location_t
11422 smallest_type_location (int type_quals, const location_t* locations)
11424 location_t loc = smallest_type_quals_location (type_quals, locations);
11425 return min_location (loc, locations[ds_type_spec]);
11428 static location_t
11429 smallest_type_location (const cp_decl_specifier_seq *declspecs)
11431 int type_quals = get_type_quals (declspecs);
11432 return smallest_type_location (type_quals, declspecs->locations);
11435 /* Check that it's OK to declare a function with the indicated TYPE
11436 and TYPE_QUALS. SFK indicates the kind of special function (if any)
11437 that this function is. OPTYPE is the type given in a conversion
11438 operator declaration, or the class type for a constructor/destructor.
11439 Returns the actual return type of the function; that may be different
11440 than TYPE if an error occurs, or for certain special functions. */
11442 static tree
11443 check_special_function_return_type (special_function_kind sfk,
11444 tree type,
11445 tree optype,
11446 int type_quals,
11447 const location_t* locations)
11449 switch (sfk)
11451 case sfk_constructor:
11452 if (type)
11453 error_at (smallest_type_location (type_quals, locations),
11454 "return type specification for constructor invalid");
11455 else if (type_quals != TYPE_UNQUALIFIED)
11456 error_at (smallest_type_quals_location (type_quals, locations),
11457 "qualifiers are not allowed on constructor declaration");
11459 if (targetm.cxx.cdtor_returns_this ())
11460 type = build_pointer_type (optype);
11461 else
11462 type = void_type_node;
11463 break;
11465 case sfk_destructor:
11466 if (type)
11467 error_at (smallest_type_location (type_quals, locations),
11468 "return type specification for destructor invalid");
11469 else if (type_quals != TYPE_UNQUALIFIED)
11470 error_at (smallest_type_quals_location (type_quals, locations),
11471 "qualifiers are not allowed on destructor declaration");
11473 /* We can't use the proper return type here because we run into
11474 problems with ambiguous bases and covariant returns. */
11475 if (targetm.cxx.cdtor_returns_this ())
11476 type = build_pointer_type (void_type_node);
11477 else
11478 type = void_type_node;
11479 break;
11481 case sfk_conversion:
11482 if (type)
11483 error_at (smallest_type_location (type_quals, locations),
11484 "return type specified for %<operator %T%>", optype);
11485 else if (type_quals != TYPE_UNQUALIFIED)
11486 error_at (smallest_type_quals_location (type_quals, locations),
11487 "qualifiers are not allowed on declaration of "
11488 "%<operator %T%>", optype);
11490 type = optype;
11491 break;
11493 case sfk_deduction_guide:
11494 if (type)
11495 error_at (smallest_type_location (type_quals, locations),
11496 "return type specified for deduction guide");
11497 else if (type_quals != TYPE_UNQUALIFIED)
11498 error_at (smallest_type_quals_location (type_quals, locations),
11499 "qualifiers are not allowed on declaration of "
11500 "deduction guide");
11501 if (TREE_CODE (optype) == TEMPLATE_TEMPLATE_PARM)
11503 error ("template template parameter %qT in declaration of "
11504 "deduction guide", optype);
11505 type = error_mark_node;
11507 else
11508 type = make_template_placeholder (CLASSTYPE_TI_TEMPLATE (optype));
11509 for (int i = 0; i < ds_last; ++i)
11510 if (i != ds_explicit && locations[i])
11511 error_at (locations[i],
11512 "%<decl-specifier%> in declaration of deduction guide");
11513 break;
11515 default:
11516 gcc_unreachable ();
11519 return type;
11522 /* A variable or data member (whose unqualified name is IDENTIFIER)
11523 has been declared with the indicated TYPE. If the TYPE is not
11524 acceptable, issue an error message and return a type to use for
11525 error-recovery purposes. */
11527 tree
11528 check_var_type (tree identifier, tree type, location_t loc)
11530 if (VOID_TYPE_P (type))
11532 if (!identifier)
11533 error_at (loc, "unnamed variable or field declared void");
11534 else if (identifier_p (identifier))
11536 gcc_assert (!IDENTIFIER_ANY_OP_P (identifier));
11537 error_at (loc, "variable or field %qE declared void",
11538 identifier);
11540 else
11541 error_at (loc, "variable or field declared void");
11542 type = error_mark_node;
11545 return type;
11548 /* Handle declaring DECL as an inline variable. */
11550 static void
11551 mark_inline_variable (tree decl, location_t loc)
11553 bool inlinep = true;
11554 if (! toplevel_bindings_p ())
11556 error_at (loc, "%<inline%> specifier invalid for variable "
11557 "%qD declared at block scope", decl);
11558 inlinep = false;
11560 else if (cxx_dialect < cxx17)
11561 pedwarn (loc, OPT_Wc__17_extensions, "inline variables are only available "
11562 "with %<-std=c++17%> or %<-std=gnu++17%>");
11563 if (inlinep)
11565 retrofit_lang_decl (decl);
11566 SET_DECL_VAR_DECLARED_INLINE_P (decl);
11571 /* Assign a typedef-given name to a class or enumeration type declared
11572 as anonymous at first. This was split out of grokdeclarator
11573 because it is also used in libcc1. */
11575 void
11576 name_unnamed_type (tree type, tree decl)
11578 gcc_assert (TYPE_UNNAMED_P (type));
11580 /* Replace the anonymous decl with the real decl. Be careful not to
11581 rename other typedefs (such as the self-reference) of type. */
11582 tree orig = TYPE_NAME (type);
11583 for (tree t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
11584 if (TYPE_NAME (t) == orig)
11585 TYPE_NAME (t) = decl;
11587 /* If this is a typedef within a template class, the nested
11588 type is a (non-primary) template. The name for the
11589 template needs updating as well. */
11590 if (TYPE_LANG_SPECIFIC (type) && CLASSTYPE_TEMPLATE_INFO (type))
11591 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type)) = DECL_NAME (decl);
11593 /* Adjust linkage now that we aren't unnamed anymore. */
11594 reset_type_linkage (type);
11596 /* FIXME remangle member functions; member functions of a
11597 type with external linkage have external linkage. */
11599 /* Check that our job is done, and that it would fail if we
11600 attempted to do it again. */
11601 gcc_assert (!TYPE_UNNAMED_P (type));
11604 /* Check that decltype(auto) was well-formed: only plain decltype(auto)
11605 is allowed. TYPE might contain a decltype(auto). Returns true if
11606 there was a problem, false otherwise. */
11608 static bool
11609 check_decltype_auto (location_t loc, tree type)
11611 if (tree a = type_uses_auto (type))
11613 if (AUTO_IS_DECLTYPE (a))
11615 if (a != type)
11617 error_at (loc, "%qT as type rather than plain "
11618 "%<decltype(auto)%>", type);
11619 return true;
11621 else if (TYPE_QUALS (type) != TYPE_UNQUALIFIED)
11623 error_at (loc, "%<decltype(auto)%> cannot be cv-qualified");
11624 return true;
11628 return false;
11631 /* Given declspecs and a declarator (abstract or otherwise), determine
11632 the name and type of the object declared and construct a DECL node
11633 for it.
11635 DECLSPECS points to the representation of declaration-specifier
11636 sequence that precedes declarator.
11638 DECL_CONTEXT says which syntactic context this declaration is in:
11639 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
11640 FUNCDEF for a function definition. Like NORMAL but a few different
11641 error messages in each case. Return value may be zero meaning
11642 this definition is too screwy to try to parse.
11643 MEMFUNCDEF for a function definition. Like FUNCDEF but prepares to
11644 handle member functions (which have FIELD context).
11645 Return value may be zero meaning this definition is too screwy to
11646 try to parse.
11647 PARM for a parameter declaration (either within a function prototype
11648 or before a function body). Make a PARM_DECL, or return void_type_node.
11649 TPARM for a template parameter declaration.
11650 CATCHPARM for a parameter declaration before a catch clause.
11651 TYPENAME if for a typename (in a cast or sizeof).
11652 Don't make a DECL node; just return the ..._TYPE node.
11653 FIELD for a struct or union field; make a FIELD_DECL.
11654 BITFIELD for a field with specified width.
11656 INITIALIZED is as for start_decl.
11658 ATTRLIST is a pointer to the list of attributes, which may be NULL
11659 if there are none; *ATTRLIST may be modified if attributes from inside
11660 the declarator should be applied to the declaration.
11662 When this function is called, scoping variables (such as
11663 CURRENT_CLASS_TYPE) should reflect the scope in which the
11664 declaration occurs, not the scope in which the new declaration will
11665 be placed. For example, on:
11667 void S::f() { ... }
11669 when grokdeclarator is called for `S::f', the CURRENT_CLASS_TYPE
11670 should not be `S'.
11672 Returns a DECL (if a declarator is present), a TYPE (if there is no
11673 declarator, in cases like "struct S;"), or the ERROR_MARK_NODE if an
11674 error occurs. */
11676 tree
11677 grokdeclarator (const cp_declarator *declarator,
11678 cp_decl_specifier_seq *declspecs,
11679 enum decl_context decl_context,
11680 int initialized,
11681 tree* attrlist)
11683 tree type = NULL_TREE;
11684 int longlong = 0;
11685 int explicit_intN = 0;
11686 int int_n_alt = 0;
11687 int virtualp, explicitp, friendp, inlinep, staticp;
11688 int explicit_int = 0;
11689 int explicit_char = 0;
11690 int defaulted_int = 0;
11692 tree typedef_decl = NULL_TREE;
11693 const char *name = NULL;
11694 tree typedef_type = NULL_TREE;
11695 /* True if this declarator is a function definition. */
11696 bool funcdef_flag = false;
11697 cp_declarator_kind innermost_code = cdk_error;
11698 int bitfield = 0;
11699 #if 0
11700 /* See the code below that used this. */
11701 tree decl_attr = NULL_TREE;
11702 #endif
11704 /* Keep track of what sort of function is being processed
11705 so that we can warn about default return values, or explicit
11706 return values which do not match prescribed defaults. */
11707 special_function_kind sfk = sfk_none;
11709 tree dname = NULL_TREE;
11710 tree ctor_return_type = NULL_TREE;
11711 enum overload_flags flags = NO_SPECIAL;
11712 /* cv-qualifiers that apply to the declarator, for a declaration of
11713 a member function. */
11714 cp_cv_quals memfn_quals = TYPE_UNQUALIFIED;
11715 /* virt-specifiers that apply to the declarator, for a declaration of
11716 a member function. */
11717 cp_virt_specifiers virt_specifiers = VIRT_SPEC_UNSPECIFIED;
11718 /* ref-qualifier that applies to the declarator, for a declaration of
11719 a member function. */
11720 cp_ref_qualifier rqual = REF_QUAL_NONE;
11721 /* cv-qualifiers that apply to the type specified by the DECLSPECS. */
11722 int type_quals = get_type_quals (declspecs);
11723 tree raises = NULL_TREE;
11724 int template_count = 0;
11725 tree returned_attrs = NULL_TREE;
11726 tree parms = NULL_TREE;
11727 const cp_declarator *id_declarator;
11728 /* The unqualified name of the declarator; either an
11729 IDENTIFIER_NODE, BIT_NOT_EXPR, or TEMPLATE_ID_EXPR. */
11730 tree unqualified_id;
11731 /* The class type, if any, in which this entity is located,
11732 or NULL_TREE if none. Note that this value may be different from
11733 the current class type; for example if an attempt is made to declare
11734 "A::f" inside "B", this value will be "A". */
11735 tree ctype = current_class_type;
11736 /* The NAMESPACE_DECL for the namespace in which this entity is
11737 located. If an unqualified name is used to declare the entity,
11738 this value will be NULL_TREE, even if the entity is located at
11739 namespace scope. */
11740 tree in_namespace = NULL_TREE;
11741 cp_storage_class storage_class;
11742 bool unsigned_p, signed_p, short_p, long_p, thread_p;
11743 bool type_was_error_mark_node = false;
11744 bool parameter_pack_p = declarator ? declarator->parameter_pack_p : false;
11745 bool template_type_arg = false;
11746 bool template_parm_flag = false;
11747 bool typedef_p = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
11748 bool constexpr_p = decl_spec_seq_has_spec_p (declspecs, ds_constexpr);
11749 bool constinit_p = decl_spec_seq_has_spec_p (declspecs, ds_constinit);
11750 bool consteval_p = decl_spec_seq_has_spec_p (declspecs, ds_consteval);
11751 bool late_return_type_p = false;
11752 bool array_parameter_p = false;
11753 tree reqs = NULL_TREE;
11755 signed_p = decl_spec_seq_has_spec_p (declspecs, ds_signed);
11756 unsigned_p = decl_spec_seq_has_spec_p (declspecs, ds_unsigned);
11757 short_p = decl_spec_seq_has_spec_p (declspecs, ds_short);
11758 long_p = decl_spec_seq_has_spec_p (declspecs, ds_long);
11759 longlong = decl_spec_seq_has_spec_p (declspecs, ds_long_long);
11760 explicit_intN = declspecs->explicit_intN_p;
11761 int_n_alt = declspecs->int_n_alt;
11762 thread_p = decl_spec_seq_has_spec_p (declspecs, ds_thread);
11764 // Was concept_p specified? Note that ds_concept
11765 // implies ds_constexpr!
11766 bool concept_p = decl_spec_seq_has_spec_p (declspecs, ds_concept);
11767 if (concept_p)
11768 constexpr_p = true;
11770 if (decl_context == FUNCDEF)
11771 funcdef_flag = true, decl_context = NORMAL;
11772 else if (decl_context == MEMFUNCDEF)
11773 funcdef_flag = true, decl_context = FIELD;
11774 else if (decl_context == BITFIELD)
11775 bitfield = 1, decl_context = FIELD;
11776 else if (decl_context == TEMPLATE_TYPE_ARG)
11777 template_type_arg = true, decl_context = TYPENAME;
11778 else if (decl_context == TPARM)
11779 template_parm_flag = true, decl_context = PARM;
11781 if (initialized == SD_DEFAULTED || initialized == SD_DELETED)
11782 funcdef_flag = true;
11784 location_t typespec_loc = loc_or_input_loc (smallest_type_location
11785 (type_quals,
11786 declspecs->locations));
11787 location_t id_loc;
11788 location_t init_loc;
11789 if (declarator)
11791 id_loc = loc_or_input_loc (declarator->id_loc);
11792 init_loc = loc_or_input_loc (declarator->init_loc);
11794 else
11795 init_loc = id_loc = input_location;
11797 /* Look inside a declarator for the name being declared
11798 and get it as a string, for an error message. */
11799 for (id_declarator = declarator;
11800 id_declarator;
11801 id_declarator = id_declarator->declarator)
11803 if (id_declarator->kind != cdk_id)
11804 innermost_code = id_declarator->kind;
11806 switch (id_declarator->kind)
11808 case cdk_function:
11809 if (id_declarator->declarator
11810 && id_declarator->declarator->kind == cdk_id)
11812 sfk = id_declarator->declarator->u.id.sfk;
11813 if (sfk == sfk_destructor)
11814 flags = DTOR_FLAG;
11816 break;
11818 case cdk_id:
11820 tree qualifying_scope = id_declarator->u.id.qualifying_scope;
11821 tree decl = id_declarator->u.id.unqualified_name;
11822 if (!decl)
11823 break;
11824 if (qualifying_scope)
11826 if (check_for_bare_parameter_packs (qualifying_scope,
11827 id_declarator->id_loc))
11828 return error_mark_node;
11829 if (at_function_scope_p ())
11831 /* [dcl.meaning]
11833 A declarator-id shall not be qualified except
11834 for ...
11836 None of the cases are permitted in block
11837 scope. */
11838 if (qualifying_scope == global_namespace)
11839 error ("invalid use of qualified-name %<::%D%>",
11840 decl);
11841 else if (TYPE_P (qualifying_scope))
11842 error ("invalid use of qualified-name %<%T::%D%>",
11843 qualifying_scope, decl);
11844 else
11845 error ("invalid use of qualified-name %<%D::%D%>",
11846 qualifying_scope, decl);
11847 return error_mark_node;
11849 else if (TYPE_P (qualifying_scope))
11851 ctype = qualifying_scope;
11852 if (!MAYBE_CLASS_TYPE_P (ctype))
11854 error_at (id_declarator->id_loc,
11855 "%q#T is not a class or namespace", ctype);
11856 ctype = NULL_TREE;
11858 else if (innermost_code != cdk_function
11859 && current_class_type
11860 && !uniquely_derived_from_p (ctype,
11861 current_class_type))
11863 error_at (id_declarator->id_loc,
11864 "invalid use of qualified-name %<%T::%D%>",
11865 qualifying_scope, decl);
11866 return error_mark_node;
11869 else if (TREE_CODE (qualifying_scope) == NAMESPACE_DECL)
11870 in_namespace = qualifying_scope;
11872 switch (TREE_CODE (decl))
11874 case BIT_NOT_EXPR:
11876 if (innermost_code != cdk_function)
11878 error_at (EXPR_LOCATION (decl),
11879 "declaration of %qE as non-function", decl);
11880 return error_mark_node;
11882 else if (!qualifying_scope
11883 && !(current_class_type && at_class_scope_p ()))
11885 error_at (EXPR_LOCATION (decl),
11886 "declaration of %qE as non-member", decl);
11887 return error_mark_node;
11890 tree type = TREE_OPERAND (decl, 0);
11891 if (TYPE_P (type))
11892 type = constructor_name (type);
11893 name = identifier_to_locale (IDENTIFIER_POINTER (type));
11894 dname = decl;
11896 break;
11898 case TEMPLATE_ID_EXPR:
11900 tree fns = TREE_OPERAND (decl, 0);
11902 dname = fns;
11903 if (!identifier_p (dname))
11904 dname = OVL_NAME (dname);
11906 /* Fall through. */
11908 case IDENTIFIER_NODE:
11909 if (identifier_p (decl))
11910 dname = decl;
11912 if (IDENTIFIER_KEYWORD_P (dname))
11914 error ("declarator-id missing; using reserved word %qD",
11915 dname);
11916 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
11918 else if (!IDENTIFIER_CONV_OP_P (dname))
11919 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
11920 else
11922 gcc_assert (flags == NO_SPECIAL);
11923 flags = TYPENAME_FLAG;
11924 sfk = sfk_conversion;
11925 tree glob = get_global_binding (dname);
11926 if (glob && TREE_CODE (glob) == TYPE_DECL)
11927 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
11928 else
11929 name = "<invalid operator>";
11931 break;
11933 default:
11934 gcc_unreachable ();
11936 break;
11939 case cdk_array:
11940 case cdk_pointer:
11941 case cdk_reference:
11942 case cdk_ptrmem:
11943 break;
11945 case cdk_decomp:
11946 name = "structured binding";
11947 break;
11949 case cdk_error:
11950 return error_mark_node;
11952 default:
11953 gcc_unreachable ();
11955 if (id_declarator->kind == cdk_id)
11956 break;
11959 /* [dcl.fct.edf]
11961 The declarator in a function-definition shall have the form
11962 D1 ( parameter-declaration-clause) ... */
11963 if (funcdef_flag && innermost_code != cdk_function)
11965 error_at (id_loc, "function definition does not declare parameters");
11966 return error_mark_node;
11969 if (flags == TYPENAME_FLAG
11970 && innermost_code != cdk_function
11971 && ! (ctype && !declspecs->any_specifiers_p))
11973 error_at (id_loc, "declaration of %qD as non-function", dname);
11974 return error_mark_node;
11977 if (dname && identifier_p (dname))
11979 if (UDLIT_OPER_P (dname)
11980 && innermost_code != cdk_function)
11982 error_at (id_loc, "declaration of %qD as non-function", dname);
11983 return error_mark_node;
11986 if (IDENTIFIER_ANY_OP_P (dname))
11988 if (typedef_p)
11990 error_at (id_loc, "declaration of %qD as %<typedef%>", dname);
11991 return error_mark_node;
11993 else if (decl_context == PARM || decl_context == CATCHPARM)
11995 error_at (id_loc, "declaration of %qD as parameter", dname);
11996 return error_mark_node;
12001 /* Anything declared one level down from the top level
12002 must be one of the parameters of a function
12003 (because the body is at least two levels down). */
12005 /* This heuristic cannot be applied to C++ nodes! Fixed, however,
12006 by not allowing C++ class definitions to specify their parameters
12007 with xdecls (must be spec.d in the parmlist).
12009 Since we now wait to push a class scope until we are sure that
12010 we are in a legitimate method context, we must set oldcname
12011 explicitly (since current_class_name is not yet alive).
12013 We also want to avoid calling this a PARM if it is in a namespace. */
12015 if (decl_context == NORMAL && !toplevel_bindings_p ())
12017 cp_binding_level *b = current_binding_level;
12018 current_binding_level = b->level_chain;
12019 if (current_binding_level != 0 && toplevel_bindings_p ())
12020 decl_context = PARM;
12021 current_binding_level = b;
12024 if (name == NULL)
12025 name = decl_context == PARM ? "parameter" : "type name";
12027 if (consteval_p && constexpr_p)
12029 error_at (declspecs->locations[ds_consteval],
12030 "both %qs and %qs specified", "constexpr", "consteval");
12031 return error_mark_node;
12034 if (concept_p && typedef_p)
12036 error_at (declspecs->locations[ds_concept],
12037 "%qs cannot appear in a typedef declaration", "concept");
12038 return error_mark_node;
12041 if (constexpr_p && typedef_p)
12043 error_at (declspecs->locations[ds_constexpr],
12044 "%qs cannot appear in a typedef declaration", "constexpr");
12045 return error_mark_node;
12048 if (consteval_p && typedef_p)
12050 error_at (declspecs->locations[ds_consteval],
12051 "%qs cannot appear in a typedef declaration", "consteval");
12052 return error_mark_node;
12055 if (constinit_p && typedef_p)
12057 error_at (declspecs->locations[ds_constinit],
12058 "%qs cannot appear in a typedef declaration", "constinit");
12059 return error_mark_node;
12062 /* [dcl.spec]/2 "At most one of the constexpr, consteval, and constinit
12063 keywords shall appear in a decl-specifier-seq." */
12064 if (constinit_p && constexpr_p)
12066 gcc_rich_location richloc (declspecs->locations[ds_constinit]);
12067 richloc.add_range (declspecs->locations[ds_constexpr]);
12068 error_at (&richloc,
12069 "can use at most one of the %<constinit%> and %<constexpr%> "
12070 "specifiers");
12071 return error_mark_node;
12074 /* If there were multiple types specified in the decl-specifier-seq,
12075 issue an error message. */
12076 if (declspecs->multiple_types_p)
12078 error_at (typespec_loc,
12079 "two or more data types in declaration of %qs", name);
12080 return error_mark_node;
12083 if (declspecs->conflicting_specifiers_p)
12085 error_at (min_location (declspecs->locations[ds_typedef],
12086 declspecs->locations[ds_storage_class]),
12087 "conflicting specifiers in declaration of %qs", name);
12088 return error_mark_node;
12091 /* Extract the basic type from the decl-specifier-seq. */
12092 type = declspecs->type;
12093 if (type == error_mark_node)
12095 type = NULL_TREE;
12096 type_was_error_mark_node = true;
12099 /* Ignore erroneous attributes. */
12100 if (attrlist && *attrlist == error_mark_node)
12101 *attrlist = NULL_TREE;
12103 /* An object declared as __attribute__((unavailable)) suppresses
12104 any reports of being declared with unavailable or deprecated
12105 items. An object declared as __attribute__((deprecated))
12106 suppresses warnings of uses of other deprecated items. */
12107 auto ds = make_temp_override (deprecated_state);
12108 if (attrlist && lookup_attribute ("unavailable", *attrlist))
12109 deprecated_state = UNAVAILABLE_DEPRECATED_SUPPRESS;
12110 else if (attrlist && lookup_attribute ("deprecated", *attrlist))
12111 deprecated_state = DEPRECATED_SUPPRESS;
12113 cp_handle_deprecated_or_unavailable (type);
12114 if (type && TREE_CODE (type) == TYPE_DECL)
12116 cp_warn_deprecated_use_scopes (CP_DECL_CONTEXT (type));
12117 typedef_decl = type;
12118 type = TREE_TYPE (typedef_decl);
12119 if (DECL_ARTIFICIAL (typedef_decl))
12120 cp_handle_deprecated_or_unavailable (type);
12122 /* No type at all: default to `int', and set DEFAULTED_INT
12123 because it was not a user-defined typedef. */
12124 if (type == NULL_TREE)
12126 if (signed_p || unsigned_p || long_p || short_p)
12128 /* These imply 'int'. */
12129 type = integer_type_node;
12130 defaulted_int = 1;
12132 /* If we just have "complex", it is equivalent to "complex double". */
12133 else if (!longlong && !explicit_intN
12134 && decl_spec_seq_has_spec_p (declspecs, ds_complex))
12136 type = double_type_node;
12137 pedwarn (declspecs->locations[ds_complex], OPT_Wpedantic,
12138 "ISO C++ does not support plain %<complex%> meaning "
12139 "%<double complex%>");
12142 /* Gather flags. */
12143 explicit_int = declspecs->explicit_int_p;
12144 explicit_char = declspecs->explicit_char_p;
12146 #if 0
12147 /* See the code below that used this. */
12148 if (typedef_decl)
12149 decl_attr = DECL_ATTRIBUTES (typedef_decl);
12150 #endif
12151 typedef_type = type;
12153 if (sfk == sfk_conversion || sfk == sfk_deduction_guide)
12154 ctor_return_type = TREE_TYPE (dname);
12155 else
12156 ctor_return_type = ctype;
12158 if (sfk != sfk_none)
12160 type = check_special_function_return_type (sfk, type,
12161 ctor_return_type,
12162 type_quals,
12163 declspecs->locations);
12164 type_quals = TYPE_UNQUALIFIED;
12166 else if (type == NULL_TREE)
12168 int is_main;
12170 explicit_int = -1;
12172 /* We handle `main' specially here, because 'main () { }' is so
12173 common. With no options, it is allowed. With -Wreturn-type,
12174 it is a warning. It is only an error with -pedantic-errors. */
12175 is_main = (funcdef_flag
12176 && dname && identifier_p (dname)
12177 && MAIN_NAME_P (dname)
12178 && ctype == NULL_TREE
12179 && in_namespace == NULL_TREE
12180 && current_namespace == global_namespace);
12182 if (type_was_error_mark_node)
12183 /* We've already issued an error, don't complain more. */;
12184 else if (in_system_header_at (id_loc) || flag_ms_extensions)
12185 /* Allow it, sigh. */;
12186 else if (! is_main)
12187 permerror (id_loc, "ISO C++ forbids declaration of %qs with no type",
12188 name);
12189 else if (pedantic)
12190 pedwarn (id_loc, OPT_Wpedantic,
12191 "ISO C++ forbids declaration of %qs with no type", name);
12192 else
12193 warning_at (id_loc, OPT_Wreturn_type,
12194 "ISO C++ forbids declaration of %qs with no type", name);
12196 if (type_was_error_mark_node && template_parm_flag)
12197 /* FIXME we should be able to propagate the error_mark_node as is
12198 for other contexts too. */
12199 type = error_mark_node;
12200 else
12201 type = integer_type_node;
12204 ctype = NULL_TREE;
12206 if (explicit_intN)
12208 if (! int_n_enabled_p[declspecs->int_n_idx])
12210 error_at (declspecs->locations[ds_type_spec],
12211 "%<__int%d%> is not supported by this target",
12212 int_n_data[declspecs->int_n_idx].bitsize);
12213 explicit_intN = false;
12215 /* Don't pedwarn if the alternate "__intN__" form has been used instead
12216 of "__intN". */
12217 else if (!int_n_alt && pedantic)
12218 pedwarn (declspecs->locations[ds_type_spec], OPT_Wpedantic,
12219 "ISO C++ does not support %<__int%d%> for %qs",
12220 int_n_data[declspecs->int_n_idx].bitsize, name);
12223 /* Now process the modifiers that were specified
12224 and check for invalid combinations. */
12226 /* Long double is a special combination. */
12227 if (long_p && !longlong && TYPE_MAIN_VARIANT (type) == double_type_node)
12229 long_p = false;
12230 type = cp_build_qualified_type (long_double_type_node,
12231 cp_type_quals (type));
12234 /* Check all other uses of type modifiers. */
12236 if (unsigned_p || signed_p || long_p || short_p)
12238 location_t loc;
12239 const char *key;
12240 if (unsigned_p)
12242 key = "unsigned";
12243 loc = declspecs->locations[ds_unsigned];
12245 else if (signed_p)
12247 key = "signed";
12248 loc = declspecs->locations[ds_signed];
12250 else if (longlong)
12252 key = "long long";
12253 loc = declspecs->locations[ds_long_long];
12255 else if (long_p)
12257 key = "long";
12258 loc = declspecs->locations[ds_long];
12260 else /* if (short_p) */
12262 key = "short";
12263 loc = declspecs->locations[ds_short];
12266 int ok = 0;
12268 if (signed_p && unsigned_p)
12270 gcc_rich_location richloc (declspecs->locations[ds_signed]);
12271 richloc.add_range (declspecs->locations[ds_unsigned]);
12272 error_at (&richloc,
12273 "%<signed%> and %<unsigned%> specified together");
12275 else if (long_p && short_p)
12277 gcc_rich_location richloc (declspecs->locations[ds_long]);
12278 richloc.add_range (declspecs->locations[ds_short]);
12279 error_at (&richloc, "%<long%> and %<short%> specified together");
12281 else if (TREE_CODE (type) != INTEGER_TYPE
12282 || type == char8_type_node
12283 || type == char16_type_node
12284 || type == char32_type_node
12285 || ((long_p || short_p)
12286 && (explicit_char || explicit_intN)))
12287 error_at (loc, "%qs specified with %qT", key, type);
12288 else if (!explicit_int && !defaulted_int
12289 && !explicit_char && !explicit_intN)
12291 if (typedef_decl)
12293 pedwarn (loc, OPT_Wpedantic, "%qs specified with %qT",
12294 key, type);
12295 ok = !flag_pedantic_errors;
12296 type = DECL_ORIGINAL_TYPE (typedef_decl);
12297 typedef_decl = NULL_TREE;
12299 else if (declspecs->decltype_p)
12300 error_at (loc, "%qs specified with %<decltype%>", key);
12301 else
12302 error_at (loc, "%qs specified with %<typeof%>", key);
12304 else
12305 ok = 1;
12307 /* Discard the type modifiers if they are invalid. */
12308 if (! ok)
12310 unsigned_p = false;
12311 signed_p = false;
12312 long_p = false;
12313 short_p = false;
12314 longlong = 0;
12318 /* Decide whether an integer type is signed or not.
12319 Optionally treat bitfields as signed by default. */
12320 if (unsigned_p
12321 /* [class.bit]
12323 It is implementation-defined whether a plain (neither
12324 explicitly signed or unsigned) char, short, int, or long
12325 bit-field is signed or unsigned.
12327 Naturally, we extend this to long long as well. Note that
12328 this does not include wchar_t. */
12329 || (bitfield && !flag_signed_bitfields
12330 && !signed_p
12331 /* A typedef for plain `int' without `signed' can be
12332 controlled just like plain `int', but a typedef for
12333 `signed int' cannot be so controlled. */
12334 && !(typedef_decl
12335 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl))
12336 && TREE_CODE (type) == INTEGER_TYPE
12337 && !same_type_p (TYPE_MAIN_VARIANT (type), wchar_type_node)))
12339 if (explicit_intN)
12340 type = int_n_trees[declspecs->int_n_idx].unsigned_type;
12341 else if (longlong)
12342 type = long_long_unsigned_type_node;
12343 else if (long_p)
12344 type = long_unsigned_type_node;
12345 else if (short_p)
12346 type = short_unsigned_type_node;
12347 else if (type == char_type_node)
12348 type = unsigned_char_type_node;
12349 else if (typedef_decl)
12350 type = unsigned_type_for (type);
12351 else
12352 type = unsigned_type_node;
12354 else if (signed_p && type == char_type_node)
12355 type = signed_char_type_node;
12356 else if (explicit_intN)
12357 type = int_n_trees[declspecs->int_n_idx].signed_type;
12358 else if (longlong)
12359 type = long_long_integer_type_node;
12360 else if (long_p)
12361 type = long_integer_type_node;
12362 else if (short_p)
12363 type = short_integer_type_node;
12365 if (decl_spec_seq_has_spec_p (declspecs, ds_complex))
12367 if (TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
12368 error_at (declspecs->locations[ds_complex],
12369 "complex invalid for %qs", name);
12370 /* If a modifier is specified, the resulting complex is the complex
12371 form of TYPE. E.g, "complex short" is "complex short int". */
12372 else if (type == integer_type_node)
12373 type = complex_integer_type_node;
12374 else if (type == float_type_node)
12375 type = complex_float_type_node;
12376 else if (type == double_type_node)
12377 type = complex_double_type_node;
12378 else if (type == long_double_type_node)
12379 type = complex_long_double_type_node;
12380 else
12381 type = build_complex_type (type);
12384 /* If we're using the injected-class-name to form a compound type or a
12385 declaration, replace it with the underlying class so we don't get
12386 redundant typedefs in the debug output. But if we are returning the
12387 type unchanged, leave it alone so that it's available to
12388 maybe_get_template_decl_from_type_decl. */
12389 if (CLASS_TYPE_P (type)
12390 && DECL_SELF_REFERENCE_P (TYPE_NAME (type))
12391 && type == TREE_TYPE (TYPE_NAME (type))
12392 && (declarator || type_quals))
12393 type = DECL_ORIGINAL_TYPE (TYPE_NAME (type));
12395 type_quals |= cp_type_quals (type);
12396 type = cp_build_qualified_type
12397 (type, type_quals, ((((typedef_decl && !DECL_ARTIFICIAL (typedef_decl))
12398 || declspecs->decltype_p)
12399 ? tf_ignore_bad_quals : 0) | tf_warning_or_error));
12400 /* We might have ignored or rejected some of the qualifiers. */
12401 type_quals = cp_type_quals (type);
12403 if (cxx_dialect >= cxx17 && type && is_auto (type)
12404 && innermost_code != cdk_function
12405 && id_declarator && declarator != id_declarator)
12406 if (tree tmpl = CLASS_PLACEHOLDER_TEMPLATE (type))
12408 error_at (typespec_loc, "template placeholder type %qT must be followed "
12409 "by a simple declarator-id", type);
12410 inform (DECL_SOURCE_LOCATION (tmpl), "%qD declared here", tmpl);
12411 type = error_mark_node;
12414 staticp = 0;
12415 inlinep = decl_spec_seq_has_spec_p (declspecs, ds_inline);
12416 virtualp = decl_spec_seq_has_spec_p (declspecs, ds_virtual);
12417 explicitp = decl_spec_seq_has_spec_p (declspecs, ds_explicit);
12419 storage_class = declspecs->storage_class;
12420 if (storage_class == sc_static)
12421 staticp = 1 + (decl_context == FIELD);
12422 else if (decl_context == FIELD && sfk == sfk_deduction_guide)
12423 /* Treat class-scope deduction guides as static member functions
12424 so that they get a FUNCTION_TYPE instead of a METHOD_TYPE. */
12425 staticp = 2;
12427 if (virtualp)
12429 if (staticp == 2)
12431 gcc_rich_location richloc (declspecs->locations[ds_virtual]);
12432 richloc.add_range (declspecs->locations[ds_storage_class]);
12433 error_at (&richloc, "member %qD cannot be declared both %<virtual%> "
12434 "and %<static%>", dname);
12435 storage_class = sc_none;
12436 staticp = 0;
12438 if (constexpr_p && pedantic && cxx_dialect < cxx20)
12440 gcc_rich_location richloc (declspecs->locations[ds_virtual]);
12441 richloc.add_range (declspecs->locations[ds_constexpr]);
12442 pedwarn (&richloc, OPT_Wc__20_extensions, "member %qD can be "
12443 "declared both %<virtual%> and %<constexpr%> only in "
12444 "%<-std=c++20%> or %<-std=gnu++20%>", dname);
12447 friendp = decl_spec_seq_has_spec_p (declspecs, ds_friend);
12449 /* Issue errors about use of storage classes for parameters. */
12450 if (decl_context == PARM)
12452 if (typedef_p)
12454 error_at (declspecs->locations[ds_typedef],
12455 "typedef declaration invalid in parameter declaration");
12456 return error_mark_node;
12458 else if (template_parm_flag && storage_class != sc_none)
12460 error_at (min_location (declspecs->locations[ds_thread],
12461 declspecs->locations[ds_storage_class]),
12462 "storage class specified for template parameter %qs",
12463 name);
12464 return error_mark_node;
12466 else if (storage_class == sc_static
12467 || storage_class == sc_extern
12468 || thread_p)
12470 error_at (min_location (declspecs->locations[ds_thread],
12471 declspecs->locations[ds_storage_class]),
12472 "storage class specified for parameter %qs", name);
12473 return error_mark_node;
12476 /* Function parameters cannot be concept. */
12477 if (concept_p)
12479 error_at (declspecs->locations[ds_concept],
12480 "a parameter cannot be declared %qs", "concept");
12481 concept_p = 0;
12482 constexpr_p = 0;
12484 /* Function parameters cannot be constexpr. If we saw one, moan
12485 and pretend it wasn't there. */
12486 else if (constexpr_p)
12488 error_at (declspecs->locations[ds_constexpr],
12489 "a parameter cannot be declared %qs", "constexpr");
12490 constexpr_p = 0;
12492 if (constinit_p)
12494 error_at (declspecs->locations[ds_constinit],
12495 "a parameter cannot be declared %qs", "constinit");
12496 constinit_p = 0;
12498 if (consteval_p)
12500 error_at (declspecs->locations[ds_consteval],
12501 "a parameter cannot be declared %qs", "consteval");
12502 consteval_p = 0;
12506 /* Give error if `virtual' is used outside of class declaration. */
12507 if (virtualp
12508 && (current_class_name == NULL_TREE || decl_context != FIELD))
12510 error_at (declspecs->locations[ds_virtual],
12511 "%<virtual%> outside class declaration");
12512 virtualp = 0;
12515 if (innermost_code == cdk_decomp)
12517 location_t loc = (declarator->kind == cdk_reference
12518 ? declarator->declarator->id_loc : declarator->id_loc);
12519 if (inlinep)
12520 error_at (declspecs->locations[ds_inline],
12521 "structured binding declaration cannot be %qs", "inline");
12522 if (typedef_p)
12523 error_at (declspecs->locations[ds_typedef],
12524 "structured binding declaration cannot be %qs", "typedef");
12525 if (constexpr_p && !concept_p)
12526 error_at (declspecs->locations[ds_constexpr], "structured "
12527 "binding declaration cannot be %qs", "constexpr");
12528 if (consteval_p)
12529 error_at (declspecs->locations[ds_consteval], "structured "
12530 "binding declaration cannot be %qs", "consteval");
12531 if (thread_p && cxx_dialect < cxx20)
12532 pedwarn (declspecs->locations[ds_thread], OPT_Wc__20_extensions,
12533 "structured binding declaration can be %qs only in "
12534 "%<-std=c++20%> or %<-std=gnu++20%>",
12535 declspecs->gnu_thread_keyword_p
12536 ? "__thread" : "thread_local");
12537 if (concept_p)
12538 error_at (declspecs->locations[ds_concept],
12539 "structured binding declaration cannot be %qs", "concept");
12540 /* [dcl.struct.bind] "A cv that includes volatile is deprecated." */
12541 if (type_quals & TYPE_QUAL_VOLATILE)
12542 warning_at (declspecs->locations[ds_volatile], OPT_Wvolatile,
12543 "%<volatile%>-qualified structured binding is deprecated");
12544 switch (storage_class)
12546 case sc_none:
12547 break;
12548 case sc_register:
12549 error_at (loc, "structured binding declaration cannot be %qs",
12550 "register");
12551 break;
12552 case sc_static:
12553 if (cxx_dialect < cxx20)
12554 pedwarn (loc, OPT_Wc__20_extensions,
12555 "structured binding declaration can be %qs only in "
12556 "%<-std=c++20%> or %<-std=gnu++20%>", "static");
12557 break;
12558 case sc_extern:
12559 error_at (loc, "structured binding declaration cannot be %qs",
12560 "extern");
12561 break;
12562 case sc_mutable:
12563 error_at (loc, "structured binding declaration cannot be %qs",
12564 "mutable");
12565 break;
12566 case sc_auto:
12567 error_at (loc, "structured binding declaration cannot be "
12568 "C++98 %<auto%>");
12569 break;
12570 default:
12571 gcc_unreachable ();
12573 if (TREE_CODE (type) != TEMPLATE_TYPE_PARM
12574 || TYPE_IDENTIFIER (type) != auto_identifier)
12576 if (type != error_mark_node)
12578 error_at (loc, "structured binding declaration cannot have "
12579 "type %qT", type);
12580 inform (loc,
12581 "type must be cv-qualified %<auto%> or reference to "
12582 "cv-qualified %<auto%>");
12584 type = build_qualified_type (make_auto (), type_quals);
12585 declspecs->type = type;
12587 inlinep = 0;
12588 typedef_p = 0;
12589 constexpr_p = 0;
12590 consteval_p = 0;
12591 concept_p = 0;
12592 if (storage_class != sc_static)
12594 storage_class = sc_none;
12595 declspecs->storage_class = sc_none;
12599 /* Static anonymous unions are dealt with here. */
12600 if (staticp && decl_context == TYPENAME
12601 && declspecs->type
12602 && ANON_AGGR_TYPE_P (declspecs->type))
12603 decl_context = FIELD;
12605 /* Warn about storage classes that are invalid for certain
12606 kinds of declarations (parameters, typenames, etc.). */
12607 if (thread_p
12608 && ((storage_class
12609 && storage_class != sc_extern
12610 && storage_class != sc_static)
12611 || typedef_p))
12613 location_t loc
12614 = min_location (declspecs->locations[ds_thread],
12615 declspecs->locations[ds_storage_class]);
12616 error_at (loc, "multiple storage classes in declaration of %qs", name);
12617 thread_p = false;
12619 if (decl_context != NORMAL
12620 && ((storage_class != sc_none
12621 && storage_class != sc_mutable)
12622 || thread_p))
12624 if ((decl_context == PARM || decl_context == CATCHPARM)
12625 && (storage_class == sc_register
12626 || storage_class == sc_auto))
12628 else if (typedef_p)
12630 else if (decl_context == FIELD
12631 /* C++ allows static class elements. */
12632 && storage_class == sc_static)
12633 /* C++ also allows inlines and signed and unsigned elements,
12634 but in those cases we don't come in here. */
12636 else
12638 location_t loc
12639 = min_location (declspecs->locations[ds_thread],
12640 declspecs->locations[ds_storage_class]);
12641 if (decl_context == FIELD)
12642 error_at (loc, "storage class specified for %qs", name);
12643 else if (decl_context == PARM || decl_context == CATCHPARM)
12644 error_at (loc, "storage class specified for parameter %qs", name);
12645 else
12646 error_at (loc, "storage class specified for typename");
12647 if (storage_class == sc_register
12648 || storage_class == sc_auto
12649 || storage_class == sc_extern
12650 || thread_p)
12651 storage_class = sc_none;
12654 else if (storage_class == sc_extern && funcdef_flag
12655 && ! toplevel_bindings_p ())
12656 error ("nested function %qs declared %<extern%>", name);
12657 else if (toplevel_bindings_p ())
12659 if (storage_class == sc_auto)
12660 error_at (declspecs->locations[ds_storage_class],
12661 "top-level declaration of %qs specifies %<auto%>", name);
12663 else if (thread_p
12664 && storage_class != sc_extern
12665 && storage_class != sc_static)
12667 if (declspecs->gnu_thread_keyword_p)
12668 pedwarn (declspecs->locations[ds_thread],
12669 0, "function-scope %qs implicitly auto and "
12670 "declared %<__thread%>", name);
12672 /* When thread_local is applied to a variable of block scope the
12673 storage-class-specifier static is implied if it does not appear
12674 explicitly. */
12675 storage_class = declspecs->storage_class = sc_static;
12676 staticp = 1;
12679 if (storage_class && friendp)
12681 error_at (min_location (declspecs->locations[ds_thread],
12682 declspecs->locations[ds_storage_class]),
12683 "storage class specifiers invalid in friend function "
12684 "declarations");
12685 storage_class = sc_none;
12686 staticp = 0;
12689 if (!id_declarator)
12690 unqualified_id = NULL_TREE;
12691 else
12693 unqualified_id = id_declarator->u.id.unqualified_name;
12694 switch (TREE_CODE (unqualified_id))
12696 case BIT_NOT_EXPR:
12697 unqualified_id = TREE_OPERAND (unqualified_id, 0);
12698 if (TYPE_P (unqualified_id))
12699 unqualified_id = constructor_name (unqualified_id);
12700 break;
12702 case IDENTIFIER_NODE:
12703 case TEMPLATE_ID_EXPR:
12704 break;
12706 default:
12707 gcc_unreachable ();
12711 if (declspecs->std_attributes)
12713 location_t attr_loc = declspecs->locations[ds_std_attribute];
12714 if (warning_at (attr_loc, OPT_Wattributes, "attribute ignored"))
12715 inform (attr_loc, "an attribute that appertains to a type-specifier "
12716 "is ignored");
12719 /* Determine the type of the entity declared by recurring on the
12720 declarator. */
12721 for (; declarator; declarator = declarator->declarator)
12723 const cp_declarator *inner_declarator;
12724 tree attrs;
12726 if (type == error_mark_node)
12727 return error_mark_node;
12729 attrs = declarator->attributes;
12730 if (attrs)
12732 int attr_flags;
12734 attr_flags = 0;
12735 if (declarator->kind == cdk_id)
12736 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
12737 if (declarator->kind == cdk_function)
12738 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
12739 if (declarator->kind == cdk_array)
12740 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
12741 tree late_attrs = NULL_TREE;
12742 if (decl_context != PARM && decl_context != TYPENAME)
12743 /* Assume that any attributes that get applied late to
12744 templates will DTRT when applied to the declaration
12745 as a whole. */
12746 late_attrs = splice_template_attributes (&attrs, type);
12747 returned_attrs = decl_attributes (&type,
12748 attr_chainon (returned_attrs,
12749 attrs),
12750 attr_flags);
12751 returned_attrs = attr_chainon (late_attrs, returned_attrs);
12754 inner_declarator = declarator->declarator;
12756 /* We don't want to warn in parameter context because we don't
12757 yet know if the parse will succeed, and this might turn out
12758 to be a constructor call. */
12759 if (decl_context != PARM
12760 && decl_context != TYPENAME
12761 && !typedef_p
12762 && declarator->parenthesized != UNKNOWN_LOCATION
12763 /* If the type is class-like and the inner name used a
12764 global namespace qualifier, we need the parens.
12765 Unfortunately all we can tell is whether a qualified name
12766 was used or not. */
12767 && !(inner_declarator
12768 && inner_declarator->kind == cdk_id
12769 && inner_declarator->u.id.qualifying_scope
12770 && (MAYBE_CLASS_TYPE_P (type)
12771 || TREE_CODE (type) == ENUMERAL_TYPE)))
12773 if (warning_at (declarator->parenthesized, OPT_Wparentheses,
12774 "unnecessary parentheses in declaration of %qs",
12775 name))
12777 gcc_rich_location iloc (declarator->parenthesized);
12778 iloc.add_fixit_remove (get_start (declarator->parenthesized));
12779 iloc.add_fixit_remove (get_finish (declarator->parenthesized));
12780 inform (&iloc, "remove parentheses");
12783 if (declarator->kind == cdk_id || declarator->kind == cdk_decomp)
12784 break;
12786 switch (declarator->kind)
12788 case cdk_array:
12789 type = create_array_type_for_decl (dname, type,
12790 declarator->u.array.bounds,
12791 declarator->id_loc);
12792 if (!valid_array_size_p (dname
12793 ? declarator->id_loc : input_location,
12794 type, dname))
12795 type = error_mark_node;
12797 if (declarator->std_attributes)
12798 /* [dcl.array]/1:
12800 The optional attribute-specifier-seq appertains to the
12801 array. */
12802 returned_attrs = attr_chainon (returned_attrs,
12803 declarator->std_attributes);
12804 break;
12806 case cdk_function:
12808 tree arg_types;
12809 int funcdecl_p;
12811 /* Declaring a function type. */
12813 /* Pick up type qualifiers which should be applied to `this'. */
12814 memfn_quals = declarator->u.function.qualifiers;
12815 /* Pick up virt-specifiers. */
12816 virt_specifiers = declarator->u.function.virt_specifiers;
12817 /* And ref-qualifier, too */
12818 rqual = declarator->u.function.ref_qualifier;
12819 /* And tx-qualifier. */
12820 tree tx_qual = declarator->u.function.tx_qualifier;
12821 /* Pick up the exception specifications. */
12822 raises = declarator->u.function.exception_specification;
12823 /* If the exception-specification is ill-formed, let's pretend
12824 there wasn't one. */
12825 if (raises == error_mark_node)
12826 raises = NULL_TREE;
12828 if (reqs)
12829 error_at (location_of (reqs), "requires-clause on return type");
12830 reqs = declarator->u.function.requires_clause;
12832 /* Say it's a definition only for the CALL_EXPR
12833 closest to the identifier. */
12834 funcdecl_p = inner_declarator && inner_declarator->kind == cdk_id;
12836 /* Handle a late-specified return type. */
12837 tree late_return_type = declarator->u.function.late_return_type;
12838 if (tree auto_node = type_uses_auto (type))
12840 if (!late_return_type)
12842 if (!funcdecl_p)
12843 /* auto (*fp)() = f; is OK. */;
12844 else if (current_class_type
12845 && LAMBDA_TYPE_P (current_class_type))
12846 /* OK for C++11 lambdas. */;
12847 else if (cxx_dialect < cxx14)
12849 error_at (typespec_loc, "%qs function uses "
12850 "%<auto%> type specifier without "
12851 "trailing return type", name);
12852 inform (typespec_loc,
12853 "deduced return type only available "
12854 "with %<-std=c++14%> or %<-std=gnu++14%>");
12856 else if (virtualp)
12858 error_at (typespec_loc, "virtual function "
12859 "cannot have deduced return type");
12860 virtualp = false;
12863 else if (!is_auto (type) && sfk != sfk_conversion)
12865 error_at (typespec_loc, "%qs function with trailing "
12866 "return type has %qT as its type rather "
12867 "than plain %<auto%>", name, type);
12868 return error_mark_node;
12870 else if (is_auto (type) && AUTO_IS_DECLTYPE (type))
12872 if (funcdecl_p)
12873 error_at (typespec_loc,
12874 "%qs function with trailing return type "
12875 "has %<decltype(auto)%> as its type "
12876 "rather than plain %<auto%>", name);
12877 else
12878 error_at (typespec_loc,
12879 "invalid use of %<decltype(auto)%>");
12880 return error_mark_node;
12882 tree tmpl = CLASS_PLACEHOLDER_TEMPLATE (auto_node);
12883 if (!tmpl)
12884 if (tree late_auto = type_uses_auto (late_return_type))
12885 tmpl = CLASS_PLACEHOLDER_TEMPLATE (late_auto);
12886 if (tmpl)
12888 if (!funcdecl_p || !dguide_name_p (unqualified_id))
12890 error_at (typespec_loc, "deduced class "
12891 "type %qD in function return type",
12892 DECL_NAME (tmpl));
12893 inform (DECL_SOURCE_LOCATION (tmpl),
12894 "%qD declared here", tmpl);
12895 return error_mark_node;
12897 else if (!late_return_type)
12899 error_at (declarator->id_loc, "deduction guide "
12900 "for %qT must have trailing return "
12901 "type", TREE_TYPE (tmpl));
12902 inform (DECL_SOURCE_LOCATION (tmpl),
12903 "%qD declared here", tmpl);
12904 return error_mark_node;
12906 else if (CLASS_TYPE_P (late_return_type)
12907 && CLASSTYPE_TEMPLATE_INFO (late_return_type)
12908 && (CLASSTYPE_TI_TEMPLATE (late_return_type)
12909 == tmpl))
12910 /* OK */;
12911 else
12912 error ("trailing return type %qT of deduction guide "
12913 "is not a specialization of %qT",
12914 late_return_type, TREE_TYPE (tmpl));
12917 else if (late_return_type
12918 && sfk != sfk_conversion)
12920 if (late_return_type == error_mark_node)
12921 return error_mark_node;
12922 if (cxx_dialect < cxx11)
12923 /* Not using maybe_warn_cpp0x because this should
12924 always be an error. */
12925 error_at (typespec_loc,
12926 "trailing return type only available "
12927 "with %<-std=c++11%> or %<-std=gnu++11%>");
12928 else
12929 error_at (typespec_loc, "%qs function with trailing "
12930 "return type not declared with %<auto%> "
12931 "type specifier", name);
12932 return error_mark_node;
12934 if (late_return_type && sfk == sfk_conversion)
12936 error ("a conversion function cannot have a trailing return type");
12937 return error_mark_node;
12939 type = splice_late_return_type (type, late_return_type);
12940 if (type == error_mark_node)
12941 return error_mark_node;
12943 if (late_return_type)
12945 late_return_type_p = true;
12946 type_quals = cp_type_quals (type);
12949 if (type_quals != TYPE_UNQUALIFIED)
12951 if (SCALAR_TYPE_P (type) || VOID_TYPE_P (type))
12952 warning_at (typespec_loc, OPT_Wignored_qualifiers, "type "
12953 "qualifiers ignored on function return type");
12954 /* [dcl.fct] "A volatile-qualified return type is
12955 deprecated." */
12956 if (type_quals & TYPE_QUAL_VOLATILE)
12957 warning_at (typespec_loc, OPT_Wvolatile,
12958 "%<volatile%>-qualified return type is "
12959 "deprecated");
12961 /* We now know that the TYPE_QUALS don't apply to the
12962 decl, but to its return type. */
12963 type_quals = TYPE_UNQUALIFIED;
12966 /* Error about some types functions can't return. */
12968 if (TREE_CODE (type) == FUNCTION_TYPE)
12970 error_at (typespec_loc, "%qs declared as function returning "
12971 "a function", name);
12972 return error_mark_node;
12974 if (TREE_CODE (type) == ARRAY_TYPE)
12976 error_at (typespec_loc, "%qs declared as function returning "
12977 "an array", name);
12978 return error_mark_node;
12980 if (constinit_p)
12982 error_at (declspecs->locations[ds_constinit],
12983 "%<constinit%> on function return type is not "
12984 "allowed");
12985 return error_mark_node;
12988 if (check_decltype_auto (typespec_loc, type))
12989 return error_mark_node;
12991 if (ctype == NULL_TREE
12992 && decl_context == FIELD
12993 && funcdecl_p
12994 && friendp == 0)
12995 ctype = current_class_type;
12997 if (ctype && (sfk == sfk_constructor
12998 || sfk == sfk_destructor))
13000 /* We are within a class's scope. If our declarator name
13001 is the same as the class name, and we are defining
13002 a function, then it is a constructor/destructor, and
13003 therefore returns a void type. */
13005 /* ISO C++ 12.4/2. A destructor may not be declared
13006 const or volatile. A destructor may not be static.
13007 A destructor may not be declared with ref-qualifier.
13009 ISO C++ 12.1. A constructor may not be declared
13010 const or volatile. A constructor may not be
13011 virtual. A constructor may not be static.
13012 A constructor may not be declared with ref-qualifier. */
13013 if (staticp == 2)
13014 error_at (declspecs->locations[ds_storage_class],
13015 (flags == DTOR_FLAG)
13016 ? G_("destructor cannot be static member "
13017 "function")
13018 : G_("constructor cannot be static member "
13019 "function"));
13020 if (memfn_quals)
13022 error ((flags == DTOR_FLAG)
13023 ? G_("destructors may not be cv-qualified")
13024 : G_("constructors may not be cv-qualified"));
13025 memfn_quals = TYPE_UNQUALIFIED;
13028 if (rqual)
13030 maybe_warn_cpp0x (CPP0X_REF_QUALIFIER);
13031 error ((flags == DTOR_FLAG)
13032 ? G_("destructors may not be ref-qualified")
13033 : G_("constructors may not be ref-qualified"));
13034 rqual = REF_QUAL_NONE;
13037 if (decl_context == FIELD
13038 && !member_function_or_else (ctype,
13039 current_class_type,
13040 flags))
13041 return error_mark_node;
13043 if (flags != DTOR_FLAG)
13045 /* It's a constructor. */
13046 if (explicitp == 1)
13047 explicitp = 2;
13048 if (virtualp)
13050 permerror (declspecs->locations[ds_virtual],
13051 "constructors cannot be declared %<virtual%>");
13052 virtualp = 0;
13054 if (decl_context == FIELD
13055 && sfk != sfk_constructor)
13056 return error_mark_node;
13058 if (decl_context == FIELD)
13059 staticp = 0;
13061 else if (friendp)
13063 if (virtualp)
13065 /* Cannot be both friend and virtual. */
13066 gcc_rich_location richloc (declspecs->locations[ds_virtual]);
13067 richloc.add_range (declspecs->locations[ds_friend]);
13068 error_at (&richloc, "virtual functions cannot be friends");
13069 friendp = 0;
13071 if (decl_context == NORMAL)
13072 error_at (declarator->id_loc,
13073 "friend declaration not in class definition");
13074 if (current_function_decl && funcdef_flag)
13076 error_at (declarator->id_loc,
13077 "cannot define friend function %qs in a local "
13078 "class definition", name);
13079 friendp = 0;
13081 /* [class.friend]/6: A function can be defined in a friend
13082 declaration if the function name is unqualified. */
13083 if (funcdef_flag && in_namespace)
13085 if (in_namespace == global_namespace)
13086 error_at (declarator->id_loc,
13087 "friend function definition %qs cannot have "
13088 "a name qualified with %<::%>", name);
13089 else
13090 error_at (declarator->id_loc,
13091 "friend function definition %qs cannot have "
13092 "a name qualified with %<%D::%>", name,
13093 in_namespace);
13096 else if (ctype && sfk == sfk_conversion)
13098 if (explicitp == 1)
13100 maybe_warn_cpp0x (CPP0X_EXPLICIT_CONVERSION);
13101 explicitp = 2;
13104 else if (sfk == sfk_deduction_guide)
13106 if (explicitp == 1)
13107 explicitp = 2;
13110 tree pushed_scope = NULL_TREE;
13111 if (funcdecl_p
13112 && decl_context != FIELD
13113 && inner_declarator->u.id.qualifying_scope
13114 && CLASS_TYPE_P (inner_declarator->u.id.qualifying_scope))
13115 pushed_scope
13116 = push_scope (inner_declarator->u.id.qualifying_scope);
13118 arg_types = grokparms (declarator->u.function.parameters, &parms);
13120 if (pushed_scope)
13121 pop_scope (pushed_scope);
13123 if (inner_declarator
13124 && inner_declarator->kind == cdk_id
13125 && inner_declarator->u.id.sfk == sfk_destructor
13126 && arg_types != void_list_node)
13128 error_at (declarator->id_loc,
13129 "destructors may not have parameters");
13130 arg_types = void_list_node;
13131 parms = NULL_TREE;
13134 type = build_function_type (type, arg_types);
13136 tree attrs = declarator->std_attributes;
13137 if (tx_qual)
13139 tree att = build_tree_list (tx_qual, NULL_TREE);
13140 /* transaction_safe applies to the type, but
13141 transaction_safe_dynamic applies to the function. */
13142 if (is_attribute_p ("transaction_safe", tx_qual))
13143 attrs = attr_chainon (attrs, att);
13144 else
13145 returned_attrs = attr_chainon (returned_attrs, att);
13147 if (attrs)
13148 /* [dcl.fct]/2:
13150 The optional attribute-specifier-seq appertains to
13151 the function type. */
13152 cplus_decl_attributes (&type, attrs, 0);
13154 if (raises)
13155 type = build_exception_variant (type, raises);
13157 break;
13159 case cdk_pointer:
13160 case cdk_reference:
13161 case cdk_ptrmem:
13162 /* Filter out pointers-to-references and references-to-references.
13163 We can get these if a TYPE_DECL is used. */
13165 if (TYPE_REF_P (type))
13167 if (declarator->kind != cdk_reference)
13169 error ("cannot declare pointer to %q#T", type);
13170 type = TREE_TYPE (type);
13173 /* In C++0x, we allow reference to reference declarations
13174 that occur indirectly through typedefs [7.1.3/8 dcl.typedef]
13175 and template type arguments [14.3.1/4 temp.arg.type]. The
13176 check for direct reference to reference declarations, which
13177 are still forbidden, occurs below. Reasoning behind the change
13178 can be found in DR106, DR540, and the rvalue reference
13179 proposals. */
13180 else if (cxx_dialect == cxx98)
13182 error ("cannot declare reference to %q#T", type);
13183 type = TREE_TYPE (type);
13186 else if (VOID_TYPE_P (type))
13188 if (declarator->kind == cdk_reference)
13189 error ("cannot declare reference to %q#T", type);
13190 else if (declarator->kind == cdk_ptrmem)
13191 error ("cannot declare pointer to %q#T member", type);
13194 /* We now know that the TYPE_QUALS don't apply to the decl,
13195 but to the target of the pointer. */
13196 type_quals = TYPE_UNQUALIFIED;
13198 /* This code used to handle METHOD_TYPE, but I don't think it's
13199 possible to get it here anymore. */
13200 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
13201 if (declarator->kind == cdk_ptrmem
13202 && TREE_CODE (type) == FUNCTION_TYPE)
13204 memfn_quals |= type_memfn_quals (type);
13205 type = build_memfn_type (type,
13206 declarator->u.pointer.class_type,
13207 memfn_quals,
13208 rqual);
13209 if (type == error_mark_node)
13210 return error_mark_node;
13212 rqual = REF_QUAL_NONE;
13213 memfn_quals = TYPE_UNQUALIFIED;
13216 if (TREE_CODE (type) == FUNCTION_TYPE
13217 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
13218 || type_memfn_rqual (type) != REF_QUAL_NONE))
13219 error (declarator->kind == cdk_reference
13220 ? G_("cannot declare reference to qualified function type %qT")
13221 : G_("cannot declare pointer to qualified function type %qT"),
13222 type);
13224 /* When the pointed-to type involves components of variable size,
13225 care must be taken to ensure that the size evaluation code is
13226 emitted early enough to dominate all the possible later uses
13227 and late enough for the variables on which it depends to have
13228 been assigned.
13230 This is expected to happen automatically when the pointed-to
13231 type has a name/declaration of it's own, but special attention
13232 is required if the type is anonymous.
13234 We handle the NORMAL and FIELD contexts here by inserting a
13235 dummy statement that just evaluates the size at a safe point
13236 and ensures it is not deferred until e.g. within a deeper
13237 conditional context (c++/43555).
13239 We expect nothing to be needed here for PARM or TYPENAME.
13240 Evaluating the size at this point for TYPENAME would
13241 actually be incorrect, as we might be in the middle of an
13242 expression with side effects on the pointed-to type size
13243 "arguments" prior to the pointer declaration point and the
13244 size evaluation could end up prior to the side effects. */
13246 if (!TYPE_NAME (type)
13247 && (decl_context == NORMAL || decl_context == FIELD)
13248 && at_function_scope_p ()
13249 && variably_modified_type_p (type, NULL_TREE))
13251 TYPE_NAME (type) = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
13252 NULL_TREE, type);
13253 add_decl_expr (TYPE_NAME (type));
13256 if (declarator->kind == cdk_reference)
13258 /* In C++0x, the type we are creating a reference to might be
13259 a typedef which is itself a reference type. In that case,
13260 we follow the reference collapsing rules in
13261 [7.1.3/8 dcl.typedef] to create the final reference type:
13263 "If a typedef TD names a type that is a reference to a type
13264 T, an attempt to create the type 'lvalue reference to cv TD'
13265 creates the type 'lvalue reference to T,' while an attempt
13266 to create the type "rvalue reference to cv TD' creates the
13267 type TD."
13269 if (VOID_TYPE_P (type))
13270 /* We already gave an error. */;
13271 else if (TYPE_REF_P (type))
13273 if (declarator->u.reference.rvalue_ref)
13274 /* Leave type alone. */;
13275 else
13276 type = cp_build_reference_type (TREE_TYPE (type), false);
13278 else
13279 type = cp_build_reference_type
13280 (type, declarator->u.reference.rvalue_ref);
13282 /* In C++0x, we need this check for direct reference to
13283 reference declarations, which are forbidden by
13284 [8.3.2/5 dcl.ref]. Reference to reference declarations
13285 are only allowed indirectly through typedefs and template
13286 type arguments. Example:
13288 void foo(int & &); // invalid ref-to-ref decl
13290 typedef int & int_ref;
13291 void foo(int_ref &); // valid ref-to-ref decl
13293 if (inner_declarator && inner_declarator->kind == cdk_reference)
13294 error ("cannot declare reference to %q#T, which is not "
13295 "a typedef or a template type argument", type);
13297 else if (TREE_CODE (type) == METHOD_TYPE)
13298 type = build_ptrmemfunc_type (build_pointer_type (type));
13299 else if (declarator->kind == cdk_ptrmem)
13301 gcc_assert (TREE_CODE (declarator->u.pointer.class_type)
13302 != NAMESPACE_DECL);
13303 if (declarator->u.pointer.class_type == error_mark_node)
13304 /* We will already have complained. */
13305 type = error_mark_node;
13306 else
13307 type = build_ptrmem_type (declarator->u.pointer.class_type,
13308 type);
13310 else
13311 type = build_pointer_type (type);
13313 /* Process a list of type modifier keywords (such as
13314 const or volatile) that were given inside the `*' or `&'. */
13316 if (declarator->u.pointer.qualifiers)
13318 type
13319 = cp_build_qualified_type (type,
13320 declarator->u.pointer.qualifiers);
13321 type_quals = cp_type_quals (type);
13324 /* Apply C++11 attributes to the pointer, and not to the
13325 type pointed to. This is unlike what is done for GNU
13326 attributes above. It is to comply with [dcl.ptr]/1:
13328 [the optional attribute-specifier-seq (7.6.1) appertains
13329 to the pointer and not to the object pointed to]. */
13330 if (declarator->std_attributes)
13331 decl_attributes (&type, declarator->std_attributes,
13334 ctype = NULL_TREE;
13335 break;
13337 case cdk_error:
13338 break;
13340 default:
13341 gcc_unreachable ();
13345 id_loc = declarator ? declarator->id_loc : input_location;
13347 if (innermost_code != cdk_function
13348 /* Don't check this if it can be the artifical decltype(auto)
13349 we created when building a constraint in a compound-requirement:
13350 that the type-constraint is plain is going to be checked in
13351 cp_parser_compound_requirement. */
13352 && decl_context != TYPENAME
13353 && check_decltype_auto (id_loc, type))
13354 return error_mark_node;
13356 /* A `constexpr' specifier used in an object declaration declares
13357 the object as `const'. */
13358 if (constexpr_p && innermost_code != cdk_function)
13360 /* DR1688 says that a `constexpr' specifier in combination with
13361 `volatile' is valid. */
13363 if (!TYPE_REF_P (type))
13365 type_quals |= TYPE_QUAL_CONST;
13366 type = cp_build_qualified_type (type, type_quals);
13370 if (unqualified_id && TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR
13371 && !FUNC_OR_METHOD_TYPE_P (type)
13372 && !variable_template_p (TREE_OPERAND (unqualified_id, 0)))
13374 error ("template-id %qD used as a declarator",
13375 unqualified_id);
13376 unqualified_id = dname;
13379 /* If TYPE is a FUNCTION_TYPE, but the function name was explicitly
13380 qualified with a class-name, turn it into a METHOD_TYPE, unless
13381 we know that the function is static. We take advantage of this
13382 opportunity to do other processing that pertains to entities
13383 explicitly declared to be class members. Note that if DECLARATOR
13384 is non-NULL, we know it is a cdk_id declarator; otherwise, we
13385 would not have exited the loop above. */
13386 if (declarator
13387 && declarator->kind == cdk_id
13388 && declarator->u.id.qualifying_scope
13389 && MAYBE_CLASS_TYPE_P (declarator->u.id.qualifying_scope))
13391 ctype = declarator->u.id.qualifying_scope;
13392 ctype = TYPE_MAIN_VARIANT (ctype);
13393 template_count = num_template_headers_for_class (ctype);
13395 if (ctype == current_class_type)
13397 if (friendp)
13399 permerror (declspecs->locations[ds_friend],
13400 "member functions are implicitly "
13401 "friends of their class");
13402 friendp = 0;
13404 else
13405 permerror (id_loc, "extra qualification %<%T::%> on member %qs",
13406 ctype, name);
13408 else if (/* If the qualifying type is already complete, then we
13409 can skip the following checks. */
13410 !COMPLETE_TYPE_P (ctype)
13411 && (/* If the function is being defined, then
13412 qualifying type must certainly be complete. */
13413 funcdef_flag
13414 /* A friend declaration of "T::f" is OK, even if
13415 "T" is a template parameter. But, if this
13416 function is not a friend, the qualifying type
13417 must be a class. */
13418 || (!friendp && !CLASS_TYPE_P (ctype))
13419 /* For a declaration, the type need not be
13420 complete, if either it is dependent (since there
13421 is no meaningful definition of complete in that
13422 case) or the qualifying class is currently being
13423 defined. */
13424 || !(dependent_type_p (ctype)
13425 || currently_open_class (ctype)))
13426 /* Check that the qualifying type is complete. */
13427 && !complete_type_or_else (ctype, NULL_TREE))
13428 return error_mark_node;
13429 else if (TREE_CODE (type) == FUNCTION_TYPE)
13431 if (current_class_type
13432 && (!friendp || funcdef_flag || initialized))
13434 error_at (id_loc, funcdef_flag || initialized
13435 ? G_("cannot define member function %<%T::%s%> "
13436 "within %qT")
13437 : G_("cannot declare member function %<%T::%s%> "
13438 "within %qT"),
13439 ctype, name, current_class_type);
13440 return error_mark_node;
13443 else if (typedef_p && current_class_type)
13445 error_at (id_loc, "cannot declare member %<%T::%s%> within %qT",
13446 ctype, name, current_class_type);
13447 return error_mark_node;
13451 if (ctype == NULL_TREE && decl_context == FIELD && friendp == 0)
13452 ctype = current_class_type;
13454 /* Now TYPE has the actual type. */
13456 if (returned_attrs)
13458 if (attrlist)
13459 *attrlist = attr_chainon (returned_attrs, *attrlist);
13460 else
13461 attrlist = &returned_attrs;
13464 if (declarator
13465 && declarator->kind == cdk_id
13466 && declarator->std_attributes
13467 && attrlist != NULL)
13469 /* [dcl.meaning]/1: The optional attribute-specifier-seq following
13470 a declarator-id appertains to the entity that is declared. */
13471 if (declarator->std_attributes != error_mark_node)
13472 *attrlist = attr_chainon (*attrlist, declarator->std_attributes);
13473 else
13474 /* We should have already diagnosed the issue (c++/78344). */
13475 gcc_assert (seen_error ());
13478 /* Handle parameter packs. */
13479 if (parameter_pack_p)
13481 if (decl_context == PARM)
13482 /* Turn the type into a pack expansion.*/
13483 type = make_pack_expansion (type);
13484 else
13485 error ("non-parameter %qs cannot be a parameter pack", name);
13488 if ((decl_context == FIELD || decl_context == PARM)
13489 && !processing_template_decl
13490 && variably_modified_type_p (type, NULL_TREE))
13492 if (decl_context == FIELD)
13493 error_at (id_loc,
13494 "data member may not have variably modified type %qT", type);
13495 else
13496 error_at (id_loc,
13497 "parameter may not have variably modified type %qT", type);
13498 type = error_mark_node;
13501 if (explicitp == 1 || (explicitp && friendp))
13503 /* [dcl.fct.spec] (C++11) The explicit specifier shall be used only
13504 in the declaration of a constructor or conversion function within
13505 a class definition. */
13506 if (!current_class_type)
13507 error_at (declspecs->locations[ds_explicit],
13508 "%<explicit%> outside class declaration");
13509 else if (friendp)
13510 error_at (declspecs->locations[ds_explicit],
13511 "%<explicit%> in friend declaration");
13512 else
13513 error_at (declspecs->locations[ds_explicit],
13514 "only declarations of constructors and conversion operators "
13515 "can be %<explicit%>");
13516 explicitp = 0;
13519 if (storage_class == sc_mutable)
13521 location_t sloc = declspecs->locations[ds_storage_class];
13522 if (decl_context != FIELD || friendp)
13524 error_at (sloc, "non-member %qs cannot be declared %<mutable%>",
13525 name);
13526 storage_class = sc_none;
13528 else if (decl_context == TYPENAME || typedef_p)
13530 error_at (sloc,
13531 "non-object member %qs cannot be declared %<mutable%>",
13532 name);
13533 storage_class = sc_none;
13535 else if (FUNC_OR_METHOD_TYPE_P (type))
13537 error_at (sloc, "function %qs cannot be declared %<mutable%>",
13538 name);
13539 storage_class = sc_none;
13541 else if (staticp)
13543 error_at (sloc, "%<static%> %qs cannot be declared %<mutable%>",
13544 name);
13545 storage_class = sc_none;
13547 else if (type_quals & TYPE_QUAL_CONST)
13549 error_at (sloc, "%<const%> %qs cannot be declared %<mutable%>",
13550 name);
13551 storage_class = sc_none;
13553 else if (TYPE_REF_P (type))
13555 permerror (sloc, "reference %qs cannot be declared %<mutable%>",
13556 name);
13557 storage_class = sc_none;
13561 /* If this is declaring a typedef name, return a TYPE_DECL. */
13562 if (typedef_p && decl_context != TYPENAME)
13564 bool alias_p = decl_spec_seq_has_spec_p (declspecs, ds_alias);
13565 tree decl;
13567 if (funcdef_flag)
13569 if (decl_context == NORMAL)
13570 error_at (id_loc,
13571 "typedef may not be a function definition");
13572 else
13573 error_at (id_loc,
13574 "typedef may not be a member function definition");
13575 return error_mark_node;
13578 /* This declaration:
13580 typedef void f(int) const;
13582 declares a function type which is not a member of any
13583 particular class, but which is cv-qualified; for
13584 example "f S::*" declares a pointer to a const-qualified
13585 member function of S. We record the cv-qualification in the
13586 function type. */
13587 if ((rqual || memfn_quals) && TREE_CODE (type) == FUNCTION_TYPE)
13589 type = apply_memfn_quals (type, memfn_quals, rqual);
13591 /* We have now dealt with these qualifiers. */
13592 memfn_quals = TYPE_UNQUALIFIED;
13593 rqual = REF_QUAL_NONE;
13596 if (type_uses_auto (type))
13598 if (alias_p)
13599 error_at (declspecs->locations[ds_type_spec],
13600 "%<auto%> not allowed in alias declaration");
13601 else
13602 error_at (declspecs->locations[ds_type_spec],
13603 "typedef declared %<auto%>");
13604 type = error_mark_node;
13607 if (reqs)
13608 error_at (location_of (reqs), "requires-clause on typedef");
13610 if (id_declarator && declarator->u.id.qualifying_scope)
13612 error_at (id_loc, "typedef name may not be a nested-name-specifier");
13613 type = error_mark_node;
13616 if (decl_context == FIELD)
13617 decl = build_lang_decl_loc (id_loc, TYPE_DECL, unqualified_id, type);
13618 else
13619 decl = build_decl (id_loc, TYPE_DECL, unqualified_id, type);
13621 if (decl_context != FIELD)
13623 if (!current_function_decl)
13624 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
13625 else if (DECL_MAYBE_IN_CHARGE_CDTOR_P (current_function_decl))
13626 /* The TYPE_DECL is "abstract" because there will be
13627 clones of this constructor/destructor, and there will
13628 be copies of this TYPE_DECL generated in those
13629 clones. The decloning optimization (for space) may
13630 revert this subsequently if it determines that
13631 the clones should share a common implementation. */
13632 DECL_ABSTRACT_P (decl) = true;
13634 set_originating_module (decl);
13636 else if (current_class_type
13637 && constructor_name_p (unqualified_id, current_class_type))
13638 permerror (id_loc, "ISO C++ forbids nested type %qD with same name "
13639 "as enclosing class",
13640 unqualified_id);
13642 /* If the user declares "typedef struct {...} foo" then the
13643 struct will have an anonymous name. Fill that name in now.
13644 Nothing can refer to it, so nothing needs know about the name
13645 change. */
13646 if (type != error_mark_node
13647 && unqualified_id
13648 && TYPE_NAME (type)
13649 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
13650 && TYPE_UNNAMED_P (type)
13651 && declspecs->type_definition_p
13652 && attributes_naming_typedef_ok (*attrlist)
13653 && cp_type_quals (type) == TYPE_UNQUALIFIED)
13654 name_unnamed_type (type, decl);
13656 if (signed_p
13657 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
13658 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
13660 bad_specifiers (decl, BSP_TYPE, virtualp,
13661 memfn_quals != TYPE_UNQUALIFIED,
13662 inlinep, friendp, raises != NULL_TREE,
13663 declspecs->locations);
13665 if (alias_p)
13666 /* Acknowledge that this was written:
13667 `using analias = atype;'. */
13668 TYPE_DECL_ALIAS_P (decl) = 1;
13670 return decl;
13673 /* Detect the case of an array type of unspecified size
13674 which came, as such, direct from a typedef name.
13675 We must copy the type, so that the array's domain can be
13676 individually set by the object's initializer. */
13678 if (type && typedef_type
13679 && TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type)
13680 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type))
13681 type = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
13683 /* Detect where we're using a typedef of function type to declare a
13684 function. PARMS will not be set, so we must create it now. */
13686 if (type == typedef_type && TREE_CODE (type) == FUNCTION_TYPE)
13688 tree decls = NULL_TREE;
13689 tree args;
13691 for (args = TYPE_ARG_TYPES (type);
13692 args && args != void_list_node;
13693 args = TREE_CHAIN (args))
13695 tree decl = cp_build_parm_decl (NULL_TREE, NULL_TREE,
13696 TREE_VALUE (args));
13698 DECL_CHAIN (decl) = decls;
13699 decls = decl;
13702 parms = nreverse (decls);
13704 if (decl_context != TYPENAME)
13706 /* The qualifiers on the function type become the qualifiers on
13707 the non-static member function. */
13708 memfn_quals |= type_memfn_quals (type);
13709 rqual = type_memfn_rqual (type);
13710 type_quals = TYPE_UNQUALIFIED;
13711 raises = TYPE_RAISES_EXCEPTIONS (type);
13715 /* If this is a type name (such as, in a cast or sizeof),
13716 compute the type and return it now. */
13718 if (decl_context == TYPENAME)
13720 /* Note that here we don't care about type_quals. */
13722 /* Special case: "friend class foo" looks like a TYPENAME context. */
13723 if (friendp)
13725 if (inlinep)
13727 error ("%<inline%> specified for friend class declaration");
13728 inlinep = 0;
13731 if (!current_aggr)
13733 /* Don't allow friend declaration without a class-key. */
13734 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
13735 permerror (input_location, "template parameters cannot be friends");
13736 else if (TREE_CODE (type) == TYPENAME_TYPE)
13737 permerror (input_location, "friend declaration requires class-key, "
13738 "i.e. %<friend class %T::%D%>",
13739 TYPE_CONTEXT (type), TYPENAME_TYPE_FULLNAME (type));
13740 else
13741 permerror (input_location, "friend declaration requires class-key, "
13742 "i.e. %<friend %#T%>",
13743 type);
13746 /* Only try to do this stuff if we didn't already give up. */
13747 if (type != integer_type_node)
13749 /* A friendly class? */
13750 if (current_class_type)
13751 make_friend_class (current_class_type, TYPE_MAIN_VARIANT (type),
13752 /*complain=*/true);
13753 else
13754 error ("trying to make class %qT a friend of global scope",
13755 type);
13757 type = void_type_node;
13760 else if (memfn_quals || rqual)
13762 if (ctype == NULL_TREE
13763 && TREE_CODE (type) == METHOD_TYPE)
13764 ctype = TYPE_METHOD_BASETYPE (type);
13766 if (ctype)
13767 type = build_memfn_type (type, ctype, memfn_quals, rqual);
13768 /* Core issue #547: need to allow this in template type args.
13769 Allow it in general in C++11 for alias-declarations. */
13770 else if ((template_type_arg || cxx_dialect >= cxx11)
13771 && TREE_CODE (type) == FUNCTION_TYPE)
13772 type = apply_memfn_quals (type, memfn_quals, rqual);
13773 else
13774 error ("invalid qualifiers on non-member function type");
13777 if (reqs)
13778 error_at (location_of (reqs), "requires-clause on type-id");
13780 return type;
13782 else if (unqualified_id == NULL_TREE && decl_context != PARM
13783 && decl_context != CATCHPARM
13784 && TREE_CODE (type) != UNION_TYPE
13785 && ! bitfield
13786 && innermost_code != cdk_decomp)
13788 error ("abstract declarator %qT used as declaration", type);
13789 return error_mark_node;
13792 if (!FUNC_OR_METHOD_TYPE_P (type))
13794 /* Only functions may be declared using an operator-function-id. */
13795 if (dname && IDENTIFIER_ANY_OP_P (dname))
13797 error_at (id_loc, "declaration of %qD as non-function", dname);
13798 return error_mark_node;
13801 if (reqs)
13802 error_at (location_of (reqs),
13803 "requires-clause on declaration of non-function type %qT",
13804 type);
13807 /* We don't check parameter types here because we can emit a better
13808 error message later. */
13809 if (decl_context != PARM)
13811 type = check_var_type (unqualified_id, type, id_loc);
13812 if (type == error_mark_node)
13813 return error_mark_node;
13816 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
13817 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
13819 if (decl_context == PARM || decl_context == CATCHPARM)
13821 if (ctype || in_namespace)
13822 error ("cannot use %<::%> in parameter declaration");
13824 tree auto_node = type_uses_auto (type);
13825 if (auto_node && !(cxx_dialect >= cxx17 && template_parm_flag))
13827 if (cxx_dialect >= cxx14)
13829 if (decl_context == PARM && AUTO_IS_DECLTYPE (auto_node))
13830 error_at (typespec_loc,
13831 "cannot declare a parameter with %<decltype(auto)%>");
13832 else if (tree c = CLASS_PLACEHOLDER_TEMPLATE (auto_node))
13834 auto_diagnostic_group g;
13835 error_at (typespec_loc,
13836 "class template placeholder %qE not permitted "
13837 "in this context", c);
13838 if (decl_context == PARM && cxx_dialect >= cxx20)
13839 inform (typespec_loc, "use %<auto%> for an "
13840 "abbreviated function template");
13842 else
13843 error_at (typespec_loc,
13844 "%<auto%> parameter not permitted in this context");
13846 else
13847 error_at (typespec_loc, "parameter declared %<auto%>");
13848 type = error_mark_node;
13851 /* A parameter declared as an array of T is really a pointer to T.
13852 One declared as a function is really a pointer to a function.
13853 One declared as a member is really a pointer to member. */
13855 if (TREE_CODE (type) == ARRAY_TYPE)
13857 /* Transfer const-ness of array into that of type pointed to. */
13858 type = build_pointer_type (TREE_TYPE (type));
13859 type_quals = TYPE_UNQUALIFIED;
13860 array_parameter_p = true;
13862 else if (TREE_CODE (type) == FUNCTION_TYPE)
13863 type = build_pointer_type (type);
13866 if (ctype && TREE_CODE (type) == FUNCTION_TYPE && staticp < 2
13867 && !(unqualified_id
13868 && identifier_p (unqualified_id)
13869 && IDENTIFIER_NEWDEL_OP_P (unqualified_id)))
13871 cp_cv_quals real_quals = memfn_quals;
13872 if (cxx_dialect < cxx14 && constexpr_p
13873 && sfk != sfk_constructor && sfk != sfk_destructor)
13874 real_quals |= TYPE_QUAL_CONST;
13875 type = build_memfn_type (type, ctype, real_quals, rqual);
13879 tree decl = NULL_TREE;
13881 if (decl_context == PARM)
13883 decl = cp_build_parm_decl (NULL_TREE, unqualified_id, type);
13884 DECL_ARRAY_PARAMETER_P (decl) = array_parameter_p;
13886 bad_specifiers (decl, BSP_PARM, virtualp,
13887 memfn_quals != TYPE_UNQUALIFIED,
13888 inlinep, friendp, raises != NULL_TREE,
13889 declspecs->locations);
13891 else if (decl_context == FIELD)
13893 if (!staticp && !friendp && !FUNC_OR_METHOD_TYPE_P (type))
13894 if (tree auto_node = type_uses_auto (type))
13896 location_t tloc = declspecs->locations[ds_type_spec];
13897 if (CLASS_PLACEHOLDER_TEMPLATE (auto_node))
13898 error_at (tloc, "invalid use of template-name %qE without an "
13899 "argument list",
13900 CLASS_PLACEHOLDER_TEMPLATE (auto_node));
13901 else
13902 error_at (tloc, "non-static data member declared with "
13903 "placeholder %qT", auto_node);
13904 type = error_mark_node;
13907 /* The C99 flexible array extension. */
13908 if (!staticp && TREE_CODE (type) == ARRAY_TYPE
13909 && TYPE_DOMAIN (type) == NULL_TREE)
13911 if (ctype
13912 && (TREE_CODE (ctype) == UNION_TYPE
13913 || TREE_CODE (ctype) == QUAL_UNION_TYPE))
13915 error_at (id_loc, "flexible array member in union");
13916 type = error_mark_node;
13918 else
13920 /* Array is a flexible member. */
13921 if (name)
13922 pedwarn (id_loc, OPT_Wpedantic,
13923 "ISO C++ forbids flexible array member %qs", name);
13924 else
13925 pedwarn (input_location, OPT_Wpedantic,
13926 "ISO C++ forbids flexible array members");
13928 /* Flexible array member has a null domain. */
13929 type = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
13933 if (type == error_mark_node)
13935 /* Happens when declaring arrays of sizes which
13936 are error_mark_node, for example. */
13937 decl = NULL_TREE;
13939 else if (in_namespace && !friendp)
13941 /* Something like struct S { int N::j; }; */
13942 error_at (id_loc, "invalid use of %<::%>");
13943 return error_mark_node;
13945 else if (FUNC_OR_METHOD_TYPE_P (type) && unqualified_id)
13947 int publicp = 0;
13948 tree function_context;
13950 if (friendp == 0)
13952 /* This should never happen in pure C++ (the check
13953 could be an assert). It could happen in
13954 Objective-C++ if someone writes invalid code that
13955 uses a function declaration for an instance
13956 variable or property (instance variables and
13957 properties are parsed as FIELD_DECLs, but they are
13958 part of an Objective-C class, not a C++ class).
13959 That code is invalid and is caught by this
13960 check. */
13961 if (!ctype)
13963 error ("declaration of function %qD in invalid context",
13964 unqualified_id);
13965 return error_mark_node;
13968 /* ``A union may [ ... ] not [ have ] virtual functions.''
13969 ARM 9.5 */
13970 if (virtualp && TREE_CODE (ctype) == UNION_TYPE)
13972 error_at (declspecs->locations[ds_virtual],
13973 "function %qD declared %<virtual%> inside a union",
13974 unqualified_id);
13975 return error_mark_node;
13978 if (virtualp
13979 && identifier_p (unqualified_id)
13980 && IDENTIFIER_NEWDEL_OP_P (unqualified_id))
13982 error_at (declspecs->locations[ds_virtual],
13983 "%qD cannot be declared %<virtual%>, since it "
13984 "is always static", unqualified_id);
13985 virtualp = 0;
13989 /* Check that the name used for a destructor makes sense. */
13990 if (sfk == sfk_destructor)
13992 tree uqname = id_declarator->u.id.unqualified_name;
13994 if (!ctype)
13996 gcc_assert (friendp);
13997 error_at (id_loc, "expected qualified name in friend "
13998 "declaration for destructor %qD", uqname);
13999 return error_mark_node;
14002 if (!check_dtor_name (ctype, TREE_OPERAND (uqname, 0)))
14004 error_at (id_loc, "declaration of %qD as member of %qT",
14005 uqname, ctype);
14006 return error_mark_node;
14008 if (concept_p)
14010 error_at (declspecs->locations[ds_concept],
14011 "a destructor cannot be %qs", "concept");
14012 return error_mark_node;
14014 if (constexpr_p && cxx_dialect < cxx20)
14016 error_at (declspecs->locations[ds_constexpr],
14017 "%<constexpr%> destructors only available"
14018 " with %<-std=c++20%> or %<-std=gnu++20%>");
14019 return error_mark_node;
14021 if (consteval_p)
14023 error_at (declspecs->locations[ds_consteval],
14024 "a destructor cannot be %qs", "consteval");
14025 return error_mark_node;
14028 else if (sfk == sfk_constructor && friendp && !ctype)
14030 error ("expected qualified name in friend declaration "
14031 "for constructor %qD",
14032 id_declarator->u.id.unqualified_name);
14033 return error_mark_node;
14035 if (sfk == sfk_constructor)
14036 if (concept_p)
14038 error_at (declspecs->locations[ds_concept],
14039 "a constructor cannot be %<concept%>");
14040 return error_mark_node;
14042 if (concept_p)
14044 error_at (declspecs->locations[ds_concept],
14045 "a concept cannot be a member function");
14046 concept_p = false;
14048 else if (consteval_p
14049 && identifier_p (unqualified_id)
14050 && IDENTIFIER_NEWDEL_OP_P (unqualified_id))
14052 error_at (declspecs->locations[ds_consteval],
14053 "%qD cannot be %qs", unqualified_id, "consteval");
14054 consteval_p = false;
14057 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
14059 tree tmpl = TREE_OPERAND (unqualified_id, 0);
14060 if (variable_template_p (tmpl))
14062 error_at (id_loc, "specialization of variable template "
14063 "%qD declared as function", tmpl);
14064 inform (DECL_SOURCE_LOCATION (tmpl),
14065 "variable template declared here");
14066 return error_mark_node;
14070 /* Tell grokfndecl if it needs to set TREE_PUBLIC on the node. */
14071 function_context
14072 = (ctype != NULL_TREE
14073 ? decl_function_context (TYPE_MAIN_DECL (ctype)) : NULL_TREE);
14074 publicp = ((! friendp || ! staticp)
14075 && function_context == NULL_TREE);
14077 decl = grokfndecl (ctype, type,
14078 TREE_CODE (unqualified_id) != TEMPLATE_ID_EXPR
14079 ? unqualified_id : dname,
14080 parms,
14081 unqualified_id,
14082 declspecs,
14083 reqs,
14084 virtualp, flags, memfn_quals, rqual, raises,
14085 friendp ? -1 : 0, friendp, publicp,
14086 inlinep | (2 * constexpr_p) | (4 * concept_p)
14087 | (8 * consteval_p),
14088 initialized == SD_DELETED, sfk,
14089 funcdef_flag, late_return_type_p,
14090 template_count, in_namespace,
14091 attrlist, id_loc);
14092 decl = set_virt_specifiers (decl, virt_specifiers);
14093 if (decl == NULL_TREE)
14094 return error_mark_node;
14095 #if 0
14096 /* This clobbers the attrs stored in `decl' from `attrlist'. */
14097 /* The decl and setting of decl_attr is also turned off. */
14098 decl = build_decl_attribute_variant (decl, decl_attr);
14099 #endif
14101 /* [class.conv.ctor]
14103 A constructor declared without the function-specifier
14104 explicit that can be called with a single parameter
14105 specifies a conversion from the type of its first
14106 parameter to the type of its class. Such a constructor
14107 is called a converting constructor. */
14108 if (explicitp == 2)
14109 DECL_NONCONVERTING_P (decl) = 1;
14111 if (declspecs->explicit_specifier)
14112 store_explicit_specifier (decl, declspecs->explicit_specifier);
14114 else if (!staticp
14115 && ((current_class_type
14116 && same_type_p (type, current_class_type))
14117 || (!dependent_type_p (type)
14118 && !COMPLETE_TYPE_P (complete_type (type))
14119 && (!complete_or_array_type_p (type)
14120 || initialized == SD_UNINITIALIZED))))
14122 if (TREE_CODE (type) != ARRAY_TYPE
14123 || !COMPLETE_TYPE_P (TREE_TYPE (type)))
14125 if (unqualified_id)
14127 error_at (id_loc, "field %qD has incomplete type %qT",
14128 unqualified_id, type);
14129 cxx_incomplete_type_inform (strip_array_types (type));
14131 else
14132 error ("name %qT has incomplete type", type);
14134 type = error_mark_node;
14135 decl = NULL_TREE;
14138 else if (!verify_type_context (input_location,
14139 staticp
14140 ? TCTX_STATIC_STORAGE
14141 : TCTX_FIELD, type))
14143 type = error_mark_node;
14144 decl = NULL_TREE;
14146 else
14148 if (friendp)
14150 if (unqualified_id)
14151 error_at (id_loc,
14152 "%qE is neither function nor member function; "
14153 "cannot be declared friend", unqualified_id);
14154 else
14155 error ("unnamed field is neither function nor member "
14156 "function; cannot be declared friend");
14157 return error_mark_node;
14159 decl = NULL_TREE;
14162 if (friendp)
14164 /* Packages tend to use GNU attributes on friends, so we only
14165 warn for standard attributes. */
14166 if (attrlist && !funcdef_flag && cxx11_attribute_p (*attrlist))
14168 *attrlist = NULL_TREE;
14169 if (warning_at (id_loc, OPT_Wattributes, "attribute ignored"))
14170 inform (id_loc, "an attribute that appertains to a friend "
14171 "declaration that is not a definition is ignored");
14173 /* Friends are treated specially. */
14174 if (ctype == current_class_type)
14175 ; /* We already issued a permerror. */
14176 else if (decl && DECL_NAME (decl))
14178 set_originating_module (decl, true);
14180 if (initialized)
14181 /* Kludge: We need funcdef_flag to be true in do_friend for
14182 in-class defaulted functions, but that breaks grokfndecl.
14183 So set it here. */
14184 funcdef_flag = true;
14186 decl = do_friend (ctype, unqualified_id, decl,
14187 flags, funcdef_flag);
14188 return decl;
14190 else
14191 return error_mark_node;
14194 /* Structure field. It may not be a function, except for C++. */
14196 if (decl == NULL_TREE)
14198 if (staticp)
14200 /* C++ allows static class members. All other work
14201 for this is done by grokfield. */
14202 decl = build_lang_decl_loc (id_loc, VAR_DECL,
14203 unqualified_id, type);
14204 set_linkage_for_static_data_member (decl);
14205 if (concept_p)
14206 error_at (declspecs->locations[ds_concept],
14207 "static data member %qE declared %qs",
14208 unqualified_id, "concept");
14209 else if (constexpr_p && !initialized)
14211 error_at (DECL_SOURCE_LOCATION (decl),
14212 "%<constexpr%> static data member %qD must "
14213 "have an initializer", decl);
14214 constexpr_p = false;
14216 if (consteval_p)
14217 error_at (declspecs->locations[ds_consteval],
14218 "static data member %qE declared %qs",
14219 unqualified_id, "consteval");
14221 if (inlinep)
14222 mark_inline_variable (decl, declspecs->locations[ds_inline]);
14224 if (!DECL_VAR_DECLARED_INLINE_P (decl)
14225 && !(cxx_dialect >= cxx17 && constexpr_p))
14226 /* Even if there is an in-class initialization, DECL
14227 is considered undefined until an out-of-class
14228 definition is provided, unless this is an inline
14229 variable. */
14230 DECL_EXTERNAL (decl) = 1;
14232 if (thread_p)
14234 CP_DECL_THREAD_LOCAL_P (decl) = true;
14235 if (!processing_template_decl)
14236 set_decl_tls_model (decl, decl_default_tls_model (decl));
14237 if (declspecs->gnu_thread_keyword_p)
14238 SET_DECL_GNU_TLS_P (decl);
14241 /* Set the constraints on the declaration. */
14242 bool memtmpl = (current_template_depth
14243 > template_class_depth (current_class_type));
14244 if (memtmpl)
14246 tree ci = current_template_constraints ();
14247 set_constraints (decl, ci);
14250 else
14252 if (concept_p)
14254 error_at (declspecs->locations[ds_concept],
14255 "non-static data member %qE declared %qs",
14256 unqualified_id, "concept");
14257 concept_p = false;
14258 constexpr_p = false;
14260 else if (constexpr_p)
14262 error_at (declspecs->locations[ds_constexpr],
14263 "non-static data member %qE declared %qs",
14264 unqualified_id, "constexpr");
14265 constexpr_p = false;
14267 if (constinit_p)
14269 error_at (declspecs->locations[ds_constinit],
14270 "non-static data member %qE declared %qs",
14271 unqualified_id, "constinit");
14272 constinit_p = false;
14274 if (consteval_p)
14276 error_at (declspecs->locations[ds_consteval],
14277 "non-static data member %qE declared %qs",
14278 unqualified_id, "consteval");
14279 consteval_p = false;
14281 decl = build_decl (id_loc, FIELD_DECL, unqualified_id, type);
14282 DECL_NONADDRESSABLE_P (decl) = bitfield;
14283 if (bitfield && !unqualified_id)
14284 DECL_PADDING_P (decl) = 1;
14286 if (storage_class == sc_mutable)
14288 DECL_MUTABLE_P (decl) = 1;
14289 storage_class = sc_none;
14292 if (initialized)
14294 /* An attempt is being made to initialize a non-static
14295 member. This is new in C++11. */
14296 maybe_warn_cpp0x (CPP0X_NSDMI, init_loc);
14298 /* If this has been parsed with static storage class, but
14299 errors forced staticp to be cleared, ensure NSDMI is
14300 not present. */
14301 if (declspecs->storage_class == sc_static)
14302 DECL_INITIAL (decl) = error_mark_node;
14306 bad_specifiers (decl, BSP_FIELD, virtualp,
14307 memfn_quals != TYPE_UNQUALIFIED,
14308 staticp ? false : inlinep, friendp,
14309 raises != NULL_TREE,
14310 declspecs->locations);
14313 else if (FUNC_OR_METHOD_TYPE_P (type))
14315 tree original_name;
14316 int publicp = 0;
14318 if (!unqualified_id)
14319 return error_mark_node;
14321 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
14322 original_name = dname;
14323 else
14324 original_name = unqualified_id;
14325 // FIXME:gcc_assert (original_name == dname);
14327 if (storage_class == sc_auto)
14328 error_at (declspecs->locations[ds_storage_class],
14329 "storage class %<auto%> invalid for function %qs", name);
14330 else if (storage_class == sc_register)
14331 error_at (declspecs->locations[ds_storage_class],
14332 "storage class %<register%> invalid for function %qs",
14333 name);
14334 else if (thread_p)
14336 if (declspecs->gnu_thread_keyword_p)
14337 error_at (declspecs->locations[ds_thread],
14338 "storage class %<__thread%> invalid for function %qs",
14339 name);
14340 else
14341 error_at (declspecs->locations[ds_thread],
14342 "storage class %<thread_local%> invalid for "
14343 "function %qs", name);
14346 if (virt_specifiers)
14347 error ("virt-specifiers in %qs not allowed outside a class "
14348 "definition", name);
14349 /* Function declaration not at top level.
14350 Storage classes other than `extern' are not allowed
14351 and `extern' makes no difference. */
14352 if (! toplevel_bindings_p ()
14353 && (storage_class == sc_static
14354 || decl_spec_seq_has_spec_p (declspecs, ds_inline))
14355 && pedantic)
14357 if (storage_class == sc_static)
14358 pedwarn (declspecs->locations[ds_storage_class], OPT_Wpedantic,
14359 "%<static%> specifier invalid for function %qs "
14360 "declared out of global scope", name);
14361 else
14362 pedwarn (declspecs->locations[ds_inline], OPT_Wpedantic,
14363 "%<inline%> specifier invalid for function %qs "
14364 "declared out of global scope", name);
14367 if (ctype == NULL_TREE)
14369 if (virtualp)
14371 error ("virtual non-class function %qs", name);
14372 virtualp = 0;
14374 else if (sfk == sfk_constructor
14375 || sfk == sfk_destructor)
14377 error (funcdef_flag
14378 ? G_("%qs defined in a non-class scope")
14379 : G_("%qs declared in a non-class scope"), name);
14380 sfk = sfk_none;
14383 if (consteval_p
14384 && identifier_p (unqualified_id)
14385 && IDENTIFIER_NEWDEL_OP_P (unqualified_id))
14387 error_at (declspecs->locations[ds_consteval],
14388 "%qD cannot be %qs", unqualified_id, "consteval");
14389 consteval_p = false;
14392 /* Record whether the function is public. */
14393 publicp = (ctype != NULL_TREE
14394 || storage_class != sc_static);
14396 decl = grokfndecl (ctype, type, original_name, parms, unqualified_id,
14397 declspecs,
14398 reqs, virtualp, flags, memfn_quals, rqual, raises,
14399 1, friendp,
14400 publicp,
14401 inlinep | (2 * constexpr_p) | (4 * concept_p)
14402 | (8 * consteval_p),
14403 initialized == SD_DELETED,
14404 sfk,
14405 funcdef_flag,
14406 late_return_type_p,
14407 template_count, in_namespace, attrlist,
14408 id_loc);
14409 if (decl == NULL_TREE)
14410 return error_mark_node;
14412 if (explicitp == 2)
14413 DECL_NONCONVERTING_P (decl) = 1;
14414 if (staticp == 1)
14416 int invalid_static = 0;
14418 /* Don't allow a static member function in a class, and forbid
14419 declaring main to be static. */
14420 if (TREE_CODE (type) == METHOD_TYPE)
14422 permerror (input_location, "cannot declare member function %qD to have "
14423 "static linkage", decl);
14424 invalid_static = 1;
14426 else if (current_function_decl)
14428 /* 7.1.1: There can be no static function declarations within a
14429 block. */
14430 error_at (declspecs->locations[ds_storage_class],
14431 "cannot declare static function inside another function");
14432 invalid_static = 1;
14435 if (invalid_static)
14437 staticp = 0;
14438 storage_class = sc_none;
14441 if (declspecs->explicit_specifier)
14442 store_explicit_specifier (decl, declspecs->explicit_specifier);
14444 else
14446 /* It's a variable. */
14448 /* An uninitialized decl with `extern' is a reference. */
14449 decl = grokvardecl (type, dname, unqualified_id,
14450 declspecs,
14451 initialized,
14452 type_quals,
14453 inlinep,
14454 concept_p,
14455 template_count,
14456 ctype ? ctype : in_namespace,
14457 id_loc);
14458 if (decl == NULL_TREE)
14459 return error_mark_node;
14461 bad_specifiers (decl, BSP_VAR, virtualp,
14462 memfn_quals != TYPE_UNQUALIFIED,
14463 inlinep, friendp, raises != NULL_TREE,
14464 declspecs->locations);
14466 if (ctype)
14468 DECL_CONTEXT (decl) = ctype;
14469 if (staticp == 1)
14471 permerror (declspecs->locations[ds_storage_class],
14472 "%<static%> may not be used when defining "
14473 "(as opposed to declaring) a static data member");
14474 staticp = 0;
14475 storage_class = sc_none;
14477 if (storage_class == sc_register && TREE_STATIC (decl))
14479 error ("static member %qD declared %<register%>", decl);
14480 storage_class = sc_none;
14482 if (storage_class == sc_extern && pedantic)
14484 pedwarn (input_location, OPT_Wpedantic,
14485 "cannot explicitly declare member %q#D to have "
14486 "extern linkage", decl);
14487 storage_class = sc_none;
14490 else if (constexpr_p && DECL_EXTERNAL (decl))
14492 error_at (DECL_SOURCE_LOCATION (decl),
14493 "declaration of %<constexpr%> variable %qD "
14494 "is not a definition", decl);
14495 constexpr_p = false;
14497 if (consteval_p)
14499 error_at (DECL_SOURCE_LOCATION (decl),
14500 "a variable cannot be declared %<consteval%>");
14501 consteval_p = false;
14504 if (inlinep)
14505 mark_inline_variable (decl, declspecs->locations[ds_inline]);
14506 if (innermost_code == cdk_decomp)
14508 gcc_assert (declarator && declarator->kind == cdk_decomp);
14509 DECL_SOURCE_LOCATION (decl) = id_loc;
14510 DECL_ARTIFICIAL (decl) = 1;
14511 fit_decomposition_lang_decl (decl, NULL_TREE);
14515 if (VAR_P (decl) && !initialized)
14516 if (tree auto_node = type_uses_auto (type))
14517 if (!CLASS_PLACEHOLDER_TEMPLATE (auto_node))
14519 location_t loc = declspecs->locations[ds_type_spec];
14520 error_at (loc, "declaration of %q#D has no initializer", decl);
14521 TREE_TYPE (decl) = error_mark_node;
14524 if (storage_class == sc_extern && initialized && !funcdef_flag)
14526 if (toplevel_bindings_p ())
14528 /* It's common practice (and completely valid) to have a const
14529 be initialized and declared extern. */
14530 if (!(type_quals & TYPE_QUAL_CONST))
14531 warning_at (DECL_SOURCE_LOCATION (decl), 0,
14532 "%qs initialized and declared %<extern%>", name);
14534 else
14536 error_at (DECL_SOURCE_LOCATION (decl),
14537 "%qs has both %<extern%> and initializer", name);
14538 return error_mark_node;
14542 /* Record `register' declaration for warnings on &
14543 and in case doing stupid register allocation. */
14545 if (storage_class == sc_register)
14547 DECL_REGISTER (decl) = 1;
14548 /* Warn about register storage specifiers on PARM_DECLs. */
14549 if (TREE_CODE (decl) == PARM_DECL)
14551 if (cxx_dialect >= cxx17)
14552 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
14553 "ISO C++17 does not allow %<register%> storage "
14554 "class specifier");
14555 else
14556 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
14557 "%<register%> storage class specifier used");
14560 else if (storage_class == sc_extern)
14561 DECL_THIS_EXTERN (decl) = 1;
14562 else if (storage_class == sc_static)
14563 DECL_THIS_STATIC (decl) = 1;
14565 if (VAR_P (decl))
14567 /* Set constexpr flag on vars (functions got it in grokfndecl). */
14568 if (constexpr_p)
14569 DECL_DECLARED_CONSTEXPR_P (decl) = true;
14570 /* And the constinit flag (which only applies to variables). */
14571 else if (constinit_p)
14572 DECL_DECLARED_CONSTINIT_P (decl) = true;
14575 /* Record constancy and volatility on the DECL itself . There's
14576 no need to do this when processing a template; we'll do this
14577 for the instantiated declaration based on the type of DECL. */
14578 if (!processing_template_decl)
14579 cp_apply_type_quals_to_decl (type_quals, decl);
14581 return decl;
14585 /* Subroutine of start_function. Ensure that each of the parameter
14586 types (as listed in PARMS) is complete, as is required for a
14587 function definition. */
14589 static void
14590 require_complete_types_for_parms (tree parms)
14592 for (; parms; parms = DECL_CHAIN (parms))
14594 if (dependent_type_p (TREE_TYPE (parms)))
14595 continue;
14596 if (!VOID_TYPE_P (TREE_TYPE (parms))
14597 && complete_type_or_else (TREE_TYPE (parms), parms))
14599 relayout_decl (parms);
14600 DECL_ARG_TYPE (parms) = type_passed_as (TREE_TYPE (parms));
14602 abstract_virtuals_error (parms, TREE_TYPE (parms));
14603 maybe_warn_parm_abi (TREE_TYPE (parms),
14604 DECL_SOURCE_LOCATION (parms));
14606 else
14607 /* grokparms or complete_type_or_else will have already issued
14608 an error. */
14609 TREE_TYPE (parms) = error_mark_node;
14613 /* Returns nonzero if T is a local variable. */
14616 local_variable_p (const_tree t)
14618 if ((VAR_P (t)
14619 && (DECL_LOCAL_DECL_P (t)
14620 || !DECL_CONTEXT (t)
14621 || TREE_CODE (DECL_CONTEXT (t)) == FUNCTION_DECL))
14622 || (TREE_CODE (t) == PARM_DECL))
14623 return 1;
14625 return 0;
14628 /* Like local_variable_p, but suitable for use as a tree-walking
14629 function. */
14631 static tree
14632 local_variable_p_walkfn (tree *tp, int *walk_subtrees,
14633 void * /*data*/)
14635 if (unevaluated_p (TREE_CODE (*tp)))
14637 /* DR 2082 permits local variables in unevaluated contexts
14638 within a default argument. */
14639 *walk_subtrees = 0;
14640 return NULL_TREE;
14643 if (local_variable_p (*tp)
14644 && (!DECL_ARTIFICIAL (*tp) || DECL_NAME (*tp) == this_identifier))
14645 return *tp;
14646 else if (TYPE_P (*tp))
14647 *walk_subtrees = 0;
14649 return NULL_TREE;
14652 /* Check that ARG, which is a default-argument expression for a
14653 parameter DECL, is valid. Returns ARG, or ERROR_MARK_NODE, if
14654 something goes wrong. DECL may also be a _TYPE node, rather than a
14655 DECL, if there is no DECL available. */
14657 tree
14658 check_default_argument (tree decl, tree arg, tsubst_flags_t complain)
14660 tree var;
14661 tree decl_type;
14663 if (TREE_CODE (arg) == DEFERRED_PARSE)
14664 /* We get a DEFERRED_PARSE when looking at an in-class declaration
14665 with a default argument. Ignore the argument for now; we'll
14666 deal with it after the class is complete. */
14667 return arg;
14669 if (TYPE_P (decl))
14671 decl_type = decl;
14672 decl = NULL_TREE;
14674 else
14675 decl_type = TREE_TYPE (decl);
14677 if (arg == error_mark_node
14678 || decl == error_mark_node
14679 || TREE_TYPE (arg) == error_mark_node
14680 || decl_type == error_mark_node)
14681 /* Something already went wrong. There's no need to check
14682 further. */
14683 return error_mark_node;
14685 /* [dcl.fct.default]
14687 A default argument expression is implicitly converted to the
14688 parameter type. */
14689 ++cp_unevaluated_operand;
14690 /* Avoid digest_init clobbering the initializer. */
14691 tree carg = BRACE_ENCLOSED_INITIALIZER_P (arg) ? unshare_expr (arg): arg;
14692 perform_implicit_conversion_flags (decl_type, carg, complain,
14693 LOOKUP_IMPLICIT);
14694 --cp_unevaluated_operand;
14696 /* Avoid redundant -Wzero-as-null-pointer-constant warnings at
14697 the call sites. */
14698 if (TYPE_PTR_OR_PTRMEM_P (decl_type)
14699 && null_ptr_cst_p (arg)
14700 /* Don't lose side-effects as in PR90473. */
14701 && !TREE_SIDE_EFFECTS (arg))
14702 return nullptr_node;
14704 /* [dcl.fct.default]
14706 Local variables shall not be used in default argument
14707 expressions.
14709 The keyword `this' shall not be used in a default argument of a
14710 member function. */
14711 var = cp_walk_tree_without_duplicates (&arg, local_variable_p_walkfn, NULL);
14712 if (var)
14714 if (complain & tf_warning_or_error)
14716 if (DECL_NAME (var) == this_identifier)
14717 permerror (input_location, "default argument %qE uses %qD",
14718 arg, var);
14719 else
14720 error ("default argument %qE uses local variable %qD", arg, var);
14722 return error_mark_node;
14725 /* All is well. */
14726 return arg;
14729 /* Returns a deprecated type used within TYPE, or NULL_TREE if none. */
14731 static tree
14732 type_is_deprecated (tree type)
14734 enum tree_code code;
14735 if (TREE_DEPRECATED (type))
14736 return type;
14737 if (TYPE_NAME (type))
14739 if (TREE_DEPRECATED (TYPE_NAME (type)))
14740 return type;
14741 else
14743 cp_warn_deprecated_use_scopes (CP_DECL_CONTEXT (TYPE_NAME (type)));
14744 return NULL_TREE;
14748 /* Do warn about using typedefs to a deprecated class. */
14749 if (OVERLOAD_TYPE_P (type) && type != TYPE_MAIN_VARIANT (type))
14750 return type_is_deprecated (TYPE_MAIN_VARIANT (type));
14752 code = TREE_CODE (type);
14754 if (code == POINTER_TYPE || code == REFERENCE_TYPE
14755 || code == OFFSET_TYPE || code == FUNCTION_TYPE
14756 || code == METHOD_TYPE || code == ARRAY_TYPE)
14757 return type_is_deprecated (TREE_TYPE (type));
14759 if (TYPE_PTRMEMFUNC_P (type))
14760 return type_is_deprecated
14761 (TREE_TYPE (TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (type))));
14763 return NULL_TREE;
14766 /* Returns an unavailable type used within TYPE, or NULL_TREE if none. */
14768 static tree
14769 type_is_unavailable (tree type)
14771 enum tree_code code;
14772 if (TREE_UNAVAILABLE (type))
14773 return type;
14774 if (TYPE_NAME (type))
14776 if (TREE_UNAVAILABLE (TYPE_NAME (type)))
14777 return type;
14778 else
14780 cp_warn_deprecated_use_scopes (CP_DECL_CONTEXT (TYPE_NAME (type)));
14781 return NULL_TREE;
14785 /* Do warn about using typedefs to a deprecated class. */
14786 if (OVERLOAD_TYPE_P (type) && type != TYPE_MAIN_VARIANT (type))
14787 return type_is_deprecated (TYPE_MAIN_VARIANT (type));
14789 code = TREE_CODE (type);
14791 if (code == POINTER_TYPE || code == REFERENCE_TYPE
14792 || code == OFFSET_TYPE || code == FUNCTION_TYPE
14793 || code == METHOD_TYPE || code == ARRAY_TYPE)
14794 return type_is_unavailable (TREE_TYPE (type));
14796 if (TYPE_PTRMEMFUNC_P (type))
14797 return type_is_unavailable
14798 (TREE_TYPE (TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (type))));
14800 return NULL_TREE;
14803 /* Decode the list of parameter types for a function type.
14804 Given the list of things declared inside the parens,
14805 return a list of types.
14807 If this parameter does not end with an ellipsis, we append
14808 void_list_node.
14810 *PARMS is set to the chain of PARM_DECLs created. */
14812 tree
14813 grokparms (tree parmlist, tree *parms)
14815 tree result = NULL_TREE;
14816 tree decls = NULL_TREE;
14817 tree parm;
14818 int any_error = 0;
14820 for (parm = parmlist; parm != NULL_TREE; parm = TREE_CHAIN (parm))
14822 tree type = NULL_TREE;
14823 tree init = TREE_PURPOSE (parm);
14824 tree decl = TREE_VALUE (parm);
14826 if (parm == void_list_node || parm == explicit_void_list_node)
14827 break;
14829 if (! decl || TREE_TYPE (decl) == error_mark_node)
14831 any_error = 1;
14832 continue;
14835 type = TREE_TYPE (decl);
14836 if (VOID_TYPE_P (type))
14838 if (same_type_p (type, void_type_node)
14839 && !init
14840 && !DECL_NAME (decl) && !result
14841 && TREE_CHAIN (parm) == void_list_node)
14842 /* DR 577: A parameter list consisting of a single
14843 unnamed parameter of non-dependent type 'void'. */
14844 break;
14845 else if (cv_qualified_p (type))
14846 error_at (DECL_SOURCE_LOCATION (decl),
14847 "invalid use of cv-qualified type %qT in "
14848 "parameter declaration", type);
14849 else
14850 error_at (DECL_SOURCE_LOCATION (decl),
14851 "invalid use of type %<void%> in parameter "
14852 "declaration");
14853 /* It's not a good idea to actually create parameters of
14854 type `void'; other parts of the compiler assume that a
14855 void type terminates the parameter list. */
14856 type = error_mark_node;
14857 TREE_TYPE (decl) = error_mark_node;
14860 if (type != error_mark_node)
14862 if (deprecated_state != UNAVAILABLE_DEPRECATED_SUPPRESS)
14864 tree unavailtype = type_is_unavailable (type);
14865 if (unavailtype)
14866 cp_handle_deprecated_or_unavailable (unavailtype);
14868 if (deprecated_state != DEPRECATED_SUPPRESS
14869 && deprecated_state != UNAVAILABLE_DEPRECATED_SUPPRESS)
14871 tree deptype = type_is_deprecated (type);
14872 if (deptype)
14873 cp_handle_deprecated_or_unavailable (deptype);
14876 /* [dcl.fct] "A parameter with volatile-qualified type is
14877 deprecated." */
14878 if (CP_TYPE_VOLATILE_P (type))
14879 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wvolatile,
14880 "%<volatile%>-qualified parameter is "
14881 "deprecated");
14883 /* Top-level qualifiers on the parameters are
14884 ignored for function types. */
14885 type = cp_build_qualified_type (type, 0);
14886 if (TREE_CODE (type) == METHOD_TYPE)
14888 error ("parameter %qD invalidly declared method type", decl);
14889 type = build_pointer_type (type);
14890 TREE_TYPE (decl) = type;
14892 else if (cxx_dialect < cxx17 && INDIRECT_TYPE_P (type))
14894 /* Before C++17 DR 393:
14895 [dcl.fct]/6, parameter types cannot contain pointers
14896 (references) to arrays of unknown bound. */
14897 tree t = TREE_TYPE (type);
14898 int ptr = TYPE_PTR_P (type);
14900 while (1)
14902 if (TYPE_PTR_P (t))
14903 ptr = 1;
14904 else if (TREE_CODE (t) != ARRAY_TYPE)
14905 break;
14906 else if (!TYPE_DOMAIN (t))
14907 break;
14908 t = TREE_TYPE (t);
14910 if (TREE_CODE (t) == ARRAY_TYPE)
14911 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wpedantic,
14913 ? G_("parameter %qD includes pointer to array of "
14914 "unknown bound %qT")
14915 : G_("parameter %qD includes reference to array of "
14916 "unknown bound %qT"),
14917 decl, t);
14920 if (init && !processing_template_decl)
14921 init = check_default_argument (decl, init, tf_warning_or_error);
14924 DECL_CHAIN (decl) = decls;
14925 decls = decl;
14926 result = tree_cons (init, type, result);
14928 decls = nreverse (decls);
14929 result = nreverse (result);
14930 if (parm)
14931 result = chainon (result, void_list_node);
14932 *parms = decls;
14933 if (any_error)
14934 result = NULL_TREE;
14936 if (any_error)
14937 /* We had parm errors, recover by giving the function (...) type. */
14938 result = NULL_TREE;
14940 return result;
14944 /* D is a constructor or overloaded `operator='.
14946 Let T be the class in which D is declared. Then, this function
14947 returns:
14949 -1 if D's is an ill-formed constructor or copy assignment operator
14950 whose first parameter is of type `T'.
14951 0 if D is not a copy constructor or copy assignment
14952 operator.
14953 1 if D is a copy constructor or copy assignment operator whose
14954 first parameter is a reference to non-const qualified T.
14955 2 if D is a copy constructor or copy assignment operator whose
14956 first parameter is a reference to const qualified T.
14958 This function can be used as a predicate. Positive values indicate
14959 a copy constructor and nonzero values indicate a copy assignment
14960 operator. */
14963 copy_fn_p (const_tree d)
14965 tree args;
14966 tree arg_type;
14967 int result = 1;
14969 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
14971 if (TREE_CODE (d) == TEMPLATE_DECL
14972 || (DECL_TEMPLATE_INFO (d)
14973 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
14974 /* Instantiations of template member functions are never copy
14975 functions. Note that member functions of templated classes are
14976 represented as template functions internally, and we must
14977 accept those as copy functions. */
14978 return 0;
14980 if (!DECL_CONSTRUCTOR_P (d)
14981 && DECL_NAME (d) != assign_op_identifier)
14982 return 0;
14984 args = FUNCTION_FIRST_USER_PARMTYPE (d);
14985 if (!args)
14986 return 0;
14988 arg_type = TREE_VALUE (args);
14989 if (arg_type == error_mark_node)
14990 return 0;
14992 if (TYPE_MAIN_VARIANT (arg_type) == DECL_CONTEXT (d))
14994 /* Pass by value copy assignment operator. */
14995 result = -1;
14997 else if (TYPE_REF_P (arg_type)
14998 && !TYPE_REF_IS_RVALUE (arg_type)
14999 && TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)) == DECL_CONTEXT (d))
15001 if (CP_TYPE_CONST_P (TREE_TYPE (arg_type)))
15002 result = 2;
15004 else
15005 return 0;
15007 args = TREE_CHAIN (args);
15009 if (args && args != void_list_node && !TREE_PURPOSE (args))
15010 /* There are more non-optional args. */
15011 return 0;
15013 return result;
15016 /* D is a constructor or overloaded `operator='.
15018 Let T be the class in which D is declared. Then, this function
15019 returns true when D is a move constructor or move assignment
15020 operator, false otherwise. */
15022 bool
15023 move_fn_p (const_tree d)
15025 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
15027 if (cxx_dialect == cxx98)
15028 /* There are no move constructors if we are in C++98 mode. */
15029 return false;
15031 if (TREE_CODE (d) == TEMPLATE_DECL
15032 || (DECL_TEMPLATE_INFO (d)
15033 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
15034 /* Instantiations of template member functions are never move
15035 functions. Note that member functions of templated classes are
15036 represented as template functions internally, and we must
15037 accept those as move functions. */
15038 return 0;
15040 return move_signature_fn_p (d);
15043 /* D is a constructor or overloaded `operator='.
15045 Then, this function returns true when D has the same signature as a move
15046 constructor or move assignment operator (because either it is such a
15047 ctor/op= or it is a template specialization with the same signature),
15048 false otherwise. */
15050 bool
15051 move_signature_fn_p (const_tree d)
15053 tree args;
15054 tree arg_type;
15055 bool result = false;
15057 if (!DECL_CONSTRUCTOR_P (d)
15058 && DECL_NAME (d) != assign_op_identifier)
15059 return 0;
15061 args = FUNCTION_FIRST_USER_PARMTYPE (d);
15062 if (!args)
15063 return 0;
15065 arg_type = TREE_VALUE (args);
15066 if (arg_type == error_mark_node)
15067 return 0;
15069 if (TYPE_REF_P (arg_type)
15070 && TYPE_REF_IS_RVALUE (arg_type)
15071 && same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)),
15072 DECL_CONTEXT (d)))
15073 result = true;
15075 args = TREE_CHAIN (args);
15077 if (args && args != void_list_node && !TREE_PURPOSE (args))
15078 /* There are more non-optional args. */
15079 return false;
15081 return result;
15084 /* Remember any special properties of member function DECL. */
15086 void
15087 grok_special_member_properties (tree decl)
15089 tree class_type;
15091 if (TREE_CODE (decl) == USING_DECL
15092 || !DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
15093 return;
15095 class_type = DECL_CONTEXT (decl);
15096 if (IDENTIFIER_CTOR_P (DECL_NAME (decl)))
15098 int ctor = copy_fn_p (decl);
15100 if (!DECL_ARTIFICIAL (decl))
15101 TYPE_HAS_USER_CONSTRUCTOR (class_type) = 1;
15103 if (ctor > 0)
15105 /* [class.copy]
15107 A non-template constructor for class X is a copy
15108 constructor if its first parameter is of type X&, const
15109 X&, volatile X& or const volatile X&, and either there
15110 are no other parameters or else all other parameters have
15111 default arguments. */
15112 TYPE_HAS_COPY_CTOR (class_type) = 1;
15113 if (ctor > 1)
15114 TYPE_HAS_CONST_COPY_CTOR (class_type) = 1;
15117 if (sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (decl)))
15118 TYPE_HAS_DEFAULT_CONSTRUCTOR (class_type) = 1;
15120 if (is_list_ctor (decl))
15121 TYPE_HAS_LIST_CTOR (class_type) = 1;
15123 if (maybe_constexpr_fn (decl)
15124 && !ctor && !move_fn_p (decl))
15125 TYPE_HAS_CONSTEXPR_CTOR (class_type) = 1;
15127 else if (DECL_NAME (decl) == assign_op_identifier)
15129 /* [class.copy]
15131 A non-template assignment operator for class X is a copy
15132 assignment operator if its parameter is of type X, X&, const
15133 X&, volatile X& or const volatile X&. */
15135 int assop = copy_fn_p (decl);
15137 if (assop)
15139 TYPE_HAS_COPY_ASSIGN (class_type) = 1;
15140 if (assop != 1)
15141 TYPE_HAS_CONST_COPY_ASSIGN (class_type) = 1;
15144 else if (IDENTIFIER_CONV_OP_P (DECL_NAME (decl)))
15145 TYPE_HAS_CONVERSION (class_type) = true;
15147 /* Destructors are handled in check_methods. */
15150 /* Check a constructor DECL has the correct form. Complains
15151 if the class has a constructor of the form X(X). */
15153 bool
15154 grok_ctor_properties (const_tree ctype, const_tree decl)
15156 int ctor_parm = copy_fn_p (decl);
15158 if (ctor_parm < 0)
15160 /* [class.copy]
15162 A declaration of a constructor for a class X is ill-formed if
15163 its first parameter is of type (optionally cv-qualified) X
15164 and either there are no other parameters or else all other
15165 parameters have default arguments.
15167 We *don't* complain about member template instantiations that
15168 have this form, though; they can occur as we try to decide
15169 what constructor to use during overload resolution. Since
15170 overload resolution will never prefer such a constructor to
15171 the non-template copy constructor (which is either explicitly
15172 or implicitly defined), there's no need to worry about their
15173 existence. Theoretically, they should never even be
15174 instantiated, but that's hard to forestall. */
15175 error_at (DECL_SOURCE_LOCATION (decl),
15176 "invalid constructor; you probably meant %<%T (const %T&)%>",
15177 ctype, ctype);
15178 return false;
15181 return true;
15184 /* DECL is a declaration for an overloaded or conversion operator. If
15185 COMPLAIN is true, errors are issued for invalid declarations. */
15187 bool
15188 grok_op_properties (tree decl, bool complain)
15190 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
15191 bool methodp = TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE;
15192 tree name = DECL_NAME (decl);
15193 location_t loc = DECL_SOURCE_LOCATION (decl);
15195 tree class_type = DECL_CONTEXT (decl);
15196 if (class_type && !CLASS_TYPE_P (class_type))
15197 class_type = NULL_TREE;
15199 tree_code operator_code;
15200 unsigned op_flags;
15201 if (IDENTIFIER_CONV_OP_P (name))
15203 /* Conversion operators are TYPE_EXPR for the purposes of this
15204 function. */
15205 operator_code = TYPE_EXPR;
15206 op_flags = OVL_OP_FLAG_UNARY;
15208 else
15210 const ovl_op_info_t *ovl_op = IDENTIFIER_OVL_OP_INFO (name);
15212 operator_code = ovl_op->tree_code;
15213 op_flags = ovl_op->flags;
15214 gcc_checking_assert (operator_code != ERROR_MARK);
15215 DECL_OVERLOADED_OPERATOR_CODE_RAW (decl) = ovl_op->ovl_op_code;
15218 if (op_flags & OVL_OP_FLAG_ALLOC)
15220 /* operator new and operator delete are quite special. */
15221 if (class_type)
15222 switch (op_flags)
15224 case OVL_OP_FLAG_ALLOC:
15225 TYPE_HAS_NEW_OPERATOR (class_type) = 1;
15226 break;
15228 case OVL_OP_FLAG_ALLOC | OVL_OP_FLAG_DELETE:
15229 TYPE_GETS_DELETE (class_type) |= 1;
15230 break;
15232 case OVL_OP_FLAG_ALLOC | OVL_OP_FLAG_VEC:
15233 TYPE_HAS_ARRAY_NEW_OPERATOR (class_type) = 1;
15234 break;
15236 case OVL_OP_FLAG_ALLOC | OVL_OP_FLAG_DELETE | OVL_OP_FLAG_VEC:
15237 TYPE_GETS_DELETE (class_type) |= 2;
15238 break;
15240 default:
15241 gcc_unreachable ();
15244 /* [basic.std.dynamic.allocation]/1:
15246 A program is ill-formed if an allocation function is declared
15247 in a namespace scope other than global scope or declared
15248 static in global scope.
15250 The same also holds true for deallocation functions. */
15251 if (DECL_NAMESPACE_SCOPE_P (decl))
15253 if (CP_DECL_CONTEXT (decl) != global_namespace)
15255 error_at (loc, "%qD may not be declared within a namespace",
15256 decl);
15257 return false;
15260 if (!TREE_PUBLIC (decl))
15262 error_at (loc, "%qD may not be declared as static", decl);
15263 return false;
15267 if (op_flags & OVL_OP_FLAG_DELETE)
15269 DECL_SET_IS_OPERATOR_DELETE (decl, true);
15270 coerce_delete_type (decl, loc);
15272 else
15274 DECL_SET_IS_OPERATOR_NEW (decl, true);
15275 TREE_TYPE (decl) = coerce_new_type (TREE_TYPE (decl), loc);
15278 return true;
15281 /* An operator function must either be a non-static member function
15282 or have at least one parameter of a class, a reference to a class,
15283 an enumeration, or a reference to an enumeration. 13.4.0.6 */
15284 if (! methodp || DECL_STATIC_FUNCTION_P (decl))
15286 if (operator_code == TYPE_EXPR
15287 || operator_code == CALL_EXPR
15288 || operator_code == COMPONENT_REF
15289 || operator_code == ARRAY_REF
15290 || operator_code == NOP_EXPR)
15292 error_at (loc, "%qD must be a non-static member function", decl);
15293 return false;
15296 if (DECL_STATIC_FUNCTION_P (decl))
15298 error_at (loc, "%qD must be either a non-static member "
15299 "function or a non-member function", decl);
15300 return false;
15303 for (tree arg = argtypes; ; arg = TREE_CHAIN (arg))
15305 if (!arg || arg == void_list_node)
15307 if (complain)
15308 error_at(loc, "%qD must have an argument of class or "
15309 "enumerated type", decl);
15310 return false;
15313 tree type = non_reference (TREE_VALUE (arg));
15314 if (type == error_mark_node)
15315 return false;
15317 /* MAYBE_CLASS_TYPE_P, rather than CLASS_TYPE_P, is used
15318 because these checks are performed even on template
15319 functions. */
15320 if (MAYBE_CLASS_TYPE_P (type)
15321 || TREE_CODE (type) == ENUMERAL_TYPE)
15322 break;
15326 if (operator_code == CALL_EXPR)
15327 /* There are no further restrictions on the arguments to an overloaded
15328 "operator ()". */
15329 return true;
15331 if (operator_code == COND_EXPR)
15333 /* 13.4.0.3 */
15334 error_at (loc, "ISO C++ prohibits overloading %<operator ?:%>");
15335 return false;
15338 /* Count the number of arguments and check for ellipsis. */
15339 int arity = 0;
15340 for (tree arg = argtypes; arg != void_list_node; arg = TREE_CHAIN (arg))
15342 if (!arg)
15344 /* Variadic. */
15345 if (operator_code == ARRAY_REF && cxx_dialect >= cxx23)
15346 break;
15348 error_at (loc, "%qD must not have variable number of arguments",
15349 decl);
15350 return false;
15352 ++arity;
15355 /* Verify correct number of arguments. */
15356 switch (op_flags)
15358 case OVL_OP_FLAG_AMBIARY:
15359 if (arity == 1)
15361 /* We have a unary instance of an ambi-ary op. Remap to the
15362 unary one. */
15363 unsigned alt = ovl_op_alternate[ovl_op_mapping [operator_code]];
15364 const ovl_op_info_t *ovl_op = &ovl_op_info[false][alt];
15365 gcc_checking_assert (ovl_op->flags == OVL_OP_FLAG_UNARY);
15366 operator_code = ovl_op->tree_code;
15367 DECL_OVERLOADED_OPERATOR_CODE_RAW (decl) = ovl_op->ovl_op_code;
15369 else if (arity != 2)
15371 /* This was an ambiguous operator but is invalid. */
15372 error_at (loc,
15373 methodp
15374 ? G_("%qD must have either zero or one argument")
15375 : G_("%qD must have either one or two arguments"), decl);
15376 return false;
15378 else if ((operator_code == POSTINCREMENT_EXPR
15379 || operator_code == POSTDECREMENT_EXPR)
15380 && ! processing_template_decl
15381 /* x++ and x--'s second argument must be an int. */
15382 && ! same_type_p (TREE_VALUE (TREE_CHAIN (argtypes)),
15383 integer_type_node))
15385 error_at (loc,
15386 methodp
15387 ? G_("postfix %qD must have %<int%> as its argument")
15388 : G_("postfix %qD must have %<int%> as its second argument"),
15389 decl);
15390 return false;
15392 break;
15394 case OVL_OP_FLAG_UNARY:
15395 if (arity != 1)
15397 error_at (loc,
15398 methodp
15399 ? G_("%qD must have no arguments")
15400 : G_("%qD must have exactly one argument"), decl);
15401 return false;
15403 break;
15405 case OVL_OP_FLAG_BINARY:
15406 if (arity != 2)
15408 if (operator_code == ARRAY_REF && cxx_dialect >= cxx23)
15409 break;
15410 error_at (loc,
15411 methodp
15412 ? G_("%qD must have exactly one argument")
15413 : G_("%qD must have exactly two arguments"), decl);
15414 return false;
15416 break;
15418 default:
15419 gcc_unreachable ();
15422 /* There can be no default arguments. */
15423 for (tree arg = argtypes; arg && arg != void_list_node;
15424 arg = TREE_CHAIN (arg))
15425 if (TREE_PURPOSE (arg))
15427 TREE_PURPOSE (arg) = NULL_TREE;
15428 error_at (loc, "%qD cannot have default arguments", decl);
15429 return false;
15432 /* At this point the declaration is well-formed. It may not be
15433 sensible though. */
15435 /* Check member function warnings only on the in-class declaration.
15436 There's no point warning on an out-of-class definition. */
15437 if (class_type && class_type != current_class_type)
15438 return true;
15440 /* Warn about conversion operators that will never be used. */
15441 if (IDENTIFIER_CONV_OP_P (name)
15442 && ! DECL_TEMPLATE_INFO (decl)
15443 && warn_class_conversion)
15445 tree t = TREE_TYPE (name);
15446 int ref = TYPE_REF_P (t);
15448 if (ref)
15449 t = TYPE_MAIN_VARIANT (TREE_TYPE (t));
15451 if (VOID_TYPE_P (t))
15452 warning_at (loc, OPT_Wclass_conversion, "converting %qT to %<void%> "
15453 "will never use a type conversion operator", class_type);
15454 else if (class_type)
15456 if (same_type_ignoring_top_level_qualifiers_p (t, class_type))
15457 warning_at (loc, OPT_Wclass_conversion,
15459 ? G_("converting %qT to a reference to the same type "
15460 "will never use a type conversion operator")
15461 : G_("converting %qT to the same type "
15462 "will never use a type conversion operator"),
15463 class_type);
15464 /* Don't force t to be complete here. */
15465 else if (MAYBE_CLASS_TYPE_P (t)
15466 && COMPLETE_TYPE_P (t)
15467 && DERIVED_FROM_P (t, class_type))
15468 warning_at (loc, OPT_Wclass_conversion,
15470 ? G_("converting %qT to a reference to a base class "
15471 "%qT will never use a type conversion operator")
15472 : G_("converting %qT to a base class %qT "
15473 "will never use a type conversion operator"),
15474 class_type, t);
15478 if (!warn_ecpp)
15479 return true;
15481 /* Effective C++ rules below. */
15483 /* More Effective C++ rule 7. */
15484 if (operator_code == TRUTH_ANDIF_EXPR
15485 || operator_code == TRUTH_ORIF_EXPR
15486 || operator_code == COMPOUND_EXPR)
15487 warning_at (loc, OPT_Weffc__,
15488 "user-defined %qD always evaluates both arguments", decl);
15490 /* More Effective C++ rule 6. */
15491 if (operator_code == POSTINCREMENT_EXPR
15492 || operator_code == POSTDECREMENT_EXPR
15493 || operator_code == PREINCREMENT_EXPR
15494 || operator_code == PREDECREMENT_EXPR)
15496 tree arg = TREE_VALUE (argtypes);
15497 tree ret = TREE_TYPE (TREE_TYPE (decl));
15498 if (methodp || TYPE_REF_P (arg))
15499 arg = TREE_TYPE (arg);
15500 arg = TYPE_MAIN_VARIANT (arg);
15502 if (operator_code == PREINCREMENT_EXPR
15503 || operator_code == PREDECREMENT_EXPR)
15505 if (!TYPE_REF_P (ret)
15506 || !same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (ret)), arg))
15507 warning_at (loc, OPT_Weffc__, "prefix %qD should return %qT", decl,
15508 build_reference_type (arg));
15510 else
15512 if (!same_type_p (TYPE_MAIN_VARIANT (ret), arg))
15513 warning_at (loc, OPT_Weffc__,
15514 "postfix %qD should return %qT", decl, arg);
15518 /* Effective C++ rule 23. */
15519 if (!DECL_ASSIGNMENT_OPERATOR_P (decl)
15520 && (operator_code == PLUS_EXPR
15521 || operator_code == MINUS_EXPR
15522 || operator_code == TRUNC_DIV_EXPR
15523 || operator_code == MULT_EXPR
15524 || operator_code == TRUNC_MOD_EXPR)
15525 && TYPE_REF_P (TREE_TYPE (TREE_TYPE (decl))))
15526 warning_at (loc, OPT_Weffc__, "%qD should return by value", decl);
15528 return true;
15531 /* Return a string giving the keyword associate with CODE. */
15533 static const char *
15534 tag_name (enum tag_types code)
15536 switch (code)
15538 case record_type:
15539 return "struct";
15540 case class_type:
15541 return "class";
15542 case union_type:
15543 return "union";
15544 case enum_type:
15545 return "enum";
15546 case typename_type:
15547 return "typename";
15548 default:
15549 gcc_unreachable ();
15553 /* Name lookup in an elaborated-type-specifier (after the keyword
15554 indicated by TAG_CODE) has found the TYPE_DECL DECL. If the
15555 elaborated-type-specifier is invalid, issue a diagnostic and return
15556 error_mark_node; otherwise, return the *_TYPE to which it referred.
15557 If ALLOW_TEMPLATE_P is true, TYPE may be a class template. */
15559 tree
15560 check_elaborated_type_specifier (enum tag_types tag_code,
15561 tree decl,
15562 bool allow_template_p)
15564 tree type;
15566 /* In the case of:
15568 struct S { struct S *p; };
15570 name lookup will find the TYPE_DECL for the implicit "S::S"
15571 typedef. Adjust for that here. */
15572 if (DECL_SELF_REFERENCE_P (decl))
15573 decl = TYPE_NAME (TREE_TYPE (decl));
15575 type = TREE_TYPE (decl);
15577 /* Check TEMPLATE_TYPE_PARM first because DECL_IMPLICIT_TYPEDEF_P
15578 is false for this case as well. */
15579 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
15581 error ("using template type parameter %qT after %qs",
15582 type, tag_name (tag_code));
15583 return error_mark_node;
15585 /* Accept template template parameters. */
15586 else if (allow_template_p
15587 && (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM
15588 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM))
15590 /* [dcl.type.elab]
15592 If the identifier resolves to a typedef-name or the
15593 simple-template-id resolves to an alias template
15594 specialization, the elaborated-type-specifier is ill-formed.
15596 In other words, the only legitimate declaration to use in the
15597 elaborated type specifier is the implicit typedef created when
15598 the type is declared. */
15599 else if (!DECL_IMPLICIT_TYPEDEF_P (decl)
15600 && !DECL_SELF_REFERENCE_P (decl)
15601 && tag_code != typename_type)
15603 if (alias_template_specialization_p (type, nt_opaque))
15604 error ("using alias template specialization %qT after %qs",
15605 type, tag_name (tag_code));
15606 else
15607 error ("using typedef-name %qD after %qs", decl, tag_name (tag_code));
15608 inform (DECL_SOURCE_LOCATION (decl),
15609 "%qD has a previous declaration here", decl);
15610 return error_mark_node;
15612 else if (TREE_CODE (type) != RECORD_TYPE
15613 && TREE_CODE (type) != UNION_TYPE
15614 && tag_code != enum_type
15615 && tag_code != typename_type)
15617 error ("%qT referred to as %qs", type, tag_name (tag_code));
15618 inform (location_of (type), "%qT has a previous declaration here", type);
15619 return error_mark_node;
15621 else if (TREE_CODE (type) != ENUMERAL_TYPE
15622 && tag_code == enum_type)
15624 error ("%qT referred to as enum", type);
15625 inform (location_of (type), "%qT has a previous declaration here", type);
15626 return error_mark_node;
15628 else if (!allow_template_p
15629 && TREE_CODE (type) == RECORD_TYPE
15630 && CLASSTYPE_IS_TEMPLATE (type))
15632 /* If a class template appears as elaborated type specifier
15633 without a template header such as:
15635 template <class T> class C {};
15636 void f(class C); // No template header here
15638 then the required template argument is missing. */
15639 error ("template argument required for %<%s %T%>",
15640 tag_name (tag_code),
15641 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type)));
15642 return error_mark_node;
15645 return type;
15648 /* Lookup NAME of an elaborated type specifier according to SCOPE and
15649 issue diagnostics if necessary. Return *_TYPE node upon success,
15650 NULL_TREE when the NAME is not found, and ERROR_MARK_NODE for type
15651 error. */
15653 static tree
15654 lookup_and_check_tag (enum tag_types tag_code, tree name,
15655 TAG_how how, bool template_header_p)
15657 tree decl;
15658 if (how == TAG_how::GLOBAL)
15660 /* First try ordinary name lookup, ignoring hidden class name
15661 injected via friend declaration. */
15662 decl = lookup_name (name, LOOK_want::TYPE);
15663 decl = strip_using_decl (decl);
15664 /* If that fails, the name will be placed in the smallest
15665 non-class, non-function-prototype scope according to 3.3.1/5.
15666 We may already have a hidden name declared as friend in this
15667 scope. So lookup again but not ignoring hidden names.
15668 If we find one, that name will be made visible rather than
15669 creating a new tag. */
15670 if (!decl)
15671 decl = lookup_elaborated_type (name, TAG_how::INNERMOST_NON_CLASS);
15673 else
15674 decl = lookup_elaborated_type (name, how);
15676 if (!decl)
15677 /* We found nothing. */
15678 return NULL_TREE;
15680 if (TREE_CODE (decl) == TREE_LIST)
15682 error ("reference to %qD is ambiguous", name);
15683 print_candidates (decl);
15684 return error_mark_node;
15687 if (DECL_CLASS_TEMPLATE_P (decl)
15688 && !template_header_p
15689 && how == TAG_how::CURRENT_ONLY)
15691 error ("class template %qD redeclared as non-template", name);
15692 inform (location_of (decl), "previous declaration here");
15693 CLASSTYPE_ERRONEOUS (TREE_TYPE (decl)) = true;
15694 return error_mark_node;
15697 if (DECL_CLASS_TEMPLATE_P (decl)
15698 /* If scope is TAG_how::CURRENT_ONLY we're defining a class,
15699 so ignore a template template parameter. */
15700 || (how != TAG_how::CURRENT_ONLY && DECL_TEMPLATE_TEMPLATE_PARM_P (decl)))
15701 decl = DECL_TEMPLATE_RESULT (decl);
15703 if (TREE_CODE (decl) != TYPE_DECL)
15704 /* Found not-a-type. */
15705 return NULL_TREE;
15707 /* Look for invalid nested type:
15708 class C {
15709 class C {};
15710 }; */
15711 if (how == TAG_how::CURRENT_ONLY && DECL_SELF_REFERENCE_P (decl))
15713 error ("%qD has the same name as the class in which it is "
15714 "declared", decl);
15715 return error_mark_node;
15718 /* Two cases we need to consider when deciding if a class
15719 template is allowed as an elaborated type specifier:
15720 1. It is a self reference to its own class.
15721 2. It comes with a template header.
15723 For example:
15725 template <class T> class C {
15726 class C *c1; // DECL_SELF_REFERENCE_P is true
15727 class D;
15729 template <class U> class C; // template_header_p is true
15730 template <class T> class C<T>::D {
15731 class C *c2; // DECL_SELF_REFERENCE_P is true
15732 }; */
15734 tree t = check_elaborated_type_specifier (tag_code, decl,
15735 template_header_p
15736 | DECL_SELF_REFERENCE_P (decl));
15737 if (template_header_p && t && CLASS_TYPE_P (t)
15738 && (!CLASSTYPE_TEMPLATE_INFO (t)
15739 || (!PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t)))))
15741 error ("%qT is not a template", t);
15742 inform (location_of (t), "previous declaration here");
15743 if (TYPE_CLASS_SCOPE_P (t)
15744 && CLASSTYPE_TEMPLATE_INFO (TYPE_CONTEXT (t)))
15745 inform (input_location,
15746 "perhaps you want to explicitly add %<%T::%>",
15747 TYPE_CONTEXT (t));
15748 return error_mark_node;
15751 return t;
15754 /* Get the struct, enum or union (TAG_CODE says which) with tag NAME.
15755 Define the tag as a forward-reference if it is not defined.
15757 If a declaration is given, process it here, and report an error if
15758 multiple declarations are not identical.
15760 SCOPE is TS_CURRENT when this is also a definition. Only look in
15761 the current frame for the name (since C++ allows new names in any
15762 scope.) It is TS_WITHIN_ENCLOSING_NON_CLASS if this is a friend
15763 declaration. Only look beginning from the current scope outward up
15764 till the nearest non-class scope. Otherwise it is TS_GLOBAL.
15766 TEMPLATE_HEADER_P is true when this declaration is preceded by
15767 a set of template parameters. */
15769 tree
15770 xref_tag (enum tag_types tag_code, tree name,
15771 TAG_how how, bool template_header_p)
15773 enum tree_code code;
15774 tree context = NULL_TREE;
15776 auto_cond_timevar tv (TV_NAME_LOOKUP);
15778 gcc_assert (identifier_p (name));
15780 switch (tag_code)
15782 case record_type:
15783 case class_type:
15784 code = RECORD_TYPE;
15785 break;
15786 case union_type:
15787 code = UNION_TYPE;
15788 break;
15789 case enum_type:
15790 code = ENUMERAL_TYPE;
15791 break;
15792 default:
15793 gcc_unreachable ();
15796 /* In case of anonymous name, xref_tag is only called to
15797 make type node and push name. Name lookup is not required. */
15798 tree t = NULL_TREE;
15799 if (!IDENTIFIER_ANON_P (name))
15800 t = lookup_and_check_tag (tag_code, name, how, template_header_p);
15802 if (t == error_mark_node)
15803 return error_mark_node;
15805 if (how != TAG_how::CURRENT_ONLY && t && current_class_type
15806 && template_class_depth (current_class_type)
15807 && template_header_p)
15809 if (TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM)
15810 return t;
15812 /* Since HOW is not TAG_how::CURRENT_ONLY, we are not looking at
15813 a definition of this tag. Since, in addition, we are
15814 currently processing a (member) template declaration of a
15815 template class, we must be very careful; consider:
15817 template <class X> struct S1
15819 template <class U> struct S2
15821 template <class V> friend struct S1;
15824 Here, the S2::S1 declaration should not be confused with the
15825 outer declaration. In particular, the inner version should
15826 have a template parameter of level 2, not level 1.
15828 On the other hand, when presented with:
15830 template <class T> struct S1
15832 template <class U> struct S2 {};
15833 template <class U> friend struct S2;
15836 the friend must find S1::S2 eventually. We accomplish this
15837 by making sure that the new type we create to represent this
15838 declaration has the right TYPE_CONTEXT. */
15839 context = TYPE_CONTEXT (t);
15840 t = NULL_TREE;
15843 if (! t)
15845 /* If no such tag is yet defined, create a forward-reference node
15846 and record it as the "definition".
15847 When a real declaration of this type is found,
15848 the forward-reference will be altered into a real type. */
15849 if (code == ENUMERAL_TYPE)
15851 error ("use of enum %q#D without previous declaration", name);
15852 return error_mark_node;
15855 t = make_class_type (code);
15856 TYPE_CONTEXT (t) = context;
15857 if (IDENTIFIER_LAMBDA_P (name))
15858 /* Mark it as a lambda type right now. Our caller will
15859 correct the value. */
15860 CLASSTYPE_LAMBDA_EXPR (t) = error_mark_node;
15861 t = pushtag (name, t, how);
15863 else
15865 if (template_header_p && MAYBE_CLASS_TYPE_P (t))
15867 /* Check that we aren't trying to overload a class with different
15868 constraints. */
15869 if (!redeclare_class_template (t, current_template_parms,
15870 current_template_constraints ()))
15871 return error_mark_node;
15873 else if (!processing_template_decl
15874 && CLASS_TYPE_P (t)
15875 && CLASSTYPE_IS_TEMPLATE (t))
15877 error ("redeclaration of %qT as a non-template", t);
15878 inform (location_of (t), "previous declaration %qD", t);
15879 return error_mark_node;
15882 if (modules_p ()
15883 && how == TAG_how::CURRENT_ONLY)
15885 tree decl = TYPE_NAME (t);
15886 if (!module_may_redeclare (decl))
15888 error ("cannot declare %qD in a different module", decl);
15889 inform (DECL_SOURCE_LOCATION (decl), "declared here");
15890 return error_mark_node;
15893 tree maybe_tmpl = decl;
15894 if (CLASS_TYPE_P (t) && CLASSTYPE_IS_TEMPLATE (t))
15895 maybe_tmpl = CLASSTYPE_TI_TEMPLATE (t);
15897 if (DECL_LANG_SPECIFIC (decl)
15898 && DECL_MODULE_IMPORT_P (decl)
15899 && TREE_CODE (CP_DECL_CONTEXT (decl)) == NAMESPACE_DECL)
15901 /* Push it into this TU's symbol slot. */
15902 gcc_checking_assert (current_namespace == CP_DECL_CONTEXT (decl));
15903 if (maybe_tmpl != decl)
15904 /* We're in the template parm binding level.
15905 Pushtag has logic to slide under that, but we're
15906 not pushing a *new* type. */
15907 push_nested_namespace (CP_DECL_CONTEXT (decl));
15909 pushdecl (maybe_tmpl);
15910 if (maybe_tmpl != decl)
15911 pop_nested_namespace (CP_DECL_CONTEXT (decl));
15914 set_instantiating_module (maybe_tmpl);
15918 return t;
15921 /* Create the binfo hierarchy for REF with (possibly NULL) base list
15922 BASE_LIST. For each element on BASE_LIST the TREE_PURPOSE is an
15923 access_* node, and the TREE_VALUE is the type of the base-class.
15924 Non-NULL TREE_TYPE indicates virtual inheritance. */
15926 void
15927 xref_basetypes (tree ref, tree base_list)
15929 tree *basep;
15930 tree binfo, base_binfo;
15931 unsigned max_vbases = 0; /* Maximum direct & indirect virtual bases. */
15932 unsigned max_bases = 0; /* Maximum direct bases. */
15933 unsigned max_dvbases = 0; /* Maximum direct virtual bases. */
15934 int i;
15935 tree default_access;
15936 tree igo_prev; /* Track Inheritance Graph Order. */
15938 if (ref == error_mark_node)
15939 return;
15941 /* The base of a derived class is private by default, all others are
15942 public. */
15943 default_access = (TREE_CODE (ref) == RECORD_TYPE
15944 && CLASSTYPE_DECLARED_CLASS (ref)
15945 ? access_private_node : access_public_node);
15947 /* First, make sure that any templates in base-classes are
15948 instantiated. This ensures that if we call ourselves recursively
15949 we do not get confused about which classes are marked and which
15950 are not. */
15951 basep = &base_list;
15952 while (*basep)
15954 tree basetype = TREE_VALUE (*basep);
15956 /* The dependent_type_p call below should really be dependent_scope_p
15957 so that we give a hard error about using an incomplete type as a
15958 base, but we allow it with a pedwarn for backward
15959 compatibility. */
15960 if (processing_template_decl
15961 && CLASS_TYPE_P (basetype) && TYPE_BEING_DEFINED (basetype))
15962 cxx_incomplete_type_diagnostic (NULL_TREE, basetype, DK_PEDWARN);
15963 if (!dependent_type_p (basetype)
15964 && !complete_type_or_else (basetype, NULL))
15965 /* An incomplete type. Remove it from the list. */
15966 *basep = TREE_CHAIN (*basep);
15967 else
15969 max_bases++;
15970 if (TREE_TYPE (*basep))
15971 max_dvbases++;
15972 if (CLASS_TYPE_P (basetype))
15973 max_vbases += vec_safe_length (CLASSTYPE_VBASECLASSES (basetype));
15974 basep = &TREE_CHAIN (*basep);
15977 max_vbases += max_dvbases;
15979 TYPE_MARKED_P (ref) = 1;
15981 /* The binfo slot should be empty, unless this is an (ill-formed)
15982 redefinition. */
15983 gcc_assert (!TYPE_BINFO (ref) || TYPE_SIZE (ref));
15985 gcc_assert (TYPE_MAIN_VARIANT (ref) == ref);
15987 binfo = make_tree_binfo (max_bases);
15989 TYPE_BINFO (ref) = binfo;
15990 BINFO_OFFSET (binfo) = size_zero_node;
15991 BINFO_TYPE (binfo) = ref;
15993 /* Apply base-class info set up to the variants of this type. */
15994 fixup_type_variants (ref);
15996 if (max_bases)
15998 vec_alloc (BINFO_BASE_ACCESSES (binfo), max_bases);
15999 /* A C++98 POD cannot have base classes. */
16000 CLASSTYPE_NON_LAYOUT_POD_P (ref) = true;
16002 if (TREE_CODE (ref) == UNION_TYPE)
16004 error ("derived union %qT invalid", ref);
16005 return;
16009 if (max_bases > 1)
16010 warning (OPT_Wmultiple_inheritance,
16011 "%qT defined with multiple direct bases", ref);
16013 if (max_vbases)
16015 /* An aggregate can't have virtual base classes. */
16016 CLASSTYPE_NON_AGGREGATE (ref) = true;
16018 vec_alloc (CLASSTYPE_VBASECLASSES (ref), max_vbases);
16020 if (max_dvbases)
16021 warning (OPT_Wvirtual_inheritance,
16022 "%qT defined with direct virtual base", ref);
16025 for (igo_prev = binfo; base_list; base_list = TREE_CHAIN (base_list))
16027 tree access = TREE_PURPOSE (base_list);
16028 int via_virtual = TREE_TYPE (base_list) != NULL_TREE;
16029 tree basetype = TREE_VALUE (base_list);
16031 if (access == access_default_node)
16032 access = default_access;
16034 /* Before C++17, an aggregate cannot have base classes. In C++17, an
16035 aggregate can't have virtual, private, or protected base classes. */
16036 if (cxx_dialect < cxx17
16037 || access != access_public_node
16038 || via_virtual)
16039 CLASSTYPE_NON_AGGREGATE (ref) = true;
16041 if (PACK_EXPANSION_P (basetype))
16042 basetype = PACK_EXPANSION_PATTERN (basetype);
16043 if (TREE_CODE (basetype) == TYPE_DECL)
16044 basetype = TREE_TYPE (basetype);
16045 if (!MAYBE_CLASS_TYPE_P (basetype) || TREE_CODE (basetype) == UNION_TYPE)
16047 error ("base type %qT fails to be a struct or class type",
16048 basetype);
16049 goto dropped_base;
16052 base_binfo = NULL_TREE;
16053 if (CLASS_TYPE_P (basetype) && !dependent_scope_p (basetype))
16055 base_binfo = TYPE_BINFO (basetype);
16056 /* The original basetype could have been a typedef'd type. */
16057 basetype = BINFO_TYPE (base_binfo);
16059 /* Inherit flags from the base. */
16060 TYPE_HAS_NEW_OPERATOR (ref)
16061 |= TYPE_HAS_NEW_OPERATOR (basetype);
16062 TYPE_HAS_ARRAY_NEW_OPERATOR (ref)
16063 |= TYPE_HAS_ARRAY_NEW_OPERATOR (basetype);
16064 TYPE_GETS_DELETE (ref) |= TYPE_GETS_DELETE (basetype);
16065 TYPE_HAS_CONVERSION (ref) |= TYPE_HAS_CONVERSION (basetype);
16066 CLASSTYPE_DIAMOND_SHAPED_P (ref)
16067 |= CLASSTYPE_DIAMOND_SHAPED_P (basetype);
16068 CLASSTYPE_REPEATED_BASE_P (ref)
16069 |= CLASSTYPE_REPEATED_BASE_P (basetype);
16072 /* We must do this test after we've seen through a typedef
16073 type. */
16074 if (TYPE_MARKED_P (basetype))
16076 if (basetype == ref)
16077 error ("recursive type %qT undefined", basetype);
16078 else
16079 error ("duplicate base type %qT invalid", basetype);
16080 goto dropped_base;
16083 if (PACK_EXPANSION_P (TREE_VALUE (base_list)))
16084 /* Regenerate the pack expansion for the bases. */
16085 basetype = make_pack_expansion (basetype);
16087 TYPE_MARKED_P (basetype) = 1;
16089 base_binfo = copy_binfo (base_binfo, basetype, ref,
16090 &igo_prev, via_virtual);
16091 if (!BINFO_INHERITANCE_CHAIN (base_binfo))
16092 BINFO_INHERITANCE_CHAIN (base_binfo) = binfo;
16094 BINFO_BASE_APPEND (binfo, base_binfo);
16095 BINFO_BASE_ACCESS_APPEND (binfo, access);
16096 continue;
16098 dropped_base:
16099 /* Update max_vbases to reflect the reality that we are dropping
16100 this base: if it reaches zero we want to undo the vec_alloc
16101 above to avoid inconsistencies during error-recovery: eg, in
16102 build_special_member_call, CLASSTYPE_VBASECLASSES non null
16103 and vtt null (c++/27952). */
16104 if (via_virtual)
16105 max_vbases--;
16106 if (CLASS_TYPE_P (basetype))
16107 max_vbases
16108 -= vec_safe_length (CLASSTYPE_VBASECLASSES (basetype));
16111 if (CLASSTYPE_VBASECLASSES (ref)
16112 && max_vbases == 0)
16113 vec_free (CLASSTYPE_VBASECLASSES (ref));
16115 if (vec_safe_length (CLASSTYPE_VBASECLASSES (ref)) < max_vbases)
16116 /* If we didn't get max_vbases vbases, we must have shared at
16117 least one of them, and are therefore diamond shaped. */
16118 CLASSTYPE_DIAMOND_SHAPED_P (ref) = 1;
16120 /* Unmark all the types. */
16121 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
16122 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
16123 TYPE_MARKED_P (ref) = 0;
16125 /* Now see if we have a repeated base type. */
16126 if (!CLASSTYPE_REPEATED_BASE_P (ref))
16128 for (base_binfo = binfo; base_binfo;
16129 base_binfo = TREE_CHAIN (base_binfo))
16131 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
16133 CLASSTYPE_REPEATED_BASE_P (ref) = 1;
16134 break;
16136 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 1;
16138 for (base_binfo = binfo; base_binfo;
16139 base_binfo = TREE_CHAIN (base_binfo))
16140 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
16141 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
16142 else
16143 break;
16148 /* Copies the enum-related properties from type SRC to type DST.
16149 Used with the underlying type of an enum and the enum itself. */
16150 static void
16151 copy_type_enum (tree dst, tree src)
16153 tree t;
16154 for (t = dst; t; t = TYPE_NEXT_VARIANT (t))
16156 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (src);
16157 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (src);
16158 TYPE_SIZE (t) = TYPE_SIZE (src);
16159 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (src);
16160 SET_TYPE_MODE (dst, TYPE_MODE (src));
16161 TYPE_PRECISION (t) = TYPE_PRECISION (src);
16162 unsigned valign = TYPE_ALIGN (src);
16163 if (TYPE_USER_ALIGN (t))
16164 valign = MAX (valign, TYPE_ALIGN (t));
16165 else
16166 TYPE_USER_ALIGN (t) = TYPE_USER_ALIGN (src);
16167 SET_TYPE_ALIGN (t, valign);
16168 TYPE_UNSIGNED (t) = TYPE_UNSIGNED (src);
16172 /* Begin compiling the definition of an enumeration type.
16173 NAME is its name,
16175 if ENUMTYPE is not NULL_TREE then the type has alredy been found.
16177 UNDERLYING_TYPE is the type that will be used as the storage for
16178 the enumeration type. This should be NULL_TREE if no storage type
16179 was specified.
16181 ATTRIBUTES are any attributes specified after the enum-key.
16183 SCOPED_ENUM_P is true if this is a scoped enumeration type.
16185 if IS_NEW is not NULL, gets TRUE iff a new type is created.
16187 Returns the type object, as yet incomplete.
16188 Also records info about it so that build_enumerator
16189 may be used to declare the individual values as they are read. */
16191 tree
16192 start_enum (tree name, tree enumtype, tree underlying_type,
16193 tree attributes, bool scoped_enum_p, bool *is_new)
16195 tree prevtype = NULL_TREE;
16196 gcc_assert (identifier_p (name));
16198 if (is_new)
16199 *is_new = false;
16200 /* [C++0x dcl.enum]p5:
16202 If not explicitly specified, the underlying type of a scoped
16203 enumeration type is int. */
16204 if (!underlying_type && scoped_enum_p)
16205 underlying_type = integer_type_node;
16207 if (underlying_type)
16208 underlying_type = cv_unqualified (underlying_type);
16210 /* If this is the real definition for a previous forward reference,
16211 fill in the contents in the same object that used to be the
16212 forward reference. */
16213 if (!enumtype)
16214 enumtype = lookup_and_check_tag (enum_type, name,
16215 /*tag_scope=*/TAG_how::CURRENT_ONLY,
16216 /*template_header_p=*/false);
16218 /* In case of a template_decl, the only check that should be deferred
16219 to instantiation time is the comparison of underlying types. */
16220 if (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE)
16222 if (scoped_enum_p != SCOPED_ENUM_P (enumtype))
16224 error_at (input_location, "scoped/unscoped mismatch "
16225 "in enum %q#T", enumtype);
16226 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
16227 "previous definition here");
16228 enumtype = error_mark_node;
16230 else if (ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) != !! underlying_type)
16232 error_at (input_location, "underlying type mismatch "
16233 "in enum %q#T", enumtype);
16234 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
16235 "previous definition here");
16236 enumtype = error_mark_node;
16238 else if (underlying_type && ENUM_UNDERLYING_TYPE (enumtype)
16239 && !same_type_p (underlying_type,
16240 ENUM_UNDERLYING_TYPE (enumtype)))
16242 error_at (input_location, "different underlying type "
16243 "in enum %q#T", enumtype);
16244 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
16245 "previous definition here");
16246 underlying_type = NULL_TREE;
16249 if (modules_p ())
16251 if (!module_may_redeclare (TYPE_NAME (enumtype)))
16253 error ("cannot define %qD in different module",
16254 TYPE_NAME (enumtype));
16255 inform (DECL_SOURCE_LOCATION (TYPE_NAME (enumtype)),
16256 "declared here");
16257 enumtype = error_mark_node;
16259 set_instantiating_module (TYPE_NAME (enumtype));
16263 if (!enumtype || TREE_CODE (enumtype) != ENUMERAL_TYPE
16264 || processing_template_decl)
16266 /* In case of error, make a dummy enum to allow parsing to
16267 continue. */
16268 if (enumtype == error_mark_node)
16270 name = make_anon_name ();
16271 enumtype = NULL_TREE;
16274 /* enumtype may be an ENUMERAL_TYPE if this is a redefinition
16275 of an opaque enum, or an opaque enum of an already defined
16276 enumeration (C++11).
16277 In any other case, it'll be NULL_TREE. */
16278 if (!enumtype)
16280 if (is_new)
16281 *is_new = true;
16283 prevtype = enumtype;
16285 /* Do not push the decl more than once. */
16286 if (!enumtype
16287 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
16289 enumtype = cxx_make_type (ENUMERAL_TYPE);
16290 enumtype = pushtag (name, enumtype);
16292 /* std::byte aliases anything. */
16293 if (enumtype != error_mark_node
16294 && TYPE_CONTEXT (enumtype) == std_node
16295 && !strcmp ("byte", TYPE_NAME_STRING (enumtype)))
16296 TYPE_ALIAS_SET (enumtype) = 0;
16298 else
16299 enumtype = xref_tag (enum_type, name);
16301 if (enumtype == error_mark_node)
16302 return error_mark_node;
16304 /* The enum is considered opaque until the opening '{' of the
16305 enumerator list. */
16306 SET_OPAQUE_ENUM_P (enumtype, true);
16307 ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) = !! underlying_type;
16310 SET_SCOPED_ENUM_P (enumtype, scoped_enum_p);
16312 cplus_decl_attributes (&enumtype, attributes, (int)ATTR_FLAG_TYPE_IN_PLACE);
16314 if (underlying_type)
16316 if (ENUM_UNDERLYING_TYPE (enumtype))
16317 /* We already checked that it matches, don't change it to a different
16318 typedef variant. */;
16319 else if (CP_INTEGRAL_TYPE_P (underlying_type))
16321 copy_type_enum (enumtype, underlying_type);
16322 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
16324 else if (dependent_type_p (underlying_type))
16325 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
16326 else
16328 error ("underlying type %qT of %qT must be an integral type",
16329 underlying_type, enumtype);
16330 ENUM_UNDERLYING_TYPE (enumtype) = integer_type_node;
16334 /* If into a template class, the returned enum is always the first
16335 declaration (opaque or not) seen. This way all the references to
16336 this type will be to the same declaration. The following ones are used
16337 only to check for definition errors. */
16338 if (prevtype && processing_template_decl)
16339 return prevtype;
16340 else
16341 return enumtype;
16344 /* After processing and defining all the values of an enumeration type,
16345 install their decls in the enumeration type.
16346 ENUMTYPE is the type object. */
16348 void
16349 finish_enum_value_list (tree enumtype)
16351 tree values;
16352 tree underlying_type;
16353 tree decl;
16354 tree value;
16355 tree minnode, maxnode;
16356 tree t;
16358 bool fixed_underlying_type_p
16359 = ENUM_UNDERLYING_TYPE (enumtype) != NULL_TREE;
16361 /* We built up the VALUES in reverse order. */
16362 TYPE_VALUES (enumtype) = nreverse (TYPE_VALUES (enumtype));
16364 /* For an enum defined in a template, just set the type of the values;
16365 all further processing is postponed until the template is
16366 instantiated. We need to set the type so that tsubst of a CONST_DECL
16367 works. */
16368 if (processing_template_decl)
16370 for (values = TYPE_VALUES (enumtype);
16371 values;
16372 values = TREE_CHAIN (values))
16373 TREE_TYPE (TREE_VALUE (values)) = enumtype;
16374 return;
16377 /* Determine the minimum and maximum values of the enumerators. */
16378 if (TYPE_VALUES (enumtype))
16380 minnode = maxnode = NULL_TREE;
16382 for (values = TYPE_VALUES (enumtype);
16383 values;
16384 values = TREE_CHAIN (values))
16386 decl = TREE_VALUE (values);
16388 /* [dcl.enum]: Following the closing brace of an enum-specifier,
16389 each enumerator has the type of its enumeration. Prior to the
16390 closing brace, the type of each enumerator is the type of its
16391 initializing value. */
16392 TREE_TYPE (decl) = enumtype;
16394 /* Update the minimum and maximum values, if appropriate. */
16395 value = DECL_INITIAL (decl);
16396 if (TREE_CODE (value) != INTEGER_CST)
16397 value = integer_zero_node;
16398 /* Figure out what the minimum and maximum values of the
16399 enumerators are. */
16400 if (!minnode)
16401 minnode = maxnode = value;
16402 else if (tree_int_cst_lt (maxnode, value))
16403 maxnode = value;
16404 else if (tree_int_cst_lt (value, minnode))
16405 minnode = value;
16408 else
16409 /* [dcl.enum]
16411 If the enumerator-list is empty, the underlying type is as if
16412 the enumeration had a single enumerator with value 0. */
16413 minnode = maxnode = integer_zero_node;
16415 if (!fixed_underlying_type_p)
16417 /* Compute the number of bits require to represent all values of the
16418 enumeration. We must do this before the type of MINNODE and
16419 MAXNODE are transformed, since tree_int_cst_min_precision relies
16420 on the TREE_TYPE of the value it is passed. */
16421 signop sgn = tree_int_cst_sgn (minnode) >= 0 ? UNSIGNED : SIGNED;
16422 int lowprec = tree_int_cst_min_precision (minnode, sgn);
16423 int highprec = tree_int_cst_min_precision (maxnode, sgn);
16424 int precision = MAX (lowprec, highprec);
16425 unsigned int itk;
16426 bool use_short_enum;
16428 /* Determine the underlying type of the enumeration.
16430 [dcl.enum]
16432 The underlying type of an enumeration is an integral type that
16433 can represent all the enumerator values defined in the
16434 enumeration. It is implementation-defined which integral type is
16435 used as the underlying type for an enumeration except that the
16436 underlying type shall not be larger than int unless the value of
16437 an enumerator cannot fit in an int or unsigned int.
16439 We use "int" or an "unsigned int" as the underlying type, even if
16440 a smaller integral type would work, unless the user has
16441 explicitly requested that we use the smallest possible type. The
16442 user can request that for all enumerations with a command line
16443 flag, or for just one enumeration with an attribute. */
16445 use_short_enum = flag_short_enums
16446 || lookup_attribute ("packed", TYPE_ATTRIBUTES (enumtype));
16448 /* If the precision of the type was specified with an attribute and it
16449 was too small, give an error. Otherwise, use it. */
16450 if (TYPE_PRECISION (enumtype))
16452 if (precision > TYPE_PRECISION (enumtype))
16453 error ("specified mode too small for enumerated values");
16454 else
16456 use_short_enum = true;
16457 precision = TYPE_PRECISION (enumtype);
16461 for (itk = (use_short_enum ? itk_char : itk_int);
16462 itk != itk_none;
16463 itk++)
16465 underlying_type = integer_types[itk];
16466 if (underlying_type != NULL_TREE
16467 && TYPE_PRECISION (underlying_type) >= precision
16468 && TYPE_SIGN (underlying_type) == sgn)
16469 break;
16471 if (itk == itk_none)
16473 /* DR 377
16475 IF no integral type can represent all the enumerator values, the
16476 enumeration is ill-formed. */
16477 error ("no integral type can represent all of the enumerator values "
16478 "for %qT", enumtype);
16479 precision = TYPE_PRECISION (long_long_integer_type_node);
16480 underlying_type = integer_types[itk_unsigned_long_long];
16483 /* [dcl.enum]
16485 The value of sizeof() applied to an enumeration type, an object
16486 of an enumeration type, or an enumerator, is the value of sizeof()
16487 applied to the underlying type. */
16488 copy_type_enum (enumtype, underlying_type);
16490 /* Compute the minimum and maximum values for the type.
16492 [dcl.enum]
16494 For an enumeration where emin is the smallest enumerator and emax
16495 is the largest, the values of the enumeration are the values of the
16496 underlying type in the range bmin to bmax, where bmin and bmax are,
16497 respectively, the smallest and largest values of the smallest bit-
16498 field that can store emin and emax. */
16500 /* The middle-end currently assumes that types with TYPE_PRECISION
16501 narrower than their underlying type are suitably zero or sign
16502 extended to fill their mode. Similarly, it assumes that the front
16503 end assures that a value of a particular type must be within
16504 TYPE_MIN_VALUE and TYPE_MAX_VALUE.
16506 We used to set these fields based on bmin and bmax, but that led
16507 to invalid assumptions like optimizing away bounds checking. So
16508 now we just set the TYPE_PRECISION, TYPE_MIN_VALUE, and
16509 TYPE_MAX_VALUE to the values for the mode above and only restrict
16510 the ENUM_UNDERLYING_TYPE for the benefit of diagnostics. */
16511 ENUM_UNDERLYING_TYPE (enumtype)
16512 = build_distinct_type_copy (underlying_type);
16513 TYPE_PRECISION (ENUM_UNDERLYING_TYPE (enumtype)) = precision;
16514 set_min_and_max_values_for_integral_type
16515 (ENUM_UNDERLYING_TYPE (enumtype), precision, sgn);
16517 /* If -fstrict-enums, still constrain TYPE_MIN/MAX_VALUE. */
16518 if (flag_strict_enums)
16519 set_min_and_max_values_for_integral_type (enumtype, precision, sgn);
16521 else
16522 underlying_type = ENUM_UNDERLYING_TYPE (enumtype);
16524 /* If the enum is exported, mark the consts too. */
16525 bool export_p = (UNSCOPED_ENUM_P (enumtype)
16526 && DECL_MODULE_EXPORT_P (TYPE_STUB_DECL (enumtype))
16527 && at_namespace_scope_p ());
16529 /* Convert each of the enumerators to the type of the underlying
16530 type of the enumeration. */
16531 for (values = TYPE_VALUES (enumtype); values; values = TREE_CHAIN (values))
16533 decl = TREE_VALUE (values);
16534 iloc_sentinel ils (DECL_SOURCE_LOCATION (decl));
16535 if (fixed_underlying_type_p)
16536 /* If the enumeration type has a fixed underlying type, we
16537 already checked all of the enumerator values. */
16538 value = DECL_INITIAL (decl);
16539 else
16540 value = perform_implicit_conversion (underlying_type,
16541 DECL_INITIAL (decl),
16542 tf_warning_or_error);
16543 /* Do not clobber shared ints. */
16544 if (value != error_mark_node)
16546 value = copy_node (value);
16548 TREE_TYPE (value) = enumtype;
16550 DECL_INITIAL (decl) = value;
16551 if (export_p)
16552 DECL_MODULE_EXPORT_P (decl) = true;
16555 /* Fix up all variant types of this enum type. */
16556 for (t = TYPE_MAIN_VARIANT (enumtype); t; t = TYPE_NEXT_VARIANT (t))
16557 TYPE_VALUES (t) = TYPE_VALUES (enumtype);
16559 if (at_class_scope_p ()
16560 && COMPLETE_TYPE_P (current_class_type)
16561 && UNSCOPED_ENUM_P (enumtype))
16563 insert_late_enum_def_bindings (current_class_type, enumtype);
16564 /* TYPE_FIELDS needs fixup. */
16565 fixup_type_variants (current_class_type);
16568 /* Finish debugging output for this type. */
16569 rest_of_type_compilation (enumtype, namespace_bindings_p ());
16571 /* Each enumerator now has the type of its enumeration. Clear the cache
16572 so that this change in types doesn't confuse us later on. */
16573 clear_cv_and_fold_caches ();
16576 /* Finishes the enum type. This is called only the first time an
16577 enumeration is seen, be it opaque or odinary.
16578 ENUMTYPE is the type object. */
16580 void
16581 finish_enum (tree enumtype)
16583 if (processing_template_decl)
16585 if (at_function_scope_p ())
16586 add_stmt (build_min (TAG_DEFN, enumtype));
16587 return;
16590 /* If this is a forward declaration, there should not be any variants,
16591 though we can get a variant in the middle of an enum-specifier with
16592 wacky code like 'enum E { e = sizeof(const E*) };' */
16593 gcc_assert (enumtype == TYPE_MAIN_VARIANT (enumtype)
16594 && (TYPE_VALUES (enumtype)
16595 || !TYPE_NEXT_VARIANT (enumtype)));
16598 /* Build and install a CONST_DECL for an enumeration constant of the
16599 enumeration type ENUMTYPE whose NAME and VALUE (if any) are provided.
16600 Apply ATTRIBUTES if available. LOC is the location of NAME.
16601 Assignment of sequential values by default is handled here. */
16603 tree
16604 build_enumerator (tree name, tree value, tree enumtype, tree attributes,
16605 location_t loc)
16607 tree decl;
16608 tree context;
16609 tree type;
16611 /* scalar_constant_value will pull out this expression, so make sure
16612 it's folded as appropriate. */
16613 if (processing_template_decl)
16614 value = fold_non_dependent_expr (value);
16616 /* If the VALUE was erroneous, pretend it wasn't there; that will
16617 result in the enum being assigned the next value in sequence. */
16618 if (value == error_mark_node)
16619 value = NULL_TREE;
16621 /* Remove no-op casts from the value. */
16622 if (value)
16623 STRIP_TYPE_NOPS (value);
16625 if (! processing_template_decl)
16627 /* Validate and default VALUE. */
16628 if (value != NULL_TREE)
16630 if (!ENUM_UNDERLYING_TYPE (enumtype))
16632 tree tmp_value = build_expr_type_conversion (WANT_INT | WANT_ENUM,
16633 value, true);
16634 if (tmp_value)
16635 value = tmp_value;
16637 else if (! INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P
16638 (TREE_TYPE (value)))
16639 value = perform_implicit_conversion_flags
16640 (ENUM_UNDERLYING_TYPE (enumtype), value, tf_warning_or_error,
16641 LOOKUP_IMPLICIT | LOOKUP_NO_NARROWING);
16643 if (value == error_mark_node)
16644 value = NULL_TREE;
16646 if (value != NULL_TREE)
16648 if (! INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P
16649 (TREE_TYPE (value)))
16651 error_at (cp_expr_loc_or_input_loc (value),
16652 "enumerator value for %qD must have integral or "
16653 "unscoped enumeration type", name);
16654 value = NULL_TREE;
16656 else
16658 value = cxx_constant_value (value);
16660 if (TREE_CODE (value) != INTEGER_CST)
16662 error ("enumerator value for %qD is not an integer "
16663 "constant", name);
16664 value = NULL_TREE;
16670 /* Default based on previous value. */
16671 if (value == NULL_TREE)
16673 if (TYPE_VALUES (enumtype))
16675 tree prev_value;
16677 /* C++03 7.2/4: If no initializer is specified for the first
16678 enumerator, the type is an unspecified integral
16679 type. Otherwise the type is the same as the type of the
16680 initializing value of the preceding enumerator unless the
16681 incremented value is not representable in that type, in
16682 which case the type is an unspecified integral type
16683 sufficient to contain the incremented value. */
16684 prev_value = DECL_INITIAL (TREE_VALUE (TYPE_VALUES (enumtype)));
16685 if (TREE_CODE (prev_value) != INTEGER_CST)
16686 value = error_mark_node;
16687 else
16689 wi::overflow_type overflowed;
16690 tree type = TREE_TYPE (prev_value);
16691 signop sgn = TYPE_SIGN (type);
16692 widest_int wi = wi::add (wi::to_widest (prev_value), 1, sgn,
16693 &overflowed);
16694 if (!overflowed)
16696 bool pos = !wi::neg_p (wi, sgn);
16697 if (!wi::fits_to_tree_p (wi, type))
16699 unsigned int itk;
16700 for (itk = itk_int; itk != itk_none; itk++)
16702 type = integer_types[itk];
16703 if (type != NULL_TREE
16704 && (pos || !TYPE_UNSIGNED (type))
16705 && wi::fits_to_tree_p (wi, type))
16706 break;
16708 if (type && cxx_dialect < cxx11
16709 && itk > itk_unsigned_long)
16710 pedwarn (input_location, OPT_Wlong_long,
16711 pos ? G_("\
16712 incremented enumerator value is too large for %<unsigned long%>") : G_("\
16713 incremented enumerator value is too large for %<long%>"));
16715 if (type == NULL_TREE)
16716 overflowed = wi::OVF_UNKNOWN;
16717 else
16718 value = wide_int_to_tree (type, wi);
16721 if (overflowed)
16723 error ("overflow in enumeration values at %qD", name);
16724 value = error_mark_node;
16728 else
16729 value = integer_zero_node;
16732 /* Remove no-op casts from the value. */
16733 STRIP_TYPE_NOPS (value);
16735 /* If the underlying type of the enum is fixed, check whether
16736 the enumerator values fits in the underlying type. If it
16737 does not fit, the program is ill-formed [C++0x dcl.enum]. */
16738 if (ENUM_UNDERLYING_TYPE (enumtype)
16739 && value
16740 && TREE_CODE (value) == INTEGER_CST)
16742 if (!int_fits_type_p (value, ENUM_UNDERLYING_TYPE (enumtype)))
16743 error ("enumerator value %qE is outside the range of underlying "
16744 "type %qT", value, ENUM_UNDERLYING_TYPE (enumtype));
16746 /* Convert the value to the appropriate type. */
16747 value = fold_convert (ENUM_UNDERLYING_TYPE (enumtype), value);
16751 /* C++ associates enums with global, function, or class declarations. */
16752 context = current_scope ();
16754 /* Build the actual enumeration constant. Note that the enumeration
16755 constants have the underlying type of the enum (if it is fixed)
16756 or the type of their initializer (if the underlying type of the
16757 enum is not fixed):
16759 [ C++0x dcl.enum ]
16761 If the underlying type is fixed, the type of each enumerator
16762 prior to the closing brace is the underlying type; if the
16763 initializing value of an enumerator cannot be represented by
16764 the underlying type, the program is ill-formed. If the
16765 underlying type is not fixed, the type of each enumerator is
16766 the type of its initializing value.
16768 If the underlying type is not fixed, it will be computed by
16769 finish_enum and we will reset the type of this enumerator. Of
16770 course, if we're processing a template, there may be no value. */
16771 type = value ? TREE_TYPE (value) : NULL_TREE;
16773 decl = build_decl (loc, CONST_DECL, name, type);
16775 DECL_CONTEXT (decl) = enumtype;
16776 TREE_CONSTANT (decl) = 1;
16777 TREE_READONLY (decl) = 1;
16778 DECL_INITIAL (decl) = value;
16780 if (attributes)
16781 cplus_decl_attributes (&decl, attributes, 0);
16783 if (context && context == current_class_type && !SCOPED_ENUM_P (enumtype))
16785 /* In something like `struct S { enum E { i = 7 }; };' we put `i'
16786 on the TYPE_FIELDS list for `S'. (That's so that you can say
16787 things like `S::i' later.) */
16789 /* The enumerator may be getting declared outside of its enclosing
16790 class, like so:
16792 class S { public: enum E : int; }; enum S::E : int { i = 7; };
16794 For which case we need to make sure that the access of `S::i'
16795 matches the access of `S::E'. */
16796 auto cas = make_temp_override (current_access_specifier);
16797 set_current_access_from_decl (TYPE_NAME (enumtype));
16798 finish_member_declaration (decl);
16800 else
16801 pushdecl (decl);
16803 /* Add this enumeration constant to the list for this type. */
16804 TYPE_VALUES (enumtype) = tree_cons (name, decl, TYPE_VALUES (enumtype));
16806 return decl;
16809 /* Look for an enumerator with the given NAME within the enumeration
16810 type ENUMTYPE. This routine is used primarily for qualified name
16811 lookup into an enumerator in C++0x, e.g.,
16813 enum class Color { Red, Green, Blue };
16815 Color color = Color::Red;
16817 Returns the value corresponding to the enumerator, or
16818 NULL_TREE if no such enumerator was found. */
16819 tree
16820 lookup_enumerator (tree enumtype, tree name)
16822 tree e;
16823 gcc_assert (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE);
16825 e = purpose_member (name, TYPE_VALUES (enumtype));
16826 return e? TREE_VALUE (e) : NULL_TREE;
16829 /* Implement LANG_HOOKS_SIMULATE_ENUM_DECL. */
16831 tree
16832 cxx_simulate_enum_decl (location_t loc, const char *name,
16833 vec<string_int_pair> *values)
16835 location_t saved_loc = input_location;
16836 input_location = loc;
16838 tree enumtype = start_enum (get_identifier (name), NULL_TREE, NULL_TREE,
16839 NULL_TREE, false, NULL);
16840 if (!OPAQUE_ENUM_P (enumtype))
16842 error_at (loc, "multiple definition of %q#T", enumtype);
16843 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
16844 "previous definition here");
16845 return enumtype;
16847 SET_OPAQUE_ENUM_P (enumtype, false);
16848 DECL_SOURCE_LOCATION (TYPE_NAME (enumtype)) = loc;
16850 for (const string_int_pair &value : values)
16851 build_enumerator (get_identifier (value.first),
16852 build_int_cst (integer_type_node, value.second),
16853 enumtype, NULL_TREE, loc);
16855 finish_enum_value_list (enumtype);
16856 finish_enum (enumtype);
16858 input_location = saved_loc;
16859 return enumtype;
16862 /* Implement LANG_HOOKS_SIMULATE_RECORD_DECL. */
16864 tree
16865 cxx_simulate_record_decl (location_t loc, const char *name,
16866 array_slice<const tree> fields)
16868 iloc_sentinel ils (loc);
16870 tree ident = get_identifier (name);
16871 tree type = xref_tag (/*tag_code=*/record_type, ident);
16872 if (type != error_mark_node
16873 && (TREE_CODE (type) != RECORD_TYPE || COMPLETE_TYPE_P (type)))
16875 error ("redefinition of %q#T", type);
16876 type = error_mark_node;
16878 if (type == error_mark_node)
16879 return lhd_simulate_record_decl (loc, name, fields);
16881 xref_basetypes (type, NULL_TREE);
16882 type = begin_class_definition (type);
16883 if (type == error_mark_node)
16884 return lhd_simulate_record_decl (loc, name, fields);
16886 for (tree field : fields)
16887 finish_member_declaration (field);
16889 type = finish_struct (type, NULL_TREE);
16891 tree decl = build_decl (loc, TYPE_DECL, ident, type);
16892 set_underlying_type (decl);
16893 lang_hooks.decls.pushdecl (decl);
16895 return type;
16898 /* We're defining DECL. Make sure that its type is OK. */
16900 static void
16901 check_function_type (tree decl, tree current_function_parms)
16903 tree fntype = TREE_TYPE (decl);
16904 tree return_type = complete_type (TREE_TYPE (fntype));
16906 /* In a function definition, arg types must be complete. */
16907 require_complete_types_for_parms (current_function_parms);
16909 if (dependent_type_p (return_type)
16910 || type_uses_auto (return_type))
16911 return;
16912 if (!COMPLETE_OR_VOID_TYPE_P (return_type))
16914 tree args = TYPE_ARG_TYPES (fntype);
16916 error ("return type %q#T is incomplete", return_type);
16918 /* Make it return void instead. */
16919 if (TREE_CODE (fntype) == METHOD_TYPE)
16920 fntype = build_method_type_directly (TREE_TYPE (TREE_VALUE (args)),
16921 void_type_node,
16922 TREE_CHAIN (args));
16923 else
16924 fntype = build_function_type (void_type_node, args);
16925 fntype = (cp_build_type_attribute_variant
16926 (fntype, TYPE_ATTRIBUTES (TREE_TYPE (decl))));
16927 fntype = cxx_copy_lang_qualifiers (fntype, TREE_TYPE (decl));
16928 TREE_TYPE (decl) = fntype;
16930 else
16932 abstract_virtuals_error (decl, TREE_TYPE (fntype));
16933 maybe_warn_parm_abi (TREE_TYPE (fntype),
16934 DECL_SOURCE_LOCATION (decl));
16938 /* True iff FN is an implicitly-defined default constructor. */
16940 static bool
16941 implicit_default_ctor_p (tree fn)
16943 return (DECL_CONSTRUCTOR_P (fn)
16944 && !user_provided_p (fn)
16945 && sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (fn)));
16948 /* Clobber the contents of *this to let the back end know that the object
16949 storage is dead when we enter the constructor or leave the destructor. */
16951 static tree
16952 build_clobber_this ()
16954 /* Clobbering an empty base is pointless, and harmful if its one byte
16955 TYPE_SIZE overlays real data. */
16956 if (is_empty_class (current_class_type))
16957 return void_node;
16959 /* If we have virtual bases, clobber the whole object, but only if we're in
16960 charge. If we don't have virtual bases, clobber the as-base type so we
16961 don't mess with tail padding. */
16962 bool vbases = CLASSTYPE_VBASECLASSES (current_class_type);
16964 tree ctype = current_class_type;
16965 if (!vbases)
16966 ctype = CLASSTYPE_AS_BASE (ctype);
16968 tree clobber = build_clobber (ctype);
16970 tree thisref = current_class_ref;
16971 if (ctype != current_class_type)
16973 thisref = build_nop (build_reference_type (ctype), current_class_ptr);
16974 thisref = convert_from_reference (thisref);
16977 tree exprstmt = build2 (MODIFY_EXPR, void_type_node, thisref, clobber);
16978 if (vbases)
16979 exprstmt = build_if_in_charge (exprstmt);
16981 return exprstmt;
16984 /* Create the FUNCTION_DECL for a function definition.
16985 DECLSPECS and DECLARATOR are the parts of the declaration;
16986 they describe the function's name and the type it returns,
16987 but twisted together in a fashion that parallels the syntax of C.
16989 FLAGS is a bitwise or of SF_PRE_PARSED (indicating that the
16990 DECLARATOR is really the DECL for the function we are about to
16991 process and that DECLSPECS should be ignored), SF_INCLASS_INLINE
16992 indicating that the function is an inline defined in-class.
16994 This function creates a binding context for the function body
16995 as well as setting up the FUNCTION_DECL in current_function_decl.
16997 For C++, we must first check whether that datum makes any sense.
16998 For example, "class A local_a(1,2);" means that variable local_a
16999 is an aggregate of type A, which should have a constructor
17000 applied to it with the argument list [1, 2].
17002 On entry, DECL_INITIAL (decl1) should be NULL_TREE or error_mark_node,
17003 or may be a BLOCK if the function has been defined previously
17004 in this translation unit. On exit, DECL_INITIAL (decl1) will be
17005 error_mark_node if the function has never been defined, or
17006 a BLOCK if the function has been defined somewhere. */
17008 bool
17009 start_preparsed_function (tree decl1, tree attrs, int flags)
17011 tree ctype = NULL_TREE;
17012 bool doing_friend = false;
17014 /* Sanity check. */
17015 gcc_assert (VOID_TYPE_P (TREE_VALUE (void_list_node)));
17016 gcc_assert (TREE_CHAIN (void_list_node) == NULL_TREE);
17018 tree fntype = TREE_TYPE (decl1);
17019 if (TREE_CODE (fntype) == METHOD_TYPE)
17020 ctype = TYPE_METHOD_BASETYPE (fntype);
17021 else
17023 ctype = DECL_FRIEND_CONTEXT (decl1);
17025 if (ctype)
17026 doing_friend = true;
17029 if (DECL_DECLARED_INLINE_P (decl1)
17030 && lookup_attribute ("noinline", attrs))
17031 warning_at (DECL_SOURCE_LOCATION (decl1), 0,
17032 "inline function %qD given attribute %qs", decl1, "noinline");
17034 /* Handle gnu_inline attribute. */
17035 if (GNU_INLINE_P (decl1))
17037 DECL_EXTERNAL (decl1) = 1;
17038 DECL_NOT_REALLY_EXTERN (decl1) = 0;
17039 DECL_INTERFACE_KNOWN (decl1) = 1;
17040 DECL_DISREGARD_INLINE_LIMITS (decl1) = 1;
17043 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl1))
17044 /* This is a constructor, we must ensure that any default args
17045 introduced by this definition are propagated to the clones
17046 now. The clones are used directly in overload resolution. */
17047 adjust_clone_args (decl1);
17049 /* Sometimes we don't notice that a function is a static member, and
17050 build a METHOD_TYPE for it. Fix that up now. */
17051 gcc_assert (!(ctype != NULL_TREE && DECL_STATIC_FUNCTION_P (decl1)
17052 && TREE_CODE (TREE_TYPE (decl1)) == METHOD_TYPE));
17054 /* Set up current_class_type, and enter the scope of the class, if
17055 appropriate. */
17056 if (ctype)
17057 push_nested_class (ctype);
17058 else if (DECL_STATIC_FUNCTION_P (decl1))
17059 push_nested_class (DECL_CONTEXT (decl1));
17061 /* Now that we have entered the scope of the class, we must restore
17062 the bindings for any template parameters surrounding DECL1, if it
17063 is an inline member template. (Order is important; consider the
17064 case where a template parameter has the same name as a field of
17065 the class.) It is not until after this point that
17066 PROCESSING_TEMPLATE_DECL is guaranteed to be set up correctly. */
17067 if (flags & SF_INCLASS_INLINE)
17068 maybe_begin_member_template_processing (decl1);
17070 /* Effective C++ rule 15. */
17071 if (warn_ecpp
17072 && DECL_ASSIGNMENT_OPERATOR_P (decl1)
17073 && DECL_OVERLOADED_OPERATOR_IS (decl1, NOP_EXPR)
17074 && VOID_TYPE_P (TREE_TYPE (fntype)))
17075 warning (OPT_Weffc__,
17076 "%<operator=%> should return a reference to %<*this%>");
17078 /* Make the init_value nonzero so pushdecl knows this is not tentative.
17079 error_mark_node is replaced below (in poplevel) with the BLOCK. */
17080 if (!DECL_INITIAL (decl1))
17081 DECL_INITIAL (decl1) = error_mark_node;
17083 /* This function exists in static storage.
17084 (This does not mean `static' in the C sense!) */
17085 TREE_STATIC (decl1) = 1;
17087 /* We must call push_template_decl after current_class_type is set
17088 up. (If we are processing inline definitions after exiting a
17089 class scope, current_class_type will be NULL_TREE until set above
17090 by push_nested_class.) */
17091 if (processing_template_decl)
17093 tree newdecl1 = push_template_decl (decl1, doing_friend);
17094 if (newdecl1 == error_mark_node)
17096 if (ctype || DECL_STATIC_FUNCTION_P (decl1))
17097 pop_nested_class ();
17098 return false;
17100 decl1 = newdecl1;
17103 /* Make sure the parameter and return types are reasonable. When
17104 you declare a function, these types can be incomplete, but they
17105 must be complete when you define the function. */
17106 check_function_type (decl1, DECL_ARGUMENTS (decl1));
17108 /* Build the return declaration for the function. */
17109 tree restype = TREE_TYPE (fntype);
17111 if (DECL_RESULT (decl1) == NULL_TREE)
17113 tree resdecl;
17115 resdecl = build_decl (input_location, RESULT_DECL, 0, restype);
17116 DECL_ARTIFICIAL (resdecl) = 1;
17117 DECL_IGNORED_P (resdecl) = 1;
17118 DECL_RESULT (decl1) = resdecl;
17120 cp_apply_type_quals_to_decl (cp_type_quals (restype), resdecl);
17123 /* Record the decl so that the function name is defined.
17124 If we already have a decl for this name, and it is a FUNCTION_DECL,
17125 use the old decl. */
17126 if (!processing_template_decl && !(flags & SF_PRE_PARSED))
17128 /* A specialization is not used to guide overload resolution. */
17129 if (!DECL_FUNCTION_MEMBER_P (decl1)
17130 && !(DECL_USE_TEMPLATE (decl1) &&
17131 PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl1))))
17133 tree olddecl = pushdecl (decl1);
17135 if (olddecl == error_mark_node)
17136 /* If something went wrong when registering the declaration,
17137 use DECL1; we have to have a FUNCTION_DECL to use when
17138 parsing the body of the function. */
17140 else
17142 /* Otherwise, OLDDECL is either a previous declaration
17143 of the same function or DECL1 itself. */
17145 if (warn_missing_declarations
17146 && olddecl == decl1
17147 && !DECL_MAIN_P (decl1)
17148 && TREE_PUBLIC (decl1)
17149 && !DECL_DECLARED_INLINE_P (decl1))
17151 tree context;
17153 /* Check whether DECL1 is in an anonymous
17154 namespace. */
17155 for (context = DECL_CONTEXT (decl1);
17156 context;
17157 context = DECL_CONTEXT (context))
17159 if (TREE_CODE (context) == NAMESPACE_DECL
17160 && DECL_NAME (context) == NULL_TREE)
17161 break;
17164 if (context == NULL)
17165 warning_at (DECL_SOURCE_LOCATION (decl1),
17166 OPT_Wmissing_declarations,
17167 "no previous declaration for %qD", decl1);
17170 decl1 = olddecl;
17173 else
17175 /* We need to set the DECL_CONTEXT. */
17176 if (!DECL_CONTEXT (decl1) && DECL_TEMPLATE_INFO (decl1))
17177 DECL_CONTEXT (decl1) = DECL_CONTEXT (DECL_TI_TEMPLATE (decl1));
17179 fntype = TREE_TYPE (decl1);
17180 restype = TREE_TYPE (fntype);
17182 /* If #pragma weak applies, mark the decl appropriately now.
17183 The pragma only applies to global functions. Because
17184 determining whether or not the #pragma applies involves
17185 computing the mangled name for the declaration, we cannot
17186 apply the pragma until after we have merged this declaration
17187 with any previous declarations; if the original declaration
17188 has a linkage specification, that specification applies to
17189 the definition as well, and may affect the mangled name. */
17190 if (DECL_FILE_SCOPE_P (decl1))
17191 maybe_apply_pragma_weak (decl1);
17194 /* We are now in the scope of the function being defined. */
17195 current_function_decl = decl1;
17197 /* Save the parm names or decls from this function's declarator
17198 where store_parm_decls will find them. */
17199 tree current_function_parms = DECL_ARGUMENTS (decl1);
17201 /* Let the user know we're compiling this function. */
17202 announce_function (decl1);
17204 gcc_assert (DECL_INITIAL (decl1));
17206 /* This function may already have been parsed, in which case just
17207 return; our caller will skip over the body without parsing. */
17208 if (DECL_INITIAL (decl1) != error_mark_node)
17209 return true;
17211 /* Initialize RTL machinery. We cannot do this until
17212 CURRENT_FUNCTION_DECL and DECL_RESULT are set up. We do this
17213 even when processing a template; this is how we get
17214 CFUN set up, and our per-function variables initialized.
17215 FIXME factor out the non-RTL stuff. */
17216 cp_binding_level *bl = current_binding_level;
17217 allocate_struct_function (decl1, processing_template_decl);
17219 /* Initialize the language data structures. Whenever we start
17220 a new function, we destroy temporaries in the usual way. */
17221 cfun->language = ggc_cleared_alloc<language_function> ();
17222 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
17223 current_binding_level = bl;
17225 /* If we are (erroneously) defining a function that we have already
17226 defined before, wipe out what we knew before. */
17227 gcc_checking_assert (!DECL_PENDING_INLINE_P (decl1));
17228 FNDECL_USED_AUTO (decl1) = false;
17229 DECL_SAVED_AUTO_RETURN_TYPE (decl1) = NULL;
17231 if (!processing_template_decl && type_uses_auto (restype))
17233 FNDECL_USED_AUTO (decl1) = true;
17234 DECL_SAVED_AUTO_RETURN_TYPE (decl1) = restype;
17237 /* Start the statement-tree, start the tree now. */
17238 DECL_SAVED_TREE (decl1) = push_stmt_list ();
17240 if (ctype && !doing_friend && !DECL_STATIC_FUNCTION_P (decl1))
17242 /* We know that this was set up by `grokclassfn'. We do not
17243 wait until `store_parm_decls', since evil parse errors may
17244 never get us to that point. Here we keep the consistency
17245 between `current_class_type' and `current_class_ptr'. */
17246 tree t = DECL_ARGUMENTS (decl1);
17248 gcc_assert (t != NULL_TREE && TREE_CODE (t) == PARM_DECL);
17249 gcc_assert (TYPE_PTR_P (TREE_TYPE (t)));
17251 cp_function_chain->x_current_class_ref
17252 = cp_build_fold_indirect_ref (t);
17253 /* Set this second to avoid shortcut in cp_build_indirect_ref. */
17254 cp_function_chain->x_current_class_ptr = t;
17256 /* Constructors and destructors need to know whether they're "in
17257 charge" of initializing virtual base classes. */
17258 t = DECL_CHAIN (t);
17259 if (DECL_HAS_IN_CHARGE_PARM_P (decl1))
17261 current_in_charge_parm = t;
17262 t = DECL_CHAIN (t);
17264 if (DECL_HAS_VTT_PARM_P (decl1))
17266 gcc_assert (DECL_NAME (t) == vtt_parm_identifier);
17267 current_vtt_parm = t;
17271 bool honor_interface = (!DECL_TEMPLATE_INSTANTIATION (decl1)
17272 /* Implicitly-defined methods (like the
17273 destructor for a class in which no destructor
17274 is explicitly declared) must not be defined
17275 until their definition is needed. So, we
17276 ignore interface specifications for
17277 compiler-generated functions. */
17278 && !DECL_ARTIFICIAL (decl1));
17279 struct c_fileinfo *finfo
17280 = get_fileinfo (LOCATION_FILE (DECL_SOURCE_LOCATION (decl1)));
17282 if (processing_template_decl)
17283 /* Don't mess with interface flags. */;
17284 else if (DECL_INTERFACE_KNOWN (decl1))
17286 tree ctx = decl_function_context (decl1);
17288 if (DECL_NOT_REALLY_EXTERN (decl1))
17289 DECL_EXTERNAL (decl1) = 0;
17291 if (ctx != NULL_TREE && vague_linkage_p (ctx))
17292 /* This is a function in a local class in an extern inline
17293 or template function. */
17294 comdat_linkage (decl1);
17296 /* If this function belongs to an interface, it is public.
17297 If it belongs to someone else's interface, it is also external.
17298 This only affects inlines and template instantiations. */
17299 else if (!finfo->interface_unknown && honor_interface)
17301 if (DECL_DECLARED_INLINE_P (decl1)
17302 || DECL_TEMPLATE_INSTANTIATION (decl1))
17304 DECL_EXTERNAL (decl1)
17305 = (finfo->interface_only
17306 || (DECL_DECLARED_INLINE_P (decl1)
17307 && ! flag_implement_inlines
17308 && !DECL_VINDEX (decl1)));
17310 /* For WIN32 we also want to put these in linkonce sections. */
17311 maybe_make_one_only (decl1);
17313 else
17314 DECL_EXTERNAL (decl1) = 0;
17315 DECL_INTERFACE_KNOWN (decl1) = 1;
17316 /* If this function is in an interface implemented in this file,
17317 make sure that the back end knows to emit this function
17318 here. */
17319 if (!DECL_EXTERNAL (decl1))
17320 mark_needed (decl1);
17322 else if (finfo->interface_unknown && finfo->interface_only
17323 && honor_interface)
17325 /* If MULTIPLE_SYMBOL_SPACES is defined and we saw a #pragma
17326 interface, we will have both finfo->interface_unknown and
17327 finfo->interface_only set. In that case, we don't want to
17328 use the normal heuristics because someone will supply a
17329 #pragma implementation elsewhere, and deducing it here would
17330 produce a conflict. */
17331 comdat_linkage (decl1);
17332 DECL_EXTERNAL (decl1) = 0;
17333 DECL_INTERFACE_KNOWN (decl1) = 1;
17334 DECL_DEFER_OUTPUT (decl1) = 1;
17336 else
17338 /* This is a definition, not a reference.
17339 So clear DECL_EXTERNAL, unless this is a GNU extern inline. */
17340 if (!GNU_INLINE_P (decl1))
17341 DECL_EXTERNAL (decl1) = 0;
17343 if ((DECL_DECLARED_INLINE_P (decl1)
17344 || DECL_TEMPLATE_INSTANTIATION (decl1))
17345 && ! DECL_INTERFACE_KNOWN (decl1))
17346 DECL_DEFER_OUTPUT (decl1) = 1;
17347 else
17348 DECL_INTERFACE_KNOWN (decl1) = 1;
17351 /* Determine the ELF visibility attribute for the function. We must not
17352 do this before calling "pushdecl", as we must allow "duplicate_decls"
17353 to merge any attributes appropriately. We also need to wait until
17354 linkage is set. */
17355 if (!DECL_CLONED_FUNCTION_P (decl1))
17356 determine_visibility (decl1);
17358 if (!processing_template_decl)
17359 maybe_instantiate_noexcept (decl1);
17361 begin_scope (sk_function_parms, decl1);
17363 ++function_depth;
17365 start_fname_decls ();
17367 store_parm_decls (current_function_parms);
17369 if (!processing_template_decl
17370 && (flag_lifetime_dse > 1)
17371 && DECL_CONSTRUCTOR_P (decl1)
17372 && !DECL_CLONED_FUNCTION_P (decl1)
17373 /* Clobbering an empty base is harmful if it overlays real data. */
17374 && !is_empty_class (current_class_type)
17375 /* We can't clobber safely for an implicitly-defined default constructor
17376 because part of the initialization might happen before we enter the
17377 constructor, via AGGR_INIT_ZERO_FIRST (c++/68006). */
17378 && !implicit_default_ctor_p (decl1))
17379 finish_expr_stmt (build_clobber_this ());
17381 if (!processing_template_decl
17382 && DECL_CONSTRUCTOR_P (decl1)
17383 && sanitize_flags_p (SANITIZE_VPTR)
17384 && !DECL_CLONED_FUNCTION_P (decl1)
17385 && !implicit_default_ctor_p (decl1))
17386 cp_ubsan_maybe_initialize_vtbl_ptrs (current_class_ptr);
17388 if (!DECL_OMP_DECLARE_REDUCTION_P (decl1))
17389 start_lambda_scope (decl1);
17391 return true;
17395 /* Like start_preparsed_function, except that instead of a
17396 FUNCTION_DECL, this function takes DECLSPECS and DECLARATOR.
17398 Returns true on success. If the DECLARATOR is not suitable
17399 for a function, we return false, which tells the parser to
17400 skip the entire function. */
17402 bool
17403 start_function (cp_decl_specifier_seq *declspecs,
17404 const cp_declarator *declarator,
17405 tree attrs)
17407 tree decl1;
17409 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1, &attrs);
17410 invoke_plugin_callbacks (PLUGIN_START_PARSE_FUNCTION, decl1);
17411 if (decl1 == error_mark_node)
17412 return false;
17414 if (DECL_MAIN_P (decl1))
17415 /* main must return int. grokfndecl should have corrected it
17416 (and issued a diagnostic) if the user got it wrong. */
17417 gcc_assert (same_type_p (TREE_TYPE (TREE_TYPE (decl1)),
17418 integer_type_node));
17420 return start_preparsed_function (decl1, attrs, /*flags=*/SF_DEFAULT);
17423 /* Returns true iff an EH_SPEC_BLOCK should be created in the body of
17424 FN. */
17426 static bool
17427 use_eh_spec_block (tree fn)
17429 return (flag_exceptions && flag_enforce_eh_specs
17430 && !processing_template_decl
17431 /* We insert the EH_SPEC_BLOCK only in the original
17432 function; then, it is copied automatically to the
17433 clones. */
17434 && !DECL_CLONED_FUNCTION_P (fn)
17435 /* Implicitly-generated constructors and destructors have
17436 exception specifications. However, those specifications
17437 are the union of the possible exceptions specified by the
17438 constructors/destructors for bases and members, so no
17439 unallowed exception will ever reach this function. By
17440 not creating the EH_SPEC_BLOCK we save a little memory,
17441 and we avoid spurious warnings about unreachable
17442 code. */
17443 && !DECL_DEFAULTED_FN (fn)
17444 && !type_throw_all_p (TREE_TYPE (fn)));
17447 /* Helper function to push ARGS into the current lexical scope. DECL
17448 is the function declaration. NONPARMS is used to handle enum
17449 constants. */
17451 void
17452 do_push_parm_decls (tree decl, tree args, tree *nonparms)
17454 /* If we're doing semantic analysis, then we'll call pushdecl
17455 for each of these. We must do them in reverse order so that
17456 they end in the correct forward order. */
17457 args = nreverse (args);
17459 tree next;
17460 for (tree parm = args; parm; parm = next)
17462 next = DECL_CHAIN (parm);
17463 if (TREE_CODE (parm) == PARM_DECL)
17464 pushdecl (parm);
17465 else if (nonparms)
17467 /* If we find an enum constant or a type tag, put it aside for
17468 the moment. */
17469 TREE_CHAIN (parm) = NULL_TREE;
17470 *nonparms = chainon (*nonparms, parm);
17474 /* Get the decls in their original chain order and record in the
17475 function. This is all and only the PARM_DECLs that were
17476 pushed into scope by the loop above. */
17477 DECL_ARGUMENTS (decl) = get_local_decls ();
17480 /* Store the parameter declarations into the current function declaration.
17481 This is called after parsing the parameter declarations, before
17482 digesting the body of the function.
17484 Also install to binding contour return value identifier, if any. */
17486 static void
17487 store_parm_decls (tree current_function_parms)
17489 tree fndecl = current_function_decl;
17491 /* This is a chain of any other decls that came in among the parm
17492 declarations. If a parm is declared with enum {foo, bar} x;
17493 then CONST_DECLs for foo and bar are put here. */
17494 tree nonparms = NULL_TREE;
17496 if (current_function_parms)
17498 /* This case is when the function was defined with an ANSI prototype.
17499 The parms already have decls, so we need not do anything here
17500 except record them as in effect
17501 and complain if any redundant old-style parm decls were written. */
17503 tree specparms = current_function_parms;
17505 /* Must clear this because it might contain TYPE_DECLs declared
17506 at class level. */
17507 current_binding_level->names = NULL;
17509 do_push_parm_decls (fndecl, specparms, &nonparms);
17511 else
17512 DECL_ARGUMENTS (fndecl) = NULL_TREE;
17514 /* Now store the final chain of decls for the arguments
17515 as the decl-chain of the current lexical scope.
17516 Put the enumerators in as well, at the front so that
17517 DECL_ARGUMENTS is not modified. */
17518 current_binding_level->names = chainon (nonparms, DECL_ARGUMENTS (fndecl));
17520 if (use_eh_spec_block (current_function_decl))
17521 current_eh_spec_block = begin_eh_spec_block ();
17525 /* Set the return value of the [cd]tor if the ABI wants that. */
17527 void
17528 maybe_return_this (void)
17530 if (targetm.cxx.cdtor_returns_this ())
17532 /* Return the address of the object. */
17533 tree val = DECL_ARGUMENTS (current_function_decl);
17534 suppress_warning (val, OPT_Wuse_after_free);
17535 val = fold_convert (TREE_TYPE (DECL_RESULT (current_function_decl)), val);
17536 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
17537 DECL_RESULT (current_function_decl), val);
17538 tree exprstmt = build_stmt (input_location, RETURN_EXPR, val);
17539 add_stmt (exprstmt);
17543 /* Do all the processing for the beginning of a destructor; set up the
17544 vtable pointers and cleanups for bases and members. */
17546 static void
17547 begin_destructor_body (void)
17549 tree compound_stmt;
17551 /* If the CURRENT_CLASS_TYPE is incomplete, we will have already
17552 issued an error message. We still want to try to process the
17553 body of the function, but initialize_vtbl_ptrs will crash if
17554 TYPE_BINFO is NULL. */
17555 if (COMPLETE_TYPE_P (current_class_type))
17557 compound_stmt = begin_compound_stmt (0);
17558 /* Make all virtual function table pointers in non-virtual base
17559 classes point to CURRENT_CLASS_TYPE's virtual function
17560 tables. */
17561 initialize_vtbl_ptrs (current_class_ptr);
17562 finish_compound_stmt (compound_stmt);
17564 if (flag_lifetime_dse
17565 /* Clobbering an empty base is harmful if it overlays real data. */
17566 && !is_empty_class (current_class_type))
17568 if (sanitize_flags_p (SANITIZE_VPTR)
17569 && (flag_sanitize_recover & SANITIZE_VPTR) == 0
17570 && TYPE_CONTAINS_VPTR_P (current_class_type))
17572 tree binfo = TYPE_BINFO (current_class_type);
17573 tree ref
17574 = cp_build_fold_indirect_ref (current_class_ptr);
17576 tree vtbl_ptr = build_vfield_ref (ref, TREE_TYPE (binfo));
17577 tree vtbl = build_zero_cst (TREE_TYPE (vtbl_ptr));
17578 tree stmt = cp_build_modify_expr (input_location, vtbl_ptr,
17579 NOP_EXPR, vtbl,
17580 tf_warning_or_error);
17581 /* If the vptr is shared with some virtual nearly empty base,
17582 don't clear it if not in charge, the dtor of the virtual
17583 nearly empty base will do that later. */
17584 if (CLASSTYPE_VBASECLASSES (current_class_type))
17586 tree c = current_class_type;
17587 while (CLASSTYPE_PRIMARY_BINFO (c))
17589 if (BINFO_VIRTUAL_P (CLASSTYPE_PRIMARY_BINFO (c)))
17591 stmt = convert_to_void (stmt, ICV_STATEMENT,
17592 tf_warning_or_error);
17593 stmt = build_if_in_charge (stmt);
17594 break;
17596 c = BINFO_TYPE (CLASSTYPE_PRIMARY_BINFO (c));
17599 finish_decl_cleanup (NULL_TREE, stmt);
17601 else
17602 finish_decl_cleanup (NULL_TREE, build_clobber_this ());
17605 /* And insert cleanups for our bases and members so that they
17606 will be properly destroyed if we throw. */
17607 push_base_cleanups ();
17611 /* Do the necessary processing for the beginning of a function body, which
17612 in this case includes member-initializers, but not the catch clauses of
17613 a function-try-block. Currently, this means opening a binding level
17614 for the member-initializers (in a ctor), member cleanups (in a dtor),
17615 and capture proxies (in a lambda operator()). */
17617 tree
17618 begin_function_body (void)
17620 if (! FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
17621 return NULL_TREE;
17623 if (processing_template_decl)
17624 /* Do nothing now. */;
17625 else
17626 /* Always keep the BLOCK node associated with the outermost pair of
17627 curly braces of a function. These are needed for correct
17628 operation of dwarfout.c. */
17629 keep_next_level (true);
17631 tree stmt = begin_compound_stmt (BCS_FN_BODY);
17633 if (processing_template_decl)
17634 /* Do nothing now. */;
17635 else if (DECL_DESTRUCTOR_P (current_function_decl))
17636 begin_destructor_body ();
17638 return stmt;
17641 /* Do the processing for the end of a function body. Currently, this means
17642 closing out the cleanups for fully-constructed bases and members, and in
17643 the case of the destructor, deleting the object if desired. Again, this
17644 is only meaningful for [cd]tors, since they are the only functions where
17645 there is a significant distinction between the main body and any
17646 function catch clauses. Handling, say, main() return semantics here
17647 would be wrong, as flowing off the end of a function catch clause for
17648 main() would also need to return 0. */
17650 void
17651 finish_function_body (tree compstmt)
17653 if (compstmt == NULL_TREE)
17654 return;
17656 /* Close the block. */
17657 finish_compound_stmt (compstmt);
17659 if (processing_template_decl)
17660 /* Do nothing now. */;
17661 else if (DECL_CONSTRUCTOR_P (current_function_decl)
17662 || DECL_DESTRUCTOR_P (current_function_decl))
17663 maybe_return_this ();
17666 /* Given a function, returns the BLOCK corresponding to the outermost level
17667 of curly braces, skipping the artificial block created for constructor
17668 initializers. */
17670 tree
17671 outer_curly_brace_block (tree fndecl)
17673 tree block = DECL_INITIAL (fndecl);
17674 if (BLOCK_OUTER_CURLY_BRACE_P (block))
17675 return block;
17676 block = BLOCK_SUBBLOCKS (block);
17677 if (BLOCK_OUTER_CURLY_BRACE_P (block))
17678 return block;
17679 block = BLOCK_SUBBLOCKS (block);
17680 gcc_assert (BLOCK_OUTER_CURLY_BRACE_P (block));
17681 return block;
17684 /* If FNDECL is a class's key method, add the class to the list of
17685 keyed classes that should be emitted. */
17687 static void
17688 record_key_method_defined (tree fndecl)
17690 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fndecl)
17691 && DECL_VIRTUAL_P (fndecl)
17692 && !processing_template_decl)
17694 tree fnclass = DECL_CONTEXT (fndecl);
17695 if (fndecl == CLASSTYPE_KEY_METHOD (fnclass))
17696 vec_safe_push (keyed_classes, fnclass);
17700 /* Attempt to add a fix-it hint to RICHLOC suggesting the insertion
17701 of "return *this;" immediately before its location, using FNDECL's
17702 first statement (if any) to give the indentation, if appropriate. */
17704 static void
17705 add_return_star_this_fixit (gcc_rich_location *richloc, tree fndecl)
17707 location_t indent = UNKNOWN_LOCATION;
17708 tree stmts = expr_first (DECL_SAVED_TREE (fndecl));
17709 if (stmts)
17710 indent = EXPR_LOCATION (stmts);
17711 richloc->add_fixit_insert_formatted ("return *this;",
17712 richloc->get_loc (),
17713 indent);
17716 /* This function carries out the subset of finish_function operations needed
17717 to emit the compiler-generated outlined helper functions used by the
17718 coroutines implementation. */
17720 static void
17721 emit_coro_helper (tree helper)
17723 /* This is a partial set of the operations done by finish_function()
17724 plus emitting the result. */
17725 set_cfun (NULL);
17726 current_function_decl = helper;
17727 begin_scope (sk_function_parms, NULL);
17728 store_parm_decls (DECL_ARGUMENTS (helper));
17729 announce_function (helper);
17730 allocate_struct_function (helper, false);
17731 cfun->language = ggc_cleared_alloc<language_function> ();
17732 poplevel (1, 0, 1);
17733 maybe_save_constexpr_fundef (helper);
17734 /* We must start each function with a clear fold cache. */
17735 clear_fold_cache ();
17736 cp_fold_function (helper);
17737 DECL_CONTEXT (DECL_RESULT (helper)) = helper;
17738 BLOCK_SUPERCONTEXT (DECL_INITIAL (helper)) = helper;
17739 /* This function has coroutine IFNs that we should handle in middle
17740 end lowering. */
17741 cfun->coroutine_component = true;
17742 cp_genericize (helper);
17743 expand_or_defer_fn (helper);
17746 /* Finish up a function declaration and compile that function
17747 all the way to assembler language output. The free the storage
17748 for the function definition. INLINE_P is TRUE if we just
17749 finished processing the body of an in-class inline function
17750 definition. (This processing will have taken place after the
17751 class definition is complete.) */
17753 tree
17754 finish_function (bool inline_p)
17756 tree fndecl = current_function_decl;
17757 tree fntype, ctype = NULL_TREE;
17758 tree resumer = NULL_TREE, destroyer = NULL_TREE;
17759 bool coro_p = flag_coroutines
17760 && !processing_template_decl
17761 && DECL_COROUTINE_P (fndecl);
17762 bool coro_emit_helpers = false;
17764 /* When we get some parse errors, we can end up without a
17765 current_function_decl, so cope. */
17766 if (fndecl == NULL_TREE)
17767 return error_mark_node;
17769 if (!DECL_OMP_DECLARE_REDUCTION_P (fndecl))
17770 finish_lambda_scope ();
17772 if (c_dialect_objc ())
17773 objc_finish_function ();
17775 record_key_method_defined (fndecl);
17777 fntype = TREE_TYPE (fndecl);
17779 /* TREE_READONLY (fndecl) = 1;
17780 This caused &foo to be of type ptr-to-const-function
17781 which then got a warning when stored in a ptr-to-function variable. */
17783 gcc_assert (building_stmt_list_p ());
17784 /* The current function is being defined, so its DECL_INITIAL should
17785 be set, and unless there's a multiple definition, it should be
17786 error_mark_node. */
17787 gcc_assert (DECL_INITIAL (fndecl) == error_mark_node);
17789 if (coro_p)
17791 /* Only try to emit the coroutine outlined helper functions if the
17792 transforms succeeded. Otherwise, treat errors in the same way as
17793 a regular function. */
17794 coro_emit_helpers = morph_fn_to_coro (fndecl, &resumer, &destroyer);
17796 /* We should handle coroutine IFNs in middle end lowering. */
17797 cfun->coroutine_component = true;
17799 /* Do not try to process the ramp's EH unless outlining succeeded. */
17800 if (coro_emit_helpers && use_eh_spec_block (fndecl))
17801 finish_eh_spec_block (TYPE_RAISES_EXCEPTIONS
17802 (TREE_TYPE (fndecl)),
17803 current_eh_spec_block);
17805 else
17806 /* For a cloned function, we've already got all the code we need;
17807 there's no need to add any extra bits. */
17808 if (!DECL_CLONED_FUNCTION_P (fndecl))
17810 /* Make it so that `main' always returns 0 by default. */
17811 if (DECL_MAIN_P (current_function_decl))
17812 finish_return_stmt (integer_zero_node);
17814 if (use_eh_spec_block (current_function_decl))
17815 finish_eh_spec_block (TYPE_RAISES_EXCEPTIONS
17816 (TREE_TYPE (current_function_decl)),
17817 current_eh_spec_block);
17820 /* If we're saving up tree structure, tie off the function now. */
17821 DECL_SAVED_TREE (fndecl) = pop_stmt_list (DECL_SAVED_TREE (fndecl));
17823 finish_fname_decls ();
17825 /* If this function can't throw any exceptions, remember that. */
17826 if (!processing_template_decl
17827 && !cp_function_chain->can_throw
17828 && !flag_non_call_exceptions
17829 && !decl_replaceable_p (fndecl,
17830 opt_for_fn (fndecl, flag_semantic_interposition)))
17831 TREE_NOTHROW (fndecl) = 1;
17833 /* This must come after expand_function_end because cleanups might
17834 have declarations (from inline functions) that need to go into
17835 this function's blocks. */
17837 /* If the current binding level isn't the outermost binding level
17838 for this function, either there is a bug, or we have experienced
17839 syntax errors and the statement tree is malformed. */
17840 if (current_binding_level->kind != sk_function_parms)
17842 /* Make sure we have already experienced errors. */
17843 gcc_assert (errorcount);
17845 /* Throw away the broken statement tree and extra binding
17846 levels. */
17847 DECL_SAVED_TREE (fndecl) = alloc_stmt_list ();
17849 while (current_binding_level->kind != sk_function_parms)
17851 if (current_binding_level->kind == sk_class)
17852 pop_nested_class ();
17853 else
17854 poplevel (0, 0, 0);
17857 poplevel (1, 0, 1);
17859 /* Statements should always be full-expressions at the outermost set
17860 of curly braces for a function. */
17861 gcc_assert (stmts_are_full_exprs_p ());
17863 /* If there are no return statements in a function with auto return type,
17864 the return type is void. But if the declared type is something like
17865 auto*, this is an error. */
17866 if (!processing_template_decl && FNDECL_USED_AUTO (fndecl)
17867 && TREE_TYPE (fntype) == DECL_SAVED_AUTO_RETURN_TYPE (fndecl))
17869 if (is_auto (DECL_SAVED_AUTO_RETURN_TYPE (fndecl))
17870 && !current_function_returns_value
17871 && !current_function_returns_null)
17873 /* We haven't applied return type deduction because we haven't
17874 seen any return statements. Do that now. */
17875 tree node = type_uses_auto (DECL_SAVED_AUTO_RETURN_TYPE (fndecl));
17876 do_auto_deduction (DECL_SAVED_AUTO_RETURN_TYPE (fndecl),
17877 void_node, node, tf_warning_or_error,
17878 adc_return_type);
17880 apply_deduced_return_type (fndecl, void_type_node);
17881 fntype = TREE_TYPE (fndecl);
17883 else if (!current_function_returns_value
17884 && !current_function_returns_null)
17886 error ("no return statements in function returning %qT",
17887 DECL_SAVED_AUTO_RETURN_TYPE (fndecl));
17888 inform (input_location, "only plain %<auto%> return type can be "
17889 "deduced to %<void%>");
17893 /* Remember that we were in class scope. */
17894 if (current_class_name)
17895 ctype = current_class_type;
17897 if (DECL_DELETED_FN (fndecl))
17899 DECL_INITIAL (fndecl) = error_mark_node;
17900 DECL_SAVED_TREE (fndecl) = NULL_TREE;
17901 goto cleanup;
17904 // If this is a concept, check that the definition is reasonable.
17905 if (DECL_DECLARED_CONCEPT_P (fndecl))
17906 check_function_concept (fndecl);
17908 if (flag_openmp)
17909 if (tree attr = lookup_attribute ("omp declare variant base",
17910 DECL_ATTRIBUTES (fndecl)))
17911 omp_declare_variant_finalize (fndecl, attr);
17913 /* Complain if there's just no return statement. */
17914 if ((warn_return_type
17915 || (cxx_dialect >= cxx14
17916 && DECL_DECLARED_CONSTEXPR_P (fndecl)))
17917 && !VOID_TYPE_P (TREE_TYPE (fntype))
17918 && !dependent_type_p (TREE_TYPE (fntype))
17919 && !current_function_returns_value && !current_function_returns_null
17920 /* Don't complain if we abort or throw. */
17921 && !current_function_returns_abnormally
17922 /* Don't complain if there's an infinite loop. */
17923 && !current_function_infinite_loop
17924 /* Don't complain if we are declared noreturn. */
17925 && !TREE_THIS_VOLATILE (fndecl)
17926 && !DECL_NAME (DECL_RESULT (fndecl))
17927 && !warning_suppressed_p (fndecl, OPT_Wreturn_type)
17928 /* Structor return values (if any) are set by the compiler. */
17929 && !DECL_CONSTRUCTOR_P (fndecl)
17930 && !DECL_DESTRUCTOR_P (fndecl)
17931 && targetm.warn_func_return (fndecl))
17933 gcc_rich_location richloc (input_location);
17934 /* Potentially add a "return *this;" fix-it hint for
17935 assignment operators. */
17936 if (IDENTIFIER_ASSIGN_OP_P (DECL_NAME (fndecl)))
17938 tree valtype = TREE_TYPE (DECL_RESULT (fndecl));
17939 if (TREE_CODE (valtype) == REFERENCE_TYPE
17940 && current_class_ref
17941 && same_type_ignoring_top_level_qualifiers_p
17942 (TREE_TYPE (valtype), TREE_TYPE (current_class_ref))
17943 && global_dc->option_enabled (OPT_Wreturn_type,
17944 global_dc->lang_mask,
17945 global_dc->option_state))
17946 add_return_star_this_fixit (&richloc, fndecl);
17948 if (cxx_dialect >= cxx14
17949 && DECL_DECLARED_CONSTEXPR_P (fndecl))
17950 error_at (&richloc, "no return statement in %<constexpr%> function "
17951 "returning non-void");
17952 else if (warning_at (&richloc, OPT_Wreturn_type,
17953 "no return statement in function returning "
17954 "non-void"))
17955 suppress_warning (fndecl, OPT_Wreturn_type);
17958 /* Lambda closure members are implicitly constexpr if possible. */
17959 if (cxx_dialect >= cxx17
17960 && LAMBDA_TYPE_P (CP_DECL_CONTEXT (fndecl)))
17961 DECL_DECLARED_CONSTEXPR_P (fndecl)
17962 = ((processing_template_decl
17963 || is_valid_constexpr_fn (fndecl, /*complain*/false))
17964 && potential_constant_expression (DECL_SAVED_TREE (fndecl)));
17966 /* Save constexpr function body before it gets munged by
17967 the NRV transformation. */
17968 maybe_save_constexpr_fundef (fndecl);
17970 /* Invoke the pre-genericize plugin before we start munging things. */
17971 if (!processing_template_decl)
17972 invoke_plugin_callbacks (PLUGIN_PRE_GENERICIZE, fndecl);
17974 /* Perform delayed folding before NRV transformation. */
17975 if (!processing_template_decl
17976 && !DECL_IMMEDIATE_FUNCTION_P (fndecl)
17977 && !DECL_OMP_DECLARE_REDUCTION_P (fndecl))
17978 cp_fold_function (fndecl);
17980 /* Set up the named return value optimization, if we can. Candidate
17981 variables are selected in check_return_expr. */
17982 if (current_function_return_value)
17984 tree r = current_function_return_value;
17985 tree outer;
17987 if (r != error_mark_node
17988 /* This is only worth doing for fns that return in memory--and
17989 simpler, since we don't have to worry about promoted modes. */
17990 && aggregate_value_p (TREE_TYPE (TREE_TYPE (fndecl)), fndecl)
17991 /* Only allow this for variables declared in the outer scope of
17992 the function so we know that their lifetime always ends with a
17993 return; see g++.dg/opt/nrv6.C. We could be more flexible if
17994 we were to do this optimization in tree-ssa. */
17995 && (outer = outer_curly_brace_block (fndecl))
17996 && chain_member (r, BLOCK_VARS (outer)))
17997 finalize_nrv (&DECL_SAVED_TREE (fndecl), r, DECL_RESULT (fndecl));
17999 current_function_return_value = NULL_TREE;
18002 /* Must mark the RESULT_DECL as being in this function. */
18003 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
18005 /* Set the BLOCK_SUPERCONTEXT of the outermost function scope to point
18006 to the FUNCTION_DECL node itself. */
18007 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
18009 /* Store the end of the function, so that we get good line number
18010 info for the epilogue. */
18011 cfun->function_end_locus = input_location;
18013 /* Complain about parameters that are only set, but never otherwise used. */
18014 if (warn_unused_but_set_parameter
18015 && !processing_template_decl
18016 && errorcount == unused_but_set_errorcount
18017 && !DECL_CLONED_FUNCTION_P (fndecl))
18019 tree decl;
18021 for (decl = DECL_ARGUMENTS (fndecl);
18022 decl;
18023 decl = DECL_CHAIN (decl))
18024 if (TREE_USED (decl)
18025 && TREE_CODE (decl) == PARM_DECL
18026 && !DECL_READ_P (decl)
18027 && DECL_NAME (decl)
18028 && !DECL_ARTIFICIAL (decl)
18029 && !warning_suppressed_p (decl,OPT_Wunused_but_set_parameter)
18030 && !DECL_IN_SYSTEM_HEADER (decl)
18031 && TREE_TYPE (decl) != error_mark_node
18032 && !TYPE_REF_P (TREE_TYPE (decl))
18033 && (!CLASS_TYPE_P (TREE_TYPE (decl))
18034 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (decl))))
18035 warning_at (DECL_SOURCE_LOCATION (decl),
18036 OPT_Wunused_but_set_parameter,
18037 "parameter %qD set but not used", decl);
18038 unused_but_set_errorcount = errorcount;
18041 /* Complain about locally defined typedefs that are not used in this
18042 function. */
18043 maybe_warn_unused_local_typedefs ();
18045 /* Possibly warn about unused parameters. */
18046 if (warn_unused_parameter
18047 && !processing_template_decl
18048 && !DECL_CLONED_FUNCTION_P (fndecl))
18049 do_warn_unused_parameter (fndecl);
18051 /* Genericize before inlining. */
18052 if (!processing_template_decl
18053 && !DECL_IMMEDIATE_FUNCTION_P (fndecl)
18054 && !DECL_OMP_DECLARE_REDUCTION_P (fndecl))
18055 cp_genericize (fndecl);
18057 /* Emit the resumer and destroyer functions now, providing that we have
18058 not encountered some fatal error. */
18059 if (coro_emit_helpers)
18061 emit_coro_helper (resumer);
18062 emit_coro_helper (destroyer);
18065 cleanup:
18066 /* We're leaving the context of this function, so zap cfun. It's still in
18067 DECL_STRUCT_FUNCTION, and we'll restore it in tree_rest_of_compilation. */
18068 set_cfun (NULL);
18069 current_function_decl = NULL;
18071 /* If this is an in-class inline definition, we may have to pop the
18072 bindings for the template parameters that we added in
18073 maybe_begin_member_template_processing when start_function was
18074 called. */
18075 if (inline_p)
18076 maybe_end_member_template_processing ();
18078 /* Leave the scope of the class. */
18079 if (ctype)
18080 pop_nested_class ();
18082 --function_depth;
18084 /* Clean up. */
18085 current_function_decl = NULL_TREE;
18087 invoke_plugin_callbacks (PLUGIN_FINISH_PARSE_FUNCTION, fndecl);
18088 return fndecl;
18091 /* Create the FUNCTION_DECL for a function definition.
18092 DECLSPECS and DECLARATOR are the parts of the declaration;
18093 they describe the return type and the name of the function,
18094 but twisted together in a fashion that parallels the syntax of C.
18096 This function creates a binding context for the function body
18097 as well as setting up the FUNCTION_DECL in current_function_decl.
18099 Returns a FUNCTION_DECL on success.
18101 If the DECLARATOR is not suitable for a function (it defines a datum
18102 instead), we return 0, which tells yyparse to report a parse error.
18104 May return void_type_node indicating that this method is actually
18105 a friend. See grokfield for more details.
18107 Came here with a `.pushlevel' .
18109 DO NOT MAKE ANY CHANGES TO THIS CODE WITHOUT MAKING CORRESPONDING
18110 CHANGES TO CODE IN `grokfield'. */
18112 tree
18113 grokmethod (cp_decl_specifier_seq *declspecs,
18114 const cp_declarator *declarator, tree attrlist)
18116 tree fndecl = grokdeclarator (declarator, declspecs, MEMFUNCDEF, 0,
18117 &attrlist);
18119 if (fndecl == error_mark_node)
18120 return error_mark_node;
18122 if (attrlist)
18123 cplus_decl_attributes (&fndecl, attrlist, 0);
18125 /* Pass friends other than inline friend functions back. */
18126 if (fndecl == void_type_node)
18127 return fndecl;
18129 if (DECL_IN_AGGR_P (fndecl))
18131 if (DECL_CLASS_SCOPE_P (fndecl))
18132 error ("%qD is already defined in class %qT", fndecl,
18133 DECL_CONTEXT (fndecl));
18134 return error_mark_node;
18137 check_template_shadow (fndecl);
18139 /* p1779 ABI-Isolation makes inline not a default for in-class
18140 definitions in named module purview. If the user explicitly
18141 made it inline, grokdeclarator will already have done the right
18142 things. */
18143 if ((!named_module_purview_p ()
18144 || flag_module_implicit_inline
18145 /* Lambda's operator function remains inline. */
18146 || LAMBDA_TYPE_P (DECL_CONTEXT (fndecl)))
18147 /* If the user explicitly asked for this to be inline, we don't
18148 need to do more, but more importantly we want to warn if we
18149 can't inline it. */
18150 && !DECL_DECLARED_INLINE_P (fndecl))
18152 if (TREE_PUBLIC (fndecl))
18153 DECL_COMDAT (fndecl) = 1;
18154 DECL_DECLARED_INLINE_P (fndecl) = 1;
18155 /* It's ok if we can't inline this. */
18156 DECL_NO_INLINE_WARNING_P (fndecl) = 1;
18159 /* We process method specializations in finish_struct_1. */
18160 if (processing_template_decl && !DECL_TEMPLATE_SPECIALIZATION (fndecl))
18162 /* Avoid calling decl_spec_seq... until we have to. */
18163 bool friendp = decl_spec_seq_has_spec_p (declspecs, ds_friend);
18164 fndecl = push_template_decl (fndecl, friendp);
18165 if (fndecl == error_mark_node)
18166 return fndecl;
18169 if (DECL_CHAIN (fndecl) && !decl_spec_seq_has_spec_p (declspecs, ds_friend))
18171 fndecl = copy_node (fndecl);
18172 TREE_CHAIN (fndecl) = NULL_TREE;
18175 cp_finish_decl (fndecl, NULL_TREE, false, NULL_TREE, 0);
18177 DECL_IN_AGGR_P (fndecl) = 1;
18178 return fndecl;
18182 /* VAR is a VAR_DECL. If its type is incomplete, remember VAR so that
18183 we can lay it out later, when and if its type becomes complete.
18185 Also handle constexpr variables where the initializer involves
18186 an unlowered PTRMEM_CST because the class isn't complete yet. */
18188 void
18189 maybe_register_incomplete_var (tree var)
18191 gcc_assert (VAR_P (var));
18193 /* Keep track of variables with incomplete types. */
18194 if (!processing_template_decl && TREE_TYPE (var) != error_mark_node
18195 && DECL_EXTERNAL (var))
18197 tree inner_type = TREE_TYPE (var);
18199 while (TREE_CODE (inner_type) == ARRAY_TYPE)
18200 inner_type = TREE_TYPE (inner_type);
18201 inner_type = TYPE_MAIN_VARIANT (inner_type);
18203 if ((!COMPLETE_TYPE_P (inner_type) && CLASS_TYPE_P (inner_type))
18204 /* RTTI TD entries are created while defining the type_info. */
18205 || (TYPE_LANG_SPECIFIC (inner_type)
18206 && TYPE_BEING_DEFINED (inner_type)))
18208 incomplete_var iv = {var, inner_type};
18209 vec_safe_push (incomplete_vars, iv);
18211 else if (!(DECL_LANG_SPECIFIC (var) && DECL_TEMPLATE_INFO (var))
18212 && decl_constant_var_p (var)
18213 && (TYPE_PTRMEM_P (inner_type) || CLASS_TYPE_P (inner_type)))
18215 /* When the outermost open class is complete we can resolve any
18216 pointers-to-members. */
18217 tree context = outermost_open_class ();
18218 incomplete_var iv = {var, context};
18219 vec_safe_push (incomplete_vars, iv);
18224 /* Called when a class type (given by TYPE) is defined. If there are
18225 any existing VAR_DECLs whose type has been completed by this
18226 declaration, update them now. */
18228 void
18229 complete_vars (tree type)
18231 unsigned ix;
18232 incomplete_var *iv;
18234 for (ix = 0; vec_safe_iterate (incomplete_vars, ix, &iv); )
18236 if (same_type_p (type, iv->incomplete_type))
18238 tree var = iv->decl;
18239 tree type = TREE_TYPE (var);
18241 if (type != error_mark_node
18242 && (TYPE_MAIN_VARIANT (strip_array_types (type))
18243 == iv->incomplete_type))
18245 /* Complete the type of the variable. */
18246 complete_type (type);
18247 cp_apply_type_quals_to_decl (cp_type_quals (type), var);
18248 if (COMPLETE_TYPE_P (type))
18249 layout_var_decl (var);
18252 /* Remove this entry from the list. */
18253 incomplete_vars->unordered_remove (ix);
18255 else
18256 ix++;
18260 /* If DECL is of a type which needs a cleanup, build and return an
18261 expression to perform that cleanup here. Return NULL_TREE if no
18262 cleanup need be done. DECL can also be a _REF when called from
18263 split_nonconstant_init_1. */
18265 tree
18266 cxx_maybe_build_cleanup (tree decl, tsubst_flags_t complain)
18268 tree type;
18269 tree attr;
18270 tree cleanup;
18272 /* Assume no cleanup is required. */
18273 cleanup = NULL_TREE;
18275 if (error_operand_p (decl))
18276 return cleanup;
18278 /* Handle "__attribute__((cleanup))". We run the cleanup function
18279 before the destructor since the destructor is what actually
18280 terminates the lifetime of the object. */
18281 if (DECL_P (decl))
18282 attr = lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl));
18283 else
18284 attr = NULL_TREE;
18285 if (attr)
18287 tree id;
18288 tree fn;
18289 tree arg;
18291 /* Get the name specified by the user for the cleanup function. */
18292 id = TREE_VALUE (TREE_VALUE (attr));
18293 /* Look up the name to find the cleanup function to call. It is
18294 important to use lookup_name here because that is what is
18295 used in c-common.cc:handle_cleanup_attribute when performing
18296 initial checks on the attribute. Note that those checks
18297 include ensuring that the function found is not an overloaded
18298 function, or an object with an overloaded call operator,
18299 etc.; we can rely on the fact that the function found is an
18300 ordinary FUNCTION_DECL. */
18301 fn = lookup_name (id);
18302 arg = build_address (decl);
18303 if (!mark_used (decl, complain) && !(complain & tf_error))
18304 return error_mark_node;
18305 cleanup = cp_build_function_call_nary (fn, complain, arg, NULL_TREE);
18306 if (cleanup == error_mark_node)
18307 return error_mark_node;
18309 /* Handle ordinary C++ destructors. */
18310 type = TREE_TYPE (decl);
18311 if (type_build_dtor_call (type))
18313 int flags = LOOKUP_NORMAL|LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR;
18314 tree addr;
18315 tree call;
18317 if (TREE_CODE (type) == ARRAY_TYPE)
18318 addr = decl;
18319 else
18320 addr = build_address (decl);
18322 call = build_delete (input_location, TREE_TYPE (addr), addr,
18323 sfk_complete_destructor, flags, 0, complain);
18324 if (call == error_mark_node)
18325 cleanup = error_mark_node;
18326 else if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
18327 /* Discard the call. */;
18328 else if (decl_maybe_constant_destruction (decl, type)
18329 && DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl))
18330 cxx_constant_dtor (call, decl);
18331 else if (cleanup)
18332 cleanup = cp_build_compound_expr (cleanup, call, complain);
18333 else
18334 cleanup = call;
18337 /* build_delete sets the location of the destructor call to the
18338 current location, even though the destructor is going to be
18339 called later, at the end of the current scope. This can lead to
18340 a "jumpy" behavior for users of debuggers when they step around
18341 the end of the block. So let's unset the location of the
18342 destructor call instead. */
18343 protected_set_expr_location (cleanup, UNKNOWN_LOCATION);
18344 if (cleanup && CONVERT_EXPR_P (cleanup))
18345 protected_set_expr_location (TREE_OPERAND (cleanup, 0), UNKNOWN_LOCATION);
18347 if (cleanup
18348 && DECL_P (decl)
18349 && !lookup_attribute ("warn_unused", TYPE_ATTRIBUTES (TREE_TYPE (decl)))
18350 /* Treat objects with destructors as used; the destructor may do
18351 something substantive. */
18352 && !mark_used (decl, complain) && !(complain & tf_error))
18353 return error_mark_node;
18355 if (cleanup && cfun && !processing_template_decl
18356 && !expr_noexcept_p (cleanup, tf_none))
18357 cp_function_chain->throwing_cleanup = true;
18359 return cleanup;
18363 /* Return the FUNCTION_TYPE that corresponds to MEMFNTYPE, which can be a
18364 FUNCTION_DECL, METHOD_TYPE, FUNCTION_TYPE, pointer or reference to
18365 METHOD_TYPE or FUNCTION_TYPE, or pointer to member function. */
18367 tree
18368 static_fn_type (tree memfntype)
18370 tree fntype;
18371 tree args;
18373 if (TYPE_PTRMEMFUNC_P (memfntype))
18374 memfntype = TYPE_PTRMEMFUNC_FN_TYPE (memfntype);
18375 if (INDIRECT_TYPE_P (memfntype)
18376 || TREE_CODE (memfntype) == FUNCTION_DECL)
18377 memfntype = TREE_TYPE (memfntype);
18378 if (TREE_CODE (memfntype) == FUNCTION_TYPE)
18379 return memfntype;
18380 gcc_assert (TREE_CODE (memfntype) == METHOD_TYPE);
18381 args = TYPE_ARG_TYPES (memfntype);
18382 fntype = build_function_type (TREE_TYPE (memfntype), TREE_CHAIN (args));
18383 fntype = apply_memfn_quals (fntype, type_memfn_quals (memfntype));
18384 fntype = (cp_build_type_attribute_variant
18385 (fntype, TYPE_ATTRIBUTES (memfntype)));
18386 fntype = cxx_copy_lang_qualifiers (fntype, memfntype);
18387 return fntype;
18390 /* DECL was originally constructed as a non-static member function,
18391 but turned out to be static. Update it accordingly. */
18393 void
18394 revert_static_member_fn (tree decl)
18396 tree stype = static_fn_type (decl);
18397 cp_cv_quals quals = type_memfn_quals (stype);
18398 cp_ref_qualifier rqual = type_memfn_rqual (stype);
18400 if (quals != TYPE_UNQUALIFIED || rqual != REF_QUAL_NONE)
18401 stype = apply_memfn_quals (stype, TYPE_UNQUALIFIED, REF_QUAL_NONE);
18403 TREE_TYPE (decl) = stype;
18405 if (DECL_ARGUMENTS (decl))
18406 DECL_ARGUMENTS (decl) = DECL_CHAIN (DECL_ARGUMENTS (decl));
18407 DECL_STATIC_FUNCTION_P (decl) = 1;
18410 /* Return which tree structure is used by T, or TS_CP_GENERIC if T is
18411 one of the language-independent trees. */
18413 enum cp_tree_node_structure_enum
18414 cp_tree_node_structure (union lang_tree_node * t)
18416 switch (TREE_CODE (&t->generic))
18418 case ARGUMENT_PACK_SELECT: return TS_CP_ARGUMENT_PACK_SELECT;
18419 case BASELINK: return TS_CP_BASELINK;
18420 case CONSTRAINT_INFO: return TS_CP_CONSTRAINT_INFO;
18421 case DEFERRED_NOEXCEPT: return TS_CP_DEFERRED_NOEXCEPT;
18422 case DEFERRED_PARSE: return TS_CP_DEFERRED_PARSE;
18423 case IDENTIFIER_NODE: return TS_CP_IDENTIFIER;
18424 case LAMBDA_EXPR: return TS_CP_LAMBDA_EXPR;
18425 case BINDING_VECTOR: return TS_CP_BINDING_VECTOR;
18426 case OVERLOAD: return TS_CP_OVERLOAD;
18427 case PTRMEM_CST: return TS_CP_PTRMEM;
18428 case STATIC_ASSERT: return TS_CP_STATIC_ASSERT;
18429 case TEMPLATE_DECL: return TS_CP_TEMPLATE_DECL;
18430 case TEMPLATE_INFO: return TS_CP_TEMPLATE_INFO;
18431 case TEMPLATE_PARM_INDEX: return TS_CP_TPI;
18432 case TRAIT_EXPR: return TS_CP_TRAIT_EXPR;
18433 case USERDEF_LITERAL: return TS_CP_USERDEF_LITERAL;
18434 default: return TS_CP_GENERIC;
18438 /* Build the void_list_node (void_type_node having been created). */
18439 tree
18440 build_void_list_node (void)
18442 tree t = build_tree_list (NULL_TREE, void_type_node);
18443 return t;
18446 bool
18447 cp_missing_noreturn_ok_p (tree decl)
18449 /* A missing noreturn is ok for the `main' function. */
18450 return DECL_MAIN_P (decl);
18453 /* Return the decl used to identify the COMDAT group into which DECL should
18454 be placed. */
18456 tree
18457 cxx_comdat_group (tree decl)
18459 /* Virtual tables, construction virtual tables, and virtual table
18460 tables all go in a single COMDAT group, named after the primary
18461 virtual table. */
18462 if (VAR_P (decl) && DECL_VTABLE_OR_VTT_P (decl))
18463 decl = CLASSTYPE_VTABLES (DECL_CONTEXT (decl));
18464 /* For all other DECLs, the COMDAT group is the mangled name of the
18465 declaration itself. */
18466 else
18468 while (DECL_THUNK_P (decl))
18470 /* If TARGET_USE_LOCAL_THUNK_ALIAS_P, use_thunk puts the thunk
18471 into the same section as the target function. In that case
18472 we must return target's name. */
18473 tree target = THUNK_TARGET (decl);
18474 if (TARGET_USE_LOCAL_THUNK_ALIAS_P (target)
18475 && DECL_SECTION_NAME (target) != NULL
18476 && DECL_ONE_ONLY (target))
18477 decl = target;
18478 else
18479 break;
18483 return decl;
18486 /* Returns the return type for FN as written by the user, which may include
18487 a placeholder for a deduced return type. */
18489 tree
18490 fndecl_declared_return_type (tree fn)
18492 fn = STRIP_TEMPLATE (fn);
18493 if (FNDECL_USED_AUTO (fn))
18494 return DECL_SAVED_AUTO_RETURN_TYPE (fn);
18496 return TREE_TYPE (TREE_TYPE (fn));
18499 /* Returns true iff DECL is a variable or function declared with an auto type
18500 that has not yet been deduced to a real type. */
18502 bool
18503 undeduced_auto_decl (tree decl)
18505 if (cxx_dialect < cxx11)
18506 return false;
18507 STRIP_ANY_LOCATION_WRAPPER (decl);
18508 return ((VAR_OR_FUNCTION_DECL_P (decl)
18509 || TREE_CODE (decl) == TEMPLATE_DECL)
18510 && type_uses_auto (TREE_TYPE (decl)));
18513 /* Complain if DECL has an undeduced return type. */
18515 bool
18516 require_deduced_type (tree decl, tsubst_flags_t complain)
18518 if (undeduced_auto_decl (decl))
18520 if (warning_suppressed_p (decl) && seen_error ())
18521 /* We probably already complained about deduction failure. */;
18522 else if (complain & tf_error)
18523 error ("use of %qD before deduction of %<auto%>", decl);
18524 note_failed_type_completion_for_satisfaction (decl);
18525 return false;
18527 return true;
18530 /* Create a representation of the explicit-specifier with
18531 constant-expression of EXPR. COMPLAIN is as for tsubst. */
18533 tree
18534 build_explicit_specifier (tree expr, tsubst_flags_t complain)
18536 if (check_for_bare_parameter_packs (expr))
18537 return error_mark_node;
18539 if (instantiation_dependent_expression_p (expr))
18540 /* Wait for instantiation, tsubst_function_decl will handle it. */
18541 return expr;
18543 expr = build_converted_constant_bool_expr (expr, complain);
18544 expr = instantiate_non_dependent_expr_sfinae (expr, complain);
18545 expr = cxx_constant_value (expr);
18546 return expr;
18549 #include "gt-cp-decl.h"