c: Implement C23 nullptr (N3042)
[official-gcc.git] / gcc / cp / decl.cc
blobd46a347a6c7476d00f29d79190d7f0c3762b27d1
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 /* C++-specific nullptr initialization. */
4797 if (abi_version_at_least (9))
4798 SET_TYPE_ALIGN (nullptr_type_node, GET_MODE_ALIGNMENT (ptr_mode));
4799 record_builtin_type (RID_MAX, "decltype(nullptr)", nullptr_type_node);
4802 if (! supports_one_only ())
4803 flag_weak = 0;
4805 abort_fndecl
4806 = build_library_fn_ptr ("__cxa_pure_virtual", void_ftype,
4807 ECF_NORETURN | ECF_NOTHROW | ECF_COLD);
4808 if (flag_weak)
4809 /* If no definition is available, resolve references to NULL. */
4810 declare_weak (abort_fndecl);
4812 /* Perform other language dependent initializations. */
4813 init_class_processing ();
4814 init_rtti_processing ();
4815 init_template_processing ();
4817 if (flag_exceptions)
4818 init_exception_processing ();
4820 if (modules_p ())
4821 init_modules (parse_in);
4823 make_fname_decl = cp_make_fname_decl;
4824 start_fname_decls ();
4826 /* Show we use EH for cleanups. */
4827 if (flag_exceptions)
4828 using_eh_for_cleanups ();
4830 /* Check that the hardware interference sizes are at least
4831 alignof(max_align_t), as required by the standard. */
4832 const int max_align = max_align_t_align () / BITS_PER_UNIT;
4833 if (OPTION_SET_P (param_destruct_interfere_size))
4835 if (param_destruct_interfere_size < max_align)
4836 error ("%<--param destructive-interference-size=%d%> is less than "
4837 "%d", param_destruct_interfere_size, max_align);
4838 else if (param_destruct_interfere_size < param_l1_cache_line_size)
4839 warning (OPT_Winterference_size,
4840 "%<--param destructive-interference-size=%d%> "
4841 "is less than %<--param l1-cache-line-size=%d%>",
4842 param_destruct_interfere_size, param_l1_cache_line_size);
4844 else if (param_destruct_interfere_size)
4845 /* Assume the internal value is OK. */;
4846 else if (param_l1_cache_line_size >= max_align)
4847 param_destruct_interfere_size = param_l1_cache_line_size;
4848 /* else leave it unset. */
4850 if (OPTION_SET_P (param_construct_interfere_size))
4852 if (param_construct_interfere_size < max_align)
4853 error ("%<--param constructive-interference-size=%d%> is less than "
4854 "%d", param_construct_interfere_size, max_align);
4855 else if (param_construct_interfere_size > param_l1_cache_line_size
4856 && param_l1_cache_line_size >= max_align)
4857 warning (OPT_Winterference_size,
4858 "%<--param constructive-interference-size=%d%> "
4859 "is greater than %<--param l1-cache-line-size=%d%>",
4860 param_construct_interfere_size, param_l1_cache_line_size);
4862 else if (param_construct_interfere_size)
4863 /* Assume the internal value is OK. */;
4864 else if (param_l1_cache_line_size >= max_align)
4865 param_construct_interfere_size = param_l1_cache_line_size;
4868 /* Enter an abi node in global-module context. returns a cookie to
4869 give to pop_abi_namespace. */
4871 unsigned
4872 push_abi_namespace (tree node)
4874 push_nested_namespace (node);
4875 push_visibility ("default", 2);
4876 unsigned flags = module_kind;
4877 module_kind = 0;
4878 return flags;
4881 /* Pop an abi namespace, FLAGS is the cookie push_abi_namespace gave
4882 you. */
4884 void
4885 pop_abi_namespace (unsigned flags, tree node)
4887 module_kind = flags;
4888 pop_visibility (2);
4889 pop_nested_namespace (node);
4892 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give
4893 the decl, LOC is the location to give the decl, NAME is the
4894 initialization string and TYPE_DEP indicates whether NAME depended
4895 on the type of the function. We make use of that to detect
4896 __PRETTY_FUNCTION__ inside a template fn. This is being done lazily
4897 at the point of first use, so we mustn't push the decl now. */
4899 static tree
4900 cp_make_fname_decl (location_t loc, tree id, int type_dep)
4902 tree domain = NULL_TREE;
4903 tree init = NULL_TREE;
4905 if (!(type_dep && in_template_function ()))
4907 const char *name = NULL;
4908 bool release_name = false;
4910 if (current_function_decl == NULL_TREE)
4911 name = "top level";
4912 else if (type_dep == 0)
4914 /* __FUNCTION__ */
4915 name = fname_as_string (type_dep);
4916 release_name = true;
4918 else
4920 /* __PRETTY_FUNCTION__ */
4921 gcc_checking_assert (type_dep == 1);
4922 name = cxx_printable_name (current_function_decl, 2);
4925 size_t length = strlen (name);
4926 domain = build_index_type (size_int (length));
4927 init = build_string (length + 1, name);
4928 if (release_name)
4929 free (const_cast<char *> (name));
4932 tree type = cp_build_qualified_type (char_type_node, TYPE_QUAL_CONST);
4933 type = build_cplus_array_type (type, domain);
4935 if (init)
4936 TREE_TYPE (init) = type;
4937 else
4938 init = error_mark_node;
4940 tree decl = build_decl (loc, VAR_DECL, id, type);
4942 TREE_READONLY (decl) = 1;
4943 DECL_ARTIFICIAL (decl) = 1;
4944 DECL_DECLARED_CONSTEXPR_P (decl) = 1;
4945 TREE_STATIC (decl) = 1;
4947 TREE_USED (decl) = 1;
4949 SET_DECL_VALUE_EXPR (decl, init);
4950 DECL_HAS_VALUE_EXPR_P (decl) = 1;
4951 /* For decl_constant_var_p. */
4952 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = 1;
4954 if (current_function_decl)
4956 DECL_CONTEXT (decl) = current_function_decl;
4957 decl = pushdecl_outermost_localscope (decl);
4958 if (decl != error_mark_node)
4959 add_decl_expr (decl);
4961 else
4963 DECL_THIS_STATIC (decl) = true;
4964 decl = pushdecl_top_level_and_finish (decl, NULL_TREE);
4967 return decl;
4970 /* Install DECL as a builtin function at current global scope. Return
4971 the new decl (if we found an existing version). Also installs it
4972 into ::std, if it's not '_*'. */
4974 tree
4975 cxx_builtin_function (tree decl)
4977 retrofit_lang_decl (decl);
4979 DECL_ARTIFICIAL (decl) = 1;
4980 SET_DECL_LANGUAGE (decl, lang_c);
4981 /* Runtime library routines are, by definition, available in an
4982 external shared object. */
4983 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
4984 DECL_VISIBILITY_SPECIFIED (decl) = 1;
4986 tree id = DECL_NAME (decl);
4987 const char *name = IDENTIFIER_POINTER (id);
4988 bool hiding = false;
4989 if (name[0] != '_' || name[1] != '_')
4990 /* In the user's namespace, it must be declared before use. */
4991 hiding = true;
4992 else if (IDENTIFIER_LENGTH (id) > strlen ("___chk")
4993 && !startswith (name + 2, "builtin_")
4994 && 0 == memcmp (name + IDENTIFIER_LENGTH (id) - strlen ("_chk"),
4995 "_chk", strlen ("_chk") + 1))
4996 /* Treat __*_chk fortification functions as anticipated as well,
4997 unless they are __builtin_*_chk. */
4998 hiding = true;
5000 /* All builtins that don't begin with an '_' should additionally
5001 go in the 'std' namespace. */
5002 if (name[0] != '_')
5004 tree std_decl = copy_decl (decl);
5006 push_nested_namespace (std_node);
5007 DECL_CONTEXT (std_decl) = FROB_CONTEXT (std_node);
5008 pushdecl (std_decl, hiding);
5009 pop_nested_namespace (std_node);
5012 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
5013 decl = pushdecl (decl, hiding);
5015 return decl;
5018 /* Like cxx_builtin_function, but guarantee the function is added to the global
5019 scope. This is to allow function specific options to add new machine
5020 dependent builtins when the target ISA changes via attribute((target(...)))
5021 which saves space on program startup if the program does not use non-generic
5022 ISAs. */
5024 tree
5025 cxx_builtin_function_ext_scope (tree decl)
5027 push_nested_namespace (global_namespace);
5028 decl = cxx_builtin_function (decl);
5029 pop_nested_namespace (global_namespace);
5031 return decl;
5034 /* Implement LANG_HOOKS_SIMULATE_BUILTIN_FUNCTION_DECL. */
5036 tree
5037 cxx_simulate_builtin_function_decl (tree decl)
5039 retrofit_lang_decl (decl);
5041 DECL_ARTIFICIAL (decl) = 1;
5042 SET_DECL_LANGUAGE (decl, lang_cplusplus);
5043 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
5044 return pushdecl (decl);
5047 /* Generate a FUNCTION_DECL with the typical flags for a runtime library
5048 function. Not called directly. */
5050 static tree
5051 build_library_fn (tree name, enum tree_code operator_code, tree type,
5052 int ecf_flags)
5054 tree fn = build_lang_decl (FUNCTION_DECL, name, type);
5055 DECL_EXTERNAL (fn) = 1;
5056 TREE_PUBLIC (fn) = 1;
5057 DECL_ARTIFICIAL (fn) = 1;
5058 DECL_OVERLOADED_OPERATOR_CODE_RAW (fn)
5059 = OVL_OP_INFO (false, operator_code)->ovl_op_code;
5060 SET_DECL_LANGUAGE (fn, lang_c);
5061 /* Runtime library routines are, by definition, available in an
5062 external shared object. */
5063 DECL_VISIBILITY (fn) = VISIBILITY_DEFAULT;
5064 DECL_VISIBILITY_SPECIFIED (fn) = 1;
5065 set_call_expr_flags (fn, ecf_flags);
5066 return fn;
5069 /* Returns the _DECL for a library function with C++ linkage. */
5071 static tree
5072 build_cp_library_fn (tree name, enum tree_code operator_code, tree type,
5073 int ecf_flags)
5075 tree fn = build_library_fn (name, operator_code, type, ecf_flags);
5076 DECL_CONTEXT (fn) = FROB_CONTEXT (current_namespace);
5077 SET_DECL_LANGUAGE (fn, lang_cplusplus);
5078 return fn;
5081 /* Like build_library_fn, but takes a C string instead of an
5082 IDENTIFIER_NODE. */
5084 tree
5085 build_library_fn_ptr (const char* name, tree type, int ecf_flags)
5087 return build_library_fn (get_identifier (name), ERROR_MARK, type, ecf_flags);
5090 /* Like build_cp_library_fn, but takes a C string instead of an
5091 IDENTIFIER_NODE. */
5093 tree
5094 build_cp_library_fn_ptr (const char* name, tree type, int ecf_flags)
5096 return build_cp_library_fn (get_identifier (name), ERROR_MARK, type,
5097 ecf_flags);
5100 /* Like build_library_fn, but also pushes the function so that we will
5101 be able to find it via get_global_binding. Also, the function
5102 may throw exceptions listed in RAISES. */
5104 tree
5105 push_library_fn (tree name, tree type, tree raises, int ecf_flags)
5107 if (raises)
5108 type = build_exception_variant (type, raises);
5110 tree fn = build_library_fn (name, ERROR_MARK, type, ecf_flags);
5111 return pushdecl_top_level (fn);
5114 /* Like build_cp_library_fn, but also pushes the function so that it
5115 will be found by normal lookup. */
5117 static tree
5118 push_cp_library_fn (enum tree_code operator_code, tree type,
5119 int ecf_flags)
5121 tree fn = build_cp_library_fn (ovl_op_identifier (false, operator_code),
5122 operator_code, type, ecf_flags);
5123 pushdecl (fn);
5124 if (flag_tm)
5125 apply_tm_attr (fn, get_identifier ("transaction_safe"));
5126 return fn;
5129 /* Like push_library_fn, but also note that this function throws
5130 and does not return. Used for __throw_foo and the like. */
5132 tree
5133 push_throw_library_fn (tree name, tree type)
5135 tree fn = push_library_fn (name, type, NULL_TREE, ECF_NORETURN | ECF_COLD);
5136 return fn;
5139 /* When we call finish_struct for an anonymous union, we create
5140 default copy constructors and such. But, an anonymous union
5141 shouldn't have such things; this function undoes the damage to the
5142 anonymous union type T.
5144 (The reason that we create the synthesized methods is that we don't
5145 distinguish `union { int i; }' from `typedef union { int i; } U'.
5146 The first is an anonymous union; the second is just an ordinary
5147 union type.) */
5149 void
5150 fixup_anonymous_aggr (tree t)
5152 /* Wipe out memory of synthesized methods. */
5153 TYPE_HAS_USER_CONSTRUCTOR (t) = 0;
5154 TYPE_HAS_DEFAULT_CONSTRUCTOR (t) = 0;
5155 TYPE_HAS_COPY_CTOR (t) = 0;
5156 TYPE_HAS_CONST_COPY_CTOR (t) = 0;
5157 TYPE_HAS_COPY_ASSIGN (t) = 0;
5158 TYPE_HAS_CONST_COPY_ASSIGN (t) = 0;
5160 /* Splice the implicitly generated functions out of TYPE_FIELDS and diagnose
5161 invalid members. */
5162 for (tree probe, *prev_p = &TYPE_FIELDS (t); (probe = *prev_p);)
5164 if (TREE_CODE (probe) == FUNCTION_DECL && DECL_ARTIFICIAL (probe))
5165 *prev_p = DECL_CHAIN (probe);
5166 else
5167 prev_p = &DECL_CHAIN (probe);
5169 if (DECL_ARTIFICIAL (probe)
5170 && (!DECL_IMPLICIT_TYPEDEF_P (probe)
5171 || TYPE_ANON_P (TREE_TYPE (probe))))
5172 continue;
5174 if (TREE_CODE (probe) != FIELD_DECL
5175 || (TREE_PRIVATE (probe) || TREE_PROTECTED (probe)))
5177 /* We already complained about static data members in
5178 finish_static_data_member_decl. */
5179 if (!VAR_P (probe))
5181 auto_diagnostic_group d;
5182 if (permerror (DECL_SOURCE_LOCATION (probe),
5183 TREE_CODE (t) == UNION_TYPE
5184 ? "%q#D invalid; an anonymous union may "
5185 "only have public non-static data members"
5186 : "%q#D invalid; an anonymous struct may "
5187 "only have public non-static data members", probe))
5189 static bool hint;
5190 if (flag_permissive && !hint)
5192 hint = true;
5193 inform (DECL_SOURCE_LOCATION (probe),
5194 "this flexibility is deprecated and will be "
5195 "removed");
5202 /* Splice all functions out of CLASSTYPE_MEMBER_VEC. */
5203 vec<tree,va_gc>* vec = CLASSTYPE_MEMBER_VEC (t);
5204 unsigned store = 0;
5205 for (tree elt : vec)
5206 if (!is_overloaded_fn (elt))
5207 (*vec)[store++] = elt;
5208 vec_safe_truncate (vec, store);
5210 /* Wipe RTTI info. */
5211 CLASSTYPE_TYPEINFO_VAR (t) = NULL_TREE;
5213 /* Anonymous aggregates cannot have fields with ctors, dtors or complex
5214 assignment operators (because they cannot have these methods themselves).
5215 For anonymous unions this is already checked because they are not allowed
5216 in any union, otherwise we have to check it. */
5217 if (TREE_CODE (t) != UNION_TYPE)
5219 tree field, type;
5221 if (BINFO_N_BASE_BINFOS (TYPE_BINFO (t)))
5223 error_at (location_of (t), "anonymous struct with base classes");
5224 /* Avoid ICE after error on anon-struct9.C. */
5225 TYPE_NEEDS_CONSTRUCTING (t) = false;
5228 for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
5229 if (TREE_CODE (field) == FIELD_DECL)
5231 type = TREE_TYPE (field);
5232 if (CLASS_TYPE_P (type))
5234 if (TYPE_NEEDS_CONSTRUCTING (type))
5235 error ("member %q+#D with constructor not allowed "
5236 "in anonymous aggregate", field);
5237 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
5238 error ("member %q+#D with destructor not allowed "
5239 "in anonymous aggregate", field);
5240 if (TYPE_HAS_COMPLEX_COPY_ASSIGN (type))
5241 error ("member %q+#D with copy assignment operator "
5242 "not allowed in anonymous aggregate", field);
5248 /* Warn for an attribute located at LOCATION that appertains to the
5249 class type CLASS_TYPE that has not been properly placed after its
5250 class-key, in it class-specifier. */
5252 void
5253 warn_misplaced_attr_for_class_type (location_t location,
5254 tree class_type)
5256 gcc_assert (OVERLOAD_TYPE_P (class_type));
5258 auto_diagnostic_group d;
5259 if (warning_at (location, OPT_Wattributes,
5260 "attribute ignored in declaration "
5261 "of %q#T", class_type))
5262 inform (location,
5263 "attribute for %q#T must follow the %qs keyword",
5264 class_type, class_key_or_enum_as_string (class_type));
5267 /* Returns the cv-qualifiers that apply to the type specified
5268 by the DECLSPECS. */
5270 static int
5271 get_type_quals (const cp_decl_specifier_seq *declspecs)
5273 int type_quals = TYPE_UNQUALIFIED;
5275 if (decl_spec_seq_has_spec_p (declspecs, ds_const))
5276 type_quals |= TYPE_QUAL_CONST;
5277 if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
5278 type_quals |= TYPE_QUAL_VOLATILE;
5279 if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
5280 type_quals |= TYPE_QUAL_RESTRICT;
5282 return type_quals;
5285 /* Make sure that a declaration with no declarator is well-formed, i.e.
5286 just declares a tagged type or anonymous union.
5288 Returns the type declared; or NULL_TREE if none. */
5290 tree
5291 check_tag_decl (cp_decl_specifier_seq *declspecs,
5292 bool explicit_type_instantiation_p)
5294 int saw_friend = decl_spec_seq_has_spec_p (declspecs, ds_friend);
5295 int saw_typedef = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
5296 /* If a class, struct, or enum type is declared by the DECLSPECS
5297 (i.e, if a class-specifier, enum-specifier, or non-typename
5298 elaborated-type-specifier appears in the DECLSPECS),
5299 DECLARED_TYPE is set to the corresponding type. */
5300 tree declared_type = NULL_TREE;
5301 bool error_p = false;
5303 if (declspecs->multiple_types_p)
5304 error_at (smallest_type_location (declspecs),
5305 "multiple types in one declaration");
5306 else if (declspecs->redefined_builtin_type)
5308 location_t loc = declspecs->locations[ds_redefined_builtin_type_spec];
5309 if (!in_system_header_at (loc))
5310 permerror (loc, "redeclaration of C++ built-in type %qT",
5311 declspecs->redefined_builtin_type);
5312 return NULL_TREE;
5315 if (declspecs->type
5316 && TYPE_P (declspecs->type)
5317 && ((TREE_CODE (declspecs->type) != TYPENAME_TYPE
5318 && MAYBE_CLASS_TYPE_P (declspecs->type))
5319 || TREE_CODE (declspecs->type) == ENUMERAL_TYPE))
5320 declared_type = declspecs->type;
5321 else if (declspecs->type == error_mark_node)
5322 error_p = true;
5324 if (type_uses_auto (declared_type))
5326 error_at (declspecs->locations[ds_type_spec],
5327 "%<auto%> can only be specified for variables "
5328 "or function declarations");
5329 return error_mark_node;
5332 if (declared_type && !OVERLOAD_TYPE_P (declared_type))
5333 declared_type = NULL_TREE;
5335 if (!declared_type && !saw_friend && !error_p)
5336 permerror (input_location, "declaration does not declare anything");
5337 /* Check for an anonymous union. */
5338 else if (declared_type && RECORD_OR_UNION_CODE_P (TREE_CODE (declared_type))
5339 && TYPE_UNNAMED_P (declared_type))
5341 /* 7/3 In a simple-declaration, the optional init-declarator-list
5342 can be omitted only when declaring a class (clause 9) or
5343 enumeration (7.2), that is, when the decl-specifier-seq contains
5344 either a class-specifier, an elaborated-type-specifier with
5345 a class-key (9.1), or an enum-specifier. In these cases and
5346 whenever a class-specifier or enum-specifier is present in the
5347 decl-specifier-seq, the identifiers in these specifiers are among
5348 the names being declared by the declaration (as class-name,
5349 enum-names, or enumerators, depending on the syntax). In such
5350 cases, and except for the declaration of an unnamed bit-field (9.6),
5351 the decl-specifier-seq shall introduce one or more names into the
5352 program, or shall redeclare a name introduced by a previous
5353 declaration. [Example:
5354 enum { }; // ill-formed
5355 typedef class { }; // ill-formed
5356 --end example] */
5357 if (saw_typedef)
5359 error_at (declspecs->locations[ds_typedef],
5360 "missing type-name in typedef-declaration");
5361 return NULL_TREE;
5363 /* Anonymous unions are objects, so they can have specifiers. */;
5364 SET_ANON_AGGR_TYPE_P (declared_type);
5366 if (TREE_CODE (declared_type) != UNION_TYPE)
5367 pedwarn (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (declared_type)),
5368 OPT_Wpedantic, "ISO C++ prohibits anonymous structs");
5371 else
5373 if (decl_spec_seq_has_spec_p (declspecs, ds_inline))
5374 error_at (declspecs->locations[ds_inline],
5375 "%<inline%> can only be specified for functions");
5376 else if (decl_spec_seq_has_spec_p (declspecs, ds_virtual))
5377 error_at (declspecs->locations[ds_virtual],
5378 "%<virtual%> can only be specified for functions");
5379 else if (saw_friend
5380 && (!current_class_type
5381 || current_scope () != current_class_type))
5382 error_at (declspecs->locations[ds_friend],
5383 "%<friend%> can only be specified inside a class");
5384 else if (decl_spec_seq_has_spec_p (declspecs, ds_explicit))
5385 error_at (declspecs->locations[ds_explicit],
5386 "%<explicit%> can only be specified for constructors");
5387 else if (declspecs->storage_class)
5388 error_at (declspecs->locations[ds_storage_class],
5389 "a storage class can only be specified for objects "
5390 "and functions");
5391 else if (decl_spec_seq_has_spec_p (declspecs, ds_const))
5392 error_at (declspecs->locations[ds_const],
5393 "%<const%> can only be specified for objects and "
5394 "functions");
5395 else if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
5396 error_at (declspecs->locations[ds_volatile],
5397 "%<volatile%> can only be specified for objects and "
5398 "functions");
5399 else if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
5400 error_at (declspecs->locations[ds_restrict],
5401 "%<__restrict%> can only be specified for objects and "
5402 "functions");
5403 else if (decl_spec_seq_has_spec_p (declspecs, ds_thread))
5404 error_at (declspecs->locations[ds_thread],
5405 "%<__thread%> can only be specified for objects "
5406 "and functions");
5407 else if (saw_typedef)
5408 warning_at (declspecs->locations[ds_typedef], 0,
5409 "%<typedef%> was ignored in this declaration");
5410 else if (decl_spec_seq_has_spec_p (declspecs, ds_constexpr))
5411 error_at (declspecs->locations[ds_constexpr],
5412 "%qs cannot be used for type declarations", "constexpr");
5413 else if (decl_spec_seq_has_spec_p (declspecs, ds_constinit))
5414 error_at (declspecs->locations[ds_constinit],
5415 "%qs cannot be used for type declarations", "constinit");
5416 else if (decl_spec_seq_has_spec_p (declspecs, ds_consteval))
5417 error_at (declspecs->locations[ds_consteval],
5418 "%qs cannot be used for type declarations", "consteval");
5421 if (declspecs->attributes && warn_attributes && declared_type)
5423 location_t loc;
5424 if (!CLASS_TYPE_P (declared_type)
5425 || !CLASSTYPE_TEMPLATE_INSTANTIATION (declared_type))
5426 /* For a non-template class, use the name location. */
5427 loc = location_of (declared_type);
5428 else
5429 /* For a template class (an explicit instantiation), use the
5430 current location. */
5431 loc = input_location;
5433 if (explicit_type_instantiation_p)
5434 /* [dcl.attr.grammar]/4:
5436 No attribute-specifier-seq shall appertain to an explicit
5437 instantiation. */
5439 if (warning_at (loc, OPT_Wattributes,
5440 "attribute ignored in explicit instantiation %q#T",
5441 declared_type))
5442 inform (loc,
5443 "no attribute can be applied to "
5444 "an explicit instantiation");
5446 else
5447 warn_misplaced_attr_for_class_type (loc, declared_type);
5450 return declared_type;
5453 /* Called when a declaration is seen that contains no names to declare.
5454 If its type is a reference to a structure, union or enum inherited
5455 from a containing scope, shadow that tag name for the current scope
5456 with a forward reference.
5457 If its type defines a new named structure or union
5458 or defines an enum, it is valid but we need not do anything here.
5459 Otherwise, it is an error.
5461 C++: may have to grok the declspecs to learn about static,
5462 complain for anonymous unions.
5464 Returns the TYPE declared -- or NULL_TREE if none. */
5466 tree
5467 shadow_tag (cp_decl_specifier_seq *declspecs)
5469 tree t = check_tag_decl (declspecs,
5470 /*explicit_type_instantiation_p=*/false);
5472 if (!t)
5473 return NULL_TREE;
5475 t = maybe_process_partial_specialization (t);
5476 if (t == error_mark_node)
5477 return NULL_TREE;
5479 /* This is where the variables in an anonymous union are
5480 declared. An anonymous union declaration looks like:
5481 union { ... } ;
5482 because there is no declarator after the union, the parser
5483 sends that declaration here. */
5484 if (ANON_AGGR_TYPE_P (t))
5486 fixup_anonymous_aggr (t);
5488 if (TYPE_FIELDS (t))
5490 tree decl = grokdeclarator (/*declarator=*/NULL,
5491 declspecs, NORMAL, 0, NULL);
5492 finish_anon_union (decl);
5496 return t;
5499 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
5501 tree
5502 groktypename (cp_decl_specifier_seq *type_specifiers,
5503 const cp_declarator *declarator,
5504 bool is_template_arg)
5506 tree attrs;
5507 tree type;
5508 enum decl_context context
5509 = is_template_arg ? TEMPLATE_TYPE_ARG : TYPENAME;
5510 attrs = type_specifiers->attributes;
5511 type_specifiers->attributes = NULL_TREE;
5512 type = grokdeclarator (declarator, type_specifiers, context, 0, &attrs);
5513 if (attrs && type != error_mark_node)
5515 if (CLASS_TYPE_P (type))
5516 warning (OPT_Wattributes, "ignoring attributes applied to class type %qT "
5517 "outside of definition", type);
5518 else if (MAYBE_CLASS_TYPE_P (type))
5519 /* A template type parameter or other dependent type. */
5520 warning (OPT_Wattributes, "ignoring attributes applied to dependent "
5521 "type %qT without an associated declaration", type);
5522 else
5523 cplus_decl_attributes (&type, attrs, 0);
5525 return type;
5528 /* Process a DECLARATOR for a function-scope or namespace-scope
5529 variable or function declaration.
5530 (Function definitions go through start_function; class member
5531 declarations appearing in the body of the class go through
5532 grokfield.) The DECL corresponding to the DECLARATOR is returned.
5533 If an error occurs, the error_mark_node is returned instead.
5535 DECLSPECS are the decl-specifiers for the declaration. INITIALIZED is
5536 SD_INITIALIZED if an explicit initializer is present, or SD_DEFAULTED
5537 for an explicitly defaulted function, or SD_DELETED for an explicitly
5538 deleted function, but 0 (SD_UNINITIALIZED) if this is a variable
5539 implicitly initialized via a default constructor. It can also be
5540 SD_DECOMPOSITION which behaves much like SD_INITIALIZED, but we also
5541 mark the new decl as DECL_DECOMPOSITION_P.
5543 ATTRIBUTES and PREFIX_ATTRIBUTES are GNU attributes associated with this
5544 declaration.
5546 The scope represented by the context of the returned DECL is pushed
5547 (if it is not the global namespace) and is assigned to
5548 *PUSHED_SCOPE_P. The caller is then responsible for calling
5549 pop_scope on *PUSHED_SCOPE_P if it is set. */
5551 tree
5552 start_decl (const cp_declarator *declarator,
5553 cp_decl_specifier_seq *declspecs,
5554 int initialized,
5555 tree attributes,
5556 tree prefix_attributes,
5557 tree *pushed_scope_p)
5559 tree decl;
5560 tree context;
5561 bool was_public;
5562 int flags;
5563 bool alias;
5564 tree initial;
5566 *pushed_scope_p = NULL_TREE;
5568 if (prefix_attributes != error_mark_node)
5569 attributes = attr_chainon (attributes, prefix_attributes);
5571 decl = grokdeclarator (declarator, declspecs, NORMAL, initialized,
5572 &attributes);
5574 if (decl == NULL_TREE || VOID_TYPE_P (decl)
5575 || decl == error_mark_node
5576 || prefix_attributes == error_mark_node)
5577 return error_mark_node;
5579 context = CP_DECL_CONTEXT (decl);
5580 if (context != global_namespace)
5581 *pushed_scope_p = push_scope (context);
5583 if (initialized && TREE_CODE (decl) == TYPE_DECL)
5585 error_at (DECL_SOURCE_LOCATION (decl),
5586 "typedef %qD is initialized (use %qs instead)",
5587 decl, "decltype");
5588 return error_mark_node;
5591 /* Save the DECL_INITIAL value in case it gets clobbered to assist
5592 with attribute validation. */
5593 initial = DECL_INITIAL (decl);
5595 if (initialized)
5597 if (! toplevel_bindings_p ()
5598 && DECL_EXTERNAL (decl))
5599 warning (0, "declaration of %q#D has %<extern%> and is initialized",
5600 decl);
5601 DECL_EXTERNAL (decl) = 0;
5602 if (toplevel_bindings_p ())
5603 TREE_STATIC (decl) = 1;
5604 /* Tell 'cplus_decl_attributes' this is an initialized decl,
5605 even though we might not yet have the initializer expression. */
5606 if (!DECL_INITIAL (decl))
5607 DECL_INITIAL (decl) = error_mark_node;
5609 alias = lookup_attribute ("alias", DECL_ATTRIBUTES (decl)) != 0;
5611 if (alias && TREE_CODE (decl) == FUNCTION_DECL)
5612 record_key_method_defined (decl);
5614 /* If this is a typedef that names the class for linkage purposes
5615 (7.1.3p8), apply any attributes directly to the type. */
5616 if (TREE_CODE (decl) == TYPE_DECL
5617 && OVERLOAD_TYPE_P (TREE_TYPE (decl))
5618 && decl == TYPE_NAME (TYPE_MAIN_VARIANT (TREE_TYPE (decl))))
5619 flags = ATTR_FLAG_TYPE_IN_PLACE;
5620 else
5621 flags = 0;
5623 /* Set attributes here so if duplicate decl, will have proper attributes. */
5624 cplus_decl_attributes (&decl, attributes, flags);
5626 /* Restore the original DECL_INITIAL that we may have clobbered earlier to
5627 assist with attribute validation. */
5628 DECL_INITIAL (decl) = initial;
5630 /* Dllimported symbols cannot be defined. Static data members (which
5631 can be initialized in-class and dllimported) go through grokfield,
5632 not here, so we don't need to exclude those decls when checking for
5633 a definition. */
5634 if (initialized && DECL_DLLIMPORT_P (decl))
5636 error_at (DECL_SOURCE_LOCATION (decl),
5637 "definition of %q#D is marked %<dllimport%>", decl);
5638 DECL_DLLIMPORT_P (decl) = 0;
5641 /* If #pragma weak was used, mark the decl weak now. */
5642 if (!processing_template_decl && !DECL_DECOMPOSITION_P (decl))
5643 maybe_apply_pragma_weak (decl);
5645 if (TREE_CODE (decl) == FUNCTION_DECL
5646 && DECL_DECLARED_INLINE_P (decl)
5647 && DECL_UNINLINABLE (decl)
5648 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
5649 warning_at (DECL_SOURCE_LOCATION (decl), 0,
5650 "inline function %qD given attribute %qs", decl, "noinline");
5652 if (TYPE_P (context) && COMPLETE_TYPE_P (complete_type (context)))
5654 bool this_tmpl = (current_template_depth
5655 > template_class_depth (context));
5656 if (VAR_P (decl))
5658 tree field = lookup_field (context, DECL_NAME (decl), 0, false);
5659 if (field == NULL_TREE
5660 || !(VAR_P (field) || variable_template_p (field)))
5661 error ("%q+#D is not a static data member of %q#T", decl, context);
5662 else if (variable_template_p (field)
5663 && (DECL_LANG_SPECIFIC (decl)
5664 && DECL_TEMPLATE_SPECIALIZATION (decl)))
5665 /* OK, specialization was already checked. */;
5666 else if (variable_template_p (field) && !this_tmpl)
5668 error_at (DECL_SOURCE_LOCATION (decl),
5669 "non-member-template declaration of %qD", decl);
5670 inform (DECL_SOURCE_LOCATION (field), "does not match "
5671 "member template declaration here");
5672 return error_mark_node;
5674 else
5676 if (variable_template_p (field))
5677 field = DECL_TEMPLATE_RESULT (field);
5679 if (DECL_CONTEXT (field) != context)
5681 if (!same_type_p (DECL_CONTEXT (field), context))
5682 permerror (input_location, "ISO C++ does not permit %<%T::%D%> "
5683 "to be defined as %<%T::%D%>",
5684 DECL_CONTEXT (field), DECL_NAME (decl),
5685 context, DECL_NAME (decl));
5686 DECL_CONTEXT (decl) = DECL_CONTEXT (field);
5688 /* Static data member are tricky; an in-class initialization
5689 still doesn't provide a definition, so the in-class
5690 declaration will have DECL_EXTERNAL set, but will have an
5691 initialization. Thus, duplicate_decls won't warn
5692 about this situation, and so we check here. */
5693 if (initialized && DECL_INITIALIZED_IN_CLASS_P (field))
5694 error ("duplicate initialization of %qD", decl);
5695 field = duplicate_decls (decl, field);
5696 if (field == error_mark_node)
5697 return error_mark_node;
5698 else if (field)
5699 decl = field;
5702 else
5704 tree field = check_classfn (context, decl,
5705 this_tmpl
5706 ? current_template_parms
5707 : NULL_TREE);
5708 if (field && field != error_mark_node
5709 && duplicate_decls (decl, field))
5710 decl = field;
5713 /* cp_finish_decl sets DECL_EXTERNAL if DECL_IN_AGGR_P is set. */
5714 DECL_IN_AGGR_P (decl) = 0;
5715 /* Do not mark DECL as an explicit specialization if it was not
5716 already marked as an instantiation; a declaration should
5717 never be marked as a specialization unless we know what
5718 template is being specialized. */
5719 if (DECL_LANG_SPECIFIC (decl) && DECL_USE_TEMPLATE (decl))
5721 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
5722 if (TREE_CODE (decl) == FUNCTION_DECL)
5723 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
5724 && DECL_DECLARED_INLINE_P (decl));
5725 else
5726 DECL_COMDAT (decl) = false;
5728 /* [temp.expl.spec] An explicit specialization of a static data
5729 member of a template is a definition if the declaration
5730 includes an initializer; otherwise, it is a declaration.
5732 We check for processing_specialization so this only applies
5733 to the new specialization syntax. */
5734 if (!initialized && processing_specialization)
5735 DECL_EXTERNAL (decl) = 1;
5738 if (DECL_EXTERNAL (decl) && ! DECL_TEMPLATE_SPECIALIZATION (decl)
5739 /* Aliases are definitions. */
5740 && !alias)
5741 permerror (declarator->id_loc,
5742 "declaration of %q#D outside of class is not definition",
5743 decl);
5746 /* Create a DECL_LANG_SPECIFIC so that DECL_DECOMPOSITION_P works. */
5747 if (initialized == SD_DECOMPOSITION)
5748 fit_decomposition_lang_decl (decl, NULL_TREE);
5750 was_public = TREE_PUBLIC (decl);
5752 if ((DECL_EXTERNAL (decl) || TREE_CODE (decl) == FUNCTION_DECL)
5753 && current_function_decl)
5755 /* A function-scope decl of some namespace-scope decl. */
5756 DECL_LOCAL_DECL_P (decl) = true;
5757 if (named_module_purview_p ())
5758 error_at (declarator->id_loc,
5759 "block-scope extern declaration %q#D not permitted"
5760 " in module purview", decl);
5763 /* Enter this declaration into the symbol table. Don't push the plain
5764 VAR_DECL for a variable template. */
5765 if (!template_parm_scope_p ()
5766 || !VAR_P (decl))
5767 decl = maybe_push_decl (decl);
5769 if (processing_template_decl)
5770 decl = push_template_decl (decl);
5772 if (decl == error_mark_node)
5773 return error_mark_node;
5775 if (VAR_P (decl)
5776 && DECL_NAMESPACE_SCOPE_P (decl) && !TREE_PUBLIC (decl) && !was_public
5777 && !DECL_THIS_STATIC (decl) && !DECL_ARTIFICIAL (decl)
5778 /* But not templated variables. */
5779 && !(DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl)))
5781 /* This is a const variable with implicit 'static'. Set
5782 DECL_THIS_STATIC so we can tell it from variables that are
5783 !TREE_PUBLIC because of the anonymous namespace. */
5784 gcc_assert (CP_TYPE_CONST_P (TREE_TYPE (decl)) || errorcount);
5785 DECL_THIS_STATIC (decl) = 1;
5788 if (current_function_decl && VAR_P (decl)
5789 && DECL_DECLARED_CONSTEXPR_P (current_function_decl)
5790 && cxx_dialect < cxx23)
5792 bool ok = false;
5793 if (CP_DECL_THREAD_LOCAL_P (decl) && !DECL_REALLY_EXTERN (decl))
5794 error_at (DECL_SOURCE_LOCATION (decl),
5795 "%qD defined %<thread_local%> in %qs function only "
5796 "available with %<-std=c++2b%> or %<-std=gnu++2b%>", decl,
5797 DECL_IMMEDIATE_FUNCTION_P (current_function_decl)
5798 ? "consteval" : "constexpr");
5799 else if (TREE_STATIC (decl))
5800 error_at (DECL_SOURCE_LOCATION (decl),
5801 "%qD defined %<static%> in %qs function only available "
5802 "with %<-std=c++2b%> or %<-std=gnu++2b%>", decl,
5803 DECL_IMMEDIATE_FUNCTION_P (current_function_decl)
5804 ? "consteval" : "constexpr");
5805 else
5806 ok = true;
5807 if (!ok)
5808 cp_function_chain->invalid_constexpr = true;
5811 if (!processing_template_decl && VAR_P (decl))
5812 start_decl_1 (decl, initialized);
5814 return decl;
5817 /* Process the declaration of a variable DECL. INITIALIZED is true
5818 iff DECL is explicitly initialized. (INITIALIZED is false if the
5819 variable is initialized via an implicitly-called constructor.)
5820 This function must be called for ordinary variables (including, for
5821 example, implicit instantiations of templates), but must not be
5822 called for template declarations. */
5824 void
5825 start_decl_1 (tree decl, bool initialized)
5827 gcc_checking_assert (!processing_template_decl);
5829 if (error_operand_p (decl))
5830 return;
5832 gcc_checking_assert (VAR_P (decl));
5834 tree type = TREE_TYPE (decl);
5835 bool complete_p = COMPLETE_TYPE_P (type);
5836 bool aggregate_definition_p
5837 = MAYBE_CLASS_TYPE_P (type) && !DECL_EXTERNAL (decl);
5839 /* If an explicit initializer is present, or if this is a definition
5840 of an aggregate, then we need a complete type at this point.
5841 (Scalars are always complete types, so there is nothing to
5842 check.) This code just sets COMPLETE_P; errors (if necessary)
5843 are issued below. */
5844 if ((initialized || aggregate_definition_p)
5845 && !complete_p
5846 && COMPLETE_TYPE_P (complete_type (type)))
5848 complete_p = true;
5849 /* We will not yet have set TREE_READONLY on DECL if the type
5850 was "const", but incomplete, before this point. But, now, we
5851 have a complete type, so we can try again. */
5852 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
5855 if (initialized)
5856 /* Is it valid for this decl to have an initializer at all? */
5858 /* Don't allow initializations for incomplete types except for
5859 arrays which might be completed by the initialization. */
5860 if (complete_p)
5861 ; /* A complete type is ok. */
5862 else if (type_uses_auto (type))
5863 ; /* An auto type is ok. */
5864 else if (TREE_CODE (type) != ARRAY_TYPE)
5866 error ("variable %q#D has initializer but incomplete type", decl);
5867 type = TREE_TYPE (decl) = error_mark_node;
5869 else if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (type))))
5871 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
5872 error ("elements of array %q#D have incomplete type", decl);
5873 /* else we already gave an error in start_decl. */
5876 else if (aggregate_definition_p && !complete_p)
5878 if (type_uses_auto (type))
5879 gcc_assert (CLASS_PLACEHOLDER_TEMPLATE (type));
5880 else
5882 error ("aggregate %q#D has incomplete type and cannot be defined",
5883 decl);
5884 /* Change the type so that assemble_variable will give
5885 DECL an rtl we can live with: (mem (const_int 0)). */
5886 type = TREE_TYPE (decl) = error_mark_node;
5890 /* Create a new scope to hold this declaration if necessary.
5891 Whether or not a new scope is necessary cannot be determined
5892 until after the type has been completed; if the type is a
5893 specialization of a class template it is not until after
5894 instantiation has occurred that TYPE_HAS_NONTRIVIAL_DESTRUCTOR
5895 will be set correctly. */
5896 maybe_push_cleanup_level (type);
5899 /* Given a parenthesized list of values INIT, create a CONSTRUCTOR to handle
5900 C++20 P0960. TYPE is the type of the object we're initializing. */
5902 tree
5903 do_aggregate_paren_init (tree init, tree type)
5905 tree val = TREE_VALUE (init);
5907 if (TREE_CHAIN (init) == NULL_TREE)
5909 /* If the list has a single element and it's a string literal,
5910 then it's the initializer for the array as a whole. */
5911 if (TREE_CODE (type) == ARRAY_TYPE
5912 && char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (type)))
5913 && TREE_CODE (tree_strip_any_location_wrapper (val))
5914 == STRING_CST)
5915 return val;
5916 /* Handle non-standard extensions like compound literals. This also
5917 prevents triggering aggregate parenthesized-initialization in
5918 compiler-generated code for =default. */
5919 else if (same_type_ignoring_top_level_qualifiers_p (type,
5920 TREE_TYPE (val)))
5921 return val;
5924 init = build_constructor_from_list (init_list_type_node, init);
5925 CONSTRUCTOR_IS_DIRECT_INIT (init) = true;
5926 CONSTRUCTOR_IS_PAREN_INIT (init) = true;
5927 return init;
5930 /* Handle initialization of references. DECL, TYPE, and INIT have the
5931 same meaning as in cp_finish_decl. *CLEANUP must be NULL on entry,
5932 but will be set to a new CLEANUP_STMT if a temporary is created
5933 that must be destroyed subsequently.
5935 Returns an initializer expression to use to initialize DECL, or
5936 NULL if the initialization can be performed statically.
5938 Quotes on semantics can be found in ARM 8.4.3. */
5940 static tree
5941 grok_reference_init (tree decl, tree type, tree init, int flags)
5943 if (init == NULL_TREE)
5945 if ((DECL_LANG_SPECIFIC (decl) == 0
5946 || DECL_IN_AGGR_P (decl) == 0)
5947 && ! DECL_THIS_EXTERN (decl))
5948 error_at (DECL_SOURCE_LOCATION (decl),
5949 "%qD declared as reference but not initialized", decl);
5950 return NULL_TREE;
5953 tree ttype = TREE_TYPE (type);
5954 if (TREE_CODE (init) == TREE_LIST)
5956 /* This handles (C++20 only) code like
5958 const A& r(1, 2, 3);
5960 where we treat the parenthesized list as a CONSTRUCTOR. */
5961 if (TREE_TYPE (init) == NULL_TREE
5962 && CP_AGGREGATE_TYPE_P (ttype)
5963 && !DECL_DECOMPOSITION_P (decl)
5964 && (cxx_dialect >= cxx20))
5966 /* We don't know yet if we should treat const A& r(1) as
5967 const A& r{1}. */
5968 if (list_length (init) == 1)
5970 flags |= LOOKUP_AGGREGATE_PAREN_INIT;
5971 init = build_x_compound_expr_from_list (init, ELK_INIT,
5972 tf_warning_or_error);
5974 /* If the list had more than one element, the code is ill-formed
5975 pre-C++20, so we can build a constructor right away. */
5976 else
5977 init = do_aggregate_paren_init (init, ttype);
5979 else
5980 init = build_x_compound_expr_from_list (init, ELK_INIT,
5981 tf_warning_or_error);
5984 if (TREE_CODE (ttype) != ARRAY_TYPE
5985 && TREE_CODE (TREE_TYPE (init)) == ARRAY_TYPE)
5986 /* Note: default conversion is only called in very special cases. */
5987 init = decay_conversion (init, tf_warning_or_error);
5989 /* check_initializer handles this for non-reference variables, but for
5990 references we need to do it here or the initializer will get the
5991 incomplete array type and confuse later calls to
5992 cp_complete_array_type. */
5993 if (TREE_CODE (ttype) == ARRAY_TYPE
5994 && TYPE_DOMAIN (ttype) == NULL_TREE
5995 && (BRACE_ENCLOSED_INITIALIZER_P (init)
5996 || TREE_CODE (init) == STRING_CST))
5998 cp_complete_array_type (&ttype, init, false);
5999 if (ttype != TREE_TYPE (type))
6000 type = cp_build_reference_type (ttype, TYPE_REF_IS_RVALUE (type));
6003 /* Convert INIT to the reference type TYPE. This may involve the
6004 creation of a temporary, whose lifetime must be the same as that
6005 of the reference. If so, a DECL_EXPR for the temporary will be
6006 added just after the DECL_EXPR for DECL. That's why we don't set
6007 DECL_INITIAL for local references (instead assigning to them
6008 explicitly); we need to allow the temporary to be initialized
6009 first. */
6010 return initialize_reference (type, init, flags,
6011 tf_warning_or_error);
6014 /* Designated initializers in arrays are not supported in GNU C++.
6015 The parser cannot detect this error since it does not know whether
6016 a given brace-enclosed initializer is for a class type or for an
6017 array. This function checks that CE does not use a designated
6018 initializer. If it does, an error is issued. Returns true if CE
6019 is valid, i.e., does not have a designated initializer. */
6021 bool
6022 check_array_designated_initializer (constructor_elt *ce,
6023 unsigned HOST_WIDE_INT index)
6025 /* Designated initializers for array elements are not supported. */
6026 if (ce->index)
6028 /* The parser only allows identifiers as designated
6029 initializers. */
6030 if (ce->index == error_mark_node)
6032 error ("name used in a GNU-style designated "
6033 "initializer for an array");
6034 return false;
6036 else if (identifier_p (ce->index))
6038 error ("name %qD used in a GNU-style designated "
6039 "initializer for an array", ce->index);
6040 return false;
6043 tree ce_index = build_expr_type_conversion (WANT_INT | WANT_ENUM,
6044 ce->index, true);
6045 if (ce_index
6046 && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (ce_index))
6047 && (TREE_CODE (ce_index = fold_non_dependent_expr (ce_index))
6048 == INTEGER_CST))
6050 /* A C99 designator is OK if it matches the current index. */
6051 if (wi::to_wide (ce_index) == index)
6053 ce->index = ce_index;
6054 return true;
6056 else
6057 sorry ("non-trivial designated initializers not supported");
6059 else
6060 error_at (cp_expr_loc_or_input_loc (ce->index),
6061 "C99 designator %qE is not an integral constant-expression",
6062 ce->index);
6064 return false;
6067 return true;
6070 /* When parsing `int a[] = {1, 2};' we don't know the size of the
6071 array until we finish parsing the initializer. If that's the
6072 situation we're in, update DECL accordingly. */
6074 static void
6075 maybe_deduce_size_from_array_init (tree decl, tree init)
6077 tree type = TREE_TYPE (decl);
6079 if (TREE_CODE (type) == ARRAY_TYPE
6080 && TYPE_DOMAIN (type) == NULL_TREE
6081 && TREE_CODE (decl) != TYPE_DECL)
6083 /* do_default is really a C-ism to deal with tentative definitions.
6084 But let's leave it here to ease the eventual merge. */
6085 int do_default = !DECL_EXTERNAL (decl);
6086 tree initializer = init ? init : DECL_INITIAL (decl);
6087 int failure = 0;
6089 /* Check that there are no designated initializers in INIT, as
6090 those are not supported in GNU C++, and as the middle-end
6091 will crash if presented with a non-numeric designated
6092 initializer. */
6093 if (initializer && BRACE_ENCLOSED_INITIALIZER_P (initializer))
6095 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initializer);
6096 constructor_elt *ce;
6097 HOST_WIDE_INT i;
6098 FOR_EACH_VEC_SAFE_ELT (v, i, ce)
6100 if (instantiation_dependent_expression_p (ce->index))
6101 return;
6102 if (!check_array_designated_initializer (ce, i))
6103 failure = 1;
6104 /* If an un-designated initializer is type-dependent, we can't
6105 check brace elision yet. */
6106 if (ce->index == NULL_TREE
6107 && type_dependent_expression_p (ce->value))
6108 return;
6112 if (failure)
6113 TREE_TYPE (decl) = error_mark_node;
6114 else
6116 failure = cp_complete_array_type (&TREE_TYPE (decl), initializer,
6117 do_default);
6118 if (failure == 1)
6120 error_at (cp_expr_loc_or_loc (initializer,
6121 DECL_SOURCE_LOCATION (decl)),
6122 "initializer fails to determine size of %qD", decl);
6124 else if (failure == 2)
6126 if (do_default)
6128 error_at (DECL_SOURCE_LOCATION (decl),
6129 "array size missing in %qD", decl);
6131 /* If a `static' var's size isn't known, make it extern as
6132 well as static, so it does not get allocated. If it's not
6133 `static', then don't mark it extern; finish_incomplete_decl
6134 will give it a default size and it will get allocated. */
6135 else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
6136 DECL_EXTERNAL (decl) = 1;
6138 else if (failure == 3)
6140 error_at (DECL_SOURCE_LOCATION (decl),
6141 "zero-size array %qD", decl);
6145 cp_apply_type_quals_to_decl (cp_type_quals (TREE_TYPE (decl)), decl);
6147 relayout_decl (decl);
6151 /* Set DECL_SIZE, DECL_ALIGN, etc. for DECL (a VAR_DECL), and issue
6152 any appropriate error messages regarding the layout. */
6154 static void
6155 layout_var_decl (tree decl)
6157 tree type;
6159 type = TREE_TYPE (decl);
6160 if (type == error_mark_node)
6161 return;
6163 /* If we haven't already laid out this declaration, do so now.
6164 Note that we must not call complete type for an external object
6165 because it's type might involve templates that we are not
6166 supposed to instantiate yet. (And it's perfectly valid to say
6167 `extern X x' for some incomplete type `X'.) */
6168 if (!DECL_EXTERNAL (decl))
6169 complete_type (type);
6170 if (!DECL_SIZE (decl)
6171 && TREE_TYPE (decl) != error_mark_node
6172 && complete_or_array_type_p (type))
6173 layout_decl (decl, 0);
6175 if (!DECL_EXTERNAL (decl) && DECL_SIZE (decl) == NULL_TREE)
6177 /* An automatic variable with an incomplete type: that is an error.
6178 Don't talk about array types here, since we took care of that
6179 message in grokdeclarator. */
6180 error_at (DECL_SOURCE_LOCATION (decl),
6181 "storage size of %qD isn%'t known", decl);
6182 TREE_TYPE (decl) = error_mark_node;
6184 #if 0
6185 /* Keep this code around in case we later want to control debug info
6186 based on whether a type is "used". (jason 1999-11-11) */
6188 else if (!DECL_EXTERNAL (decl) && MAYBE_CLASS_TYPE_P (ttype))
6189 /* Let debugger know it should output info for this type. */
6190 note_debug_info_needed (ttype);
6192 if (TREE_STATIC (decl) && DECL_CLASS_SCOPE_P (decl))
6193 note_debug_info_needed (DECL_CONTEXT (decl));
6194 #endif
6196 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
6197 && DECL_SIZE (decl) != NULL_TREE
6198 && ! TREE_CONSTANT (DECL_SIZE (decl)))
6200 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST
6201 && !DECL_LOCAL_DECL_P (decl))
6202 constant_expression_warning (DECL_SIZE (decl));
6203 else
6205 error_at (DECL_SOURCE_LOCATION (decl),
6206 "storage size of %qD isn%'t constant", decl);
6207 TREE_TYPE (decl) = error_mark_node;
6208 type = error_mark_node;
6212 /* If the final element initializes a flexible array field, add the size of
6213 that initializer to DECL's size. */
6214 if (type != error_mark_node
6215 && DECL_INITIAL (decl)
6216 && TREE_CODE (DECL_INITIAL (decl)) == CONSTRUCTOR
6217 && !vec_safe_is_empty (CONSTRUCTOR_ELTS (DECL_INITIAL (decl)))
6218 && DECL_SIZE (decl) != NULL_TREE
6219 && TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST
6220 && TYPE_SIZE (type) != NULL_TREE
6221 && TREE_CODE (TYPE_SIZE (type)) == INTEGER_CST
6222 && tree_int_cst_equal (DECL_SIZE (decl), TYPE_SIZE (type)))
6224 constructor_elt &elt = CONSTRUCTOR_ELTS (DECL_INITIAL (decl))->last ();
6225 if (elt.index)
6227 tree itype = TREE_TYPE (elt.index);
6228 tree vtype = TREE_TYPE (elt.value);
6229 if (TREE_CODE (itype) == ARRAY_TYPE
6230 && TYPE_DOMAIN (itype) == NULL
6231 && TREE_CODE (vtype) == ARRAY_TYPE
6232 && COMPLETE_TYPE_P (vtype))
6234 DECL_SIZE (decl)
6235 = size_binop (PLUS_EXPR, DECL_SIZE (decl), TYPE_SIZE (vtype));
6236 DECL_SIZE_UNIT (decl)
6237 = size_binop (PLUS_EXPR, DECL_SIZE_UNIT (decl),
6238 TYPE_SIZE_UNIT (vtype));
6244 /* If a local static variable is declared in an inline function, or if
6245 we have a weak definition, we must endeavor to create only one
6246 instance of the variable at link-time. */
6248 void
6249 maybe_commonize_var (tree decl)
6251 /* Don't mess with __FUNCTION__ and similar. */
6252 if (DECL_ARTIFICIAL (decl))
6253 return;
6255 /* Static data in a function with comdat linkage also has comdat
6256 linkage. */
6257 if ((TREE_STATIC (decl)
6258 && DECL_FUNCTION_SCOPE_P (decl)
6259 && vague_linkage_p (DECL_CONTEXT (decl)))
6260 || (TREE_PUBLIC (decl) && DECL_INLINE_VAR_P (decl)))
6262 if (flag_weak)
6264 /* With weak symbols, we simply make the variable COMDAT;
6265 that will cause copies in multiple translations units to
6266 be merged. */
6267 comdat_linkage (decl);
6269 else
6271 if (DECL_INITIAL (decl) == NULL_TREE
6272 || DECL_INITIAL (decl) == error_mark_node)
6274 /* Without weak symbols, we can use COMMON to merge
6275 uninitialized variables. */
6276 TREE_PUBLIC (decl) = 1;
6277 DECL_COMMON (decl) = 1;
6279 else
6281 /* While for initialized variables, we must use internal
6282 linkage -- which means that multiple copies will not
6283 be merged. */
6284 TREE_PUBLIC (decl) = 0;
6285 DECL_COMMON (decl) = 0;
6286 DECL_INTERFACE_KNOWN (decl) = 1;
6287 const char *msg;
6288 if (DECL_INLINE_VAR_P (decl))
6289 msg = G_("sorry: semantics of inline variable "
6290 "%q#D are wrong (you%'ll wind up with "
6291 "multiple copies)");
6292 else
6293 msg = G_("sorry: semantics of inline function "
6294 "static data %q#D are wrong (you%'ll wind "
6295 "up with multiple copies)");
6296 if (warning_at (DECL_SOURCE_LOCATION (decl), 0,
6297 msg, decl))
6298 inform (DECL_SOURCE_LOCATION (decl),
6299 "you can work around this by removing the initializer");
6305 /* Issue an error message if DECL is an uninitialized const variable.
6306 CONSTEXPR_CONTEXT_P is true when the function is called in a constexpr
6307 context from potential_constant_expression. Returns true if all is well,
6308 false otherwise. */
6310 bool
6311 check_for_uninitialized_const_var (tree decl, bool constexpr_context_p,
6312 tsubst_flags_t complain)
6314 tree type = strip_array_types (TREE_TYPE (decl));
6316 /* ``Unless explicitly declared extern, a const object does not have
6317 external linkage and must be initialized. ($8.4; $12.1)'' ARM
6318 7.1.6 */
6319 if (VAR_P (decl)
6320 && !TYPE_REF_P (type)
6321 && (CP_TYPE_CONST_P (type)
6322 /* C++20 permits trivial default initialization in constexpr
6323 context (P1331R2). */
6324 || (cxx_dialect < cxx20
6325 && (constexpr_context_p
6326 || var_in_constexpr_fn (decl))))
6327 && !DECL_NONTRIVIALLY_INITIALIZED_P (decl))
6329 tree field = default_init_uninitialized_part (type);
6330 if (!field)
6331 return true;
6333 bool show_notes = true;
6335 if (!constexpr_context_p || cxx_dialect >= cxx20)
6337 if (CP_TYPE_CONST_P (type))
6339 if (complain & tf_error)
6340 show_notes = permerror (DECL_SOURCE_LOCATION (decl),
6341 "uninitialized %<const %D%>", decl);
6343 else
6345 if (!is_instantiation_of_constexpr (current_function_decl)
6346 && (complain & tf_error))
6347 error_at (DECL_SOURCE_LOCATION (decl),
6348 "uninitialized variable %qD in %<constexpr%> "
6349 "function", decl);
6350 else
6351 show_notes = false;
6352 cp_function_chain->invalid_constexpr = true;
6355 else if (complain & tf_error)
6356 error_at (DECL_SOURCE_LOCATION (decl),
6357 "uninitialized variable %qD in %<constexpr%> context",
6358 decl);
6360 if (show_notes && CLASS_TYPE_P (type) && (complain & tf_error))
6362 tree defaulted_ctor;
6364 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)),
6365 "%q#T has no user-provided default constructor", type);
6366 defaulted_ctor = in_class_defaulted_default_constructor (type);
6367 if (defaulted_ctor)
6368 inform (DECL_SOURCE_LOCATION (defaulted_ctor),
6369 "constructor is not user-provided because it is "
6370 "explicitly defaulted in the class body");
6371 inform (DECL_SOURCE_LOCATION (field),
6372 "and the implicitly-defined constructor does not "
6373 "initialize %q#D", field);
6376 return false;
6379 return true;
6382 /* Structure holding the current initializer being processed by reshape_init.
6383 CUR is a pointer to the current element being processed, END is a pointer
6384 after the last element present in the initializer. */
6385 struct reshape_iter
6387 constructor_elt *cur;
6388 constructor_elt *end;
6391 static tree reshape_init_r (tree, reshape_iter *, tree, tsubst_flags_t);
6393 /* FIELD is an element of TYPE_FIELDS or NULL. In the former case, the value
6394 returned is the next FIELD_DECL (possibly FIELD itself) that can be
6395 initialized as if for an aggregate class. If there are no more such fields,
6396 the return value will be NULL. */
6398 tree
6399 next_aggregate_field (tree field)
6401 while (field
6402 && (TREE_CODE (field) != FIELD_DECL
6403 || DECL_UNNAMED_BIT_FIELD (field)
6404 || (DECL_ARTIFICIAL (field)
6405 /* In C++17, aggregates can have bases. */
6406 && !(cxx_dialect >= cxx17 && DECL_FIELD_IS_BASE (field)))))
6407 field = DECL_CHAIN (field);
6409 return field;
6412 /* FIELD is an element of TYPE_FIELDS or NULL. In the former case, the value
6413 returned is the next FIELD_DECL (possibly FIELD itself) that corresponds
6414 to a subobject. If there are no more such fields, the return value will be
6415 NULL. */
6417 tree
6418 next_subobject_field (tree field)
6420 while (field
6421 && (TREE_CODE (field) != FIELD_DECL
6422 || DECL_UNNAMED_BIT_FIELD (field)
6423 || (DECL_ARTIFICIAL (field)
6424 && !DECL_FIELD_IS_BASE (field)
6425 && !DECL_VIRTUAL_P (field))))
6426 field = DECL_CHAIN (field);
6428 return field;
6431 /* Return true for [dcl.init.list] direct-list-initialization from
6432 single element of enumeration with a fixed underlying type. */
6434 bool
6435 is_direct_enum_init (tree type, tree init)
6437 if (cxx_dialect >= cxx17
6438 && TREE_CODE (type) == ENUMERAL_TYPE
6439 && ENUM_FIXED_UNDERLYING_TYPE_P (type)
6440 && TREE_CODE (init) == CONSTRUCTOR
6441 && CONSTRUCTOR_IS_DIRECT_INIT (init)
6442 && CONSTRUCTOR_NELTS (init) == 1
6443 /* DR 2374: The single element needs to be implicitly
6444 convertible to the underlying type of the enum. */
6445 && can_convert_arg (ENUM_UNDERLYING_TYPE (type),
6446 TREE_TYPE (CONSTRUCTOR_ELT (init, 0)->value),
6447 CONSTRUCTOR_ELT (init, 0)->value,
6448 LOOKUP_IMPLICIT, tf_none))
6449 return true;
6450 return false;
6453 /* Subroutine of reshape_init_array and reshape_init_vector, which does
6454 the actual work. ELT_TYPE is the element type of the array. MAX_INDEX is an
6455 INTEGER_CST representing the size of the array minus one (the maximum index),
6456 or NULL_TREE if the array was declared without specifying the size. D is
6457 the iterator within the constructor. */
6459 static tree
6460 reshape_init_array_1 (tree elt_type, tree max_index, reshape_iter *d,
6461 tree first_initializer_p, tsubst_flags_t complain)
6463 tree new_init;
6464 bool sized_array_p = (max_index && TREE_CONSTANT (max_index));
6465 unsigned HOST_WIDE_INT max_index_cst = 0;
6466 unsigned HOST_WIDE_INT index;
6468 /* The initializer for an array is always a CONSTRUCTOR. If this is the
6469 outermost CONSTRUCTOR and the element type is non-aggregate, we don't need
6470 to build a new one. But don't reuse if not complaining; if this is
6471 tentative, we might also reshape to another type (95319). */
6472 bool reuse = (first_initializer_p
6473 && (complain & tf_error)
6474 && !CP_AGGREGATE_TYPE_P (elt_type)
6475 && !TREE_SIDE_EFFECTS (first_initializer_p));
6476 if (reuse)
6477 new_init = first_initializer_p;
6478 else
6479 new_init = build_constructor (init_list_type_node, NULL);
6481 if (sized_array_p)
6483 /* Minus 1 is used for zero sized arrays. */
6484 if (integer_all_onesp (max_index))
6485 return new_init;
6487 if (tree_fits_uhwi_p (max_index))
6488 max_index_cst = tree_to_uhwi (max_index);
6489 /* sizetype is sign extended, not zero extended. */
6490 else
6491 max_index_cst = tree_to_uhwi (fold_convert (size_type_node, max_index));
6494 /* Loop until there are no more initializers. */
6495 for (index = 0;
6496 d->cur != d->end && (!sized_array_p || index <= max_index_cst);
6497 ++index)
6499 tree elt_init;
6500 constructor_elt *old_cur = d->cur;
6502 if (d->cur->index)
6503 CONSTRUCTOR_IS_DESIGNATED_INIT (new_init) = true;
6504 check_array_designated_initializer (d->cur, index);
6505 elt_init = reshape_init_r (elt_type, d,
6506 /*first_initializer_p=*/NULL_TREE,
6507 complain);
6508 if (elt_init == error_mark_node)
6509 return error_mark_node;
6510 tree idx = size_int (index);
6511 if (reuse)
6513 old_cur->index = idx;
6514 old_cur->value = elt_init;
6516 else
6517 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init),
6518 idx, elt_init);
6519 if (!TREE_CONSTANT (elt_init))
6520 TREE_CONSTANT (new_init) = false;
6522 /* This can happen with an invalid initializer (c++/54501). */
6523 if (d->cur == old_cur && !sized_array_p)
6524 break;
6527 return new_init;
6530 /* Subroutine of reshape_init_r, processes the initializers for arrays.
6531 Parameters are the same of reshape_init_r. */
6533 static tree
6534 reshape_init_array (tree type, reshape_iter *d, tree first_initializer_p,
6535 tsubst_flags_t complain)
6537 tree max_index = NULL_TREE;
6539 gcc_assert (TREE_CODE (type) == ARRAY_TYPE);
6541 if (TYPE_DOMAIN (type))
6542 max_index = array_type_nelts (type);
6544 return reshape_init_array_1 (TREE_TYPE (type), max_index, d,
6545 first_initializer_p, complain);
6548 /* Subroutine of reshape_init_r, processes the initializers for vectors.
6549 Parameters are the same of reshape_init_r. */
6551 static tree
6552 reshape_init_vector (tree type, reshape_iter *d, tsubst_flags_t complain)
6554 tree max_index = NULL_TREE;
6556 gcc_assert (VECTOR_TYPE_P (type));
6558 if (COMPOUND_LITERAL_P (d->cur->value))
6560 tree value = d->cur->value;
6561 if (!same_type_p (TREE_TYPE (value), type))
6563 if (complain & tf_error)
6564 error ("invalid type %qT as initializer for a vector of type %qT",
6565 TREE_TYPE (d->cur->value), type);
6566 value = error_mark_node;
6568 ++d->cur;
6569 return value;
6572 /* For a vector, we initialize it as an array of the appropriate size. */
6573 if (VECTOR_TYPE_P (type))
6574 max_index = size_int (TYPE_VECTOR_SUBPARTS (type) - 1);
6576 return reshape_init_array_1 (TREE_TYPE (type), max_index, d,
6577 NULL_TREE, complain);
6580 /* Subroutine of reshape_init*: We're initializing an element with TYPE from
6581 INIT, in isolation from any designator or other initializers. */
6583 static tree
6584 reshape_single_init (tree type, tree init, tsubst_flags_t complain)
6586 /* We could also implement this by wrapping init in a new CONSTRUCTOR and
6587 calling reshape_init, but this way can just live on the stack. */
6588 constructor_elt elt = { /*index=*/NULL_TREE, init };
6589 reshape_iter iter = { &elt, &elt + 1 };
6590 return reshape_init_r (type, &iter,
6591 /*first_initializer_p=*/NULL_TREE,
6592 complain);
6595 /* Subroutine of reshape_init_r, processes the initializers for classes
6596 or union. Parameters are the same of reshape_init_r. */
6598 static tree
6599 reshape_init_class (tree type, reshape_iter *d, bool first_initializer_p,
6600 tsubst_flags_t complain)
6602 tree field;
6603 tree new_init;
6605 gcc_assert (CLASS_TYPE_P (type));
6607 /* The initializer for a class is always a CONSTRUCTOR. */
6608 new_init = build_constructor (init_list_type_node, NULL);
6610 int binfo_idx = -1;
6611 tree binfo = TYPE_BINFO (type);
6612 tree base_binfo = NULL_TREE;
6613 if (cxx_dialect >= cxx17 && uses_template_parms (type))
6615 /* We get here from maybe_aggr_guide for C++20 class template argument
6616 deduction. In this case we need to look through the binfo because a
6617 template doesn't have base fields. */
6618 binfo_idx = 0;
6619 BINFO_BASE_ITERATE (binfo, binfo_idx, base_binfo);
6621 if (base_binfo)
6622 field = base_binfo;
6623 else
6624 field = next_aggregate_field (TYPE_FIELDS (type));
6626 if (!field)
6628 /* [dcl.init.aggr]
6630 An initializer for an aggregate member that is an
6631 empty class shall have the form of an empty
6632 initializer-list {}. */
6633 if (!first_initializer_p)
6635 if (complain & tf_error)
6636 error ("initializer for %qT must be brace-enclosed", type);
6637 return error_mark_node;
6639 return new_init;
6642 /* For C++20 CTAD, handle pack expansions in the base list. */
6643 tree last_was_pack_expansion = NULL_TREE;
6645 /* Loop through the initializable fields, gathering initializers. */
6646 while (d->cur != d->end)
6648 tree field_init;
6649 constructor_elt *old_cur = d->cur;
6650 bool direct_desig = false;
6652 /* Handle C++20 designated initializers. */
6653 if (d->cur->index)
6655 if (d->cur->index == error_mark_node)
6656 return error_mark_node;
6658 if (TREE_CODE (d->cur->index) == FIELD_DECL)
6660 /* We already reshaped this; we should have returned early from
6661 reshape_init. */
6662 gcc_checking_assert (false);
6663 if (field != d->cur->index)
6665 if (tree id = DECL_NAME (d->cur->index))
6666 gcc_checking_assert (d->cur->index
6667 == get_class_binding (type, id));
6668 field = d->cur->index;
6671 else if (TREE_CODE (d->cur->index) == IDENTIFIER_NODE)
6673 CONSTRUCTOR_IS_DESIGNATED_INIT (new_init) = true;
6674 field = get_class_binding (type, d->cur->index);
6675 direct_desig = true;
6677 else
6679 if (complain & tf_error)
6680 error ("%<[%E] =%> used in a GNU-style designated initializer"
6681 " for class %qT", d->cur->index, type);
6682 return error_mark_node;
6685 if (!field && ANON_AGGR_TYPE_P (type))
6686 /* Apparently the designator isn't for a member of this anonymous
6687 struct, so head back to the enclosing class. */
6688 break;
6690 if (!field || TREE_CODE (field) != FIELD_DECL)
6692 if (complain & tf_error)
6693 error ("%qT has no non-static data member named %qD", type,
6694 d->cur->index);
6695 return error_mark_node;
6698 /* If the element is an anonymous union object and the initializer
6699 list is a designated-initializer-list, the anonymous union object
6700 is initialized by the designated-initializer-list { D }, where D
6701 is the designated-initializer-clause naming a member of the
6702 anonymous union object. */
6703 tree ictx = DECL_CONTEXT (field);
6704 if (!same_type_ignoring_top_level_qualifiers_p (ictx, type))
6706 /* Find the anon aggr that is a direct member of TYPE. */
6707 while (ANON_AGGR_TYPE_P (ictx))
6709 tree cctx = TYPE_CONTEXT (ictx);
6710 if (same_type_ignoring_top_level_qualifiers_p (cctx, type))
6711 goto found;
6712 ictx = cctx;
6715 /* Not found, e.g. FIELD is a member of a base class. */
6716 if (complain & tf_error)
6717 error ("%qD is not a direct member of %qT", field, type);
6718 return error_mark_node;
6720 found:
6721 /* Now find the TYPE member with that anon aggr type. */
6722 tree aafield = TYPE_FIELDS (type);
6723 for (; aafield; aafield = TREE_CHAIN (aafield))
6724 if (TREE_TYPE (aafield) == ictx)
6725 break;
6726 gcc_assert (aafield);
6727 field = aafield;
6728 direct_desig = false;
6732 /* If we processed all the member of the class, we are done. */
6733 if (!field)
6734 break;
6736 last_was_pack_expansion = (PACK_EXPANSION_P (TREE_TYPE (field))
6737 ? field : NULL_TREE);
6738 if (last_was_pack_expansion)
6739 /* Each non-trailing aggregate element that is a pack expansion is
6740 assumed to correspond to no elements of the initializer list. */
6741 goto continue_;
6743 if (direct_desig)
6745 /* The designated field F is initialized from this one element.
6747 Note that we don't want to do this if we found the designator
6748 inside an anon aggr above; we use the normal code to implement:
6750 "If the element is an anonymous union member and the initializer
6751 list is a brace-enclosed designated- initializer-list, the element
6752 is initialized by the designated-initializer-list { D }, where D
6753 is the designated- initializer-clause naming a member of the
6754 anonymous union member." */
6755 field_init = reshape_single_init (TREE_TYPE (field),
6756 d->cur->value, complain);
6757 d->cur++;
6759 else
6760 field_init = reshape_init_r (TREE_TYPE (field), d,
6761 /*first_initializer_p=*/NULL_TREE,
6762 complain);
6764 if (field_init == error_mark_node)
6765 return error_mark_node;
6767 if (d->cur == old_cur && d->cur->index)
6769 /* This can happen with an invalid initializer for a flexible
6770 array member (c++/54441). */
6771 if (complain & tf_error)
6772 error ("invalid initializer for %q#D", field);
6773 return error_mark_node;
6776 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init), field, field_init);
6778 /* [dcl.init.aggr]
6780 When a union is initialized with a brace-enclosed
6781 initializer, the braces shall only contain an
6782 initializer for the first member of the union. */
6783 if (TREE_CODE (type) == UNION_TYPE)
6784 break;
6786 continue_:
6787 if (base_binfo)
6789 if (BINFO_BASE_ITERATE (binfo, ++binfo_idx, base_binfo))
6790 field = base_binfo;
6791 else
6792 field = next_aggregate_field (TYPE_FIELDS (type));
6794 else
6795 field = next_aggregate_field (DECL_CHAIN (field));
6798 /* A trailing aggregate element that is a pack expansion is assumed to
6799 correspond to all remaining elements of the initializer list (if any). */
6800 if (last_was_pack_expansion)
6802 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init),
6803 last_was_pack_expansion, d->cur->value);
6804 while (d->cur != d->end)
6805 d->cur++;
6808 return new_init;
6811 /* Subroutine of reshape_init_r. We're in a context where C99 initializer
6812 designators are not valid; either complain or return true to indicate
6813 that reshape_init_r should return error_mark_node. */
6815 static bool
6816 has_designator_problem (reshape_iter *d, tsubst_flags_t complain)
6818 if (d->cur->index)
6820 if (complain & tf_error)
6821 error_at (cp_expr_loc_or_input_loc (d->cur->index),
6822 "C99 designator %qE outside aggregate initializer",
6823 d->cur->index);
6824 else
6825 return true;
6827 return false;
6830 /* Subroutine of reshape_init, which processes a single initializer (part of
6831 a CONSTRUCTOR). TYPE is the type of the variable being initialized, D is the
6832 iterator within the CONSTRUCTOR which points to the initializer to process.
6833 If this is the first initializer of the outermost CONSTRUCTOR node,
6834 FIRST_INITIALIZER_P is that CONSTRUCTOR; otherwise, it is NULL_TREE. */
6836 static tree
6837 reshape_init_r (tree type, reshape_iter *d, tree first_initializer_p,
6838 tsubst_flags_t complain)
6840 tree init = d->cur->value;
6842 if (error_operand_p (init))
6843 return error_mark_node;
6845 if (first_initializer_p && !CP_AGGREGATE_TYPE_P (type)
6846 && has_designator_problem (d, complain))
6847 return error_mark_node;
6849 tree stripped_init = tree_strip_any_location_wrapper (init);
6851 if (TREE_CODE (type) == COMPLEX_TYPE)
6853 /* A complex type can be initialized from one or two initializers,
6854 but braces are not elided. */
6855 d->cur++;
6856 if (BRACE_ENCLOSED_INITIALIZER_P (stripped_init))
6858 if (CONSTRUCTOR_NELTS (stripped_init) > 2)
6860 if (complain & tf_error)
6861 error ("too many initializers for %qT", type);
6862 else
6863 return error_mark_node;
6866 else if (first_initializer_p && d->cur != d->end)
6868 vec<constructor_elt, va_gc> *v = 0;
6869 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, init);
6870 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, d->cur->value);
6871 if (has_designator_problem (d, complain))
6872 return error_mark_node;
6873 d->cur++;
6874 init = build_constructor (init_list_type_node, v);
6876 return init;
6879 /* A non-aggregate type is always initialized with a single
6880 initializer. */
6881 if (!CP_AGGREGATE_TYPE_P (type)
6882 /* As is an array with dependent bound, which we can see
6883 during C++20 aggregate CTAD. */
6884 || (cxx_dialect >= cxx20
6885 && TREE_CODE (type) == ARRAY_TYPE
6886 && uses_template_parms (TYPE_DOMAIN (type))))
6888 /* It is invalid to initialize a non-aggregate type with a
6889 brace-enclosed initializer before C++0x.
6890 We need to check for BRACE_ENCLOSED_INITIALIZER_P here because
6891 of g++.old-deja/g++.mike/p7626.C: a pointer-to-member constant is
6892 a CONSTRUCTOR (with a record type). */
6893 if (TREE_CODE (stripped_init) == CONSTRUCTOR
6894 /* Don't complain about a capture-init. */
6895 && !CONSTRUCTOR_IS_DIRECT_INIT (stripped_init)
6896 && BRACE_ENCLOSED_INITIALIZER_P (stripped_init)) /* p7626.C */
6898 if (SCALAR_TYPE_P (type))
6900 if (cxx_dialect < cxx11)
6902 if (complain & tf_error)
6903 error ("braces around scalar initializer for type %qT",
6904 type);
6905 init = error_mark_node;
6907 else if (first_initializer_p
6908 || (CONSTRUCTOR_NELTS (stripped_init) > 0
6909 && (BRACE_ENCLOSED_INITIALIZER_P
6910 (CONSTRUCTOR_ELT (stripped_init,0)->value))))
6912 if (complain & tf_error)
6913 error ("too many braces around scalar initializer "
6914 "for type %qT", type);
6915 init = error_mark_node;
6918 else
6919 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
6922 d->cur++;
6923 return init;
6926 /* "If T is a class type and the initializer list has a single element of
6927 type cv U, where U is T or a class derived from T, the object is
6928 initialized from that element." Even if T is an aggregate. */
6929 if (cxx_dialect >= cxx11 && (CLASS_TYPE_P (type) || VECTOR_TYPE_P (type))
6930 && first_initializer_p
6931 /* But not if it's a designated init. */
6932 && !d->cur->index
6933 && d->end - d->cur == 1
6934 && reference_related_p (type, TREE_TYPE (init)))
6936 d->cur++;
6937 return init;
6940 /* [dcl.init.aggr]
6942 All implicit type conversions (clause _conv_) are considered when
6943 initializing the aggregate member with an initializer from an
6944 initializer-list. If the initializer can initialize a member,
6945 the member is initialized. Otherwise, if the member is itself a
6946 non-empty subaggregate, brace elision is assumed and the
6947 initializer is considered for the initialization of the first
6948 member of the subaggregate. */
6949 if ((TREE_CODE (init) != CONSTRUCTOR || COMPOUND_LITERAL_P (init))
6950 /* But don't try this for the first initializer, since that would be
6951 looking through the outermost braces; A a2 = { a1 }; is not a
6952 valid aggregate initialization. */
6953 && !first_initializer_p
6954 && (same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (init))
6955 || can_convert_arg (type, TREE_TYPE (init), init, LOOKUP_NORMAL,
6956 complain)))
6958 d->cur++;
6959 return init;
6962 /* [dcl.init.string]
6964 A char array (whether plain char, signed char, or unsigned char)
6965 can be initialized by a string-literal (optionally enclosed in
6966 braces); a wchar_t array can be initialized by a wide
6967 string-literal (optionally enclosed in braces). */
6968 if (TREE_CODE (type) == ARRAY_TYPE
6969 && char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (type))))
6971 tree str_init = init;
6972 tree stripped_str_init = stripped_init;
6973 reshape_iter stripd = {};
6975 /* Strip one level of braces if and only if they enclose a single
6976 element (as allowed by [dcl.init.string]). */
6977 if (!first_initializer_p
6978 && TREE_CODE (stripped_str_init) == CONSTRUCTOR
6979 && CONSTRUCTOR_NELTS (stripped_str_init) == 1)
6981 stripd.cur = CONSTRUCTOR_ELT (stripped_str_init, 0);
6982 str_init = stripd.cur->value;
6983 stripped_str_init = tree_strip_any_location_wrapper (str_init);
6986 /* If it's a string literal, then it's the initializer for the array
6987 as a whole. Otherwise, continue with normal initialization for
6988 array types (one value per array element). */
6989 if (TREE_CODE (stripped_str_init) == STRING_CST)
6991 if ((first_initializer_p && has_designator_problem (d, complain))
6992 || (stripd.cur && has_designator_problem (&stripd, complain)))
6993 return error_mark_node;
6994 d->cur++;
6995 return str_init;
6999 /* The following cases are about aggregates. If we are not within a full
7000 initializer already, and there is not a CONSTRUCTOR, it means that there
7001 is a missing set of braces (that is, we are processing the case for
7002 which reshape_init exists). */
7003 bool braces_elided_p = false;
7004 if (!first_initializer_p)
7006 if (TREE_CODE (stripped_init) == CONSTRUCTOR)
7008 tree init_type = TREE_TYPE (init);
7009 if (init_type && TYPE_PTRMEMFUNC_P (init_type))
7010 /* There is no need to call reshape_init for pointer-to-member
7011 function initializers, as they are always constructed correctly
7012 by the front end. Here we have e.g. {.__pfn=0B, .__delta=0},
7013 which is missing outermost braces. We should warn below, and
7014 one of the routines below will wrap it in additional { }. */;
7015 /* For a nested compound literal, proceed to specialized routines,
7016 to handle initialization of arrays and similar. */
7017 else if (COMPOUND_LITERAL_P (stripped_init))
7018 gcc_assert (!BRACE_ENCLOSED_INITIALIZER_P (stripped_init));
7019 /* If we have an unresolved designator, we need to find the member it
7020 designates within TYPE, so proceed to the routines below. For
7021 FIELD_DECL or INTEGER_CST designators, we're already initializing
7022 the designated element. */
7023 else if (d->cur->index
7024 && TREE_CODE (d->cur->index) == IDENTIFIER_NODE)
7025 /* Brace elision with designators is only permitted for anonymous
7026 aggregates. */
7027 gcc_checking_assert (ANON_AGGR_TYPE_P (type));
7028 /* A CONSTRUCTOR of the target's type is a previously
7029 digested initializer. */
7030 else if (same_type_ignoring_top_level_qualifiers_p (type, init_type))
7032 ++d->cur;
7033 return init;
7035 else
7037 /* Something that hasn't been reshaped yet. */
7038 ++d->cur;
7039 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (stripped_init));
7040 return reshape_init (type, init, complain);
7044 if (complain & tf_warning)
7045 warning (OPT_Wmissing_braces,
7046 "missing braces around initializer for %qT",
7047 type);
7048 braces_elided_p = true;
7051 /* Dispatch to specialized routines. */
7052 tree new_init;
7053 if (CLASS_TYPE_P (type))
7054 new_init = reshape_init_class (type, d, first_initializer_p, complain);
7055 else if (TREE_CODE (type) == ARRAY_TYPE)
7056 new_init = reshape_init_array (type, d, first_initializer_p, complain);
7057 else if (VECTOR_TYPE_P (type))
7058 new_init = reshape_init_vector (type, d, complain);
7059 else
7060 gcc_unreachable();
7062 if (braces_elided_p
7063 && TREE_CODE (new_init) == CONSTRUCTOR)
7064 CONSTRUCTOR_BRACES_ELIDED_P (new_init) = true;
7066 return new_init;
7069 /* Undo the brace-elision allowed by [dcl.init.aggr] in a
7070 brace-enclosed aggregate initializer.
7072 INIT is the CONSTRUCTOR containing the list of initializers describing
7073 a brace-enclosed initializer for an entity of the indicated aggregate TYPE.
7074 It may not presently match the shape of the TYPE; for example:
7076 struct S { int a; int b; };
7077 struct S a[] = { 1, 2, 3, 4 };
7079 Here INIT will hold a vector of four elements, rather than a
7080 vector of two elements, each itself a vector of two elements. This
7081 routine transforms INIT from the former form into the latter. The
7082 revised CONSTRUCTOR node is returned. */
7084 tree
7085 reshape_init (tree type, tree init, tsubst_flags_t complain)
7087 vec<constructor_elt, va_gc> *v;
7088 reshape_iter d;
7089 tree new_init;
7091 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
7093 v = CONSTRUCTOR_ELTS (init);
7095 /* An empty constructor does not need reshaping, and it is always a valid
7096 initializer. */
7097 if (vec_safe_is_empty (v))
7098 return init;
7100 if ((*v)[0].index && TREE_CODE ((*v)[0].index) == FIELD_DECL)
7101 /* Already reshaped. */
7102 return init;
7104 /* Brace elision is not performed for a CONSTRUCTOR representing
7105 parenthesized aggregate initialization. */
7106 if (CONSTRUCTOR_IS_PAREN_INIT (init))
7108 tree elt = (*v)[0].value;
7109 /* If we're initializing a char array from a string-literal that is
7110 enclosed in braces, unwrap it here. */
7111 if (TREE_CODE (type) == ARRAY_TYPE
7112 && vec_safe_length (v) == 1
7113 && char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (type)))
7114 && TREE_CODE (tree_strip_any_location_wrapper (elt)) == STRING_CST)
7115 return elt;
7116 return init;
7119 /* Handle [dcl.init.list] direct-list-initialization from
7120 single element of enumeration with a fixed underlying type. */
7121 if (is_direct_enum_init (type, init))
7123 tree elt = CONSTRUCTOR_ELT (init, 0)->value;
7124 type = cv_unqualified (type);
7125 if (check_narrowing (ENUM_UNDERLYING_TYPE (type), elt, complain))
7127 warning_sentinel w (warn_useless_cast);
7128 warning_sentinel w2 (warn_ignored_qualifiers);
7129 return cp_build_c_cast (input_location, type, elt,
7130 tf_warning_or_error);
7132 else
7133 return error_mark_node;
7136 /* Recurse on this CONSTRUCTOR. */
7137 d.cur = &(*v)[0];
7138 d.end = d.cur + v->length ();
7140 new_init = reshape_init_r (type, &d, init, complain);
7141 if (new_init == error_mark_node)
7142 return error_mark_node;
7144 /* Make sure all the element of the constructor were used. Otherwise,
7145 issue an error about exceeding initializers. */
7146 if (d.cur != d.end)
7148 if (complain & tf_error)
7149 error ("too many initializers for %qT", type);
7150 return error_mark_node;
7153 if (CONSTRUCTOR_IS_DIRECT_INIT (init)
7154 && BRACE_ENCLOSED_INITIALIZER_P (new_init))
7155 CONSTRUCTOR_IS_DIRECT_INIT (new_init) = true;
7156 if (CONSTRUCTOR_IS_DESIGNATED_INIT (init)
7157 && BRACE_ENCLOSED_INITIALIZER_P (new_init))
7158 gcc_checking_assert (CONSTRUCTOR_IS_DESIGNATED_INIT (new_init)
7159 || seen_error ());
7161 return new_init;
7164 /* Verify array initializer. Returns true if errors have been reported. */
7166 bool
7167 check_array_initializer (tree decl, tree type, tree init)
7169 tree element_type = TREE_TYPE (type);
7171 /* Structured binding when initialized with an array type needs
7172 to have complete type. */
7173 if (decl
7174 && DECL_DECOMPOSITION_P (decl)
7175 && !DECL_DECOMP_BASE (decl)
7176 && !COMPLETE_TYPE_P (type))
7178 error_at (DECL_SOURCE_LOCATION (decl),
7179 "structured binding has incomplete type %qT", type);
7180 TREE_TYPE (decl) = error_mark_node;
7181 return true;
7184 /* The array type itself need not be complete, because the
7185 initializer may tell us how many elements are in the array.
7186 But, the elements of the array must be complete. */
7187 if (!COMPLETE_TYPE_P (complete_type (element_type)))
7189 if (decl)
7190 error_at (DECL_SOURCE_LOCATION (decl),
7191 "elements of array %q#D have incomplete type", decl);
7192 else
7193 error ("elements of array %q#T have incomplete type", type);
7194 return true;
7197 location_t loc = (decl ? location_of (decl) : input_location);
7198 if (!verify_type_context (loc, TCTX_ARRAY_ELEMENT, element_type))
7199 return true;
7201 /* A compound literal can't have variable size. */
7202 if (init && !decl
7203 && ((COMPLETE_TYPE_P (type) && !TREE_CONSTANT (TYPE_SIZE (type)))
7204 || !TREE_CONSTANT (TYPE_SIZE (element_type))))
7206 error ("variable-sized compound literal");
7207 return true;
7209 return false;
7212 /* Subroutine of check_initializer; args are passed down from that function.
7213 Set stmts_are_full_exprs_p to 1 across a call to build_aggr_init. */
7215 static tree
7216 build_aggr_init_full_exprs (tree decl, tree init, int flags)
7218 gcc_assert (stmts_are_full_exprs_p ());
7219 if (init)
7220 maybe_warn_pessimizing_move (init, TREE_TYPE (decl), /*return_p*/false);
7221 return build_aggr_init (decl, init, flags, tf_warning_or_error);
7224 /* Verify INIT (the initializer for DECL), and record the
7225 initialization in DECL_INITIAL, if appropriate. CLEANUP is as for
7226 grok_reference_init.
7228 If the return value is non-NULL, it is an expression that must be
7229 evaluated dynamically to initialize DECL. */
7231 static tree
7232 check_initializer (tree decl, tree init, int flags, vec<tree, va_gc> **cleanups)
7234 tree type;
7235 tree init_code = NULL;
7236 tree core_type;
7238 /* Things that are going to be initialized need to have complete
7239 type. */
7240 TREE_TYPE (decl) = type = complete_type (TREE_TYPE (decl));
7242 if (DECL_HAS_VALUE_EXPR_P (decl))
7244 /* A variable with DECL_HAS_VALUE_EXPR_P set is just a placeholder,
7245 it doesn't have storage to be initialized. */
7246 gcc_assert (init == NULL_TREE);
7247 return NULL_TREE;
7250 if (type == error_mark_node)
7251 /* We will have already complained. */
7252 return NULL_TREE;
7254 if (TREE_CODE (type) == ARRAY_TYPE)
7256 if (check_array_initializer (decl, type, init))
7257 return NULL_TREE;
7259 else if (!COMPLETE_TYPE_P (type))
7261 error_at (DECL_SOURCE_LOCATION (decl),
7262 "%q#D has incomplete type", decl);
7263 TREE_TYPE (decl) = error_mark_node;
7264 return NULL_TREE;
7266 else
7267 /* There is no way to make a variable-sized class type in GNU C++. */
7268 gcc_assert (TREE_CONSTANT (TYPE_SIZE (type)));
7270 if (init && BRACE_ENCLOSED_INITIALIZER_P (init))
7272 int init_len = CONSTRUCTOR_NELTS (init);
7273 if (SCALAR_TYPE_P (type))
7275 if (init_len == 0)
7277 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
7278 init = build_zero_init (type, NULL_TREE, false);
7280 else if (init_len != 1 && TREE_CODE (type) != COMPLEX_TYPE)
7282 error_at (cp_expr_loc_or_loc (init, DECL_SOURCE_LOCATION (decl)),
7283 "scalar object %qD requires one element in "
7284 "initializer", decl);
7285 TREE_TYPE (decl) = error_mark_node;
7286 return NULL_TREE;
7291 if (TREE_CODE (decl) == CONST_DECL)
7293 gcc_assert (!TYPE_REF_P (type));
7295 DECL_INITIAL (decl) = init;
7297 gcc_assert (init != NULL_TREE);
7298 init = NULL_TREE;
7300 else if (!init && DECL_REALLY_EXTERN (decl))
7302 else if (init || type_build_ctor_call (type)
7303 || TYPE_REF_P (type))
7305 if (TYPE_REF_P (type))
7307 init = grok_reference_init (decl, type, init, flags);
7308 flags |= LOOKUP_ALREADY_DIGESTED;
7310 else if (!init)
7311 check_for_uninitialized_const_var (decl, /*constexpr_context_p=*/false,
7312 tf_warning_or_error);
7313 /* Do not reshape constructors of vectors (they don't need to be
7314 reshaped. */
7315 else if (BRACE_ENCLOSED_INITIALIZER_P (init))
7317 if (is_std_init_list (type))
7319 init = perform_implicit_conversion (type, init,
7320 tf_warning_or_error);
7321 flags |= LOOKUP_ALREADY_DIGESTED;
7323 else if (TYPE_NON_AGGREGATE_CLASS (type))
7325 /* Don't reshape if the class has constructors. */
7326 if (cxx_dialect == cxx98)
7327 error_at (cp_expr_loc_or_loc (init, DECL_SOURCE_LOCATION (decl)),
7328 "in C++98 %qD must be initialized by "
7329 "constructor, not by %<{...}%>",
7330 decl);
7332 else if (VECTOR_TYPE_P (type) && TYPE_VECTOR_OPAQUE (type))
7334 error ("opaque vector types cannot be initialized");
7335 init = error_mark_node;
7337 else
7339 init = reshape_init (type, init, tf_warning_or_error);
7340 flags |= LOOKUP_NO_NARROWING;
7343 /* [dcl.init] "Otherwise, if the destination type is an array, the object
7344 is initialized as follows..." So handle things like
7346 int a[](1, 2, 3);
7348 which is permitted in C++20 by P0960. */
7349 else if (TREE_CODE (init) == TREE_LIST
7350 && TREE_TYPE (init) == NULL_TREE
7351 && TREE_CODE (type) == ARRAY_TYPE
7352 && !DECL_DECOMPOSITION_P (decl)
7353 && (cxx_dialect >= cxx20))
7354 init = do_aggregate_paren_init (init, type);
7355 else if (TREE_CODE (init) == TREE_LIST
7356 && TREE_TYPE (init) != unknown_type_node
7357 && !MAYBE_CLASS_TYPE_P (type))
7359 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
7361 /* We get here with code like `int a (2);' */
7362 init = build_x_compound_expr_from_list (init, ELK_INIT,
7363 tf_warning_or_error);
7366 /* If DECL has an array type without a specific bound, deduce the
7367 array size from the initializer. */
7368 maybe_deduce_size_from_array_init (decl, init);
7369 type = TREE_TYPE (decl);
7370 if (type == error_mark_node)
7371 return NULL_TREE;
7373 if (((type_build_ctor_call (type) || CLASS_TYPE_P (type))
7374 && !(flags & LOOKUP_ALREADY_DIGESTED)
7375 && !(init && BRACE_ENCLOSED_INITIALIZER_P (init)
7376 && CP_AGGREGATE_TYPE_P (type)
7377 && (CLASS_TYPE_P (type)
7378 /* The call to build_aggr_init below could end up
7379 calling build_vec_init, which may break when we
7380 are processing a template. */
7381 || processing_template_decl
7382 || !TYPE_NEEDS_CONSTRUCTING (type)
7383 || type_has_extended_temps (type))))
7384 || (DECL_DECOMPOSITION_P (decl) && TREE_CODE (type) == ARRAY_TYPE))
7386 init_code = build_aggr_init_full_exprs (decl, init, flags);
7388 /* A constructor call is a non-trivial initializer even if
7389 it isn't explicitly written. */
7390 if (TREE_SIDE_EFFECTS (init_code))
7391 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = true;
7393 /* If this is a constexpr initializer, expand_default_init will
7394 have returned an INIT_EXPR rather than a CALL_EXPR. In that
7395 case, pull the initializer back out and pass it down into
7396 store_init_value. */
7397 while (true)
7399 if (TREE_CODE (init_code) == EXPR_STMT
7400 || TREE_CODE (init_code) == STMT_EXPR
7401 || TREE_CODE (init_code) == CONVERT_EXPR)
7402 init_code = TREE_OPERAND (init_code, 0);
7403 else if (TREE_CODE (init_code) == BIND_EXPR)
7404 init_code = BIND_EXPR_BODY (init_code);
7405 else
7406 break;
7408 if (TREE_CODE (init_code) == INIT_EXPR)
7410 /* In C++20, the call to build_aggr_init could have created
7411 an INIT_EXPR with a CONSTRUCTOR as the RHS to handle
7412 A(1, 2). */
7413 tree rhs = TREE_OPERAND (init_code, 1);
7414 if (processing_template_decl && TREE_CODE (rhs) == TARGET_EXPR)
7415 /* Avoid leaking TARGET_EXPR into template trees. */
7416 rhs = build_implicit_conv_flags (type, init, flags);
7417 init = rhs;
7419 init_code = NULL_TREE;
7420 /* Don't call digest_init; it's unnecessary and will complain
7421 about aggregate initialization of non-aggregate classes. */
7422 flags |= LOOKUP_ALREADY_DIGESTED;
7424 else if (DECL_DECLARED_CONSTEXPR_P (decl)
7425 || DECL_DECLARED_CONSTINIT_P (decl))
7427 /* Declared constexpr or constinit, but no suitable initializer;
7428 massage init appropriately so we can pass it into
7429 store_init_value for the error. */
7430 tree new_init = NULL_TREE;
7431 if (!processing_template_decl
7432 && TREE_CODE (init_code) == CALL_EXPR)
7433 new_init = build_cplus_new (type, init_code, tf_none);
7434 else if (CLASS_TYPE_P (type)
7435 && (!init || TREE_CODE (init) == TREE_LIST))
7436 new_init = build_functional_cast (input_location, type,
7437 init, tf_none);
7438 if (new_init)
7440 init = new_init;
7441 if (TREE_CODE (init) == TARGET_EXPR
7442 && !(flags & LOOKUP_ONLYCONVERTING))
7443 TARGET_EXPR_DIRECT_INIT_P (init) = true;
7445 init_code = NULL_TREE;
7447 else
7448 init = NULL_TREE;
7451 if (init && TREE_CODE (init) != TREE_VEC)
7453 init_code = store_init_value (decl, init, cleanups, flags);
7455 if (DECL_INITIAL (decl)
7456 && TREE_CODE (DECL_INITIAL (decl)) == CONSTRUCTOR
7457 && !vec_safe_is_empty (CONSTRUCTOR_ELTS (DECL_INITIAL (decl))))
7459 tree elt = CONSTRUCTOR_ELTS (DECL_INITIAL (decl))->last ().value;
7460 if (TREE_CODE (TREE_TYPE (elt)) == ARRAY_TYPE
7461 && TYPE_SIZE (TREE_TYPE (elt)) == NULL_TREE)
7462 cp_complete_array_type (&TREE_TYPE (elt), elt, false);
7465 if (pedantic && TREE_CODE (type) == ARRAY_TYPE
7466 && DECL_INITIAL (decl)
7467 && TREE_CODE (DECL_INITIAL (decl)) == STRING_CST
7468 && PAREN_STRING_LITERAL_P (DECL_INITIAL (decl)))
7469 warning_at (cp_expr_loc_or_loc (DECL_INITIAL (decl),
7470 DECL_SOURCE_LOCATION (decl)),
7471 0, "array %qD initialized by parenthesized "
7472 "string literal %qE",
7473 decl, DECL_INITIAL (decl));
7474 init = NULL_TREE;
7477 else
7479 if (CLASS_TYPE_P (core_type = strip_array_types (type))
7480 && (CLASSTYPE_READONLY_FIELDS_NEED_INIT (core_type)
7481 || CLASSTYPE_REF_FIELDS_NEED_INIT (core_type)))
7482 diagnose_uninitialized_cst_or_ref_member (core_type, /*using_new=*/false,
7483 /*complain=*/true);
7485 check_for_uninitialized_const_var (decl, /*constexpr_context_p=*/false,
7486 tf_warning_or_error);
7489 if (init && init != error_mark_node)
7490 init_code = build2 (INIT_EXPR, type, decl, init);
7492 if (init_code && !TREE_SIDE_EFFECTS (init_code)
7493 && init_code != error_mark_node)
7494 init_code = NULL_TREE;
7496 if (init_code)
7498 /* We might have set these in cp_finish_decl. */
7499 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = false;
7500 TREE_CONSTANT (decl) = false;
7503 if (init_code
7504 && DECL_IN_AGGR_P (decl)
7505 && DECL_INITIALIZED_IN_CLASS_P (decl))
7507 static int explained = 0;
7509 if (cxx_dialect < cxx11)
7510 error ("initializer invalid for static member with constructor");
7511 else if (cxx_dialect < cxx17)
7512 error ("non-constant in-class initialization invalid for static "
7513 "member %qD", decl);
7514 else
7515 error ("non-constant in-class initialization invalid for non-inline "
7516 "static member %qD", decl);
7517 if (!explained)
7519 inform (input_location,
7520 "(an out of class initialization is required)");
7521 explained = 1;
7523 return NULL_TREE;
7526 return init_code;
7529 /* If DECL is not a local variable, give it RTL. */
7531 static void
7532 make_rtl_for_nonlocal_decl (tree decl, tree init, const char* asmspec)
7534 int toplev = toplevel_bindings_p ();
7535 int defer_p;
7537 /* Set the DECL_ASSEMBLER_NAME for the object. */
7538 if (asmspec)
7540 /* The `register' keyword, when used together with an
7541 asm-specification, indicates that the variable should be
7542 placed in a particular register. */
7543 if (VAR_P (decl) && DECL_REGISTER (decl))
7545 set_user_assembler_name (decl, asmspec);
7546 DECL_HARD_REGISTER (decl) = 1;
7548 else
7550 if (TREE_CODE (decl) == FUNCTION_DECL
7551 && fndecl_built_in_p (decl, BUILT_IN_NORMAL))
7552 set_builtin_user_assembler_name (decl, asmspec);
7553 set_user_assembler_name (decl, asmspec);
7554 if (DECL_LOCAL_DECL_P (decl))
7555 if (auto ns_decl = DECL_LOCAL_DECL_ALIAS (decl))
7556 /* We have to propagate the name to the ns-alias.
7557 This is horrible, as we're affecting a
7558 possibly-shared decl. Again, a one-true-decl
7559 model breaks down. */
7560 if (ns_decl != error_mark_node)
7561 set_user_assembler_name (ns_decl, asmspec);
7565 /* Handle non-variables up front. */
7566 if (!VAR_P (decl))
7568 rest_of_decl_compilation (decl, toplev, at_eof);
7569 return;
7572 /* If we see a class member here, it should be a static data
7573 member. */
7574 if (DECL_LANG_SPECIFIC (decl) && DECL_IN_AGGR_P (decl))
7576 gcc_assert (TREE_STATIC (decl));
7577 /* An in-class declaration of a static data member should be
7578 external; it is only a declaration, and not a definition. */
7579 if (init == NULL_TREE)
7580 gcc_assert (DECL_EXTERNAL (decl)
7581 || !TREE_PUBLIC (decl));
7584 /* We don't create any RTL for local variables. */
7585 if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
7586 return;
7588 /* We defer emission of local statics until the corresponding
7589 DECL_EXPR is expanded. But with constexpr its function might never
7590 be expanded, so go ahead and tell cgraph about the variable now. */
7591 defer_p = ((DECL_FUNCTION_SCOPE_P (decl)
7592 && !var_in_maybe_constexpr_fn (decl))
7593 || DECL_VIRTUAL_P (decl));
7595 /* Defer template instantiations. */
7596 if (DECL_LANG_SPECIFIC (decl)
7597 && DECL_IMPLICIT_INSTANTIATION (decl))
7598 defer_p = 1;
7600 /* If we're not deferring, go ahead and assemble the variable. */
7601 if (!defer_p)
7602 rest_of_decl_compilation (decl, toplev, at_eof);
7605 /* walk_tree helper for wrap_temporary_cleanups, below. */
7607 static tree
7608 wrap_cleanups_r (tree *stmt_p, int *walk_subtrees, void *data)
7610 /* Stop at types or full-expression boundaries. */
7611 if (TYPE_P (*stmt_p)
7612 || TREE_CODE (*stmt_p) == CLEANUP_POINT_EXPR)
7614 *walk_subtrees = 0;
7615 return NULL_TREE;
7618 if (TREE_CODE (*stmt_p) == TARGET_EXPR)
7620 tree guard = (tree)data;
7621 tree tcleanup = TARGET_EXPR_CLEANUP (*stmt_p);
7623 if (tcleanup && !CLEANUP_EH_ONLY (*stmt_p)
7624 && !expr_noexcept_p (tcleanup, tf_none))
7626 tcleanup = build2 (TRY_CATCH_EXPR, void_type_node, tcleanup, guard);
7627 /* Tell honor_protect_cleanup_actions to handle this as a separate
7628 cleanup. */
7629 TRY_CATCH_IS_CLEANUP (tcleanup) = 1;
7630 TARGET_EXPR_CLEANUP (*stmt_p) = tcleanup;
7634 return NULL_TREE;
7637 /* We're initializing a local variable which has a cleanup GUARD. If there
7638 are any temporaries used in the initializer INIT of this variable, we
7639 need to wrap their cleanups with TRY_CATCH_EXPR (, GUARD) so that the
7640 variable will be cleaned up properly if one of them throws.
7642 Unfortunately, there's no way to express this properly in terms of
7643 nesting, as the regions for the temporaries overlap the region for the
7644 variable itself; if there are two temporaries, the variable needs to be
7645 the first thing destroyed if either of them throws. However, we only
7646 want to run the variable's cleanup if it actually got constructed. So
7647 we need to guard the temporary cleanups with the variable's cleanup if
7648 they are run on the normal path, but not if they are run on the
7649 exceptional path. We implement this by telling
7650 honor_protect_cleanup_actions to strip the variable cleanup from the
7651 exceptional path.
7653 Another approach could be to make the variable cleanup region enclose
7654 initialization, but depend on a flag to indicate that the variable is
7655 initialized; that's effectively what we do for arrays. But the current
7656 approach works fine for non-arrays, and has no code overhead in the usual
7657 case where the temporary destructors are noexcept. */
7659 static void
7660 wrap_temporary_cleanups (tree init, tree guard)
7662 if (TREE_CODE (guard) == BIND_EXPR)
7664 /* An array cleanup region already encloses any temporary cleanups,
7665 don't wrap it around them again. */
7666 gcc_checking_assert (BIND_EXPR_VEC_DTOR (guard));
7667 return;
7669 cp_walk_tree_without_duplicates (&init, wrap_cleanups_r, (void *)guard);
7672 /* Generate code to initialize DECL (a local variable). */
7674 static void
7675 initialize_local_var (tree decl, tree init)
7677 tree type = TREE_TYPE (decl);
7678 tree cleanup;
7679 int already_used;
7681 gcc_assert (VAR_P (decl)
7682 || TREE_CODE (decl) == RESULT_DECL);
7683 gcc_assert (!TREE_STATIC (decl));
7685 if (DECL_SIZE (decl) == NULL_TREE)
7687 /* If we used it already as memory, it must stay in memory. */
7688 DECL_INITIAL (decl) = NULL_TREE;
7689 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
7690 return;
7693 if (type == error_mark_node)
7694 return;
7696 /* Compute and store the initial value. */
7697 already_used = TREE_USED (decl) || TREE_USED (type);
7698 if (TREE_USED (type))
7699 DECL_READ_P (decl) = 1;
7701 /* Generate a cleanup, if necessary. */
7702 cleanup = cxx_maybe_build_cleanup (decl, tf_warning_or_error);
7704 /* Perform the initialization. */
7705 if (init)
7707 tree rinit = (TREE_CODE (init) == INIT_EXPR
7708 ? TREE_OPERAND (init, 1) : NULL_TREE);
7709 if (rinit && !TREE_SIDE_EFFECTS (rinit)
7710 && TREE_OPERAND (init, 0) == decl)
7712 /* Stick simple initializers in DECL_INITIAL so that
7713 -Wno-init-self works (c++/34772). */
7714 DECL_INITIAL (decl) = rinit;
7716 if (warn_init_self && TYPE_REF_P (type))
7718 STRIP_NOPS (rinit);
7719 if (rinit == decl)
7720 warning_at (DECL_SOURCE_LOCATION (decl),
7721 OPT_Winit_self,
7722 "reference %qD is initialized with itself", decl);
7725 else
7727 int saved_stmts_are_full_exprs_p;
7729 /* If we're only initializing a single object, guard the
7730 destructors of any temporaries used in its initializer with
7731 its destructor. */
7732 if (cleanup)
7733 wrap_temporary_cleanups (init, cleanup);
7735 gcc_assert (building_stmt_list_p ());
7736 saved_stmts_are_full_exprs_p = stmts_are_full_exprs_p ();
7737 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
7738 finish_expr_stmt (init);
7739 current_stmt_tree ()->stmts_are_full_exprs_p =
7740 saved_stmts_are_full_exprs_p;
7744 /* Set this to 0 so we can tell whether an aggregate which was
7745 initialized was ever used. Don't do this if it has a
7746 destructor, so we don't complain about the 'resource
7747 allocation is initialization' idiom. Now set
7748 attribute((unused)) on types so decls of that type will be
7749 marked used. (see TREE_USED, above.) */
7750 if (TYPE_NEEDS_CONSTRUCTING (type)
7751 && ! already_used
7752 && TYPE_HAS_TRIVIAL_DESTRUCTOR (type)
7753 && DECL_NAME (decl))
7754 TREE_USED (decl) = 0;
7755 else if (already_used)
7756 TREE_USED (decl) = 1;
7758 if (cleanup)
7759 finish_decl_cleanup (decl, cleanup);
7762 /* DECL is a VAR_DECL for a compiler-generated variable with static
7763 storage duration (like a virtual table) whose initializer is a
7764 compile-time constant. Initialize the variable and provide it to the
7765 back end. */
7767 void
7768 initialize_artificial_var (tree decl, vec<constructor_elt, va_gc> *v)
7770 tree init;
7771 gcc_assert (DECL_ARTIFICIAL (decl));
7772 init = build_constructor (TREE_TYPE (decl), v);
7773 gcc_assert (TREE_CODE (init) == CONSTRUCTOR);
7774 DECL_INITIAL (decl) = init;
7775 DECL_INITIALIZED_P (decl) = 1;
7776 /* Mark the decl as constexpr so that we can access its content
7777 at compile time. */
7778 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = true;
7779 DECL_DECLARED_CONSTEXPR_P (decl) = true;
7780 determine_visibility (decl);
7781 layout_var_decl (decl);
7782 maybe_commonize_var (decl);
7783 make_rtl_for_nonlocal_decl (decl, init, /*asmspec=*/NULL);
7786 /* INIT is the initializer for a variable, as represented by the
7787 parser. Returns true iff INIT is value-dependent. */
7789 static bool
7790 value_dependent_init_p (tree init)
7792 if (TREE_CODE (init) == TREE_LIST)
7793 /* A parenthesized initializer, e.g.: int i (3, 2); ? */
7794 return any_value_dependent_elements_p (init);
7795 else if (TREE_CODE (init) == CONSTRUCTOR)
7796 /* A brace-enclosed initializer, e.g.: int i = { 3 }; ? */
7798 if (dependent_type_p (TREE_TYPE (init)))
7799 return true;
7801 vec<constructor_elt, va_gc> *elts;
7802 size_t nelts;
7803 size_t i;
7805 elts = CONSTRUCTOR_ELTS (init);
7806 nelts = vec_safe_length (elts);
7807 for (i = 0; i < nelts; ++i)
7808 if (value_dependent_init_p ((*elts)[i].value))
7809 return true;
7811 else
7812 /* It must be a simple expression, e.g., int i = 3; */
7813 return value_dependent_expression_p (init);
7815 return false;
7818 // Returns true if a DECL is VAR_DECL with the concept specifier.
7819 static inline bool
7820 is_concept_var (tree decl)
7822 return (VAR_P (decl)
7823 // Not all variables have DECL_LANG_SPECIFIC.
7824 && DECL_LANG_SPECIFIC (decl)
7825 && DECL_DECLARED_CONCEPT_P (decl));
7828 /* A helper function to be called via walk_tree. If any label exists
7829 under *TP, it is (going to be) forced. Set has_forced_label_in_static. */
7831 static tree
7832 notice_forced_label_r (tree *tp, int *walk_subtrees, void *)
7834 if (TYPE_P (*tp))
7835 *walk_subtrees = 0;
7836 if (TREE_CODE (*tp) == LABEL_DECL)
7837 cfun->has_forced_label_in_static = 1;
7838 return NULL_TREE;
7841 /* Return true if DECL has either a trivial destructor, or for C++20
7842 is constexpr and has a constexpr destructor. */
7844 static bool
7845 decl_maybe_constant_destruction (tree decl, tree type)
7847 return (TYPE_HAS_TRIVIAL_DESTRUCTOR (type)
7848 || (cxx_dialect >= cxx20
7849 && VAR_P (decl)
7850 && DECL_DECLARED_CONSTEXPR_P (decl)
7851 && type_has_constexpr_destructor (strip_array_types (type))));
7854 static tree declare_simd_adjust_this (tree *, int *, void *);
7856 /* Helper function of omp_declare_variant_finalize. Finalize one
7857 "omp declare variant base" attribute. Return true if it should be
7858 removed. */
7860 static bool
7861 omp_declare_variant_finalize_one (tree decl, tree attr)
7863 if (TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE)
7865 walk_tree (&TREE_VALUE (TREE_VALUE (attr)), declare_simd_adjust_this,
7866 DECL_ARGUMENTS (decl), NULL);
7867 walk_tree (&TREE_PURPOSE (TREE_VALUE (attr)), declare_simd_adjust_this,
7868 DECL_ARGUMENTS (decl), NULL);
7871 tree ctx = TREE_VALUE (TREE_VALUE (attr));
7872 tree simd = omp_get_context_selector (ctx, "construct", "simd");
7873 if (simd)
7875 TREE_VALUE (simd)
7876 = c_omp_declare_simd_clauses_to_numbers (DECL_ARGUMENTS (decl),
7877 TREE_VALUE (simd));
7878 /* FIXME, adjusting simd args unimplemented. */
7879 return true;
7882 tree chain = TREE_CHAIN (TREE_VALUE (attr));
7883 location_t varid_loc
7884 = cp_expr_loc_or_input_loc (TREE_PURPOSE (TREE_CHAIN (chain)));
7885 location_t match_loc = cp_expr_loc_or_input_loc (TREE_PURPOSE (chain));
7886 cp_id_kind idk = (cp_id_kind) tree_to_uhwi (TREE_VALUE (chain));
7887 tree variant = TREE_PURPOSE (TREE_VALUE (attr));
7889 location_t save_loc = input_location;
7890 input_location = varid_loc;
7892 releasing_vec args;
7893 tree parm = DECL_ARGUMENTS (decl);
7894 if (TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE)
7895 parm = DECL_CHAIN (parm);
7896 for (; parm; parm = DECL_CHAIN (parm))
7897 if (type_dependent_expression_p (parm))
7898 vec_safe_push (args, build_constructor (TREE_TYPE (parm), NULL));
7899 else if (MAYBE_CLASS_TYPE_P (TREE_TYPE (parm)))
7900 vec_safe_push (args, build_local_temp (TREE_TYPE (parm)));
7901 else
7902 vec_safe_push (args, build_zero_cst (TREE_TYPE (parm)));
7904 bool koenig_p = false;
7905 if (idk == CP_ID_KIND_UNQUALIFIED || idk == CP_ID_KIND_TEMPLATE_ID)
7907 if (identifier_p (variant)
7908 /* In C++20, we may need to perform ADL for a template
7909 name. */
7910 || (TREE_CODE (variant) == TEMPLATE_ID_EXPR
7911 && identifier_p (TREE_OPERAND (variant, 0))))
7913 if (!args->is_empty ())
7915 koenig_p = true;
7916 if (!any_type_dependent_arguments_p (args))
7917 variant = perform_koenig_lookup (variant, args,
7918 tf_warning_or_error);
7920 else
7921 variant = unqualified_fn_lookup_error (variant);
7923 else if (!args->is_empty () && is_overloaded_fn (variant))
7925 tree fn = get_first_fn (variant);
7926 fn = STRIP_TEMPLATE (fn);
7927 if (!((TREE_CODE (fn) == USING_DECL && DECL_DEPENDENT_P (fn))
7928 || DECL_FUNCTION_MEMBER_P (fn)
7929 || DECL_LOCAL_DECL_P (fn)))
7931 koenig_p = true;
7932 if (!any_type_dependent_arguments_p (args))
7933 variant = perform_koenig_lookup (variant, args,
7934 tf_warning_or_error);
7939 if (idk == CP_ID_KIND_QUALIFIED)
7940 variant = finish_call_expr (variant, &args, /*disallow_virtual=*/true,
7941 koenig_p, tf_warning_or_error);
7942 else
7943 variant = finish_call_expr (variant, &args, /*disallow_virtual=*/false,
7944 koenig_p, tf_warning_or_error);
7945 if (variant == error_mark_node && !processing_template_decl)
7946 return true;
7948 variant = cp_get_callee_fndecl_nofold (variant);
7949 input_location = save_loc;
7951 if (variant)
7953 const char *varname = IDENTIFIER_POINTER (DECL_NAME (variant));
7954 if (!comptypes (TREE_TYPE (decl), TREE_TYPE (variant), 0))
7956 error_at (varid_loc, "variant %qD and base %qD have incompatible "
7957 "types", variant, decl);
7958 return true;
7960 if (fndecl_built_in_p (variant)
7961 && (startswith (varname, "__builtin_")
7962 || startswith (varname, "__sync_")
7963 || startswith (varname, "__atomic_")))
7965 error_at (varid_loc, "variant %qD is a built-in", variant);
7966 return true;
7968 else
7970 tree construct = omp_get_context_selector (ctx, "construct", NULL);
7971 omp_mark_declare_variant (match_loc, variant, construct);
7972 if (!omp_context_selector_matches (ctx))
7973 return true;
7974 TREE_PURPOSE (TREE_VALUE (attr)) = variant;
7977 else if (!processing_template_decl)
7979 error_at (varid_loc, "could not find variant declaration");
7980 return true;
7983 return false;
7986 /* Helper function, finish up "omp declare variant base" attribute
7987 now that there is a DECL. ATTR is the first "omp declare variant base"
7988 attribute. */
7990 void
7991 omp_declare_variant_finalize (tree decl, tree attr)
7993 size_t attr_len = strlen ("omp declare variant base");
7994 tree *list = &DECL_ATTRIBUTES (decl);
7995 bool remove_all = false;
7996 location_t match_loc = DECL_SOURCE_LOCATION (decl);
7997 if (TREE_CHAIN (TREE_VALUE (attr))
7998 && TREE_PURPOSE (TREE_CHAIN (TREE_VALUE (attr)))
7999 && EXPR_HAS_LOCATION (TREE_PURPOSE (TREE_CHAIN (TREE_VALUE (attr)))))
8000 match_loc = EXPR_LOCATION (TREE_PURPOSE (TREE_CHAIN (TREE_VALUE (attr))));
8001 if (DECL_CONSTRUCTOR_P (decl))
8003 error_at (match_loc, "%<declare variant%> on constructor %qD", decl);
8004 remove_all = true;
8006 else if (DECL_DESTRUCTOR_P (decl))
8008 error_at (match_loc, "%<declare variant%> on destructor %qD", decl);
8009 remove_all = true;
8011 else if (DECL_DEFAULTED_FN (decl))
8013 error_at (match_loc, "%<declare variant%> on defaulted %qD", decl);
8014 remove_all = true;
8016 else if (DECL_DELETED_FN (decl))
8018 error_at (match_loc, "%<declare variant%> on deleted %qD", decl);
8019 remove_all = true;
8021 else if (DECL_VIRTUAL_P (decl))
8023 error_at (match_loc, "%<declare variant%> on virtual %qD", decl);
8024 remove_all = true;
8026 /* This loop is like private_lookup_attribute, except that it works
8027 with tree * rather than tree, as we might want to remove the
8028 attributes that are diagnosed as errorneous. */
8029 while (*list)
8031 tree attr = get_attribute_name (*list);
8032 size_t ident_len = IDENTIFIER_LENGTH (attr);
8033 if (cmp_attribs ("omp declare variant base", attr_len,
8034 IDENTIFIER_POINTER (attr), ident_len))
8036 if (remove_all || omp_declare_variant_finalize_one (decl, *list))
8038 *list = TREE_CHAIN (*list);
8039 continue;
8042 list = &TREE_CHAIN (*list);
8046 /* Finish processing of a declaration;
8047 install its line number and initial value.
8048 If the length of an array type is not known before,
8049 it must be determined now, from the initial value, or it is an error.
8051 INIT is the initializer (if any) for DECL. If INIT_CONST_EXPR_P is
8052 true, then INIT is an integral constant expression.
8054 FLAGS is LOOKUP_ONLYCONVERTING if the = init syntax was used, else 0
8055 if the (init) syntax was used. */
8057 void
8058 cp_finish_decl (tree decl, tree init, bool init_const_expr_p,
8059 tree asmspec_tree, int flags)
8061 tree type;
8062 vec<tree, va_gc> *cleanups = NULL;
8063 const char *asmspec = NULL;
8064 int was_readonly = 0;
8065 bool var_definition_p = false;
8066 tree auto_node;
8068 if (decl == error_mark_node)
8069 return;
8070 else if (! decl)
8072 if (init)
8073 error ("assignment (not initialization) in declaration");
8074 return;
8077 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
8078 /* Parameters are handled by store_parm_decls, not cp_finish_decl. */
8079 gcc_assert (TREE_CODE (decl) != PARM_DECL);
8081 type = TREE_TYPE (decl);
8082 if (type == error_mark_node)
8083 return;
8085 if (VAR_P (decl) && is_copy_initialization (init))
8086 flags |= LOOKUP_ONLYCONVERTING;
8088 /* Warn about register storage specifiers except when in GNU global
8089 or local register variable extension. */
8090 if (VAR_P (decl) && DECL_REGISTER (decl) && asmspec_tree == NULL_TREE)
8092 if (cxx_dialect >= cxx17)
8093 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
8094 "ISO C++17 does not allow %<register%> storage "
8095 "class specifier");
8096 else
8097 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
8098 "%<register%> storage class specifier used");
8101 /* If a name was specified, get the string. */
8102 if (at_namespace_scope_p ())
8103 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
8104 if (asmspec_tree && asmspec_tree != error_mark_node)
8105 asmspec = TREE_STRING_POINTER (asmspec_tree);
8107 bool in_class_decl
8108 = (current_class_type
8109 && CP_DECL_CONTEXT (decl) == current_class_type
8110 && TYPE_BEING_DEFINED (current_class_type)
8111 && !CLASSTYPE_TEMPLATE_INSTANTIATION (current_class_type));
8113 if (in_class_decl
8114 && (DECL_INITIAL (decl) || init))
8115 DECL_INITIALIZED_IN_CLASS_P (decl) = 1;
8117 if (VAR_P (decl)
8118 && (auto_node = type_uses_auto (type)))
8120 tree d_init;
8121 if (init == NULL_TREE)
8123 if (DECL_LANG_SPECIFIC (decl)
8124 && DECL_TEMPLATE_INSTANTIATION (decl)
8125 && !DECL_TEMPLATE_INSTANTIATED (decl))
8127 /* init is null because we're deferring instantiating the
8128 initializer until we need it. Well, we need it now. */
8129 instantiate_decl (decl, /*defer_ok*/true, /*expl*/false);
8130 return;
8133 gcc_assert (CLASS_PLACEHOLDER_TEMPLATE (auto_node));
8135 d_init = init;
8136 if (d_init)
8138 if (TREE_CODE (d_init) == TREE_LIST
8139 && !CLASS_PLACEHOLDER_TEMPLATE (auto_node))
8140 d_init = build_x_compound_expr_from_list (d_init, ELK_INIT,
8141 tf_warning_or_error);
8142 d_init = resolve_nondeduced_context (d_init, tf_warning_or_error);
8144 enum auto_deduction_context adc = adc_variable_type;
8145 if (DECL_DECOMPOSITION_P (decl))
8146 adc = adc_decomp_type;
8147 tree outer_targs = NULL_TREE;
8148 if (PLACEHOLDER_TYPE_CONSTRAINTS_INFO (auto_node)
8149 && DECL_LANG_SPECIFIC (decl)
8150 && DECL_TEMPLATE_INFO (decl)
8151 && !DECL_FUNCTION_SCOPE_P (decl))
8152 /* The outer template arguments might be needed for satisfaction.
8153 (For function scope variables, do_auto_deduction will obtain the
8154 outer template arguments from current_function_decl.) */
8155 outer_targs = DECL_TI_ARGS (decl);
8156 type = TREE_TYPE (decl) = do_auto_deduction (type, d_init, auto_node,
8157 tf_warning_or_error, adc,
8158 outer_targs, flags);
8159 if (type == error_mark_node)
8160 return;
8161 if (TREE_CODE (type) == FUNCTION_TYPE)
8163 error ("initializer for %<decltype(auto) %D%> has function type; "
8164 "did you forget the %<()%>?", decl);
8165 TREE_TYPE (decl) = error_mark_node;
8166 return;
8168 /* As in start_decl_1, complete so TREE_READONLY is set properly. */
8169 if (!processing_template_decl
8170 && !type_uses_auto (type)
8171 && !COMPLETE_TYPE_P (complete_type (type)))
8173 error_at (location_of (decl),
8174 "deduced type %qT for %qD is incomplete", type, decl);
8175 cxx_incomplete_type_inform (type);
8176 TREE_TYPE (decl) = error_mark_node;
8177 return;
8179 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
8182 if (ensure_literal_type_for_constexpr_object (decl) == error_mark_node)
8184 DECL_DECLARED_CONSTEXPR_P (decl) = 0;
8185 if (VAR_P (decl) && DECL_CLASS_SCOPE_P (decl))
8187 init = NULL_TREE;
8188 DECL_EXTERNAL (decl) = 1;
8192 if (VAR_P (decl)
8193 && DECL_CLASS_SCOPE_P (decl)
8194 && verify_type_context (DECL_SOURCE_LOCATION (decl),
8195 TCTX_STATIC_STORAGE, type)
8196 && DECL_INITIALIZED_IN_CLASS_P (decl))
8197 check_static_variable_definition (decl, type);
8199 if (!processing_template_decl && VAR_P (decl) && is_global_var (decl))
8201 type_context_kind context = (DECL_THREAD_LOCAL_P (decl)
8202 ? TCTX_THREAD_STORAGE
8203 : TCTX_STATIC_STORAGE);
8204 verify_type_context (input_location, context, TREE_TYPE (decl));
8207 if (init && TREE_CODE (decl) == FUNCTION_DECL)
8209 tree clone;
8210 if (init == ridpointers[(int)RID_DELETE])
8212 /* FIXME check this is 1st decl. */
8213 DECL_DELETED_FN (decl) = 1;
8214 DECL_DECLARED_INLINE_P (decl) = 1;
8215 DECL_INITIAL (decl) = error_mark_node;
8216 FOR_EACH_CLONE (clone, decl)
8218 DECL_DELETED_FN (clone) = 1;
8219 DECL_DECLARED_INLINE_P (clone) = 1;
8220 DECL_INITIAL (clone) = error_mark_node;
8222 init = NULL_TREE;
8224 else if (init == ridpointers[(int)RID_DEFAULT])
8226 if (defaultable_fn_check (decl))
8227 DECL_DEFAULTED_FN (decl) = 1;
8228 else
8229 DECL_INITIAL (decl) = NULL_TREE;
8233 if (init && VAR_P (decl))
8235 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = 1;
8236 /* If DECL is a reference, then we want to know whether init is a
8237 reference constant; init_const_expr_p as passed tells us whether
8238 it's an rvalue constant. */
8239 if (TYPE_REF_P (type))
8240 init_const_expr_p = potential_constant_expression (init);
8241 if (init_const_expr_p)
8243 /* Set these flags now for templates. We'll update the flags in
8244 store_init_value for instantiations. */
8245 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = 1;
8246 if (decl_maybe_constant_var_p (decl)
8247 /* FIXME setting TREE_CONSTANT on refs breaks the back end. */
8248 && !TYPE_REF_P (type))
8249 TREE_CONSTANT (decl) = 1;
8251 /* This is handled mostly by gimplify.cc, but we have to deal with
8252 not warning about int x = x; as it is a GCC extension to turn off
8253 this warning but only if warn_init_self is zero. */
8254 if (!DECL_EXTERNAL (decl)
8255 && !TREE_STATIC (decl)
8256 && decl == tree_strip_any_location_wrapper (init)
8257 && !warn_init_self)
8258 suppress_warning (decl, OPT_Winit_self);
8261 if (flag_openmp
8262 && TREE_CODE (decl) == FUNCTION_DECL
8263 /* #pragma omp declare variant on methods handled in finish_struct
8264 instead. */
8265 && (!DECL_NONSTATIC_MEMBER_FUNCTION_P (decl)
8266 || COMPLETE_TYPE_P (DECL_CONTEXT (decl))))
8267 if (tree attr = lookup_attribute ("omp declare variant base",
8268 DECL_ATTRIBUTES (decl)))
8269 omp_declare_variant_finalize (decl, attr);
8271 if (processing_template_decl)
8273 bool type_dependent_p;
8275 /* Add this declaration to the statement-tree. */
8276 if (at_function_scope_p ())
8277 add_decl_expr (decl);
8279 type_dependent_p = dependent_type_p (type);
8281 if (check_for_bare_parameter_packs (init))
8283 init = NULL_TREE;
8284 DECL_INITIAL (decl) = NULL_TREE;
8287 /* Generally, initializers in templates are expanded when the
8288 template is instantiated. But, if DECL is a variable constant
8289 then it can be used in future constant expressions, so its value
8290 must be available. */
8292 bool dep_init = false;
8294 if (!VAR_P (decl) || type_dependent_p)
8295 /* We can't do anything if the decl has dependent type. */;
8296 else if (!init && is_concept_var (decl))
8298 error ("variable concept has no initializer");
8299 init = boolean_true_node;
8301 else if (init
8302 && (init_const_expr_p || DECL_DECLARED_CONSTEXPR_P (decl))
8303 && !TYPE_REF_P (type)
8304 && decl_maybe_constant_var_p (decl)
8305 && !(dep_init = value_dependent_init_p (init)))
8307 /* This variable seems to be a non-dependent constant, so process
8308 its initializer. If check_initializer returns non-null the
8309 initialization wasn't constant after all. */
8310 tree init_code;
8311 cleanups = make_tree_vector ();
8312 init_code = check_initializer (decl, init, flags, &cleanups);
8313 if (init_code == NULL_TREE)
8314 init = NULL_TREE;
8315 release_tree_vector (cleanups);
8317 else
8319 gcc_assert (!DECL_PRETTY_FUNCTION_P (decl));
8320 /* Try to deduce array size. */
8321 maybe_deduce_size_from_array_init (decl, init);
8322 /* And complain about multiple initializers. */
8323 if (init && TREE_CODE (init) == TREE_LIST && TREE_CHAIN (init)
8324 && !MAYBE_CLASS_TYPE_P (type))
8325 init = build_x_compound_expr_from_list (init, ELK_INIT,
8326 tf_warning_or_error);
8329 if (init)
8330 DECL_INITIAL (decl) = init;
8332 if (dep_init)
8334 retrofit_lang_decl (decl);
8335 SET_DECL_DEPENDENT_INIT_P (decl, true);
8338 if (VAR_P (decl) && DECL_REGISTER (decl) && asmspec)
8340 set_user_assembler_name (decl, asmspec);
8341 DECL_HARD_REGISTER (decl) = 1;
8343 return;
8346 /* Just store non-static data member initializers for later. */
8347 if (init && TREE_CODE (decl) == FIELD_DECL)
8348 DECL_INITIAL (decl) = init;
8350 /* Take care of TYPE_DECLs up front. */
8351 if (TREE_CODE (decl) == TYPE_DECL)
8353 if (type != error_mark_node
8354 && MAYBE_CLASS_TYPE_P (type) && DECL_NAME (decl))
8356 if (TREE_TYPE (DECL_NAME (decl)) && TREE_TYPE (decl) != type)
8357 warning (0, "shadowing previous type declaration of %q#D", decl);
8358 set_identifier_type_value (DECL_NAME (decl), decl);
8361 /* If we have installed this as the canonical typedef for this
8362 type, and that type has not been defined yet, delay emitting
8363 the debug information for it, as we will emit it later. */
8364 if (TYPE_MAIN_DECL (TREE_TYPE (decl)) == decl
8365 && !COMPLETE_TYPE_P (TREE_TYPE (decl)))
8366 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
8368 rest_of_decl_compilation (decl, DECL_FILE_SCOPE_P (decl),
8369 at_eof);
8370 return;
8373 /* A reference will be modified here, as it is initialized. */
8374 if (! DECL_EXTERNAL (decl)
8375 && TREE_READONLY (decl)
8376 && TYPE_REF_P (type))
8378 was_readonly = 1;
8379 TREE_READONLY (decl) = 0;
8382 /* This needs to happen before extend_ref_init_temps. */
8383 if (VAR_OR_FUNCTION_DECL_P (decl))
8385 if (VAR_P (decl))
8386 maybe_commonize_var (decl);
8387 determine_visibility (decl);
8390 if (VAR_P (decl))
8392 duration_kind dk = decl_storage_duration (decl);
8393 /* [dcl.constinit]/1 "The constinit specifier shall be applied
8394 only to a declaration of a variable with static or thread storage
8395 duration." */
8396 if (DECL_DECLARED_CONSTINIT_P (decl)
8397 && !(dk == dk_thread || dk == dk_static))
8399 error_at (DECL_SOURCE_LOCATION (decl),
8400 "%<constinit%> can only be applied to a variable with "
8401 "static or thread storage duration");
8402 return;
8405 /* If this is a local variable that will need a mangled name,
8406 register it now. We must do this before processing the
8407 initializer for the variable, since the initialization might
8408 require a guard variable, and since the mangled name of the
8409 guard variable will depend on the mangled name of this
8410 variable. */
8411 if (DECL_FUNCTION_SCOPE_P (decl)
8412 && TREE_STATIC (decl)
8413 && !DECL_ARTIFICIAL (decl))
8415 /* The variable holding an anonymous union will have had its
8416 discriminator set in finish_anon_union, after which it's
8417 NAME will have been cleared. */
8418 if (DECL_NAME (decl))
8419 determine_local_discriminator (decl);
8420 /* Normally has_forced_label_in_static is set during GIMPLE
8421 lowering, but [cd]tors are never actually compiled directly.
8422 We need to set this early so we can deal with the label
8423 address extension. */
8424 if ((DECL_CONSTRUCTOR_P (current_function_decl)
8425 || DECL_DESTRUCTOR_P (current_function_decl))
8426 && init)
8428 walk_tree (&init, notice_forced_label_r, NULL, NULL);
8429 add_local_decl (cfun, decl);
8431 /* And make sure it's in the symbol table for
8432 c_parse_final_cleanups to find. */
8433 varpool_node::get_create (decl);
8436 /* Convert the initializer to the type of DECL, if we have not
8437 already initialized DECL. */
8438 if (!DECL_INITIALIZED_P (decl)
8439 /* If !DECL_EXTERNAL then DECL is being defined. In the
8440 case of a static data member initialized inside the
8441 class-specifier, there can be an initializer even if DECL
8442 is *not* defined. */
8443 && (!DECL_EXTERNAL (decl) || init))
8445 cleanups = make_tree_vector ();
8446 init = check_initializer (decl, init, flags, &cleanups);
8448 /* Handle:
8450 [dcl.init]
8452 The memory occupied by any object of static storage
8453 duration is zero-initialized at program startup before
8454 any other initialization takes place.
8456 We cannot create an appropriate initializer until after
8457 the type of DECL is finalized. If DECL_INITIAL is set,
8458 then the DECL is statically initialized, and any
8459 necessary zero-initialization has already been performed. */
8460 if (TREE_STATIC (decl) && !DECL_INITIAL (decl))
8461 DECL_INITIAL (decl) = build_zero_init (TREE_TYPE (decl),
8462 /*nelts=*/NULL_TREE,
8463 /*static_storage_p=*/true);
8464 /* Remember that the initialization for this variable has
8465 taken place. */
8466 DECL_INITIALIZED_P (decl) = 1;
8467 /* This declaration is the definition of this variable,
8468 unless we are initializing a static data member within
8469 the class specifier. */
8470 if (!DECL_EXTERNAL (decl))
8471 var_definition_p = true;
8473 /* If the variable has an array type, lay out the type, even if
8474 there is no initializer. It is valid to index through the
8475 array, and we must get TYPE_ALIGN set correctly on the array
8476 type. */
8477 else if (TREE_CODE (type) == ARRAY_TYPE)
8478 layout_type (type);
8480 if (TREE_STATIC (decl)
8481 && !at_function_scope_p ()
8482 && current_function_decl == NULL)
8483 /* So decl is a global variable or a static member of a
8484 non local class. Record the types it uses
8485 so that we can decide later to emit debug info for them. */
8486 record_types_used_by_current_var_decl (decl);
8489 /* Add this declaration to the statement-tree. This needs to happen
8490 after the call to check_initializer so that the DECL_EXPR for a
8491 reference temp is added before the DECL_EXPR for the reference itself. */
8492 if (DECL_FUNCTION_SCOPE_P (decl))
8494 /* If we're building a variable sized type, and we might be
8495 reachable other than via the top of the current binding
8496 level, then create a new BIND_EXPR so that we deallocate
8497 the object at the right time. */
8498 if (VAR_P (decl)
8499 && DECL_SIZE (decl)
8500 && !TREE_CONSTANT (DECL_SIZE (decl))
8501 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list))
8503 tree bind;
8504 bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
8505 TREE_SIDE_EFFECTS (bind) = 1;
8506 add_stmt (bind);
8507 BIND_EXPR_BODY (bind) = push_stmt_list ();
8509 add_decl_expr (decl);
8512 /* Let the middle end know about variables and functions -- but not
8513 static data members in uninstantiated class templates. */
8514 if (VAR_OR_FUNCTION_DECL_P (decl))
8516 if (VAR_P (decl))
8518 layout_var_decl (decl);
8519 if (!flag_weak)
8520 /* Check again now that we have an initializer. */
8521 maybe_commonize_var (decl);
8522 /* A class-scope constexpr variable with an out-of-class declaration.
8523 C++17 makes them implicitly inline, but still force it out. */
8524 if (DECL_INLINE_VAR_P (decl)
8525 && !DECL_VAR_DECLARED_INLINE_P (decl)
8526 && !DECL_TEMPLATE_INSTANTIATION (decl)
8527 && !in_class_decl)
8528 mark_needed (decl);
8531 if (var_definition_p
8532 /* With -fmerge-all-constants, gimplify_init_constructor
8533 might add TREE_STATIC to the variable. */
8534 && (TREE_STATIC (decl) || flag_merge_constants >= 2))
8536 /* If a TREE_READONLY variable needs initialization
8537 at runtime, it is no longer readonly and we need to
8538 avoid MEM_READONLY_P being set on RTL created for it. */
8539 if (init)
8541 if (TREE_READONLY (decl))
8542 TREE_READONLY (decl) = 0;
8543 was_readonly = 0;
8545 else if (was_readonly)
8546 TREE_READONLY (decl) = 1;
8548 /* Likewise if it needs destruction. */
8549 if (!decl_maybe_constant_destruction (decl, type))
8550 TREE_READONLY (decl) = 0;
8553 make_rtl_for_nonlocal_decl (decl, init, asmspec);
8555 /* Check for abstractness of the type. */
8556 if (var_definition_p)
8557 abstract_virtuals_error (decl, type);
8559 if (TREE_TYPE (decl) == error_mark_node)
8560 /* No initialization required. */
8562 else if (TREE_CODE (decl) == FUNCTION_DECL)
8564 if (init)
8566 if (init == ridpointers[(int)RID_DEFAULT])
8568 /* An out-of-class default definition is defined at
8569 the point where it is explicitly defaulted. */
8570 if (DECL_DELETED_FN (decl))
8571 maybe_explain_implicit_delete (decl);
8572 else if (DECL_INITIAL (decl) == error_mark_node)
8573 synthesize_method (decl);
8575 else
8576 error_at (cp_expr_loc_or_loc (init,
8577 DECL_SOURCE_LOCATION (decl)),
8578 "function %q#D is initialized like a variable",
8579 decl);
8581 /* else no initialization required. */
8583 else if (DECL_EXTERNAL (decl)
8584 && ! (DECL_LANG_SPECIFIC (decl)
8585 && DECL_NOT_REALLY_EXTERN (decl)))
8587 /* check_initializer will have done any constant initialization. */
8589 /* A variable definition. */
8590 else if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
8591 /* Initialize the local variable. */
8592 initialize_local_var (decl, init);
8594 /* If a variable is defined, and then a subsequent
8595 definition with external linkage is encountered, we will
8596 get here twice for the same variable. We want to avoid
8597 calling expand_static_init more than once. For variables
8598 that are not static data members, we can call
8599 expand_static_init only when we actually process the
8600 initializer. It is not legal to redeclare a static data
8601 member, so this issue does not arise in that case. */
8602 else if (var_definition_p && TREE_STATIC (decl))
8603 expand_static_init (decl, init);
8606 /* If a CLEANUP_STMT was created to destroy a temporary bound to a
8607 reference, insert it in the statement-tree now. */
8608 if (cleanups)
8610 for (tree t : *cleanups)
8612 push_cleanup (NULL_TREE, t, false);
8613 /* As in initialize_local_var. */
8614 wrap_temporary_cleanups (init, t);
8616 release_tree_vector (cleanups);
8619 if (was_readonly)
8620 TREE_READONLY (decl) = 1;
8622 if (flag_openmp
8623 && VAR_P (decl)
8624 && lookup_attribute ("omp declare target implicit",
8625 DECL_ATTRIBUTES (decl)))
8627 DECL_ATTRIBUTES (decl)
8628 = remove_attribute ("omp declare target implicit",
8629 DECL_ATTRIBUTES (decl));
8630 complete_type (TREE_TYPE (decl));
8631 if (!omp_mappable_type (TREE_TYPE (decl)))
8633 error ("%q+D in declare target directive does not have mappable"
8634 " type", decl);
8635 if (TREE_TYPE (decl) != error_mark_node
8636 && !COMPLETE_TYPE_P (TREE_TYPE (decl)))
8637 cxx_incomplete_type_inform (TREE_TYPE (decl));
8639 else if (!lookup_attribute ("omp declare target",
8640 DECL_ATTRIBUTES (decl))
8641 && !lookup_attribute ("omp declare target link",
8642 DECL_ATTRIBUTES (decl)))
8644 DECL_ATTRIBUTES (decl)
8645 = tree_cons (get_identifier ("omp declare target"),
8646 NULL_TREE, DECL_ATTRIBUTES (decl));
8647 symtab_node *node = symtab_node::get (decl);
8648 if (node != NULL)
8650 node->offloadable = 1;
8651 if (ENABLE_OFFLOADING)
8653 g->have_offload = true;
8654 if (is_a <varpool_node *> (node))
8655 vec_safe_push (offload_vars, decl);
8661 /* This is the last point we can lower alignment so give the target the
8662 chance to do so. */
8663 if (VAR_P (decl)
8664 && !is_global_var (decl)
8665 && !DECL_HARD_REGISTER (decl))
8666 targetm.lower_local_decl_alignment (decl);
8668 invoke_plugin_callbacks (PLUGIN_FINISH_DECL, decl);
8671 /* For class TYPE return itself or some its bases that contain
8672 any direct non-static data members. Return error_mark_node if an
8673 error has been diagnosed. */
8675 static tree
8676 find_decomp_class_base (location_t loc, tree type, tree ret)
8678 bool member_seen = false;
8679 for (tree field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
8680 if (TREE_CODE (field) != FIELD_DECL
8681 || DECL_ARTIFICIAL (field)
8682 || DECL_UNNAMED_BIT_FIELD (field))
8683 continue;
8684 else if (ret)
8685 return type;
8686 else if (ANON_AGGR_TYPE_P (TREE_TYPE (field)))
8688 if (TREE_CODE (TREE_TYPE (field)) == RECORD_TYPE)
8689 error_at (loc, "cannot decompose class type %qT because it has an "
8690 "anonymous struct member", type);
8691 else
8692 error_at (loc, "cannot decompose class type %qT because it has an "
8693 "anonymous union member", type);
8694 inform (DECL_SOURCE_LOCATION (field), "declared here");
8695 return error_mark_node;
8697 else if (!accessible_p (type, field, true))
8699 error_at (loc, "cannot decompose inaccessible member %qD of %qT",
8700 field, type);
8701 inform (DECL_SOURCE_LOCATION (field),
8702 TREE_PRIVATE (field)
8703 ? G_("declared private here")
8704 : G_("declared protected here"));
8705 return error_mark_node;
8707 else
8708 member_seen = true;
8710 tree base_binfo, binfo;
8711 tree orig_ret = ret;
8712 int i;
8713 if (member_seen)
8714 ret = type;
8715 for (binfo = TYPE_BINFO (type), i = 0;
8716 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
8718 tree t = find_decomp_class_base (loc, TREE_TYPE (base_binfo), ret);
8719 if (t == error_mark_node)
8720 return error_mark_node;
8721 if (t != NULL_TREE && t != ret)
8723 if (ret == type)
8725 error_at (loc, "cannot decompose class type %qT: both it and "
8726 "its base class %qT have non-static data members",
8727 type, t);
8728 return error_mark_node;
8730 else if (orig_ret != NULL_TREE)
8731 return t;
8732 else if (ret != NULL_TREE)
8734 error_at (loc, "cannot decompose class type %qT: its base "
8735 "classes %qT and %qT have non-static data "
8736 "members", type, ret, t);
8737 return error_mark_node;
8739 else
8740 ret = t;
8743 return ret;
8746 /* Return std::tuple_size<TYPE>::value. */
8748 static tree
8749 get_tuple_size (tree type)
8751 tree args = make_tree_vec (1);
8752 TREE_VEC_ELT (args, 0) = type;
8753 tree inst = lookup_template_class (tuple_size_identifier, args,
8754 /*in_decl*/NULL_TREE,
8755 /*context*/std_node,
8756 /*entering_scope*/false, tf_none);
8757 inst = complete_type (inst);
8758 if (inst == error_mark_node || !COMPLETE_TYPE_P (inst))
8759 return NULL_TREE;
8760 tree val = lookup_qualified_name (inst, value_identifier,
8761 LOOK_want::NORMAL, /*complain*/false);
8762 if (TREE_CODE (val) == VAR_DECL || TREE_CODE (val) == CONST_DECL)
8763 val = maybe_constant_value (val);
8764 if (TREE_CODE (val) == INTEGER_CST)
8765 return val;
8766 else
8767 return error_mark_node;
8770 /* Return std::tuple_element<I,TYPE>::type. */
8772 static tree
8773 get_tuple_element_type (tree type, unsigned i)
8775 tree args = make_tree_vec (2);
8776 TREE_VEC_ELT (args, 0) = build_int_cst (integer_type_node, i);
8777 TREE_VEC_ELT (args, 1) = type;
8778 tree inst = lookup_template_class (tuple_element_identifier, args,
8779 /*in_decl*/NULL_TREE,
8780 /*context*/std_node,
8781 /*entering_scope*/false,
8782 tf_warning_or_error);
8783 return make_typename_type (inst, type_identifier,
8784 none_type, tf_warning_or_error);
8787 /* Return e.get<i>() or get<i>(e). */
8789 static tree
8790 get_tuple_decomp_init (tree decl, unsigned i)
8792 tree targs = make_tree_vec (1);
8793 TREE_VEC_ELT (targs, 0) = build_int_cst (integer_type_node, i);
8795 tree etype = TREE_TYPE (decl);
8796 tree e = convert_from_reference (decl);
8798 /* [The id-expression] e is an lvalue if the type of the entity e is an
8799 lvalue reference and an xvalue otherwise. */
8800 if (!TYPE_REF_P (etype)
8801 || TYPE_REF_IS_RVALUE (etype))
8802 e = move (e);
8804 tree fns = lookup_qualified_name (TREE_TYPE (e), get__identifier,
8805 LOOK_want::NORMAL, /*complain*/false);
8806 bool use_member_get = false;
8808 /* To use a member get, member lookup must find at least one
8809 declaration that is a function template
8810 whose first template parameter is a non-type parameter. */
8811 for (lkp_iterator iter (MAYBE_BASELINK_FUNCTIONS (fns)); iter; ++iter)
8813 tree fn = *iter;
8814 if (TREE_CODE (fn) == TEMPLATE_DECL)
8816 tree tparms = DECL_TEMPLATE_PARMS (fn);
8817 tree parm = TREE_VEC_ELT (INNERMOST_TEMPLATE_PARMS (tparms), 0);
8818 if (TREE_CODE (TREE_VALUE (parm)) == PARM_DECL)
8820 use_member_get = true;
8821 break;
8826 if (use_member_get)
8828 fns = lookup_template_function (fns, targs);
8829 return build_new_method_call (e, fns, /*args*/NULL,
8830 /*path*/NULL_TREE, LOOKUP_NORMAL,
8831 /*fn_p*/NULL, tf_warning_or_error);
8833 else
8835 releasing_vec args (make_tree_vector_single (e));
8836 fns = lookup_template_function (get__identifier, targs);
8837 fns = perform_koenig_lookup (fns, args, tf_warning_or_error);
8838 return finish_call_expr (fns, &args, /*novirt*/false,
8839 /*koenig*/true, tf_warning_or_error);
8843 /* It's impossible to recover the decltype of a tuple decomposition variable
8844 based on the actual type of the variable, so store it in a hash table. */
8846 static GTY((cache)) decl_tree_cache_map *decomp_type_table;
8848 tree
8849 lookup_decomp_type (tree v)
8851 return *decomp_type_table->get (v);
8854 /* Mangle a decomposition declaration if needed. Arguments like
8855 in cp_finish_decomp. */
8857 void
8858 cp_maybe_mangle_decomp (tree decl, tree first, unsigned int count)
8860 if (!processing_template_decl
8861 && !error_operand_p (decl)
8862 && TREE_STATIC (decl))
8864 auto_vec<tree, 16> v;
8865 v.safe_grow (count, true);
8866 tree d = first;
8867 for (unsigned int i = 0; i < count; i++, d = DECL_CHAIN (d))
8868 v[count - i - 1] = d;
8869 SET_DECL_ASSEMBLER_NAME (decl, mangle_decomp (decl, v));
8870 maybe_apply_pragma_weak (decl);
8874 /* Finish a decomposition declaration. DECL is the underlying declaration
8875 "e", FIRST is the head of a chain of decls for the individual identifiers
8876 chained through DECL_CHAIN in reverse order and COUNT is the number of
8877 those decls. */
8879 void
8880 cp_finish_decomp (tree decl, tree first, unsigned int count)
8882 if (error_operand_p (decl))
8884 error_out:
8885 while (count--)
8887 TREE_TYPE (first) = error_mark_node;
8888 if (DECL_HAS_VALUE_EXPR_P (first))
8890 SET_DECL_VALUE_EXPR (first, NULL_TREE);
8891 DECL_HAS_VALUE_EXPR_P (first) = 0;
8893 first = DECL_CHAIN (first);
8895 if (DECL_P (decl) && DECL_NAMESPACE_SCOPE_P (decl))
8896 SET_DECL_ASSEMBLER_NAME (decl, get_identifier ("<decomp>"));
8897 return;
8900 location_t loc = DECL_SOURCE_LOCATION (decl);
8901 if (type_dependent_expression_p (decl)
8902 /* This happens for range for when not in templates.
8903 Still add the DECL_VALUE_EXPRs for later processing. */
8904 || (!processing_template_decl
8905 && type_uses_auto (TREE_TYPE (decl))))
8907 for (unsigned int i = 0; i < count; i++)
8909 if (!DECL_HAS_VALUE_EXPR_P (first))
8911 tree v = build_nt (ARRAY_REF, decl,
8912 size_int (count - i - 1),
8913 NULL_TREE, NULL_TREE);
8914 SET_DECL_VALUE_EXPR (first, v);
8915 DECL_HAS_VALUE_EXPR_P (first) = 1;
8917 if (processing_template_decl)
8918 fit_decomposition_lang_decl (first, decl);
8919 first = DECL_CHAIN (first);
8921 return;
8924 auto_vec<tree, 16> v;
8925 v.safe_grow (count, true);
8926 tree d = first;
8927 for (unsigned int i = 0; i < count; i++, d = DECL_CHAIN (d))
8929 v[count - i - 1] = d;
8930 fit_decomposition_lang_decl (d, decl);
8933 tree type = TREE_TYPE (decl);
8934 tree dexp = decl;
8936 if (TYPE_REF_P (type))
8938 dexp = convert_from_reference (dexp);
8939 type = complete_type (TREE_TYPE (type));
8940 if (type == error_mark_node)
8941 goto error_out;
8942 if (!COMPLETE_TYPE_P (type))
8944 error_at (loc, "structured binding refers to incomplete type %qT",
8945 type);
8946 goto error_out;
8950 tree eltype = NULL_TREE;
8951 unsigned HOST_WIDE_INT eltscnt = 0;
8952 if (TREE_CODE (type) == ARRAY_TYPE)
8954 tree nelts;
8955 nelts = array_type_nelts_top (type);
8956 if (nelts == error_mark_node)
8957 goto error_out;
8958 if (!tree_fits_uhwi_p (nelts))
8960 error_at (loc, "cannot decompose variable length array %qT", type);
8961 goto error_out;
8963 eltscnt = tree_to_uhwi (nelts);
8964 if (count != eltscnt)
8966 cnt_mismatch:
8967 if (count > eltscnt)
8968 error_n (loc, count,
8969 "%u name provided for structured binding",
8970 "%u names provided for structured binding", count);
8971 else
8972 error_n (loc, count,
8973 "only %u name provided for structured binding",
8974 "only %u names provided for structured binding", count);
8975 inform_n (loc, eltscnt,
8976 "while %qT decomposes into %wu element",
8977 "while %qT decomposes into %wu elements",
8978 type, eltscnt);
8979 goto error_out;
8981 eltype = TREE_TYPE (type);
8982 for (unsigned int i = 0; i < count; i++)
8984 TREE_TYPE (v[i]) = eltype;
8985 layout_decl (v[i], 0);
8986 if (processing_template_decl)
8987 continue;
8988 tree t = unshare_expr (dexp);
8989 t = build4_loc (DECL_SOURCE_LOCATION (v[i]), ARRAY_REF,
8990 eltype, t, size_int (i), NULL_TREE,
8991 NULL_TREE);
8992 SET_DECL_VALUE_EXPR (v[i], t);
8993 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
8996 /* 2 GNU extensions. */
8997 else if (TREE_CODE (type) == COMPLEX_TYPE)
8999 eltscnt = 2;
9000 if (count != eltscnt)
9001 goto cnt_mismatch;
9002 eltype = cp_build_qualified_type (TREE_TYPE (type), TYPE_QUALS (type));
9003 for (unsigned int i = 0; i < count; i++)
9005 TREE_TYPE (v[i]) = eltype;
9006 layout_decl (v[i], 0);
9007 if (processing_template_decl)
9008 continue;
9009 tree t = unshare_expr (dexp);
9010 t = build1_loc (DECL_SOURCE_LOCATION (v[i]),
9011 i ? IMAGPART_EXPR : REALPART_EXPR, eltype,
9013 SET_DECL_VALUE_EXPR (v[i], t);
9014 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
9017 else if (TREE_CODE (type) == VECTOR_TYPE)
9019 if (!TYPE_VECTOR_SUBPARTS (type).is_constant (&eltscnt))
9021 error_at (loc, "cannot decompose variable length vector %qT", type);
9022 goto error_out;
9024 if (count != eltscnt)
9025 goto cnt_mismatch;
9026 eltype = cp_build_qualified_type (TREE_TYPE (type), TYPE_QUALS (type));
9027 for (unsigned int i = 0; i < count; i++)
9029 TREE_TYPE (v[i]) = eltype;
9030 layout_decl (v[i], 0);
9031 if (processing_template_decl)
9032 continue;
9033 tree t = unshare_expr (dexp);
9034 convert_vector_to_array_for_subscript (DECL_SOURCE_LOCATION (v[i]),
9035 &t, size_int (i));
9036 t = build4_loc (DECL_SOURCE_LOCATION (v[i]), ARRAY_REF,
9037 eltype, t, size_int (i), NULL_TREE,
9038 NULL_TREE);
9039 SET_DECL_VALUE_EXPR (v[i], t);
9040 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
9043 else if (tree tsize = get_tuple_size (type))
9045 if (tsize == error_mark_node)
9047 error_at (loc, "%<std::tuple_size<%T>::value%> is not an integral "
9048 "constant expression", type);
9049 goto error_out;
9051 if (!tree_fits_uhwi_p (tsize))
9053 error_n (loc, count,
9054 "%u name provided for structured binding",
9055 "%u names provided for structured binding", count);
9056 inform (loc, "while %qT decomposes into %E elements",
9057 type, tsize);
9058 goto error_out;
9060 eltscnt = tree_to_uhwi (tsize);
9061 if (count != eltscnt)
9062 goto cnt_mismatch;
9063 int save_read = DECL_READ_P (decl);
9064 for (unsigned i = 0; i < count; ++i)
9066 location_t sloc = input_location;
9067 location_t dloc = DECL_SOURCE_LOCATION (v[i]);
9069 input_location = dloc;
9070 tree init = get_tuple_decomp_init (decl, i);
9071 tree eltype = (init == error_mark_node ? error_mark_node
9072 : get_tuple_element_type (type, i));
9073 input_location = sloc;
9075 if (VOID_TYPE_P (eltype))
9077 error ("%<std::tuple_element<%u, %T>::type%> is %<void%>",
9078 i, type);
9079 eltype = error_mark_node;
9081 if (init == error_mark_node || eltype == error_mark_node)
9083 inform (dloc, "in initialization of structured binding "
9084 "variable %qD", v[i]);
9085 goto error_out;
9087 /* Save the decltype away before reference collapse. */
9088 hash_map_safe_put<hm_ggc> (decomp_type_table, v[i], eltype);
9089 eltype = cp_build_reference_type (eltype, !lvalue_p (init));
9090 TREE_TYPE (v[i]) = eltype;
9091 layout_decl (v[i], 0);
9092 if (DECL_HAS_VALUE_EXPR_P (v[i]))
9094 /* In this case the names are variables, not just proxies. */
9095 SET_DECL_VALUE_EXPR (v[i], NULL_TREE);
9096 DECL_HAS_VALUE_EXPR_P (v[i]) = 0;
9098 if (!processing_template_decl)
9100 copy_linkage (v[i], decl);
9101 cp_finish_decl (v[i], init, /*constexpr*/false,
9102 /*asm*/NULL_TREE, LOOKUP_NORMAL);
9105 /* Ignore reads from the underlying decl performed during initialization
9106 of the individual variables. If those will be read, we'll mark
9107 the underlying decl as read at that point. */
9108 DECL_READ_P (decl) = save_read;
9110 else if (TREE_CODE (type) == UNION_TYPE)
9112 error_at (loc, "cannot decompose union type %qT", type);
9113 goto error_out;
9115 else if (!CLASS_TYPE_P (type))
9117 error_at (loc, "cannot decompose non-array non-class type %qT", type);
9118 goto error_out;
9120 else if (LAMBDA_TYPE_P (type))
9122 error_at (loc, "cannot decompose lambda closure type %qT", type);
9123 goto error_out;
9125 else if (processing_template_decl && complete_type (type) == error_mark_node)
9126 goto error_out;
9127 else if (processing_template_decl && !COMPLETE_TYPE_P (type))
9128 pedwarn (loc, 0, "structured binding refers to incomplete class type %qT",
9129 type);
9130 else
9132 tree btype = find_decomp_class_base (loc, type, NULL_TREE);
9133 if (btype == error_mark_node)
9134 goto error_out;
9135 else if (btype == NULL_TREE)
9137 error_at (loc, "cannot decompose class type %qT without non-static "
9138 "data members", type);
9139 goto error_out;
9141 for (tree field = TYPE_FIELDS (btype); field; field = TREE_CHAIN (field))
9142 if (TREE_CODE (field) != FIELD_DECL
9143 || DECL_ARTIFICIAL (field)
9144 || DECL_UNNAMED_BIT_FIELD (field))
9145 continue;
9146 else
9147 eltscnt++;
9148 if (count != eltscnt)
9149 goto cnt_mismatch;
9150 tree t = dexp;
9151 if (type != btype)
9153 t = convert_to_base (t, btype, /*check_access*/true,
9154 /*nonnull*/false, tf_warning_or_error);
9155 type = btype;
9157 unsigned int i = 0;
9158 for (tree field = TYPE_FIELDS (btype); field; field = TREE_CHAIN (field))
9159 if (TREE_CODE (field) != FIELD_DECL
9160 || DECL_ARTIFICIAL (field)
9161 || DECL_UNNAMED_BIT_FIELD (field))
9162 continue;
9163 else
9165 tree tt = finish_non_static_data_member (field, unshare_expr (t),
9166 NULL_TREE);
9167 if (REFERENCE_REF_P (tt))
9168 tt = TREE_OPERAND (tt, 0);
9169 TREE_TYPE (v[i]) = TREE_TYPE (tt);
9170 layout_decl (v[i], 0);
9171 if (!processing_template_decl)
9173 SET_DECL_VALUE_EXPR (v[i], tt);
9174 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
9176 i++;
9179 if (processing_template_decl)
9181 for (unsigned int i = 0; i < count; i++)
9182 if (!DECL_HAS_VALUE_EXPR_P (v[i]))
9184 tree a = build_nt (ARRAY_REF, decl, size_int (i),
9185 NULL_TREE, NULL_TREE);
9186 SET_DECL_VALUE_EXPR (v[i], a);
9187 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
9192 /* Returns a declaration for a VAR_DECL as if:
9194 extern "C" TYPE NAME;
9196 had been seen. Used to create compiler-generated global
9197 variables. */
9199 static tree
9200 declare_global_var (tree name, tree type)
9202 auto cookie = push_abi_namespace (global_namespace);
9203 tree decl = build_decl (input_location, VAR_DECL, name, type);
9204 TREE_PUBLIC (decl) = 1;
9205 DECL_EXTERNAL (decl) = 1;
9206 DECL_ARTIFICIAL (decl) = 1;
9207 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
9208 /* If the user has explicitly declared this variable (perhaps
9209 because the code we are compiling is part of a low-level runtime
9210 library), then it is possible that our declaration will be merged
9211 with theirs by pushdecl. */
9212 decl = pushdecl (decl);
9213 cp_finish_decl (decl, NULL_TREE, false, NULL_TREE, 0);
9214 pop_abi_namespace (cookie, global_namespace);
9216 return decl;
9219 /* Returns the type for the argument to "__cxa_atexit" (or "atexit",
9220 if "__cxa_atexit" is not being used) corresponding to the function
9221 to be called when the program exits. */
9223 static tree
9224 get_atexit_fn_ptr_type (void)
9226 tree fn_type;
9228 if (!atexit_fn_ptr_type_node)
9230 tree arg_type;
9231 if (flag_use_cxa_atexit
9232 && !targetm.cxx.use_atexit_for_cxa_atexit ())
9233 /* The parameter to "__cxa_atexit" is "void (*)(void *)". */
9234 arg_type = ptr_type_node;
9235 else
9236 /* The parameter to "atexit" is "void (*)(void)". */
9237 arg_type = NULL_TREE;
9239 fn_type = build_function_type_list (void_type_node,
9240 arg_type, NULL_TREE);
9241 atexit_fn_ptr_type_node = build_pointer_type (fn_type);
9244 return atexit_fn_ptr_type_node;
9247 /* Returns a pointer to the `atexit' function. Note that if
9248 FLAG_USE_CXA_ATEXIT is nonzero, then this will actually be the new
9249 `__cxa_atexit' function specified in the IA64 C++ ABI. */
9251 static tree
9252 get_atexit_node (void)
9254 tree atexit_fndecl;
9255 tree fn_type;
9256 tree fn_ptr_type;
9257 const char *name;
9258 bool use_aeabi_atexit;
9259 tree ctx = global_namespace;
9261 if (atexit_node)
9262 return atexit_node;
9264 if (flag_use_cxa_atexit && !targetm.cxx.use_atexit_for_cxa_atexit ())
9266 /* The declaration for `__cxa_atexit' is:
9268 int __cxa_atexit (void (*)(void *), void *, void *)
9270 We build up the argument types and then the function type
9271 itself. */
9272 tree argtype0, argtype1, argtype2;
9274 use_aeabi_atexit = targetm.cxx.use_aeabi_atexit ();
9275 /* First, build the pointer-to-function type for the first
9276 argument. */
9277 fn_ptr_type = get_atexit_fn_ptr_type ();
9278 /* Then, build the rest of the argument types. */
9279 argtype2 = ptr_type_node;
9280 if (use_aeabi_atexit)
9282 argtype1 = fn_ptr_type;
9283 argtype0 = ptr_type_node;
9285 else
9287 argtype1 = ptr_type_node;
9288 argtype0 = fn_ptr_type;
9290 /* And the final __cxa_atexit type. */
9291 fn_type = build_function_type_list (integer_type_node,
9292 argtype0, argtype1, argtype2,
9293 NULL_TREE);
9294 /* ... which needs noexcept. */
9295 fn_type = build_exception_variant (fn_type, noexcept_true_spec);
9296 if (use_aeabi_atexit)
9298 name = "__aeabi_atexit";
9299 push_to_top_level ();
9300 int n = push_namespace (get_identifier ("__aeabiv1"), false);
9301 ctx = current_namespace;
9302 while (n--)
9303 pop_namespace ();
9304 pop_from_top_level ();
9306 else
9308 name = "__cxa_atexit";
9309 ctx = abi_node;
9312 else
9314 /* The declaration for `atexit' is:
9316 int atexit (void (*)());
9318 We build up the argument types and then the function type
9319 itself. */
9320 fn_ptr_type = get_atexit_fn_ptr_type ();
9321 /* Build the final atexit type. */
9322 fn_type = build_function_type_list (integer_type_node,
9323 fn_ptr_type, NULL_TREE);
9324 /* ... which needs noexcept. */
9325 fn_type = build_exception_variant (fn_type, noexcept_true_spec);
9326 name = "atexit";
9329 /* Now, build the function declaration. */
9330 push_lang_context (lang_name_c);
9331 auto cookie = push_abi_namespace (ctx);
9332 atexit_fndecl = build_library_fn_ptr (name, fn_type, ECF_LEAF | ECF_NOTHROW);
9333 DECL_CONTEXT (atexit_fndecl) = FROB_CONTEXT (current_namespace);
9334 /* Install as hidden builtin so we're (a) more relaxed about
9335 exception spec matching and (b) will not give a confusing location
9336 in diagnostic and (c) won't magically appear in user-visible name
9337 lookups. */
9338 DECL_SOURCE_LOCATION (atexit_fndecl) = BUILTINS_LOCATION;
9339 atexit_fndecl = pushdecl (atexit_fndecl, /*hiding=*/true);
9340 pop_abi_namespace (cookie, ctx);
9341 mark_used (atexit_fndecl);
9342 pop_lang_context ();
9343 atexit_node = decay_conversion (atexit_fndecl, tf_warning_or_error);
9345 return atexit_node;
9348 /* Like get_atexit_node, but for thread-local cleanups. */
9350 static tree
9351 get_thread_atexit_node (void)
9353 /* The declaration for `__cxa_thread_atexit' is:
9355 int __cxa_thread_atexit (void (*)(void *), void *, void *) */
9356 tree fn_type = build_function_type_list (integer_type_node,
9357 get_atexit_fn_ptr_type (),
9358 ptr_type_node, ptr_type_node,
9359 NULL_TREE);
9361 /* Now, build the function declaration. */
9362 tree atexit_fndecl = build_library_fn_ptr ("__cxa_thread_atexit", fn_type,
9363 ECF_LEAF | ECF_NOTHROW);
9364 return decay_conversion (atexit_fndecl, tf_warning_or_error);
9367 /* Returns the __dso_handle VAR_DECL. */
9369 static tree
9370 get_dso_handle_node (void)
9372 if (dso_handle_node)
9373 return dso_handle_node;
9375 /* Declare the variable. */
9376 dso_handle_node = declare_global_var (get_identifier ("__dso_handle"),
9377 ptr_type_node);
9379 #ifdef HAVE_GAS_HIDDEN
9380 if (dso_handle_node != error_mark_node)
9382 DECL_VISIBILITY (dso_handle_node) = VISIBILITY_HIDDEN;
9383 DECL_VISIBILITY_SPECIFIED (dso_handle_node) = 1;
9385 #endif
9387 return dso_handle_node;
9390 /* Begin a new function with internal linkage whose job will be simply
9391 to destroy some particular variable. */
9393 static GTY(()) int start_cleanup_cnt;
9395 static tree
9396 start_cleanup_fn (void)
9398 char name[32];
9400 push_to_top_level ();
9402 /* No need to mangle this. */
9403 push_lang_context (lang_name_c);
9405 /* Build the name of the function. */
9406 sprintf (name, "__tcf_%d", start_cleanup_cnt++);
9407 /* Build the function declaration. */
9408 tree fntype = TREE_TYPE (get_atexit_fn_ptr_type ());
9409 tree fndecl = build_lang_decl (FUNCTION_DECL, get_identifier (name), fntype);
9410 DECL_CONTEXT (fndecl) = FROB_CONTEXT (current_namespace);
9411 /* It's a function with internal linkage, generated by the
9412 compiler. */
9413 TREE_PUBLIC (fndecl) = 0;
9414 DECL_ARTIFICIAL (fndecl) = 1;
9415 /* Make the function `inline' so that it is only emitted if it is
9416 actually needed. It is unlikely that it will be inlined, since
9417 it is only called via a function pointer, but we avoid unnecessary
9418 emissions this way. */
9419 DECL_DECLARED_INLINE_P (fndecl) = 1;
9420 DECL_INTERFACE_KNOWN (fndecl) = 1;
9421 if (flag_use_cxa_atexit && !targetm.cxx.use_atexit_for_cxa_atexit ())
9423 /* Build the parameter. */
9424 tree parmdecl = cp_build_parm_decl (fndecl, NULL_TREE, ptr_type_node);
9425 TREE_USED (parmdecl) = 1;
9426 DECL_READ_P (parmdecl) = 1;
9427 DECL_ARGUMENTS (fndecl) = parmdecl;
9430 fndecl = pushdecl (fndecl, /*hidden=*/true);
9431 start_preparsed_function (fndecl, NULL_TREE, SF_PRE_PARSED);
9433 pop_lang_context ();
9435 return current_function_decl;
9438 /* Finish the cleanup function begun by start_cleanup_fn. */
9440 static void
9441 end_cleanup_fn (void)
9443 expand_or_defer_fn (finish_function (/*inline_p=*/false));
9445 pop_from_top_level ();
9448 /* Generate code to handle the destruction of DECL, an object with
9449 static storage duration. */
9451 tree
9452 register_dtor_fn (tree decl)
9454 tree cleanup;
9455 tree addr;
9456 tree compound_stmt;
9457 tree fcall;
9458 tree type;
9459 bool ob_parm, dso_parm, use_dtor;
9460 tree arg0, arg1, arg2;
9461 tree atex_node;
9463 type = TREE_TYPE (decl);
9464 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
9465 return void_node;
9467 if (decl_maybe_constant_destruction (decl, type)
9468 && DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl))
9470 cxx_maybe_build_cleanup (decl, tf_warning_or_error);
9471 return void_node;
9474 /* If we're using "__cxa_atexit" (or "__cxa_thread_atexit" or
9475 "__aeabi_atexit"), and DECL is a class object, we can just pass the
9476 destructor to "__cxa_atexit"; we don't have to build a temporary
9477 function to do the cleanup. */
9478 dso_parm = (flag_use_cxa_atexit
9479 && !targetm.cxx.use_atexit_for_cxa_atexit ());
9480 ob_parm = (CP_DECL_THREAD_LOCAL_P (decl) || dso_parm);
9481 use_dtor = ob_parm && CLASS_TYPE_P (type);
9482 if (use_dtor)
9484 cleanup = get_class_binding (type, complete_dtor_identifier);
9486 /* Make sure it is accessible. */
9487 perform_or_defer_access_check (TYPE_BINFO (type), cleanup, cleanup,
9488 tf_warning_or_error);
9490 else
9492 /* Call build_cleanup before we enter the anonymous function so
9493 that any access checks will be done relative to the current
9494 scope, rather than the scope of the anonymous function. */
9495 build_cleanup (decl);
9497 /* Now start the function. */
9498 cleanup = start_cleanup_fn ();
9500 /* Now, recompute the cleanup. It may contain SAVE_EXPRs that refer
9501 to the original function, rather than the anonymous one. That
9502 will make the back end think that nested functions are in use,
9503 which causes confusion. */
9504 push_deferring_access_checks (dk_no_check);
9505 fcall = build_cleanup (decl);
9506 pop_deferring_access_checks ();
9508 /* Create the body of the anonymous function. */
9509 compound_stmt = begin_compound_stmt (BCS_FN_BODY);
9510 finish_expr_stmt (fcall);
9511 finish_compound_stmt (compound_stmt);
9512 end_cleanup_fn ();
9515 /* Call atexit with the cleanup function. */
9516 mark_used (cleanup);
9517 cleanup = build_address (cleanup);
9519 if (CP_DECL_THREAD_LOCAL_P (decl))
9520 atex_node = get_thread_atexit_node ();
9521 else
9522 atex_node = get_atexit_node ();
9524 if (use_dtor)
9526 /* We must convert CLEANUP to the type that "__cxa_atexit"
9527 expects. */
9528 cleanup = build_nop (get_atexit_fn_ptr_type (), cleanup);
9529 /* "__cxa_atexit" will pass the address of DECL to the
9530 cleanup function. */
9531 mark_used (decl);
9532 addr = build_address (decl);
9533 /* The declared type of the parameter to "__cxa_atexit" is
9534 "void *". For plain "T*", we could just let the
9535 machinery in cp_build_function_call convert it -- but if the
9536 type is "cv-qualified T *", then we need to convert it
9537 before passing it in, to avoid spurious errors. */
9538 addr = build_nop (ptr_type_node, addr);
9540 else
9541 /* Since the cleanup functions we build ignore the address
9542 they're given, there's no reason to pass the actual address
9543 in, and, in general, it's cheaper to pass NULL than any
9544 other value. */
9545 addr = null_pointer_node;
9547 if (dso_parm)
9548 arg2 = cp_build_addr_expr (get_dso_handle_node (),
9549 tf_warning_or_error);
9550 else if (ob_parm)
9551 /* Just pass NULL to the dso handle parm if we don't actually
9552 have a DSO handle on this target. */
9553 arg2 = null_pointer_node;
9554 else
9555 arg2 = NULL_TREE;
9557 if (ob_parm)
9559 if (!CP_DECL_THREAD_LOCAL_P (decl)
9560 && targetm.cxx.use_aeabi_atexit ())
9562 arg1 = cleanup;
9563 arg0 = addr;
9565 else
9567 arg1 = addr;
9568 arg0 = cleanup;
9571 else
9573 arg0 = cleanup;
9574 arg1 = NULL_TREE;
9576 return cp_build_function_call_nary (atex_node, tf_warning_or_error,
9577 arg0, arg1, arg2, NULL_TREE);
9580 /* DECL is a VAR_DECL with static storage duration. INIT, if present,
9581 is its initializer. Generate code to handle the construction
9582 and destruction of DECL. */
9584 static void
9585 expand_static_init (tree decl, tree init)
9587 gcc_assert (VAR_P (decl));
9588 gcc_assert (TREE_STATIC (decl));
9590 /* Some variables require no dynamic initialization. */
9591 if (decl_maybe_constant_destruction (decl, TREE_TYPE (decl)))
9593 /* Make sure the destructor is callable. */
9594 cxx_maybe_build_cleanup (decl, tf_warning_or_error);
9595 if (!init)
9596 return;
9599 if (CP_DECL_THREAD_LOCAL_P (decl) && DECL_GNU_TLS_P (decl)
9600 && !DECL_FUNCTION_SCOPE_P (decl))
9602 location_t dloc = DECL_SOURCE_LOCATION (decl);
9603 if (init)
9604 error_at (dloc, "non-local variable %qD declared %<__thread%> "
9605 "needs dynamic initialization", decl);
9606 else
9607 error_at (dloc, "non-local variable %qD declared %<__thread%> "
9608 "has a non-trivial destructor", decl);
9609 static bool informed;
9610 if (!informed)
9612 inform (dloc, "C++11 %<thread_local%> allows dynamic "
9613 "initialization and destruction");
9614 informed = true;
9616 return;
9619 if (DECL_FUNCTION_SCOPE_P (decl))
9621 /* Emit code to perform this initialization but once. */
9622 tree if_stmt = NULL_TREE, inner_if_stmt = NULL_TREE;
9623 tree then_clause = NULL_TREE, inner_then_clause = NULL_TREE;
9624 tree guard, guard_addr;
9625 tree flag, begin;
9626 /* We don't need thread-safety code for thread-local vars. */
9627 bool thread_guard = (flag_threadsafe_statics
9628 && !CP_DECL_THREAD_LOCAL_P (decl));
9630 /* Emit code to perform this initialization but once. This code
9631 looks like:
9633 static <type> guard;
9634 if (!__atomic_load (guard.first_byte)) {
9635 if (__cxa_guard_acquire (&guard)) {
9636 bool flag = false;
9637 try {
9638 // Do initialization.
9639 flag = true; __cxa_guard_release (&guard);
9640 // Register variable for destruction at end of program.
9641 } catch {
9642 if (!flag) __cxa_guard_abort (&guard);
9647 Note that the `flag' variable is only set to 1 *after* the
9648 initialization is complete. This ensures that an exception,
9649 thrown during the construction, will cause the variable to
9650 reinitialized when we pass through this code again, as per:
9652 [stmt.dcl]
9654 If the initialization exits by throwing an exception, the
9655 initialization is not complete, so it will be tried again
9656 the next time control enters the declaration.
9658 This process should be thread-safe, too; multiple threads
9659 should not be able to initialize the variable more than
9660 once. */
9662 /* Create the guard variable. */
9663 guard = get_guard (decl);
9665 /* Begin the conditional initialization. */
9666 if_stmt = begin_if_stmt ();
9668 finish_if_stmt_cond (get_guard_cond (guard, thread_guard), if_stmt);
9669 then_clause = begin_compound_stmt (BCS_NO_SCOPE);
9671 if (thread_guard)
9673 tree vfntype = NULL_TREE;
9674 tree acquire_name, release_name, abort_name;
9675 tree acquire_fn, release_fn, abort_fn;
9676 guard_addr = build_address (guard);
9678 acquire_name = get_identifier ("__cxa_guard_acquire");
9679 release_name = get_identifier ("__cxa_guard_release");
9680 abort_name = get_identifier ("__cxa_guard_abort");
9681 acquire_fn = get_global_binding (acquire_name);
9682 release_fn = get_global_binding (release_name);
9683 abort_fn = get_global_binding (abort_name);
9684 if (!acquire_fn)
9685 acquire_fn = push_library_fn
9686 (acquire_name, build_function_type_list (integer_type_node,
9687 TREE_TYPE (guard_addr),
9688 NULL_TREE),
9689 NULL_TREE, ECF_NOTHROW);
9690 if (!release_fn || !abort_fn)
9691 vfntype = build_function_type_list (void_type_node,
9692 TREE_TYPE (guard_addr),
9693 NULL_TREE);
9694 if (!release_fn)
9695 release_fn = push_library_fn (release_name, vfntype, NULL_TREE,
9696 ECF_NOTHROW);
9697 if (!abort_fn)
9698 abort_fn = push_library_fn (abort_name, vfntype, NULL_TREE,
9699 ECF_NOTHROW | ECF_LEAF);
9701 inner_if_stmt = begin_if_stmt ();
9702 finish_if_stmt_cond (build_call_n (acquire_fn, 1, guard_addr),
9703 inner_if_stmt);
9705 inner_then_clause = begin_compound_stmt (BCS_NO_SCOPE);
9706 begin = get_target_expr (boolean_false_node);
9707 flag = TARGET_EXPR_SLOT (begin);
9709 TARGET_EXPR_CLEANUP (begin)
9710 = build3 (COND_EXPR, void_type_node, flag,
9711 void_node,
9712 build_call_n (abort_fn, 1, guard_addr));
9713 CLEANUP_EH_ONLY (begin) = 1;
9715 /* Do the initialization itself. */
9716 init = add_stmt_to_compound (begin, init);
9717 init = add_stmt_to_compound (init,
9718 build2 (MODIFY_EXPR, void_type_node,
9719 flag, boolean_true_node));
9721 /* Use atexit to register a function for destroying this static
9722 variable. Do this before calling __cxa_guard_release. */
9723 init = add_stmt_to_compound (init, register_dtor_fn (decl));
9725 init = add_stmt_to_compound (init, build_call_n (release_fn, 1,
9726 guard_addr));
9728 else
9730 init = add_stmt_to_compound (init, set_guard (guard));
9732 /* Use atexit to register a function for destroying this static
9733 variable. */
9734 init = add_stmt_to_compound (init, register_dtor_fn (decl));
9737 finish_expr_stmt (init);
9739 if (thread_guard)
9741 finish_compound_stmt (inner_then_clause);
9742 finish_then_clause (inner_if_stmt);
9743 finish_if_stmt (inner_if_stmt);
9746 finish_compound_stmt (then_clause);
9747 finish_then_clause (if_stmt);
9748 finish_if_stmt (if_stmt);
9750 else if (CP_DECL_THREAD_LOCAL_P (decl))
9751 tls_aggregates = tree_cons (init, decl, tls_aggregates);
9752 else
9753 static_aggregates = tree_cons (init, decl, static_aggregates);
9757 /* Make TYPE a complete type based on INITIAL_VALUE.
9758 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
9759 2 if there was no information (in which case assume 0 if DO_DEFAULT),
9760 3 if the initializer list is empty (in pedantic mode). */
9763 cp_complete_array_type (tree *ptype, tree initial_value, bool do_default)
9765 int failure;
9766 tree type, elt_type;
9768 /* Don't get confused by a CONSTRUCTOR for some other type. */
9769 if (initial_value && TREE_CODE (initial_value) == CONSTRUCTOR
9770 && !BRACE_ENCLOSED_INITIALIZER_P (initial_value)
9771 && TREE_CODE (TREE_TYPE (initial_value)) != ARRAY_TYPE)
9772 return 1;
9774 if (initial_value)
9776 /* An array of character type can be initialized from a
9777 brace-enclosed string constant so call reshape_init to
9778 remove the optional braces from a braced string literal. */
9779 if (char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (*ptype)))
9780 && BRACE_ENCLOSED_INITIALIZER_P (initial_value))
9781 initial_value = reshape_init (*ptype, initial_value,
9782 tf_warning_or_error);
9784 /* If any of the elements are parameter packs, we can't actually
9785 complete this type now because the array size is dependent. */
9786 if (TREE_CODE (initial_value) == CONSTRUCTOR)
9787 for (auto &e: CONSTRUCTOR_ELTS (initial_value))
9788 if (PACK_EXPANSION_P (e.value))
9789 return 0;
9792 failure = complete_array_type (ptype, initial_value, do_default);
9794 /* We can create the array before the element type is complete, which
9795 means that we didn't have these two bits set in the original type
9796 either. In completing the type, we are expected to propagate these
9797 bits. See also complete_type which does the same thing for arrays
9798 of fixed size. */
9799 type = *ptype;
9800 if (type != error_mark_node && TYPE_DOMAIN (type))
9802 elt_type = TREE_TYPE (type);
9803 TYPE_NEEDS_CONSTRUCTING (type) = TYPE_NEEDS_CONSTRUCTING (elt_type);
9804 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
9805 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (elt_type);
9808 return failure;
9811 /* As above, but either give an error or reject zero-size arrays, depending
9812 on COMPLAIN. */
9815 cp_complete_array_type_or_error (tree *ptype, tree initial_value,
9816 bool do_default, tsubst_flags_t complain)
9818 int failure;
9819 bool sfinae = !(complain & tf_error);
9820 /* In SFINAE context we can't be lenient about zero-size arrays. */
9821 if (sfinae)
9822 ++pedantic;
9823 failure = cp_complete_array_type (ptype, initial_value, do_default);
9824 if (sfinae)
9825 --pedantic;
9826 if (failure)
9828 if (sfinae)
9829 /* Not an error. */;
9830 else if (failure == 1)
9831 error ("initializer fails to determine size of %qT", *ptype);
9832 else if (failure == 2)
9834 if (do_default)
9835 error ("array size missing in %qT", *ptype);
9837 else if (failure == 3)
9838 error ("zero-size array %qT", *ptype);
9839 *ptype = error_mark_node;
9841 return failure;
9844 /* Return zero if something is declared to be a member of type
9845 CTYPE when in the context of CUR_TYPE. STRING is the error
9846 message to print in that case. Otherwise, quietly return 1. */
9848 static int
9849 member_function_or_else (tree ctype, tree cur_type, enum overload_flags flags)
9851 if (ctype && ctype != cur_type)
9853 if (flags == DTOR_FLAG)
9854 error ("destructor for alien class %qT cannot be a member", ctype);
9855 else
9856 error ("constructor for alien class %qT cannot be a member", ctype);
9857 return 0;
9859 return 1;
9862 /* Subroutine of `grokdeclarator'. */
9864 /* Generate errors possibly applicable for a given set of specifiers.
9865 This is for ARM $7.1.2. */
9867 static void
9868 bad_specifiers (tree object,
9869 enum bad_spec_place type,
9870 int virtualp,
9871 int quals,
9872 int inlinep,
9873 int friendp,
9874 int raises,
9875 const location_t* locations)
9877 switch (type)
9879 case BSP_VAR:
9880 if (virtualp)
9881 error_at (locations[ds_virtual],
9882 "%qD declared as a %<virtual%> variable", object);
9883 if (quals)
9884 error ("%<const%> and %<volatile%> function specifiers on "
9885 "%qD invalid in variable declaration", object);
9886 break;
9887 case BSP_PARM:
9888 if (virtualp)
9889 error_at (locations[ds_virtual],
9890 "%qD declared as a %<virtual%> parameter", object);
9891 if (inlinep)
9892 error_at (locations[ds_inline],
9893 "%qD declared as an %<inline%> parameter", object);
9894 if (quals)
9895 error ("%<const%> and %<volatile%> function specifiers on "
9896 "%qD invalid in parameter declaration", object);
9897 break;
9898 case BSP_TYPE:
9899 if (virtualp)
9900 error_at (locations[ds_virtual],
9901 "%qD declared as a %<virtual%> type", object);
9902 if (inlinep)
9903 error_at (locations[ds_inline],
9904 "%qD declared as an %<inline%> type", object);
9905 if (quals)
9906 error ("%<const%> and %<volatile%> function specifiers on "
9907 "%qD invalid in type declaration", object);
9908 break;
9909 case BSP_FIELD:
9910 if (virtualp)
9911 error_at (locations[ds_virtual],
9912 "%qD declared as a %<virtual%> field", object);
9913 if (inlinep)
9914 error_at (locations[ds_inline],
9915 "%qD declared as an %<inline%> field", object);
9916 if (quals)
9917 error ("%<const%> and %<volatile%> function specifiers on "
9918 "%qD invalid in field declaration", object);
9919 break;
9920 default:
9921 gcc_unreachable();
9923 if (friendp)
9924 error ("%q+D declared as a friend", object);
9925 if (raises
9926 && !flag_noexcept_type
9927 && (TREE_CODE (object) == TYPE_DECL
9928 || (!TYPE_PTRFN_P (TREE_TYPE (object))
9929 && !TYPE_REFFN_P (TREE_TYPE (object))
9930 && !TYPE_PTRMEMFUNC_P (TREE_TYPE (object)))))
9931 error ("%q+D declared with an exception specification", object);
9934 /* DECL is a member function or static data member and is presently
9935 being defined. Check that the definition is taking place in a
9936 valid namespace. */
9938 static void
9939 check_class_member_definition_namespace (tree decl)
9941 /* These checks only apply to member functions and static data
9942 members. */
9943 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl));
9944 /* We check for problems with specializations in pt.cc in
9945 check_specialization_namespace, where we can issue better
9946 diagnostics. */
9947 if (processing_specialization)
9948 return;
9949 /* We check this in check_explicit_instantiation_namespace. */
9950 if (processing_explicit_instantiation)
9951 return;
9952 /* [class.mfct]
9954 A member function definition that appears outside of the
9955 class definition shall appear in a namespace scope enclosing
9956 the class definition.
9958 [class.static.data]
9960 The definition for a static data member shall appear in a
9961 namespace scope enclosing the member's class definition. */
9962 if (!is_ancestor (current_namespace, DECL_CONTEXT (decl)))
9963 permerror (input_location, "definition of %qD is not in namespace enclosing %qT",
9964 decl, DECL_CONTEXT (decl));
9967 /* Build a PARM_DECL for the "this" parameter of FN. TYPE is the
9968 METHOD_TYPE for a non-static member function; QUALS are the
9969 cv-qualifiers that apply to the function. */
9971 tree
9972 build_this_parm (tree fn, tree type, cp_cv_quals quals)
9974 tree this_type;
9975 tree qual_type;
9976 tree parm;
9977 cp_cv_quals this_quals;
9979 if (CLASS_TYPE_P (type))
9981 this_type
9982 = cp_build_qualified_type (type, quals & ~TYPE_QUAL_RESTRICT);
9983 this_type = build_pointer_type (this_type);
9985 else
9986 this_type = type_of_this_parm (type);
9987 /* The `this' parameter is implicitly `const'; it cannot be
9988 assigned to. */
9989 this_quals = (quals & TYPE_QUAL_RESTRICT) | TYPE_QUAL_CONST;
9990 qual_type = cp_build_qualified_type (this_type, this_quals);
9991 parm = build_artificial_parm (fn, this_identifier, qual_type);
9992 cp_apply_type_quals_to_decl (this_quals, parm);
9993 return parm;
9996 /* DECL is a static member function. Complain if it was declared
9997 with function-cv-quals. */
9999 static void
10000 check_static_quals (tree decl, cp_cv_quals quals)
10002 if (quals != TYPE_UNQUALIFIED)
10003 error ("static member function %q#D declared with type qualifiers",
10004 decl);
10007 // Check that FN takes no arguments and returns bool.
10008 static void
10009 check_concept_fn (tree fn)
10011 // A constraint is nullary.
10012 if (DECL_ARGUMENTS (fn))
10013 error_at (DECL_SOURCE_LOCATION (fn),
10014 "concept %q#D declared with function parameters", fn);
10016 // The declared return type of the concept shall be bool, and
10017 // it shall not be deduced from it definition.
10018 tree type = TREE_TYPE (TREE_TYPE (fn));
10019 if (is_auto (type))
10020 error_at (DECL_SOURCE_LOCATION (fn),
10021 "concept %q#D declared with a deduced return type", fn);
10022 else if (type != boolean_type_node)
10023 error_at (DECL_SOURCE_LOCATION (fn),
10024 "concept %q#D with non-%<bool%> return type %qT", fn, type);
10027 /* Helper function. Replace the temporary this parameter injected
10028 during cp_finish_omp_declare_simd with the real this parameter. */
10030 static tree
10031 declare_simd_adjust_this (tree *tp, int *walk_subtrees, void *data)
10033 tree this_parm = (tree) data;
10034 if (TREE_CODE (*tp) == PARM_DECL
10035 && DECL_NAME (*tp) == this_identifier
10036 && *tp != this_parm)
10037 *tp = this_parm;
10038 else if (TYPE_P (*tp))
10039 *walk_subtrees = 0;
10040 return NULL_TREE;
10043 /* CTYPE is class type, or null if non-class.
10044 TYPE is type this FUNCTION_DECL should have, either FUNCTION_TYPE
10045 or METHOD_TYPE.
10046 DECLARATOR is the function's name.
10047 PARMS is a chain of PARM_DECLs for the function.
10048 VIRTUALP is truthvalue of whether the function is virtual or not.
10049 FLAGS are to be passed through to `grokclassfn'.
10050 QUALS are qualifiers indicating whether the function is `const'
10051 or `volatile'.
10052 RAISES is a list of exceptions that this function can raise.
10053 CHECK is 1 if we must find this method in CTYPE, 0 if we should
10054 not look, and -1 if we should not call `grokclassfn' at all.
10056 SFK is the kind of special function (if any) for the new function.
10058 Returns `NULL_TREE' if something goes wrong, after issuing
10059 applicable error messages. */
10061 static tree
10062 grokfndecl (tree ctype,
10063 tree type,
10064 tree declarator,
10065 tree parms,
10066 tree orig_declarator,
10067 const cp_decl_specifier_seq *declspecs,
10068 tree decl_reqs,
10069 int virtualp,
10070 enum overload_flags flags,
10071 cp_cv_quals quals,
10072 cp_ref_qualifier rqual,
10073 tree raises,
10074 int check,
10075 int friendp,
10076 int publicp,
10077 int inlinep,
10078 bool deletedp,
10079 special_function_kind sfk,
10080 bool funcdef_flag,
10081 bool late_return_type_p,
10082 int template_count,
10083 tree in_namespace,
10084 tree* attrlist,
10085 location_t location)
10087 tree decl;
10088 int staticp = ctype && TREE_CODE (type) == FUNCTION_TYPE;
10089 tree t;
10091 if (location == UNKNOWN_LOCATION)
10092 location = input_location;
10094 /* Was the concept specifier present? */
10095 bool concept_p = inlinep & 4;
10097 /* Concept declarations must have a corresponding definition. */
10098 if (concept_p && !funcdef_flag)
10100 error_at (location, "concept %qD has no definition", declarator);
10101 return NULL_TREE;
10104 type = build_cp_fntype_variant (type, rqual, raises, late_return_type_p);
10106 decl = build_lang_decl_loc (location, FUNCTION_DECL, declarator, type);
10108 /* Set the constraints on the declaration. */
10109 if (flag_concepts)
10111 tree tmpl_reqs = NULL_TREE;
10112 tree ctx = friendp ? current_class_type : ctype;
10113 bool block_local = TREE_CODE (current_scope ()) == FUNCTION_DECL;
10114 bool memtmpl = (!block_local
10115 && (current_template_depth
10116 > template_class_depth (ctx)));
10117 if (memtmpl)
10119 if (!current_template_parms)
10120 /* If there are no template parameters, something must have
10121 gone wrong. */
10122 gcc_assert (seen_error ());
10123 else
10124 tmpl_reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
10126 tree ci = build_constraints (tmpl_reqs, decl_reqs);
10127 if (concept_p && ci)
10129 error_at (location, "a function concept cannot be constrained");
10130 ci = NULL_TREE;
10132 /* C++20 CA378: Remove non-templated constrained functions. */
10133 if (ci
10134 && (block_local
10135 || (!flag_concepts_ts
10136 && (!processing_template_decl
10137 || (friendp && !memtmpl && !funcdef_flag)))))
10139 error_at (location, "constraints on a non-templated function");
10140 ci = NULL_TREE;
10142 set_constraints (decl, ci);
10145 if (TREE_CODE (type) == METHOD_TYPE)
10147 tree parm = build_this_parm (decl, type, quals);
10148 DECL_CHAIN (parm) = parms;
10149 parms = parm;
10151 /* Allocate space to hold the vptr bit if needed. */
10152 SET_DECL_ALIGN (decl, MINIMUM_METHOD_BOUNDARY);
10155 DECL_ARGUMENTS (decl) = parms;
10156 for (t = parms; t; t = DECL_CHAIN (t))
10157 DECL_CONTEXT (t) = decl;
10159 /* Propagate volatile out from type to decl. */
10160 if (TYPE_VOLATILE (type))
10161 TREE_THIS_VOLATILE (decl) = 1;
10163 /* Setup decl according to sfk. */
10164 switch (sfk)
10166 case sfk_constructor:
10167 case sfk_copy_constructor:
10168 case sfk_move_constructor:
10169 DECL_CXX_CONSTRUCTOR_P (decl) = 1;
10170 DECL_NAME (decl) = ctor_identifier;
10171 break;
10172 case sfk_destructor:
10173 DECL_CXX_DESTRUCTOR_P (decl) = 1;
10174 DECL_NAME (decl) = dtor_identifier;
10175 break;
10176 default:
10177 break;
10180 if (friendp && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)
10182 if (funcdef_flag)
10183 error_at (location,
10184 "defining explicit specialization %qD in friend declaration",
10185 orig_declarator);
10186 else
10188 tree fns = TREE_OPERAND (orig_declarator, 0);
10189 tree args = TREE_OPERAND (orig_declarator, 1);
10191 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
10193 /* Something like `template <class T> friend void f<T>()'. */
10194 error_at (location,
10195 "invalid use of template-id %qD in declaration "
10196 "of primary template",
10197 orig_declarator);
10198 return NULL_TREE;
10202 /* A friend declaration of the form friend void f<>(). Record
10203 the information in the TEMPLATE_ID_EXPR. */
10204 SET_DECL_IMPLICIT_INSTANTIATION (decl);
10206 gcc_assert (identifier_p (fns) || OVL_P (fns));
10207 DECL_TEMPLATE_INFO (decl) = build_template_info (fns, args);
10209 for (t = TYPE_ARG_TYPES (TREE_TYPE (decl)); t; t = TREE_CHAIN (t))
10210 if (TREE_PURPOSE (t)
10211 && TREE_CODE (TREE_PURPOSE (t)) == DEFERRED_PARSE)
10213 error_at (defparse_location (TREE_PURPOSE (t)),
10214 "default arguments are not allowed in declaration "
10215 "of friend template specialization %qD",
10216 decl);
10217 return NULL_TREE;
10220 if (inlinep & 1)
10222 error_at (declspecs->locations[ds_inline],
10223 "%<inline%> is not allowed in declaration of friend "
10224 "template specialization %qD",
10225 decl);
10226 return NULL_TREE;
10231 /* C++17 11.3.6/4: "If a friend declaration specifies a default argument
10232 expression, that declaration shall be a definition..." */
10233 if (friendp && !funcdef_flag)
10235 for (tree t = FUNCTION_FIRST_USER_PARMTYPE (decl);
10236 t && t != void_list_node; t = TREE_CHAIN (t))
10237 if (TREE_PURPOSE (t))
10239 permerror (DECL_SOURCE_LOCATION (decl),
10240 "friend declaration of %qD specifies default "
10241 "arguments and isn%'t a definition", decl);
10242 break;
10246 /* If this decl has namespace scope, set that up. */
10247 if (in_namespace)
10248 set_decl_namespace (decl, in_namespace, friendp);
10249 else if (ctype)
10250 DECL_CONTEXT (decl) = ctype;
10251 else
10252 DECL_CONTEXT (decl) = FROB_CONTEXT (current_decl_namespace ());
10254 /* `main' and builtins have implicit 'C' linkage. */
10255 if (ctype == NULL_TREE
10256 && DECL_FILE_SCOPE_P (decl)
10257 && current_lang_name == lang_name_cplusplus
10258 && (MAIN_NAME_P (declarator)
10259 || (IDENTIFIER_LENGTH (declarator) > 10
10260 && IDENTIFIER_POINTER (declarator)[0] == '_'
10261 && IDENTIFIER_POINTER (declarator)[1] == '_'
10262 && startswith (IDENTIFIER_POINTER (declarator) + 2,
10263 "builtin_"))
10264 || (targetcm.cxx_implicit_extern_c
10265 && (targetcm.cxx_implicit_extern_c
10266 (IDENTIFIER_POINTER (declarator))))))
10267 SET_DECL_LANGUAGE (decl, lang_c);
10269 /* Should probably propagate const out from type to decl I bet (mrs). */
10270 if (staticp)
10272 DECL_STATIC_FUNCTION_P (decl) = 1;
10273 DECL_CONTEXT (decl) = ctype;
10276 if (deletedp)
10277 DECL_DELETED_FN (decl) = 1;
10279 if (ctype && funcdef_flag)
10280 check_class_member_definition_namespace (decl);
10282 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
10284 if (PROCESSING_REAL_TEMPLATE_DECL_P())
10285 error_at (location, "cannot declare %<::main%> to be a template");
10286 if (inlinep & 1)
10287 error_at (declspecs->locations[ds_inline],
10288 "cannot declare %<::main%> to be inline");
10289 if (inlinep & 2)
10290 error_at (declspecs->locations[ds_constexpr],
10291 "cannot declare %<::main%> to be %qs", "constexpr");
10292 if (inlinep & 8)
10293 error_at (declspecs->locations[ds_consteval],
10294 "cannot declare %<::main%> to be %qs", "consteval");
10295 if (!publicp)
10296 error_at (location, "cannot declare %<::main%> to be static");
10297 inlinep = 0;
10298 publicp = 1;
10301 /* Members of anonymous types and local classes have no linkage; make
10302 them internal. If a typedef is made later, this will be changed. */
10303 if (ctype && (!TREE_PUBLIC (TYPE_MAIN_DECL (ctype))
10304 || decl_function_context (TYPE_MAIN_DECL (ctype))))
10305 publicp = 0;
10307 if (publicp && cxx_dialect == cxx98)
10309 /* [basic.link]: A name with no linkage (notably, the name of a class
10310 or enumeration declared in a local scope) shall not be used to
10311 declare an entity with linkage.
10313 DR 757 relaxes this restriction for C++0x. */
10314 no_linkage_error (decl);
10317 TREE_PUBLIC (decl) = publicp;
10318 if (! publicp)
10320 DECL_INTERFACE_KNOWN (decl) = 1;
10321 DECL_NOT_REALLY_EXTERN (decl) = 1;
10324 /* If the declaration was declared inline, mark it as such. */
10325 if (inlinep)
10327 DECL_DECLARED_INLINE_P (decl) = 1;
10328 if (publicp)
10329 DECL_COMDAT (decl) = 1;
10331 if (inlinep & 2)
10332 DECL_DECLARED_CONSTEXPR_P (decl) = true;
10333 else if (inlinep & 8)
10335 DECL_DECLARED_CONSTEXPR_P (decl) = true;
10336 SET_DECL_IMMEDIATE_FUNCTION_P (decl);
10339 // If the concept declaration specifier was found, check
10340 // that the declaration satisfies the necessary requirements.
10341 if (concept_p)
10343 DECL_DECLARED_CONCEPT_P (decl) = true;
10344 check_concept_fn (decl);
10347 DECL_EXTERNAL (decl) = 1;
10348 if (TREE_CODE (type) == FUNCTION_TYPE)
10350 if (quals || rqual)
10351 TREE_TYPE (decl) = apply_memfn_quals (TREE_TYPE (decl),
10352 TYPE_UNQUALIFIED,
10353 REF_QUAL_NONE);
10355 if (quals)
10357 error (ctype
10358 ? G_("static member function %qD cannot have cv-qualifier")
10359 : G_("non-member function %qD cannot have cv-qualifier"),
10360 decl);
10361 quals = TYPE_UNQUALIFIED;
10364 if (rqual)
10366 error (ctype
10367 ? G_("static member function %qD cannot have ref-qualifier")
10368 : G_("non-member function %qD cannot have ref-qualifier"),
10369 decl);
10370 rqual = REF_QUAL_NONE;
10374 if (deduction_guide_p (decl))
10376 tree type = TREE_TYPE (DECL_NAME (decl));
10377 if (in_namespace == NULL_TREE
10378 && CP_DECL_CONTEXT (decl) != CP_TYPE_CONTEXT (type))
10380 error_at (location, "deduction guide %qD must be declared in the "
10381 "same scope as %qT", decl, type);
10382 inform (location_of (type), " declared here");
10383 return NULL_TREE;
10385 if (DECL_CLASS_SCOPE_P (decl)
10386 && current_access_specifier != declared_access (TYPE_NAME (type)))
10388 error_at (location, "deduction guide %qD must have the same access "
10389 "as %qT", decl, type);
10390 inform (location_of (type), " declared here");
10392 if (funcdef_flag)
10393 error_at (location,
10394 "deduction guide %qD must not have a function body", decl);
10396 else if (IDENTIFIER_ANY_OP_P (DECL_NAME (decl))
10397 && !grok_op_properties (decl, /*complain=*/true))
10398 return NULL_TREE;
10399 else if (UDLIT_OPER_P (DECL_NAME (decl)))
10401 bool long_long_unsigned_p;
10402 bool long_double_p;
10403 const char *suffix = NULL;
10404 /* [over.literal]/6: Literal operators shall not have C linkage. */
10405 if (DECL_LANGUAGE (decl) == lang_c)
10407 error_at (location, "literal operator with C linkage");
10408 maybe_show_extern_c_location ();
10409 return NULL_TREE;
10412 if (DECL_NAMESPACE_SCOPE_P (decl))
10414 if (!check_literal_operator_args (decl, &long_long_unsigned_p,
10415 &long_double_p))
10417 error_at (location, "%qD has invalid argument list", decl);
10418 return NULL_TREE;
10421 suffix = UDLIT_OP_SUFFIX (DECL_NAME (decl));
10422 if (long_long_unsigned_p)
10424 if (cpp_interpret_int_suffix (parse_in, suffix, strlen (suffix)))
10425 warning_at (location, 0, "integer suffix %qs"
10426 " shadowed by implementation", suffix);
10428 else if (long_double_p)
10430 if (cpp_interpret_float_suffix (parse_in, suffix, strlen (suffix)))
10431 warning_at (location, 0, "floating-point suffix %qs"
10432 " shadowed by implementation", suffix);
10434 /* 17.6.3.3.5 */
10435 if (suffix[0] != '_'
10436 && !current_function_decl && !(friendp && !funcdef_flag))
10437 warning_at (location, OPT_Wliteral_suffix,
10438 "literal operator suffixes not preceded by %<_%>"
10439 " are reserved for future standardization");
10441 else
10443 error_at (location, "%qD must be a non-member function", decl);
10444 return NULL_TREE;
10448 if (funcdef_flag)
10449 /* Make the init_value nonzero so pushdecl knows this is not
10450 tentative. error_mark_node is replaced later with the BLOCK. */
10451 DECL_INITIAL (decl) = error_mark_node;
10453 if (TYPE_NOTHROW_P (type) || nothrow_libfn_p (decl))
10454 TREE_NOTHROW (decl) = 1;
10456 if (flag_openmp || flag_openmp_simd)
10458 /* Adjust "omp declare simd" attributes. */
10459 tree ods = lookup_attribute ("omp declare simd", *attrlist);
10460 if (ods)
10462 tree attr;
10463 for (attr = ods; attr;
10464 attr = lookup_attribute ("omp declare simd", TREE_CHAIN (attr)))
10466 if (TREE_CODE (type) == METHOD_TYPE)
10467 walk_tree (&TREE_VALUE (attr), declare_simd_adjust_this,
10468 DECL_ARGUMENTS (decl), NULL);
10469 if (TREE_VALUE (attr) != NULL_TREE)
10471 tree cl = TREE_VALUE (TREE_VALUE (attr));
10472 cl = c_omp_declare_simd_clauses_to_numbers
10473 (DECL_ARGUMENTS (decl), cl);
10474 if (cl)
10475 TREE_VALUE (TREE_VALUE (attr)) = cl;
10476 else
10477 TREE_VALUE (attr) = NULL_TREE;
10483 /* Caller will do the rest of this. */
10484 if (check < 0)
10485 return decl;
10487 if (ctype != NULL_TREE)
10488 grokclassfn (ctype, decl, flags);
10490 /* 12.4/3 */
10491 if (cxx_dialect >= cxx11
10492 && DECL_DESTRUCTOR_P (decl)
10493 && !TYPE_BEING_DEFINED (DECL_CONTEXT (decl))
10494 && !processing_template_decl)
10495 deduce_noexcept_on_destructor (decl);
10497 set_originating_module (decl);
10499 decl = check_explicit_specialization (orig_declarator, decl,
10500 template_count,
10501 2 * funcdef_flag +
10502 4 * (friendp != 0) +
10503 8 * concept_p,
10504 *attrlist);
10505 if (decl == error_mark_node)
10506 return NULL_TREE;
10508 if (DECL_STATIC_FUNCTION_P (decl))
10509 check_static_quals (decl, quals);
10511 if (attrlist)
10513 cplus_decl_attributes (&decl, *attrlist, 0);
10514 *attrlist = NULL_TREE;
10517 /* Check main's type after attributes have been applied. */
10518 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
10520 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
10521 integer_type_node))
10523 tree oldtypeargs = TYPE_ARG_TYPES (TREE_TYPE (decl));
10524 tree newtype;
10525 error_at (declspecs->locations[ds_type_spec],
10526 "%<::main%> must return %<int%>");
10527 newtype = build_function_type (integer_type_node, oldtypeargs);
10528 TREE_TYPE (decl) = newtype;
10530 if (warn_main)
10531 check_main_parameter_types (decl);
10534 if (ctype != NULL_TREE && check)
10536 tree old_decl = check_classfn (ctype, decl,
10537 (current_template_depth
10538 > template_class_depth (ctype))
10539 ? current_template_parms
10540 : NULL_TREE);
10542 if (old_decl == error_mark_node)
10543 return NULL_TREE;
10545 if (old_decl)
10547 tree ok;
10548 tree pushed_scope;
10550 if (TREE_CODE (old_decl) == TEMPLATE_DECL)
10551 /* Because grokfndecl is always supposed to return a
10552 FUNCTION_DECL, we pull out the DECL_TEMPLATE_RESULT
10553 here. We depend on our callers to figure out that its
10554 really a template that's being returned. */
10555 old_decl = DECL_TEMPLATE_RESULT (old_decl);
10557 if (DECL_STATIC_FUNCTION_P (old_decl)
10558 && TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE)
10560 /* Remove the `this' parm added by grokclassfn. */
10561 revert_static_member_fn (decl);
10562 check_static_quals (decl, quals);
10564 if (DECL_ARTIFICIAL (old_decl))
10566 error ("definition of implicitly-declared %qD", old_decl);
10567 return NULL_TREE;
10569 else if (DECL_DEFAULTED_FN (old_decl))
10571 error ("definition of explicitly-defaulted %q+D", decl);
10572 inform (DECL_SOURCE_LOCATION (old_decl),
10573 "%q#D explicitly defaulted here", old_decl);
10574 return NULL_TREE;
10577 /* Since we've smashed OLD_DECL to its
10578 DECL_TEMPLATE_RESULT, we must do the same to DECL. */
10579 if (TREE_CODE (decl) == TEMPLATE_DECL)
10580 decl = DECL_TEMPLATE_RESULT (decl);
10582 /* Attempt to merge the declarations. This can fail, in
10583 the case of some invalid specialization declarations. */
10584 pushed_scope = push_scope (ctype);
10585 ok = duplicate_decls (decl, old_decl);
10586 if (pushed_scope)
10587 pop_scope (pushed_scope);
10588 if (!ok)
10590 error ("no %q#D member function declared in class %qT",
10591 decl, ctype);
10592 return NULL_TREE;
10594 if (ok == error_mark_node)
10595 return NULL_TREE;
10596 return old_decl;
10600 if (DECL_CONSTRUCTOR_P (decl) && !grok_ctor_properties (ctype, decl))
10601 return NULL_TREE;
10603 if (ctype == NULL_TREE || check)
10604 return decl;
10606 if (virtualp)
10607 DECL_VIRTUAL_P (decl) = 1;
10609 return decl;
10612 /* decl is a FUNCTION_DECL.
10613 specifiers are the parsed virt-specifiers.
10615 Set flags to reflect the virt-specifiers.
10617 Returns decl. */
10619 static tree
10620 set_virt_specifiers (tree decl, cp_virt_specifiers specifiers)
10622 if (decl == NULL_TREE)
10623 return decl;
10624 if (specifiers & VIRT_SPEC_OVERRIDE)
10625 DECL_OVERRIDE_P (decl) = 1;
10626 if (specifiers & VIRT_SPEC_FINAL)
10627 DECL_FINAL_P (decl) = 1;
10628 return decl;
10631 /* DECL is a VAR_DECL for a static data member. Set flags to reflect
10632 the linkage that DECL will receive in the object file. */
10634 static void
10635 set_linkage_for_static_data_member (tree decl)
10637 /* A static data member always has static storage duration and
10638 external linkage. Note that static data members are forbidden in
10639 local classes -- the only situation in which a class has
10640 non-external linkage. */
10641 TREE_PUBLIC (decl) = 1;
10642 TREE_STATIC (decl) = 1;
10643 /* For non-template classes, static data members are always put
10644 out in exactly those files where they are defined, just as
10645 with ordinary namespace-scope variables. */
10646 if (!processing_template_decl)
10647 DECL_INTERFACE_KNOWN (decl) = 1;
10650 /* Create a VAR_DECL named NAME with the indicated TYPE.
10652 If SCOPE is non-NULL, it is the class type or namespace containing
10653 the variable. If SCOPE is NULL, the variable should is created in
10654 the innermost enclosing scope. */
10656 static tree
10657 grokvardecl (tree type,
10658 tree name,
10659 tree orig_declarator,
10660 const cp_decl_specifier_seq *declspecs,
10661 int initialized,
10662 int type_quals,
10663 int inlinep,
10664 bool conceptp,
10665 int template_count,
10666 tree scope,
10667 location_t location)
10669 tree decl;
10670 tree explicit_scope;
10672 gcc_assert (!name || identifier_p (name));
10674 bool constp = (type_quals & TYPE_QUAL_CONST) != 0;
10675 bool volatilep = (type_quals & TYPE_QUAL_VOLATILE) != 0;
10677 /* Compute the scope in which to place the variable, but remember
10678 whether or not that scope was explicitly specified by the user. */
10679 explicit_scope = scope;
10680 if (!scope)
10682 /* An explicit "extern" specifier indicates a namespace-scope
10683 variable. */
10684 if (declspecs->storage_class == sc_extern)
10685 scope = current_decl_namespace ();
10686 else if (!at_function_scope_p ())
10687 scope = current_scope ();
10690 if (scope
10691 && (/* If the variable is a namespace-scope variable declared in a
10692 template, we need DECL_LANG_SPECIFIC. */
10693 (TREE_CODE (scope) == NAMESPACE_DECL && processing_template_decl)
10694 /* Similarly for namespace-scope variables with language linkage
10695 other than C++. */
10696 || (TREE_CODE (scope) == NAMESPACE_DECL
10697 && current_lang_name != lang_name_cplusplus)
10698 /* Similarly for static data members. */
10699 || TYPE_P (scope)
10700 /* Similarly for explicit specializations. */
10701 || (orig_declarator
10702 && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)))
10703 decl = build_lang_decl_loc (location, VAR_DECL, name, type);
10704 else
10705 decl = build_decl (location, VAR_DECL, name, type);
10707 if (explicit_scope && TREE_CODE (explicit_scope) == NAMESPACE_DECL)
10708 set_decl_namespace (decl, explicit_scope, 0);
10709 else
10710 DECL_CONTEXT (decl) = FROB_CONTEXT (scope);
10712 if (declspecs->storage_class == sc_extern)
10714 DECL_THIS_EXTERN (decl) = 1;
10715 DECL_EXTERNAL (decl) = !initialized;
10718 if (DECL_CLASS_SCOPE_P (decl))
10720 set_linkage_for_static_data_member (decl);
10721 /* This function is only called with out-of-class definitions. */
10722 DECL_EXTERNAL (decl) = 0;
10723 check_class_member_definition_namespace (decl);
10725 /* At top level, either `static' or no s.c. makes a definition
10726 (perhaps tentative), and absence of `static' makes it public. */
10727 else if (toplevel_bindings_p ())
10729 TREE_PUBLIC (decl) = (declspecs->storage_class != sc_static
10730 && (DECL_THIS_EXTERN (decl)
10731 || ! constp
10732 || volatilep
10733 || inlinep));
10734 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
10736 /* Not at top level, only `static' makes a static definition. */
10737 else
10739 TREE_STATIC (decl) = declspecs->storage_class == sc_static;
10740 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
10743 set_originating_module (decl);
10745 if (decl_spec_seq_has_spec_p (declspecs, ds_thread))
10747 if (DECL_EXTERNAL (decl) || TREE_STATIC (decl))
10749 CP_DECL_THREAD_LOCAL_P (decl) = true;
10750 if (!processing_template_decl)
10751 set_decl_tls_model (decl, decl_default_tls_model (decl));
10753 if (declspecs->gnu_thread_keyword_p)
10754 SET_DECL_GNU_TLS_P (decl);
10757 /* If the type of the decl has no linkage, make sure that we'll
10758 notice that in mark_used. */
10759 if (cxx_dialect > cxx98
10760 && decl_linkage (decl) != lk_none
10761 && DECL_LANG_SPECIFIC (decl) == NULL
10762 && !DECL_EXTERN_C_P (decl)
10763 && no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/false))
10764 retrofit_lang_decl (decl);
10766 if (TREE_PUBLIC (decl))
10768 /* [basic.link]: A name with no linkage (notably, the name of a class
10769 or enumeration declared in a local scope) shall not be used to
10770 declare an entity with linkage.
10772 DR 757 relaxes this restriction for C++0x. */
10773 if (cxx_dialect < cxx11)
10774 no_linkage_error (decl);
10776 else
10777 DECL_INTERFACE_KNOWN (decl) = 1;
10779 if (DECL_NAME (decl)
10780 && MAIN_NAME_P (DECL_NAME (decl))
10781 && scope == global_namespace)
10782 error_at (DECL_SOURCE_LOCATION (decl),
10783 "cannot declare %<::main%> to be a global variable");
10785 /* Check that the variable can be safely declared as a concept.
10786 Note that this also forbids explicit specializations. */
10787 if (conceptp)
10789 if (!processing_template_decl)
10791 error_at (declspecs->locations[ds_concept],
10792 "a non-template variable cannot be %<concept%>");
10793 return NULL_TREE;
10795 else if (!at_namespace_scope_p ())
10797 error_at (declspecs->locations[ds_concept],
10798 "concept must be defined at namespace scope");
10799 return NULL_TREE;
10801 else
10802 DECL_DECLARED_CONCEPT_P (decl) = true;
10803 if (!same_type_ignoring_top_level_qualifiers_p (type, boolean_type_node))
10804 error_at (declspecs->locations[ds_type_spec],
10805 "concept must have type %<bool%>");
10806 if (TEMPLATE_PARMS_CONSTRAINTS (current_template_parms))
10808 error_at (location, "a variable concept cannot be constrained");
10809 TEMPLATE_PARMS_CONSTRAINTS (current_template_parms) = NULL_TREE;
10812 else if (flag_concepts
10813 && current_template_depth > template_class_depth (scope))
10815 tree ci = current_template_constraints ();
10816 set_constraints (decl, ci);
10819 // Handle explicit specializations and instantiations of variable templates.
10820 if (orig_declarator)
10821 decl = check_explicit_specialization (orig_declarator, decl,
10822 template_count, conceptp * 8);
10824 return decl != error_mark_node ? decl : NULL_TREE;
10827 /* Create and return a canonical pointer to member function type, for
10828 TYPE, which is a POINTER_TYPE to a METHOD_TYPE. */
10830 tree
10831 build_ptrmemfunc_type (tree type)
10833 tree field, fields;
10834 tree t;
10836 if (type == error_mark_node)
10837 return type;
10839 /* Make sure that we always have the unqualified pointer-to-member
10840 type first. */
10841 if (cp_cv_quals quals = cp_type_quals (type))
10843 tree unqual = build_ptrmemfunc_type (TYPE_MAIN_VARIANT (type));
10844 return cp_build_qualified_type (unqual, quals);
10847 /* If a canonical type already exists for this type, use it. We use
10848 this method instead of type_hash_canon, because it only does a
10849 simple equality check on the list of field members. */
10851 t = TYPE_PTRMEMFUNC_TYPE (type);
10852 if (t)
10853 return t;
10855 t = make_node (RECORD_TYPE);
10857 /* Let the front end know this is a pointer to member function. */
10858 TYPE_PTRMEMFUNC_FLAG (t) = 1;
10860 field = build_decl (input_location, FIELD_DECL, pfn_identifier, type);
10861 DECL_NONADDRESSABLE_P (field) = 1;
10862 fields = field;
10864 field = build_decl (input_location, FIELD_DECL, delta_identifier,
10865 delta_type_node);
10866 DECL_NONADDRESSABLE_P (field) = 1;
10867 DECL_CHAIN (field) = fields;
10868 fields = field;
10870 finish_builtin_struct (t, "__ptrmemfunc_type", fields, ptr_type_node);
10872 /* Zap out the name so that the back end will give us the debugging
10873 information for this anonymous RECORD_TYPE. */
10874 TYPE_NAME (t) = NULL_TREE;
10876 /* Cache this pointer-to-member type so that we can find it again
10877 later. */
10878 TYPE_PTRMEMFUNC_TYPE (type) = t;
10880 if (TYPE_STRUCTURAL_EQUALITY_P (type))
10881 SET_TYPE_STRUCTURAL_EQUALITY (t);
10882 else if (TYPE_CANONICAL (type) != type)
10883 TYPE_CANONICAL (t) = build_ptrmemfunc_type (TYPE_CANONICAL (type));
10885 return t;
10888 /* Create and return a pointer to data member type. */
10890 tree
10891 build_ptrmem_type (tree class_type, tree member_type)
10893 if (TREE_CODE (member_type) == METHOD_TYPE)
10895 cp_cv_quals quals = type_memfn_quals (member_type);
10896 cp_ref_qualifier rqual = type_memfn_rqual (member_type);
10897 member_type = build_memfn_type (member_type, class_type, quals, rqual);
10898 return build_ptrmemfunc_type (build_pointer_type (member_type));
10900 else
10902 gcc_assert (TREE_CODE (member_type) != FUNCTION_TYPE);
10903 return build_offset_type (class_type, member_type);
10907 /* DECL is a VAR_DECL defined in-class, whose TYPE is also given.
10908 Check to see that the definition is valid. Issue appropriate error
10909 messages. */
10911 static void
10912 check_static_variable_definition (tree decl, tree type)
10914 /* Avoid redundant diagnostics on out-of-class definitions. */
10915 if (!current_class_type || !TYPE_BEING_DEFINED (current_class_type))
10917 /* Can't check yet if we don't know the type. */
10918 else if (dependent_type_p (type))
10920 /* If DECL is declared constexpr, we'll do the appropriate checks
10921 in check_initializer. Similarly for inline static data members. */
10922 else if (DECL_P (decl)
10923 && (DECL_DECLARED_CONSTEXPR_P (decl)
10924 || DECL_VAR_DECLARED_INLINE_P (decl)))
10926 else if (cxx_dialect >= cxx11 && !INTEGRAL_OR_ENUMERATION_TYPE_P (type))
10928 if (!COMPLETE_TYPE_P (type))
10929 error_at (DECL_SOURCE_LOCATION (decl),
10930 "in-class initialization of static data member %q#D of "
10931 "incomplete type", decl);
10932 else if (literal_type_p (type))
10933 permerror (DECL_SOURCE_LOCATION (decl),
10934 "%<constexpr%> needed for in-class initialization of "
10935 "static data member %q#D of non-integral type", decl);
10936 else
10937 error_at (DECL_SOURCE_LOCATION (decl),
10938 "in-class initialization of static data member %q#D of "
10939 "non-literal type", decl);
10941 /* Motion 10 at San Diego: If a static const integral data member is
10942 initialized with an integral constant expression, the initializer
10943 may appear either in the declaration (within the class), or in
10944 the definition, but not both. If it appears in the class, the
10945 member is a member constant. The file-scope definition is always
10946 required. */
10947 else if (!ARITHMETIC_TYPE_P (type) && TREE_CODE (type) != ENUMERAL_TYPE)
10948 error_at (DECL_SOURCE_LOCATION (decl),
10949 "invalid in-class initialization of static data member "
10950 "of non-integral type %qT",
10951 type);
10952 else if (!CP_TYPE_CONST_P (type))
10953 error_at (DECL_SOURCE_LOCATION (decl),
10954 "ISO C++ forbids in-class initialization of non-const "
10955 "static member %qD",
10956 decl);
10957 else if (!INTEGRAL_OR_ENUMERATION_TYPE_P (type))
10958 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wpedantic,
10959 "ISO C++ forbids initialization of member constant "
10960 "%qD of non-integral type %qT", decl, type);
10963 /* *expr_p is part of the TYPE_SIZE of a variably-sized array. If any
10964 SAVE_EXPRs in *expr_p wrap expressions with side-effects, break those
10965 expressions out into temporary variables so that walk_tree doesn't
10966 step into them (c++/15764). */
10968 static tree
10969 stabilize_save_expr_r (tree *expr_p, int *walk_subtrees, void *data)
10971 hash_set<tree> *pset = (hash_set<tree> *)data;
10972 tree expr = *expr_p;
10973 if (TREE_CODE (expr) == SAVE_EXPR)
10975 tree op = TREE_OPERAND (expr, 0);
10976 cp_walk_tree (&op, stabilize_save_expr_r, data, pset);
10977 if (TREE_SIDE_EFFECTS (op))
10978 TREE_OPERAND (expr, 0) = get_temp_regvar (TREE_TYPE (op), op);
10979 *walk_subtrees = 0;
10981 else if (!EXPR_P (expr) || !TREE_SIDE_EFFECTS (expr))
10982 *walk_subtrees = 0;
10983 return NULL;
10986 /* Entry point for the above. */
10988 static void
10989 stabilize_vla_size (tree size)
10991 hash_set<tree> pset;
10992 /* Break out any function calls into temporary variables. */
10993 cp_walk_tree (&size, stabilize_save_expr_r, &pset, &pset);
10996 /* Reduce a SIZEOF_EXPR to its value. */
10998 tree
10999 fold_sizeof_expr (tree t)
11001 tree r;
11002 if (SIZEOF_EXPR_TYPE_P (t))
11003 r = cxx_sizeof_or_alignof_type (EXPR_LOCATION (t),
11004 TREE_TYPE (TREE_OPERAND (t, 0)),
11005 SIZEOF_EXPR, false, false);
11006 else if (TYPE_P (TREE_OPERAND (t, 0)))
11007 r = cxx_sizeof_or_alignof_type (EXPR_LOCATION (t),
11008 TREE_OPERAND (t, 0), SIZEOF_EXPR,
11009 false, false);
11010 else
11011 r = cxx_sizeof_or_alignof_expr (EXPR_LOCATION (t),
11012 TREE_OPERAND (t, 0), SIZEOF_EXPR,
11013 false, false);
11014 if (r == error_mark_node)
11015 r = size_one_node;
11016 return r;
11019 /* Given the SIZE (i.e., number of elements) in an array, compute
11020 an appropriate index type for the array. If non-NULL, NAME is
11021 the name of the entity being declared. */
11023 static tree
11024 compute_array_index_type_loc (location_t name_loc, tree name, tree size,
11025 tsubst_flags_t complain)
11027 if (error_operand_p (size))
11028 return error_mark_node;
11030 /* The type of the index being computed. */
11031 tree itype;
11033 /* The original numeric size as seen in the source code before
11034 conversion to size_t. */
11035 tree origsize = size;
11037 location_t loc = cp_expr_loc_or_loc (size, name ? name_loc : input_location);
11039 if (!type_dependent_expression_p (size))
11041 origsize = size = mark_rvalue_use (size);
11043 if (cxx_dialect < cxx11 && TREE_CODE (size) == NOP_EXPR
11044 && TREE_SIDE_EFFECTS (size))
11045 /* In C++98, we mark a non-constant array bound with a magic
11046 NOP_EXPR with TREE_SIDE_EFFECTS; don't fold in that case. */;
11047 else
11049 size = build_converted_constant_expr (size_type_node, size, complain);
11050 /* Pedantically a constant expression is required here and so
11051 __builtin_is_constant_evaluated () should fold to true if it
11052 is successfully folded into a constant. */
11053 size = fold_non_dependent_expr (size, complain,
11054 /*manifestly_const_eval=*/true);
11056 if (!TREE_CONSTANT (size))
11057 size = origsize;
11060 if (error_operand_p (size))
11061 return error_mark_node;
11063 /* The array bound must be an integer type. */
11064 tree type = TREE_TYPE (size);
11065 if (!INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
11067 if (!(complain & tf_error))
11068 return error_mark_node;
11069 if (name)
11070 error_at (loc, "size of array %qD has non-integral type %qT",
11071 name, type);
11072 else
11073 error_at (loc, "size of array has non-integral type %qT", type);
11074 size = integer_one_node;
11078 /* A type is dependent if it is...an array type constructed from any
11079 dependent type or whose size is specified by a constant expression
11080 that is value-dependent. */
11081 /* We can only call value_dependent_expression_p on integral constant
11082 expressions. */
11083 if (processing_template_decl
11084 && potential_constant_expression (size)
11085 && value_dependent_expression_p (size))
11087 /* Just build the index type and mark that it requires
11088 structural equality checks. */
11089 in_template:
11090 itype = build_index_type (build_min (MINUS_EXPR, sizetype,
11091 size, size_one_node));
11092 TYPE_DEPENDENT_P (itype) = 1;
11093 TYPE_DEPENDENT_P_VALID (itype) = 1;
11094 SET_TYPE_STRUCTURAL_EQUALITY (itype);
11095 return itype;
11098 if (TREE_CODE (size) != INTEGER_CST)
11100 tree folded = cp_fully_fold (size);
11101 if (TREE_CODE (folded) == INTEGER_CST)
11103 if (name)
11104 pedwarn (loc, OPT_Wpedantic, "size of array %qD is not an "
11105 "integral constant-expression", name);
11106 else
11107 pedwarn (loc, OPT_Wpedantic,
11108 "size of array is not an integral constant-expression");
11110 if (TREE_CONSTANT (size) && !TREE_CONSTANT (folded))
11111 /* We might have lost the TREE_CONSTANT flag e.g. when we are
11112 folding a conversion from a pointer to integral type. In that
11113 case issue an error below and don't treat this as a VLA. */;
11114 else
11115 /* Use the folded result for VLAs, too; it will have resolved
11116 SIZEOF_EXPR. */
11117 size = folded;
11120 /* Normally, the array-bound will be a constant. */
11121 if (TREE_CODE (size) == INTEGER_CST)
11123 /* The size to use in diagnostics that reflects the constant
11124 size used in the source, rather than SIZE massaged above. */
11125 tree diagsize = size;
11127 /* If the original size before conversion to size_t was signed
11128 and negative, convert it to ssizetype to restore the sign. */
11129 if (!TYPE_UNSIGNED (TREE_TYPE (origsize))
11130 && TREE_CODE (size) == INTEGER_CST
11131 && tree_int_cst_sign_bit (size))
11133 diagsize = fold_convert (ssizetype, size);
11135 /* Clear the overflow bit that may have been set as a result
11136 of the conversion from the sizetype of the new size to
11137 ssizetype. */
11138 TREE_OVERFLOW (diagsize) = false;
11141 /* Verify that the array has a positive number of elements
11142 and issue the appropriate diagnostic if it doesn't. */
11143 if (!valid_array_size_p (loc, diagsize, name, (complain & tf_error)))
11145 if (!(complain & tf_error))
11146 return error_mark_node;
11147 size = integer_one_node;
11149 /* As an extension we allow zero-sized arrays. */
11150 else if (integer_zerop (size))
11152 if (!(complain & tf_error))
11153 /* We must fail if performing argument deduction (as
11154 indicated by the state of complain), so that
11155 another substitution can be found. */
11156 return error_mark_node;
11157 else if (name)
11158 pedwarn (loc, OPT_Wpedantic,
11159 "ISO C++ forbids zero-size array %qD", name);
11160 else
11161 pedwarn (loc, OPT_Wpedantic,
11162 "ISO C++ forbids zero-size array");
11165 else if (TREE_CONSTANT (size)
11166 /* We don't allow VLAs at non-function scopes, or during
11167 tentative template substitution. */
11168 || !at_function_scope_p ()
11169 || !(complain & tf_error))
11171 if (!(complain & tf_error))
11172 return error_mark_node;
11173 /* `(int) &fn' is not a valid array bound. */
11174 if (name)
11175 error_at (loc,
11176 "size of array %qD is not an integral constant-expression",
11177 name);
11178 else
11179 error_at (loc, "size of array is not an integral constant-expression");
11180 size = integer_one_node;
11182 else if (pedantic && warn_vla != 0)
11184 if (name)
11185 pedwarn (name_loc, OPT_Wvla,
11186 "ISO C++ forbids variable length array %qD", name);
11187 else
11188 pedwarn (input_location, OPT_Wvla,
11189 "ISO C++ forbids variable length array");
11191 else if (warn_vla > 0)
11193 if (name)
11194 warning_at (name_loc, OPT_Wvla,
11195 "variable length array %qD is used", name);
11196 else
11197 warning (OPT_Wvla,
11198 "variable length array is used");
11201 if (processing_template_decl && !TREE_CONSTANT (size))
11202 goto in_template;
11203 else
11205 if (!TREE_CONSTANT (size))
11207 /* A variable sized array. Arrange for the SAVE_EXPR on the inside
11208 of the MINUS_EXPR, which allows the -1 to get folded with the +1
11209 that happens when building TYPE_SIZE. */
11210 size = variable_size (size);
11211 stabilize_vla_size (size);
11214 /* Compute the index of the largest element in the array. It is
11215 one less than the number of elements in the array. We save
11216 and restore PROCESSING_TEMPLATE_DECL so that computations in
11217 cp_build_binary_op will be appropriately folded. */
11219 processing_template_decl_sentinel s;
11220 itype = cp_build_binary_op (input_location,
11221 MINUS_EXPR,
11222 cp_convert (ssizetype, size, complain),
11223 cp_convert (ssizetype, integer_one_node,
11224 complain),
11225 complain);
11226 itype = maybe_constant_value (itype, NULL_TREE, true);
11229 if (!TREE_CONSTANT (itype))
11231 if (sanitize_flags_p (SANITIZE_VLA)
11232 && current_function_decl != NULL_TREE)
11234 /* We have to add 1 -- in the ubsan routine we generate
11235 LE_EXPR rather than LT_EXPR. */
11236 tree t = fold_build2 (PLUS_EXPR, TREE_TYPE (itype), itype,
11237 build_one_cst (TREE_TYPE (itype)));
11238 t = ubsan_instrument_vla (input_location, t);
11239 finish_expr_stmt (t);
11242 /* Make sure that there was no overflow when creating to a signed
11243 index type. (For example, on a 32-bit machine, an array with
11244 size 2^32 - 1 is too big.) */
11245 else if (TREE_CODE (itype) == INTEGER_CST
11246 && TREE_OVERFLOW (itype))
11248 if (!(complain & tf_error))
11249 return error_mark_node;
11250 error ("overflow in array dimension");
11251 TREE_OVERFLOW (itype) = 0;
11255 /* Create and return the appropriate index type. */
11256 itype = build_index_type (itype);
11258 /* If the index type were dependent, we would have returned early, so
11259 remember that it isn't. */
11260 TYPE_DEPENDENT_P (itype) = 0;
11261 TYPE_DEPENDENT_P_VALID (itype) = 1;
11262 return itype;
11265 tree
11266 compute_array_index_type (tree name, tree size, tsubst_flags_t complain)
11268 return compute_array_index_type_loc (input_location, name, size, complain);
11271 /* Returns the scope (if any) in which the entity declared by
11272 DECLARATOR will be located. If the entity was declared with an
11273 unqualified name, NULL_TREE is returned. */
11275 tree
11276 get_scope_of_declarator (const cp_declarator *declarator)
11278 while (declarator && declarator->kind != cdk_id)
11279 declarator = declarator->declarator;
11281 /* If the declarator-id is a SCOPE_REF, the scope in which the
11282 declaration occurs is the first operand. */
11283 if (declarator
11284 && declarator->u.id.qualifying_scope)
11285 return declarator->u.id.qualifying_scope;
11287 /* Otherwise, the declarator is not a qualified name; the entity will
11288 be declared in the current scope. */
11289 return NULL_TREE;
11292 /* Returns an ARRAY_TYPE for an array with SIZE elements of the
11293 indicated TYPE. If non-NULL, NAME is the NAME of the declaration
11294 with this type. */
11296 static tree
11297 create_array_type_for_decl (tree name, tree type, tree size, location_t loc)
11299 tree itype = NULL_TREE;
11301 /* If things have already gone awry, bail now. */
11302 if (type == error_mark_node || size == error_mark_node)
11303 return error_mark_node;
11305 /* [dcl.type.class.deduct] prohibits forming an array of placeholder
11306 for a deduced class type. */
11307 if (template_placeholder_p (type))
11309 if (name)
11310 error_at (loc, "%qD declared as array of template placeholder "
11311 "type %qT", name, type);
11312 else
11313 error ("creating array of template placeholder type %qT", type);
11314 return error_mark_node;
11317 /* If there are some types which cannot be array elements,
11318 issue an error-message and return. */
11319 switch (TREE_CODE (type))
11321 case VOID_TYPE:
11322 if (name)
11323 error_at (loc, "declaration of %qD as array of void", name);
11324 else
11325 error ("creating array of void");
11326 return error_mark_node;
11328 case FUNCTION_TYPE:
11329 if (name)
11330 error_at (loc, "declaration of %qD as array of functions", name);
11331 else
11332 error ("creating array of functions");
11333 return error_mark_node;
11335 case REFERENCE_TYPE:
11336 if (name)
11337 error_at (loc, "declaration of %qD as array of references", name);
11338 else
11339 error ("creating array of references");
11340 return error_mark_node;
11342 case METHOD_TYPE:
11343 if (name)
11344 error_at (loc, "declaration of %qD as array of function members",
11345 name);
11346 else
11347 error ("creating array of function members");
11348 return error_mark_node;
11350 default:
11351 break;
11354 if (!verify_type_context (name ? loc : input_location,
11355 TCTX_ARRAY_ELEMENT, type))
11356 return error_mark_node;
11358 /* [dcl.array]
11360 The constant expressions that specify the bounds of the arrays
11361 can be omitted only for the first member of the sequence. */
11362 if (TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type))
11364 if (name)
11365 error_at (loc, "declaration of %qD as multidimensional array must "
11366 "have bounds for all dimensions except the first",
11367 name);
11368 else
11369 error ("multidimensional array must have bounds for all "
11370 "dimensions except the first");
11372 return error_mark_node;
11375 /* Figure out the index type for the array. */
11376 if (size)
11378 itype = compute_array_index_type_loc (loc, name, size,
11379 tf_warning_or_error);
11380 if (type_uses_auto (type)
11381 && variably_modified_type_p (itype, /*fn=*/NULL_TREE))
11383 sorry_at (loc, "variable-length array of %<auto%>");
11384 return error_mark_node;
11388 return build_cplus_array_type (type, itype);
11391 /* Returns the smallest location that is not UNKNOWN_LOCATION. */
11393 static location_t
11394 min_location (location_t loca, location_t locb)
11396 if (loca == UNKNOWN_LOCATION
11397 || (locb != UNKNOWN_LOCATION
11398 && linemap_location_before_p (line_table, locb, loca)))
11399 return locb;
11400 return loca;
11403 /* Returns the smallest location != UNKNOWN_LOCATION among the
11404 three stored in LOCATIONS[ds_const], LOCATIONS[ds_volatile],
11405 and LOCATIONS[ds_restrict]. */
11407 static location_t
11408 smallest_type_quals_location (int type_quals, const location_t* locations)
11410 location_t loc = UNKNOWN_LOCATION;
11412 if (type_quals & TYPE_QUAL_CONST)
11413 loc = locations[ds_const];
11415 if (type_quals & TYPE_QUAL_VOLATILE)
11416 loc = min_location (loc, locations[ds_volatile]);
11418 if (type_quals & TYPE_QUAL_RESTRICT)
11419 loc = min_location (loc, locations[ds_restrict]);
11421 return loc;
11424 /* Returns the smallest among the latter and locations[ds_type_spec]. */
11426 static location_t
11427 smallest_type_location (int type_quals, const location_t* locations)
11429 location_t loc = smallest_type_quals_location (type_quals, locations);
11430 return min_location (loc, locations[ds_type_spec]);
11433 static location_t
11434 smallest_type_location (const cp_decl_specifier_seq *declspecs)
11436 int type_quals = get_type_quals (declspecs);
11437 return smallest_type_location (type_quals, declspecs->locations);
11440 /* Check that it's OK to declare a function with the indicated TYPE
11441 and TYPE_QUALS. SFK indicates the kind of special function (if any)
11442 that this function is. OPTYPE is the type given in a conversion
11443 operator declaration, or the class type for a constructor/destructor.
11444 Returns the actual return type of the function; that may be different
11445 than TYPE if an error occurs, or for certain special functions. */
11447 static tree
11448 check_special_function_return_type (special_function_kind sfk,
11449 tree type,
11450 tree optype,
11451 int type_quals,
11452 const location_t* locations)
11454 switch (sfk)
11456 case sfk_constructor:
11457 if (type)
11458 error_at (smallest_type_location (type_quals, locations),
11459 "return type specification for constructor invalid");
11460 else if (type_quals != TYPE_UNQUALIFIED)
11461 error_at (smallest_type_quals_location (type_quals, locations),
11462 "qualifiers are not allowed on constructor declaration");
11464 if (targetm.cxx.cdtor_returns_this ())
11465 type = build_pointer_type (optype);
11466 else
11467 type = void_type_node;
11468 break;
11470 case sfk_destructor:
11471 if (type)
11472 error_at (smallest_type_location (type_quals, locations),
11473 "return type specification for destructor invalid");
11474 else if (type_quals != TYPE_UNQUALIFIED)
11475 error_at (smallest_type_quals_location (type_quals, locations),
11476 "qualifiers are not allowed on destructor declaration");
11478 /* We can't use the proper return type here because we run into
11479 problems with ambiguous bases and covariant returns. */
11480 if (targetm.cxx.cdtor_returns_this ())
11481 type = build_pointer_type (void_type_node);
11482 else
11483 type = void_type_node;
11484 break;
11486 case sfk_conversion:
11487 if (type)
11488 error_at (smallest_type_location (type_quals, locations),
11489 "return type specified for %<operator %T%>", optype);
11490 else if (type_quals != TYPE_UNQUALIFIED)
11491 error_at (smallest_type_quals_location (type_quals, locations),
11492 "qualifiers are not allowed on declaration of "
11493 "%<operator %T%>", optype);
11495 type = optype;
11496 break;
11498 case sfk_deduction_guide:
11499 if (type)
11500 error_at (smallest_type_location (type_quals, locations),
11501 "return type specified for deduction guide");
11502 else if (type_quals != TYPE_UNQUALIFIED)
11503 error_at (smallest_type_quals_location (type_quals, locations),
11504 "qualifiers are not allowed on declaration of "
11505 "deduction guide");
11506 if (TREE_CODE (optype) == TEMPLATE_TEMPLATE_PARM)
11508 error ("template template parameter %qT in declaration of "
11509 "deduction guide", optype);
11510 type = error_mark_node;
11512 else
11513 type = make_template_placeholder (CLASSTYPE_TI_TEMPLATE (optype));
11514 for (int i = 0; i < ds_last; ++i)
11515 if (i != ds_explicit && locations[i])
11516 error_at (locations[i],
11517 "%<decl-specifier%> in declaration of deduction guide");
11518 break;
11520 default:
11521 gcc_unreachable ();
11524 return type;
11527 /* A variable or data member (whose unqualified name is IDENTIFIER)
11528 has been declared with the indicated TYPE. If the TYPE is not
11529 acceptable, issue an error message and return a type to use for
11530 error-recovery purposes. */
11532 tree
11533 check_var_type (tree identifier, tree type, location_t loc)
11535 if (VOID_TYPE_P (type))
11537 if (!identifier)
11538 error_at (loc, "unnamed variable or field declared void");
11539 else if (identifier_p (identifier))
11541 gcc_assert (!IDENTIFIER_ANY_OP_P (identifier));
11542 error_at (loc, "variable or field %qE declared void",
11543 identifier);
11545 else
11546 error_at (loc, "variable or field declared void");
11547 type = error_mark_node;
11550 return type;
11553 /* Handle declaring DECL as an inline variable. */
11555 static void
11556 mark_inline_variable (tree decl, location_t loc)
11558 bool inlinep = true;
11559 if (! toplevel_bindings_p ())
11561 error_at (loc, "%<inline%> specifier invalid for variable "
11562 "%qD declared at block scope", decl);
11563 inlinep = false;
11565 else if (cxx_dialect < cxx17)
11566 pedwarn (loc, OPT_Wc__17_extensions, "inline variables are only available "
11567 "with %<-std=c++17%> or %<-std=gnu++17%>");
11568 if (inlinep)
11570 retrofit_lang_decl (decl);
11571 SET_DECL_VAR_DECLARED_INLINE_P (decl);
11576 /* Assign a typedef-given name to a class or enumeration type declared
11577 as anonymous at first. This was split out of grokdeclarator
11578 because it is also used in libcc1. */
11580 void
11581 name_unnamed_type (tree type, tree decl)
11583 gcc_assert (TYPE_UNNAMED_P (type));
11585 /* Replace the anonymous decl with the real decl. Be careful not to
11586 rename other typedefs (such as the self-reference) of type. */
11587 tree orig = TYPE_NAME (type);
11588 for (tree t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
11589 if (TYPE_NAME (t) == orig)
11590 TYPE_NAME (t) = decl;
11592 /* If this is a typedef within a template class, the nested
11593 type is a (non-primary) template. The name for the
11594 template needs updating as well. */
11595 if (TYPE_LANG_SPECIFIC (type) && CLASSTYPE_TEMPLATE_INFO (type))
11596 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type)) = DECL_NAME (decl);
11598 /* Adjust linkage now that we aren't unnamed anymore. */
11599 reset_type_linkage (type);
11601 /* FIXME remangle member functions; member functions of a
11602 type with external linkage have external linkage. */
11604 /* Check that our job is done, and that it would fail if we
11605 attempted to do it again. */
11606 gcc_assert (!TYPE_UNNAMED_P (type));
11609 /* Check that decltype(auto) was well-formed: only plain decltype(auto)
11610 is allowed. TYPE might contain a decltype(auto). Returns true if
11611 there was a problem, false otherwise. */
11613 static bool
11614 check_decltype_auto (location_t loc, tree type)
11616 if (tree a = type_uses_auto (type))
11618 if (AUTO_IS_DECLTYPE (a))
11620 if (a != type)
11622 error_at (loc, "%qT as type rather than plain "
11623 "%<decltype(auto)%>", type);
11624 return true;
11626 else if (TYPE_QUALS (type) != TYPE_UNQUALIFIED)
11628 error_at (loc, "%<decltype(auto)%> cannot be cv-qualified");
11629 return true;
11633 return false;
11636 /* Given declspecs and a declarator (abstract or otherwise), determine
11637 the name and type of the object declared and construct a DECL node
11638 for it.
11640 DECLSPECS points to the representation of declaration-specifier
11641 sequence that precedes declarator.
11643 DECL_CONTEXT says which syntactic context this declaration is in:
11644 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
11645 FUNCDEF for a function definition. Like NORMAL but a few different
11646 error messages in each case. Return value may be zero meaning
11647 this definition is too screwy to try to parse.
11648 MEMFUNCDEF for a function definition. Like FUNCDEF but prepares to
11649 handle member functions (which have FIELD context).
11650 Return value may be zero meaning this definition is too screwy to
11651 try to parse.
11652 PARM for a parameter declaration (either within a function prototype
11653 or before a function body). Make a PARM_DECL, or return void_type_node.
11654 TPARM for a template parameter declaration.
11655 CATCHPARM for a parameter declaration before a catch clause.
11656 TYPENAME if for a typename (in a cast or sizeof).
11657 Don't make a DECL node; just return the ..._TYPE node.
11658 FIELD for a struct or union field; make a FIELD_DECL.
11659 BITFIELD for a field with specified width.
11661 INITIALIZED is as for start_decl.
11663 ATTRLIST is a pointer to the list of attributes, which may be NULL
11664 if there are none; *ATTRLIST may be modified if attributes from inside
11665 the declarator should be applied to the declaration.
11667 When this function is called, scoping variables (such as
11668 CURRENT_CLASS_TYPE) should reflect the scope in which the
11669 declaration occurs, not the scope in which the new declaration will
11670 be placed. For example, on:
11672 void S::f() { ... }
11674 when grokdeclarator is called for `S::f', the CURRENT_CLASS_TYPE
11675 should not be `S'.
11677 Returns a DECL (if a declarator is present), a TYPE (if there is no
11678 declarator, in cases like "struct S;"), or the ERROR_MARK_NODE if an
11679 error occurs. */
11681 tree
11682 grokdeclarator (const cp_declarator *declarator,
11683 cp_decl_specifier_seq *declspecs,
11684 enum decl_context decl_context,
11685 int initialized,
11686 tree* attrlist)
11688 tree type = NULL_TREE;
11689 int longlong = 0;
11690 int explicit_intN = 0;
11691 int int_n_alt = 0;
11692 int virtualp, explicitp, friendp, inlinep, staticp;
11693 int explicit_int = 0;
11694 int explicit_char = 0;
11695 int defaulted_int = 0;
11697 tree typedef_decl = NULL_TREE;
11698 const char *name = NULL;
11699 tree typedef_type = NULL_TREE;
11700 /* True if this declarator is a function definition. */
11701 bool funcdef_flag = false;
11702 cp_declarator_kind innermost_code = cdk_error;
11703 int bitfield = 0;
11704 #if 0
11705 /* See the code below that used this. */
11706 tree decl_attr = NULL_TREE;
11707 #endif
11709 /* Keep track of what sort of function is being processed
11710 so that we can warn about default return values, or explicit
11711 return values which do not match prescribed defaults. */
11712 special_function_kind sfk = sfk_none;
11714 tree dname = NULL_TREE;
11715 tree ctor_return_type = NULL_TREE;
11716 enum overload_flags flags = NO_SPECIAL;
11717 /* cv-qualifiers that apply to the declarator, for a declaration of
11718 a member function. */
11719 cp_cv_quals memfn_quals = TYPE_UNQUALIFIED;
11720 /* virt-specifiers that apply to the declarator, for a declaration of
11721 a member function. */
11722 cp_virt_specifiers virt_specifiers = VIRT_SPEC_UNSPECIFIED;
11723 /* ref-qualifier that applies to the declarator, for a declaration of
11724 a member function. */
11725 cp_ref_qualifier rqual = REF_QUAL_NONE;
11726 /* cv-qualifiers that apply to the type specified by the DECLSPECS. */
11727 int type_quals = get_type_quals (declspecs);
11728 tree raises = NULL_TREE;
11729 int template_count = 0;
11730 tree returned_attrs = NULL_TREE;
11731 tree parms = NULL_TREE;
11732 const cp_declarator *id_declarator;
11733 /* The unqualified name of the declarator; either an
11734 IDENTIFIER_NODE, BIT_NOT_EXPR, or TEMPLATE_ID_EXPR. */
11735 tree unqualified_id;
11736 /* The class type, if any, in which this entity is located,
11737 or NULL_TREE if none. Note that this value may be different from
11738 the current class type; for example if an attempt is made to declare
11739 "A::f" inside "B", this value will be "A". */
11740 tree ctype = current_class_type;
11741 /* The NAMESPACE_DECL for the namespace in which this entity is
11742 located. If an unqualified name is used to declare the entity,
11743 this value will be NULL_TREE, even if the entity is located at
11744 namespace scope. */
11745 tree in_namespace = NULL_TREE;
11746 cp_storage_class storage_class;
11747 bool unsigned_p, signed_p, short_p, long_p, thread_p;
11748 bool type_was_error_mark_node = false;
11749 bool parameter_pack_p = declarator ? declarator->parameter_pack_p : false;
11750 bool template_type_arg = false;
11751 bool template_parm_flag = false;
11752 bool typedef_p = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
11753 bool constexpr_p = decl_spec_seq_has_spec_p (declspecs, ds_constexpr);
11754 bool constinit_p = decl_spec_seq_has_spec_p (declspecs, ds_constinit);
11755 bool consteval_p = decl_spec_seq_has_spec_p (declspecs, ds_consteval);
11756 bool late_return_type_p = false;
11757 bool array_parameter_p = false;
11758 tree reqs = NULL_TREE;
11760 signed_p = decl_spec_seq_has_spec_p (declspecs, ds_signed);
11761 unsigned_p = decl_spec_seq_has_spec_p (declspecs, ds_unsigned);
11762 short_p = decl_spec_seq_has_spec_p (declspecs, ds_short);
11763 long_p = decl_spec_seq_has_spec_p (declspecs, ds_long);
11764 longlong = decl_spec_seq_has_spec_p (declspecs, ds_long_long);
11765 explicit_intN = declspecs->explicit_intN_p;
11766 int_n_alt = declspecs->int_n_alt;
11767 thread_p = decl_spec_seq_has_spec_p (declspecs, ds_thread);
11769 // Was concept_p specified? Note that ds_concept
11770 // implies ds_constexpr!
11771 bool concept_p = decl_spec_seq_has_spec_p (declspecs, ds_concept);
11772 if (concept_p)
11773 constexpr_p = true;
11775 if (decl_context == FUNCDEF)
11776 funcdef_flag = true, decl_context = NORMAL;
11777 else if (decl_context == MEMFUNCDEF)
11778 funcdef_flag = true, decl_context = FIELD;
11779 else if (decl_context == BITFIELD)
11780 bitfield = 1, decl_context = FIELD;
11781 else if (decl_context == TEMPLATE_TYPE_ARG)
11782 template_type_arg = true, decl_context = TYPENAME;
11783 else if (decl_context == TPARM)
11784 template_parm_flag = true, decl_context = PARM;
11786 if (initialized == SD_DEFAULTED || initialized == SD_DELETED)
11787 funcdef_flag = true;
11789 location_t typespec_loc = loc_or_input_loc (smallest_type_location
11790 (type_quals,
11791 declspecs->locations));
11792 location_t id_loc;
11793 location_t init_loc;
11794 if (declarator)
11796 id_loc = loc_or_input_loc (declarator->id_loc);
11797 init_loc = loc_or_input_loc (declarator->init_loc);
11799 else
11800 init_loc = id_loc = input_location;
11802 /* Look inside a declarator for the name being declared
11803 and get it as a string, for an error message. */
11804 for (id_declarator = declarator;
11805 id_declarator;
11806 id_declarator = id_declarator->declarator)
11808 if (id_declarator->kind != cdk_id)
11809 innermost_code = id_declarator->kind;
11811 switch (id_declarator->kind)
11813 case cdk_function:
11814 if (id_declarator->declarator
11815 && id_declarator->declarator->kind == cdk_id)
11817 sfk = id_declarator->declarator->u.id.sfk;
11818 if (sfk == sfk_destructor)
11819 flags = DTOR_FLAG;
11821 break;
11823 case cdk_id:
11825 tree qualifying_scope = id_declarator->u.id.qualifying_scope;
11826 tree decl = id_declarator->u.id.unqualified_name;
11827 if (!decl)
11828 break;
11829 if (qualifying_scope)
11831 if (check_for_bare_parameter_packs (qualifying_scope,
11832 id_declarator->id_loc))
11833 return error_mark_node;
11834 if (at_function_scope_p ())
11836 /* [dcl.meaning]
11838 A declarator-id shall not be qualified except
11839 for ...
11841 None of the cases are permitted in block
11842 scope. */
11843 if (qualifying_scope == global_namespace)
11844 error ("invalid use of qualified-name %<::%D%>",
11845 decl);
11846 else if (TYPE_P (qualifying_scope))
11847 error ("invalid use of qualified-name %<%T::%D%>",
11848 qualifying_scope, decl);
11849 else
11850 error ("invalid use of qualified-name %<%D::%D%>",
11851 qualifying_scope, decl);
11852 return error_mark_node;
11854 else if (TYPE_P (qualifying_scope))
11856 ctype = qualifying_scope;
11857 if (!MAYBE_CLASS_TYPE_P (ctype))
11859 error_at (id_declarator->id_loc,
11860 "%q#T is not a class or namespace", ctype);
11861 ctype = NULL_TREE;
11863 else if (innermost_code != cdk_function
11864 && current_class_type
11865 && !uniquely_derived_from_p (ctype,
11866 current_class_type))
11868 error_at (id_declarator->id_loc,
11869 "invalid use of qualified-name %<%T::%D%>",
11870 qualifying_scope, decl);
11871 return error_mark_node;
11874 else if (TREE_CODE (qualifying_scope) == NAMESPACE_DECL)
11875 in_namespace = qualifying_scope;
11877 switch (TREE_CODE (decl))
11879 case BIT_NOT_EXPR:
11881 if (innermost_code != cdk_function)
11883 error_at (EXPR_LOCATION (decl),
11884 "declaration of %qE as non-function", decl);
11885 return error_mark_node;
11887 else if (!qualifying_scope
11888 && !(current_class_type && at_class_scope_p ()))
11890 error_at (EXPR_LOCATION (decl),
11891 "declaration of %qE as non-member", decl);
11892 return error_mark_node;
11895 tree type = TREE_OPERAND (decl, 0);
11896 if (TYPE_P (type))
11897 type = constructor_name (type);
11898 name = identifier_to_locale (IDENTIFIER_POINTER (type));
11899 dname = decl;
11901 break;
11903 case TEMPLATE_ID_EXPR:
11905 tree fns = TREE_OPERAND (decl, 0);
11907 dname = fns;
11908 if (!identifier_p (dname))
11909 dname = OVL_NAME (dname);
11911 /* Fall through. */
11913 case IDENTIFIER_NODE:
11914 if (identifier_p (decl))
11915 dname = decl;
11917 if (IDENTIFIER_KEYWORD_P (dname))
11919 error ("declarator-id missing; using reserved word %qD",
11920 dname);
11921 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
11923 else if (!IDENTIFIER_CONV_OP_P (dname))
11924 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
11925 else
11927 gcc_assert (flags == NO_SPECIAL);
11928 flags = TYPENAME_FLAG;
11929 sfk = sfk_conversion;
11930 tree glob = get_global_binding (dname);
11931 if (glob && TREE_CODE (glob) == TYPE_DECL)
11932 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
11933 else
11934 name = "<invalid operator>";
11936 break;
11938 default:
11939 gcc_unreachable ();
11941 break;
11944 case cdk_array:
11945 case cdk_pointer:
11946 case cdk_reference:
11947 case cdk_ptrmem:
11948 break;
11950 case cdk_decomp:
11951 name = "structured binding";
11952 break;
11954 case cdk_error:
11955 return error_mark_node;
11957 default:
11958 gcc_unreachable ();
11960 if (id_declarator->kind == cdk_id)
11961 break;
11964 /* [dcl.fct.edf]
11966 The declarator in a function-definition shall have the form
11967 D1 ( parameter-declaration-clause) ... */
11968 if (funcdef_flag && innermost_code != cdk_function)
11970 error_at (id_loc, "function definition does not declare parameters");
11971 return error_mark_node;
11974 if (flags == TYPENAME_FLAG
11975 && innermost_code != cdk_function
11976 && ! (ctype && !declspecs->any_specifiers_p))
11978 error_at (id_loc, "declaration of %qD as non-function", dname);
11979 return error_mark_node;
11982 if (dname && identifier_p (dname))
11984 if (UDLIT_OPER_P (dname)
11985 && innermost_code != cdk_function)
11987 error_at (id_loc, "declaration of %qD as non-function", dname);
11988 return error_mark_node;
11991 if (IDENTIFIER_ANY_OP_P (dname))
11993 if (typedef_p)
11995 error_at (id_loc, "declaration of %qD as %<typedef%>", dname);
11996 return error_mark_node;
11998 else if (decl_context == PARM || decl_context == CATCHPARM)
12000 error_at (id_loc, "declaration of %qD as parameter", dname);
12001 return error_mark_node;
12006 /* Anything declared one level down from the top level
12007 must be one of the parameters of a function
12008 (because the body is at least two levels down). */
12010 /* This heuristic cannot be applied to C++ nodes! Fixed, however,
12011 by not allowing C++ class definitions to specify their parameters
12012 with xdecls (must be spec.d in the parmlist).
12014 Since we now wait to push a class scope until we are sure that
12015 we are in a legitimate method context, we must set oldcname
12016 explicitly (since current_class_name is not yet alive).
12018 We also want to avoid calling this a PARM if it is in a namespace. */
12020 if (decl_context == NORMAL && !toplevel_bindings_p ())
12022 cp_binding_level *b = current_binding_level;
12023 current_binding_level = b->level_chain;
12024 if (current_binding_level != 0 && toplevel_bindings_p ())
12025 decl_context = PARM;
12026 current_binding_level = b;
12029 if (name == NULL)
12030 name = decl_context == PARM ? "parameter" : "type name";
12032 if (consteval_p && constexpr_p)
12034 error_at (declspecs->locations[ds_consteval],
12035 "both %qs and %qs specified", "constexpr", "consteval");
12036 return error_mark_node;
12039 if (concept_p && typedef_p)
12041 error_at (declspecs->locations[ds_concept],
12042 "%qs cannot appear in a typedef declaration", "concept");
12043 return error_mark_node;
12046 if (constexpr_p && typedef_p)
12048 error_at (declspecs->locations[ds_constexpr],
12049 "%qs cannot appear in a typedef declaration", "constexpr");
12050 return error_mark_node;
12053 if (consteval_p && typedef_p)
12055 error_at (declspecs->locations[ds_consteval],
12056 "%qs cannot appear in a typedef declaration", "consteval");
12057 return error_mark_node;
12060 if (constinit_p && typedef_p)
12062 error_at (declspecs->locations[ds_constinit],
12063 "%qs cannot appear in a typedef declaration", "constinit");
12064 return error_mark_node;
12067 /* [dcl.spec]/2 "At most one of the constexpr, consteval, and constinit
12068 keywords shall appear in a decl-specifier-seq." */
12069 if (constinit_p && constexpr_p)
12071 gcc_rich_location richloc (declspecs->locations[ds_constinit]);
12072 richloc.add_range (declspecs->locations[ds_constexpr]);
12073 error_at (&richloc,
12074 "can use at most one of the %<constinit%> and %<constexpr%> "
12075 "specifiers");
12076 return error_mark_node;
12079 /* If there were multiple types specified in the decl-specifier-seq,
12080 issue an error message. */
12081 if (declspecs->multiple_types_p)
12083 error_at (typespec_loc,
12084 "two or more data types in declaration of %qs", name);
12085 return error_mark_node;
12088 if (declspecs->conflicting_specifiers_p)
12090 error_at (min_location (declspecs->locations[ds_typedef],
12091 declspecs->locations[ds_storage_class]),
12092 "conflicting specifiers in declaration of %qs", name);
12093 return error_mark_node;
12096 /* Extract the basic type from the decl-specifier-seq. */
12097 type = declspecs->type;
12098 if (type == error_mark_node)
12100 type = NULL_TREE;
12101 type_was_error_mark_node = true;
12104 /* Ignore erroneous attributes. */
12105 if (attrlist && *attrlist == error_mark_node)
12106 *attrlist = NULL_TREE;
12108 /* An object declared as __attribute__((unavailable)) suppresses
12109 any reports of being declared with unavailable or deprecated
12110 items. An object declared as __attribute__((deprecated))
12111 suppresses warnings of uses of other deprecated items. */
12112 auto ds = make_temp_override (deprecated_state);
12113 if (attrlist && lookup_attribute ("unavailable", *attrlist))
12114 deprecated_state = UNAVAILABLE_DEPRECATED_SUPPRESS;
12115 else if (attrlist && lookup_attribute ("deprecated", *attrlist))
12116 deprecated_state = DEPRECATED_SUPPRESS;
12118 cp_handle_deprecated_or_unavailable (type);
12119 if (type && TREE_CODE (type) == TYPE_DECL)
12121 cp_warn_deprecated_use_scopes (CP_DECL_CONTEXT (type));
12122 typedef_decl = type;
12123 type = TREE_TYPE (typedef_decl);
12124 if (DECL_ARTIFICIAL (typedef_decl))
12125 cp_handle_deprecated_or_unavailable (type);
12127 /* No type at all: default to `int', and set DEFAULTED_INT
12128 because it was not a user-defined typedef. */
12129 if (type == NULL_TREE)
12131 if (signed_p || unsigned_p || long_p || short_p)
12133 /* These imply 'int'. */
12134 type = integer_type_node;
12135 defaulted_int = 1;
12137 /* If we just have "complex", it is equivalent to "complex double". */
12138 else if (!longlong && !explicit_intN
12139 && decl_spec_seq_has_spec_p (declspecs, ds_complex))
12141 type = double_type_node;
12142 pedwarn (declspecs->locations[ds_complex], OPT_Wpedantic,
12143 "ISO C++ does not support plain %<complex%> meaning "
12144 "%<double complex%>");
12147 /* Gather flags. */
12148 explicit_int = declspecs->explicit_int_p;
12149 explicit_char = declspecs->explicit_char_p;
12151 #if 0
12152 /* See the code below that used this. */
12153 if (typedef_decl)
12154 decl_attr = DECL_ATTRIBUTES (typedef_decl);
12155 #endif
12156 typedef_type = type;
12158 if (sfk == sfk_conversion || sfk == sfk_deduction_guide)
12159 ctor_return_type = TREE_TYPE (dname);
12160 else
12161 ctor_return_type = ctype;
12163 if (sfk != sfk_none)
12165 type = check_special_function_return_type (sfk, type,
12166 ctor_return_type,
12167 type_quals,
12168 declspecs->locations);
12169 type_quals = TYPE_UNQUALIFIED;
12171 else if (type == NULL_TREE)
12173 int is_main;
12175 explicit_int = -1;
12177 /* We handle `main' specially here, because 'main () { }' is so
12178 common. With no options, it is allowed. With -Wreturn-type,
12179 it is a warning. It is only an error with -pedantic-errors. */
12180 is_main = (funcdef_flag
12181 && dname && identifier_p (dname)
12182 && MAIN_NAME_P (dname)
12183 && ctype == NULL_TREE
12184 && in_namespace == NULL_TREE
12185 && current_namespace == global_namespace);
12187 if (type_was_error_mark_node)
12188 /* We've already issued an error, don't complain more. */;
12189 else if (in_system_header_at (id_loc) || flag_ms_extensions)
12190 /* Allow it, sigh. */;
12191 else if (! is_main)
12192 permerror (id_loc, "ISO C++ forbids declaration of %qs with no type",
12193 name);
12194 else if (pedantic)
12195 pedwarn (id_loc, OPT_Wpedantic,
12196 "ISO C++ forbids declaration of %qs with no type", name);
12197 else
12198 warning_at (id_loc, OPT_Wreturn_type,
12199 "ISO C++ forbids declaration of %qs with no type", name);
12201 if (type_was_error_mark_node && template_parm_flag)
12202 /* FIXME we should be able to propagate the error_mark_node as is
12203 for other contexts too. */
12204 type = error_mark_node;
12205 else
12206 type = integer_type_node;
12209 ctype = NULL_TREE;
12211 if (explicit_intN)
12213 if (! int_n_enabled_p[declspecs->int_n_idx])
12215 error_at (declspecs->locations[ds_type_spec],
12216 "%<__int%d%> is not supported by this target",
12217 int_n_data[declspecs->int_n_idx].bitsize);
12218 explicit_intN = false;
12220 /* Don't pedwarn if the alternate "__intN__" form has been used instead
12221 of "__intN". */
12222 else if (!int_n_alt && pedantic)
12223 pedwarn (declspecs->locations[ds_type_spec], OPT_Wpedantic,
12224 "ISO C++ does not support %<__int%d%> for %qs",
12225 int_n_data[declspecs->int_n_idx].bitsize, name);
12228 /* Now process the modifiers that were specified
12229 and check for invalid combinations. */
12231 /* Long double is a special combination. */
12232 if (long_p && !longlong && TYPE_MAIN_VARIANT (type) == double_type_node)
12234 long_p = false;
12235 type = cp_build_qualified_type (long_double_type_node,
12236 cp_type_quals (type));
12239 /* Check all other uses of type modifiers. */
12241 if (unsigned_p || signed_p || long_p || short_p)
12243 location_t loc;
12244 const char *key;
12245 if (unsigned_p)
12247 key = "unsigned";
12248 loc = declspecs->locations[ds_unsigned];
12250 else if (signed_p)
12252 key = "signed";
12253 loc = declspecs->locations[ds_signed];
12255 else if (longlong)
12257 key = "long long";
12258 loc = declspecs->locations[ds_long_long];
12260 else if (long_p)
12262 key = "long";
12263 loc = declspecs->locations[ds_long];
12265 else /* if (short_p) */
12267 key = "short";
12268 loc = declspecs->locations[ds_short];
12271 int ok = 0;
12273 if (signed_p && unsigned_p)
12275 gcc_rich_location richloc (declspecs->locations[ds_signed]);
12276 richloc.add_range (declspecs->locations[ds_unsigned]);
12277 error_at (&richloc,
12278 "%<signed%> and %<unsigned%> specified together");
12280 else if (long_p && short_p)
12282 gcc_rich_location richloc (declspecs->locations[ds_long]);
12283 richloc.add_range (declspecs->locations[ds_short]);
12284 error_at (&richloc, "%<long%> and %<short%> specified together");
12286 else if (TREE_CODE (type) != INTEGER_TYPE
12287 || type == char8_type_node
12288 || type == char16_type_node
12289 || type == char32_type_node
12290 || ((long_p || short_p)
12291 && (explicit_char || explicit_intN)))
12292 error_at (loc, "%qs specified with %qT", key, type);
12293 else if (!explicit_int && !defaulted_int
12294 && !explicit_char && !explicit_intN)
12296 if (typedef_decl)
12298 pedwarn (loc, OPT_Wpedantic, "%qs specified with %qT",
12299 key, type);
12300 ok = !flag_pedantic_errors;
12301 type = DECL_ORIGINAL_TYPE (typedef_decl);
12302 typedef_decl = NULL_TREE;
12304 else if (declspecs->decltype_p)
12305 error_at (loc, "%qs specified with %<decltype%>", key);
12306 else
12307 error_at (loc, "%qs specified with %<typeof%>", key);
12309 else
12310 ok = 1;
12312 /* Discard the type modifiers if they are invalid. */
12313 if (! ok)
12315 unsigned_p = false;
12316 signed_p = false;
12317 long_p = false;
12318 short_p = false;
12319 longlong = 0;
12323 /* Decide whether an integer type is signed or not.
12324 Optionally treat bitfields as signed by default. */
12325 if (unsigned_p
12326 /* [class.bit]
12328 It is implementation-defined whether a plain (neither
12329 explicitly signed or unsigned) char, short, int, or long
12330 bit-field is signed or unsigned.
12332 Naturally, we extend this to long long as well. Note that
12333 this does not include wchar_t. */
12334 || (bitfield && !flag_signed_bitfields
12335 && !signed_p
12336 /* A typedef for plain `int' without `signed' can be
12337 controlled just like plain `int', but a typedef for
12338 `signed int' cannot be so controlled. */
12339 && !(typedef_decl
12340 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl))
12341 && TREE_CODE (type) == INTEGER_TYPE
12342 && !same_type_p (TYPE_MAIN_VARIANT (type), wchar_type_node)))
12344 if (explicit_intN)
12345 type = int_n_trees[declspecs->int_n_idx].unsigned_type;
12346 else if (longlong)
12347 type = long_long_unsigned_type_node;
12348 else if (long_p)
12349 type = long_unsigned_type_node;
12350 else if (short_p)
12351 type = short_unsigned_type_node;
12352 else if (type == char_type_node)
12353 type = unsigned_char_type_node;
12354 else if (typedef_decl)
12355 type = unsigned_type_for (type);
12356 else
12357 type = unsigned_type_node;
12359 else if (signed_p && type == char_type_node)
12360 type = signed_char_type_node;
12361 else if (explicit_intN)
12362 type = int_n_trees[declspecs->int_n_idx].signed_type;
12363 else if (longlong)
12364 type = long_long_integer_type_node;
12365 else if (long_p)
12366 type = long_integer_type_node;
12367 else if (short_p)
12368 type = short_integer_type_node;
12370 if (decl_spec_seq_has_spec_p (declspecs, ds_complex))
12372 if (TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
12373 error_at (declspecs->locations[ds_complex],
12374 "complex invalid for %qs", name);
12375 /* If a modifier is specified, the resulting complex is the complex
12376 form of TYPE. E.g, "complex short" is "complex short int". */
12377 else if (type == integer_type_node)
12378 type = complex_integer_type_node;
12379 else if (type == float_type_node)
12380 type = complex_float_type_node;
12381 else if (type == double_type_node)
12382 type = complex_double_type_node;
12383 else if (type == long_double_type_node)
12384 type = complex_long_double_type_node;
12385 else
12386 type = build_complex_type (type);
12389 /* If we're using the injected-class-name to form a compound type or a
12390 declaration, replace it with the underlying class so we don't get
12391 redundant typedefs in the debug output. But if we are returning the
12392 type unchanged, leave it alone so that it's available to
12393 maybe_get_template_decl_from_type_decl. */
12394 if (CLASS_TYPE_P (type)
12395 && DECL_SELF_REFERENCE_P (TYPE_NAME (type))
12396 && type == TREE_TYPE (TYPE_NAME (type))
12397 && (declarator || type_quals))
12398 type = DECL_ORIGINAL_TYPE (TYPE_NAME (type));
12400 type_quals |= cp_type_quals (type);
12401 type = cp_build_qualified_type
12402 (type, type_quals, ((((typedef_decl && !DECL_ARTIFICIAL (typedef_decl))
12403 || declspecs->decltype_p)
12404 ? tf_ignore_bad_quals : 0) | tf_warning_or_error));
12405 /* We might have ignored or rejected some of the qualifiers. */
12406 type_quals = cp_type_quals (type);
12408 if (cxx_dialect >= cxx17 && type && is_auto (type)
12409 && innermost_code != cdk_function
12410 && id_declarator && declarator != id_declarator)
12411 if (tree tmpl = CLASS_PLACEHOLDER_TEMPLATE (type))
12413 error_at (typespec_loc, "template placeholder type %qT must be followed "
12414 "by a simple declarator-id", type);
12415 inform (DECL_SOURCE_LOCATION (tmpl), "%qD declared here", tmpl);
12416 type = error_mark_node;
12419 staticp = 0;
12420 inlinep = decl_spec_seq_has_spec_p (declspecs, ds_inline);
12421 virtualp = decl_spec_seq_has_spec_p (declspecs, ds_virtual);
12422 explicitp = decl_spec_seq_has_spec_p (declspecs, ds_explicit);
12424 storage_class = declspecs->storage_class;
12425 if (storage_class == sc_static)
12426 staticp = 1 + (decl_context == FIELD);
12427 else if (decl_context == FIELD && sfk == sfk_deduction_guide)
12428 /* Treat class-scope deduction guides as static member functions
12429 so that they get a FUNCTION_TYPE instead of a METHOD_TYPE. */
12430 staticp = 2;
12432 if (virtualp)
12434 if (staticp == 2)
12436 gcc_rich_location richloc (declspecs->locations[ds_virtual]);
12437 richloc.add_range (declspecs->locations[ds_storage_class]);
12438 error_at (&richloc, "member %qD cannot be declared both %<virtual%> "
12439 "and %<static%>", dname);
12440 storage_class = sc_none;
12441 staticp = 0;
12443 if (constexpr_p && pedantic && cxx_dialect < cxx20)
12445 gcc_rich_location richloc (declspecs->locations[ds_virtual]);
12446 richloc.add_range (declspecs->locations[ds_constexpr]);
12447 pedwarn (&richloc, OPT_Wc__20_extensions, "member %qD can be "
12448 "declared both %<virtual%> and %<constexpr%> only in "
12449 "%<-std=c++20%> or %<-std=gnu++20%>", dname);
12452 friendp = decl_spec_seq_has_spec_p (declspecs, ds_friend);
12454 /* Issue errors about use of storage classes for parameters. */
12455 if (decl_context == PARM)
12457 if (typedef_p)
12459 error_at (declspecs->locations[ds_typedef],
12460 "typedef declaration invalid in parameter declaration");
12461 return error_mark_node;
12463 else if (template_parm_flag && storage_class != sc_none)
12465 error_at (min_location (declspecs->locations[ds_thread],
12466 declspecs->locations[ds_storage_class]),
12467 "storage class specified for template parameter %qs",
12468 name);
12469 return error_mark_node;
12471 else if (storage_class == sc_static
12472 || storage_class == sc_extern
12473 || thread_p)
12475 error_at (min_location (declspecs->locations[ds_thread],
12476 declspecs->locations[ds_storage_class]),
12477 "storage class specified for parameter %qs", name);
12478 return error_mark_node;
12481 /* Function parameters cannot be concept. */
12482 if (concept_p)
12484 error_at (declspecs->locations[ds_concept],
12485 "a parameter cannot be declared %qs", "concept");
12486 concept_p = 0;
12487 constexpr_p = 0;
12489 /* Function parameters cannot be constexpr. If we saw one, moan
12490 and pretend it wasn't there. */
12491 else if (constexpr_p)
12493 error_at (declspecs->locations[ds_constexpr],
12494 "a parameter cannot be declared %qs", "constexpr");
12495 constexpr_p = 0;
12497 if (constinit_p)
12499 error_at (declspecs->locations[ds_constinit],
12500 "a parameter cannot be declared %qs", "constinit");
12501 constinit_p = 0;
12503 if (consteval_p)
12505 error_at (declspecs->locations[ds_consteval],
12506 "a parameter cannot be declared %qs", "consteval");
12507 consteval_p = 0;
12511 /* Give error if `virtual' is used outside of class declaration. */
12512 if (virtualp
12513 && (current_class_name == NULL_TREE || decl_context != FIELD))
12515 error_at (declspecs->locations[ds_virtual],
12516 "%<virtual%> outside class declaration");
12517 virtualp = 0;
12520 if (innermost_code == cdk_decomp)
12522 location_t loc = (declarator->kind == cdk_reference
12523 ? declarator->declarator->id_loc : declarator->id_loc);
12524 if (inlinep)
12525 error_at (declspecs->locations[ds_inline],
12526 "structured binding declaration cannot be %qs", "inline");
12527 if (typedef_p)
12528 error_at (declspecs->locations[ds_typedef],
12529 "structured binding declaration cannot be %qs", "typedef");
12530 if (constexpr_p && !concept_p)
12531 error_at (declspecs->locations[ds_constexpr], "structured "
12532 "binding declaration cannot be %qs", "constexpr");
12533 if (consteval_p)
12534 error_at (declspecs->locations[ds_consteval], "structured "
12535 "binding declaration cannot be %qs", "consteval");
12536 if (thread_p && cxx_dialect < cxx20)
12537 pedwarn (declspecs->locations[ds_thread], OPT_Wc__20_extensions,
12538 "structured binding declaration can be %qs only in "
12539 "%<-std=c++20%> or %<-std=gnu++20%>",
12540 declspecs->gnu_thread_keyword_p
12541 ? "__thread" : "thread_local");
12542 if (concept_p)
12543 error_at (declspecs->locations[ds_concept],
12544 "structured binding declaration cannot be %qs", "concept");
12545 /* [dcl.struct.bind] "A cv that includes volatile is deprecated." */
12546 if (type_quals & TYPE_QUAL_VOLATILE)
12547 warning_at (declspecs->locations[ds_volatile], OPT_Wvolatile,
12548 "%<volatile%>-qualified structured binding is deprecated");
12549 switch (storage_class)
12551 case sc_none:
12552 break;
12553 case sc_register:
12554 error_at (loc, "structured binding declaration cannot be %qs",
12555 "register");
12556 break;
12557 case sc_static:
12558 if (cxx_dialect < cxx20)
12559 pedwarn (loc, OPT_Wc__20_extensions,
12560 "structured binding declaration can be %qs only in "
12561 "%<-std=c++20%> or %<-std=gnu++20%>", "static");
12562 break;
12563 case sc_extern:
12564 error_at (loc, "structured binding declaration cannot be %qs",
12565 "extern");
12566 break;
12567 case sc_mutable:
12568 error_at (loc, "structured binding declaration cannot be %qs",
12569 "mutable");
12570 break;
12571 case sc_auto:
12572 error_at (loc, "structured binding declaration cannot be "
12573 "C++98 %<auto%>");
12574 break;
12575 default:
12576 gcc_unreachable ();
12578 if (TREE_CODE (type) != TEMPLATE_TYPE_PARM
12579 || TYPE_IDENTIFIER (type) != auto_identifier)
12581 if (type != error_mark_node)
12583 error_at (loc, "structured binding declaration cannot have "
12584 "type %qT", type);
12585 inform (loc,
12586 "type must be cv-qualified %<auto%> or reference to "
12587 "cv-qualified %<auto%>");
12589 type = build_qualified_type (make_auto (), type_quals);
12590 declspecs->type = type;
12592 inlinep = 0;
12593 typedef_p = 0;
12594 constexpr_p = 0;
12595 consteval_p = 0;
12596 concept_p = 0;
12597 if (storage_class != sc_static)
12599 storage_class = sc_none;
12600 declspecs->storage_class = sc_none;
12604 /* Static anonymous unions are dealt with here. */
12605 if (staticp && decl_context == TYPENAME
12606 && declspecs->type
12607 && ANON_AGGR_TYPE_P (declspecs->type))
12608 decl_context = FIELD;
12610 /* Warn about storage classes that are invalid for certain
12611 kinds of declarations (parameters, typenames, etc.). */
12612 if (thread_p
12613 && ((storage_class
12614 && storage_class != sc_extern
12615 && storage_class != sc_static)
12616 || typedef_p))
12618 location_t loc
12619 = min_location (declspecs->locations[ds_thread],
12620 declspecs->locations[ds_storage_class]);
12621 error_at (loc, "multiple storage classes in declaration of %qs", name);
12622 thread_p = false;
12624 if (decl_context != NORMAL
12625 && ((storage_class != sc_none
12626 && storage_class != sc_mutable)
12627 || thread_p))
12629 if ((decl_context == PARM || decl_context == CATCHPARM)
12630 && (storage_class == sc_register
12631 || storage_class == sc_auto))
12633 else if (typedef_p)
12635 else if (decl_context == FIELD
12636 /* C++ allows static class elements. */
12637 && storage_class == sc_static)
12638 /* C++ also allows inlines and signed and unsigned elements,
12639 but in those cases we don't come in here. */
12641 else
12643 location_t loc
12644 = min_location (declspecs->locations[ds_thread],
12645 declspecs->locations[ds_storage_class]);
12646 if (decl_context == FIELD)
12647 error_at (loc, "storage class specified for %qs", name);
12648 else if (decl_context == PARM || decl_context == CATCHPARM)
12649 error_at (loc, "storage class specified for parameter %qs", name);
12650 else
12651 error_at (loc, "storage class specified for typename");
12652 if (storage_class == sc_register
12653 || storage_class == sc_auto
12654 || storage_class == sc_extern
12655 || thread_p)
12656 storage_class = sc_none;
12659 else if (storage_class == sc_extern && funcdef_flag
12660 && ! toplevel_bindings_p ())
12661 error ("nested function %qs declared %<extern%>", name);
12662 else if (toplevel_bindings_p ())
12664 if (storage_class == sc_auto)
12665 error_at (declspecs->locations[ds_storage_class],
12666 "top-level declaration of %qs specifies %<auto%>", name);
12668 else if (thread_p
12669 && storage_class != sc_extern
12670 && storage_class != sc_static)
12672 if (declspecs->gnu_thread_keyword_p)
12673 pedwarn (declspecs->locations[ds_thread],
12674 0, "function-scope %qs implicitly auto and "
12675 "declared %<__thread%>", name);
12677 /* When thread_local is applied to a variable of block scope the
12678 storage-class-specifier static is implied if it does not appear
12679 explicitly. */
12680 storage_class = declspecs->storage_class = sc_static;
12681 staticp = 1;
12684 if (storage_class && friendp)
12686 error_at (min_location (declspecs->locations[ds_thread],
12687 declspecs->locations[ds_storage_class]),
12688 "storage class specifiers invalid in friend function "
12689 "declarations");
12690 storage_class = sc_none;
12691 staticp = 0;
12694 if (!id_declarator)
12695 unqualified_id = NULL_TREE;
12696 else
12698 unqualified_id = id_declarator->u.id.unqualified_name;
12699 switch (TREE_CODE (unqualified_id))
12701 case BIT_NOT_EXPR:
12702 unqualified_id = TREE_OPERAND (unqualified_id, 0);
12703 if (TYPE_P (unqualified_id))
12704 unqualified_id = constructor_name (unqualified_id);
12705 break;
12707 case IDENTIFIER_NODE:
12708 case TEMPLATE_ID_EXPR:
12709 break;
12711 default:
12712 gcc_unreachable ();
12716 if (declspecs->std_attributes)
12718 location_t attr_loc = declspecs->locations[ds_std_attribute];
12719 if (warning_at (attr_loc, OPT_Wattributes, "attribute ignored"))
12720 inform (attr_loc, "an attribute that appertains to a type-specifier "
12721 "is ignored");
12724 /* Determine the type of the entity declared by recurring on the
12725 declarator. */
12726 for (; declarator; declarator = declarator->declarator)
12728 const cp_declarator *inner_declarator;
12729 tree attrs;
12731 if (type == error_mark_node)
12732 return error_mark_node;
12734 attrs = declarator->attributes;
12735 if (attrs)
12737 int attr_flags;
12739 attr_flags = 0;
12740 if (declarator->kind == cdk_id)
12741 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
12742 if (declarator->kind == cdk_function)
12743 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
12744 if (declarator->kind == cdk_array)
12745 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
12746 tree late_attrs = NULL_TREE;
12747 if (decl_context != PARM && decl_context != TYPENAME)
12748 /* Assume that any attributes that get applied late to
12749 templates will DTRT when applied to the declaration
12750 as a whole. */
12751 late_attrs = splice_template_attributes (&attrs, type);
12752 returned_attrs = decl_attributes (&type,
12753 attr_chainon (returned_attrs,
12754 attrs),
12755 attr_flags);
12756 returned_attrs = attr_chainon (late_attrs, returned_attrs);
12759 inner_declarator = declarator->declarator;
12761 /* We don't want to warn in parameter context because we don't
12762 yet know if the parse will succeed, and this might turn out
12763 to be a constructor call. */
12764 if (decl_context != PARM
12765 && decl_context != TYPENAME
12766 && !typedef_p
12767 && declarator->parenthesized != UNKNOWN_LOCATION
12768 /* If the type is class-like and the inner name used a
12769 global namespace qualifier, we need the parens.
12770 Unfortunately all we can tell is whether a qualified name
12771 was used or not. */
12772 && !(inner_declarator
12773 && inner_declarator->kind == cdk_id
12774 && inner_declarator->u.id.qualifying_scope
12775 && (MAYBE_CLASS_TYPE_P (type)
12776 || TREE_CODE (type) == ENUMERAL_TYPE)))
12778 if (warning_at (declarator->parenthesized, OPT_Wparentheses,
12779 "unnecessary parentheses in declaration of %qs",
12780 name))
12782 gcc_rich_location iloc (declarator->parenthesized);
12783 iloc.add_fixit_remove (get_start (declarator->parenthesized));
12784 iloc.add_fixit_remove (get_finish (declarator->parenthesized));
12785 inform (&iloc, "remove parentheses");
12788 if (declarator->kind == cdk_id || declarator->kind == cdk_decomp)
12789 break;
12791 switch (declarator->kind)
12793 case cdk_array:
12794 type = create_array_type_for_decl (dname, type,
12795 declarator->u.array.bounds,
12796 declarator->id_loc);
12797 if (!valid_array_size_p (dname
12798 ? declarator->id_loc : input_location,
12799 type, dname))
12800 type = error_mark_node;
12802 if (declarator->std_attributes)
12803 /* [dcl.array]/1:
12805 The optional attribute-specifier-seq appertains to the
12806 array. */
12807 returned_attrs = attr_chainon (returned_attrs,
12808 declarator->std_attributes);
12809 break;
12811 case cdk_function:
12813 tree arg_types;
12814 int funcdecl_p;
12816 /* Declaring a function type. */
12818 /* Pick up type qualifiers which should be applied to `this'. */
12819 memfn_quals = declarator->u.function.qualifiers;
12820 /* Pick up virt-specifiers. */
12821 virt_specifiers = declarator->u.function.virt_specifiers;
12822 /* And ref-qualifier, too */
12823 rqual = declarator->u.function.ref_qualifier;
12824 /* And tx-qualifier. */
12825 tree tx_qual = declarator->u.function.tx_qualifier;
12826 /* Pick up the exception specifications. */
12827 raises = declarator->u.function.exception_specification;
12828 /* If the exception-specification is ill-formed, let's pretend
12829 there wasn't one. */
12830 if (raises == error_mark_node)
12831 raises = NULL_TREE;
12833 if (reqs)
12834 error_at (location_of (reqs), "requires-clause on return type");
12835 reqs = declarator->u.function.requires_clause;
12837 /* Say it's a definition only for the CALL_EXPR
12838 closest to the identifier. */
12839 funcdecl_p = inner_declarator && inner_declarator->kind == cdk_id;
12841 /* Handle a late-specified return type. */
12842 tree late_return_type = declarator->u.function.late_return_type;
12843 if (tree auto_node = type_uses_auto (type))
12845 if (!late_return_type)
12847 if (!funcdecl_p)
12848 /* auto (*fp)() = f; is OK. */;
12849 else if (current_class_type
12850 && LAMBDA_TYPE_P (current_class_type))
12851 /* OK for C++11 lambdas. */;
12852 else if (cxx_dialect < cxx14)
12854 error_at (typespec_loc, "%qs function uses "
12855 "%<auto%> type specifier without "
12856 "trailing return type", name);
12857 inform (typespec_loc,
12858 "deduced return type only available "
12859 "with %<-std=c++14%> or %<-std=gnu++14%>");
12861 else if (virtualp)
12863 error_at (typespec_loc, "virtual function "
12864 "cannot have deduced return type");
12865 virtualp = false;
12868 else if (!is_auto (type) && sfk != sfk_conversion)
12870 error_at (typespec_loc, "%qs function with trailing "
12871 "return type has %qT as its type rather "
12872 "than plain %<auto%>", name, type);
12873 return error_mark_node;
12875 else if (is_auto (type) && AUTO_IS_DECLTYPE (type))
12877 if (funcdecl_p)
12878 error_at (typespec_loc,
12879 "%qs function with trailing return type "
12880 "has %<decltype(auto)%> as its type "
12881 "rather than plain %<auto%>", name);
12882 else
12883 error_at (typespec_loc,
12884 "invalid use of %<decltype(auto)%>");
12885 return error_mark_node;
12887 tree tmpl = CLASS_PLACEHOLDER_TEMPLATE (auto_node);
12888 if (!tmpl)
12889 if (tree late_auto = type_uses_auto (late_return_type))
12890 tmpl = CLASS_PLACEHOLDER_TEMPLATE (late_auto);
12891 if (tmpl)
12893 if (!funcdecl_p || !dguide_name_p (unqualified_id))
12895 error_at (typespec_loc, "deduced class "
12896 "type %qD in function return type",
12897 DECL_NAME (tmpl));
12898 inform (DECL_SOURCE_LOCATION (tmpl),
12899 "%qD declared here", tmpl);
12900 return error_mark_node;
12902 else if (!late_return_type)
12904 error_at (declarator->id_loc, "deduction guide "
12905 "for %qT must have trailing return "
12906 "type", TREE_TYPE (tmpl));
12907 inform (DECL_SOURCE_LOCATION (tmpl),
12908 "%qD declared here", tmpl);
12909 return error_mark_node;
12911 else if (CLASS_TYPE_P (late_return_type)
12912 && CLASSTYPE_TEMPLATE_INFO (late_return_type)
12913 && (CLASSTYPE_TI_TEMPLATE (late_return_type)
12914 == tmpl))
12915 /* OK */;
12916 else
12917 error ("trailing return type %qT of deduction guide "
12918 "is not a specialization of %qT",
12919 late_return_type, TREE_TYPE (tmpl));
12922 else if (late_return_type
12923 && sfk != sfk_conversion)
12925 if (late_return_type == error_mark_node)
12926 return error_mark_node;
12927 if (cxx_dialect < cxx11)
12928 /* Not using maybe_warn_cpp0x because this should
12929 always be an error. */
12930 error_at (typespec_loc,
12931 "trailing return type only available "
12932 "with %<-std=c++11%> or %<-std=gnu++11%>");
12933 else
12934 error_at (typespec_loc, "%qs function with trailing "
12935 "return type not declared with %<auto%> "
12936 "type specifier", name);
12937 return error_mark_node;
12939 if (late_return_type && sfk == sfk_conversion)
12941 error ("a conversion function cannot have a trailing return type");
12942 return error_mark_node;
12944 type = splice_late_return_type (type, late_return_type);
12945 if (type == error_mark_node)
12946 return error_mark_node;
12948 if (late_return_type)
12950 late_return_type_p = true;
12951 type_quals = cp_type_quals (type);
12954 if (type_quals != TYPE_UNQUALIFIED)
12956 if (SCALAR_TYPE_P (type) || VOID_TYPE_P (type))
12957 warning_at (typespec_loc, OPT_Wignored_qualifiers, "type "
12958 "qualifiers ignored on function return type");
12959 /* [dcl.fct] "A volatile-qualified return type is
12960 deprecated." */
12961 if (type_quals & TYPE_QUAL_VOLATILE)
12962 warning_at (typespec_loc, OPT_Wvolatile,
12963 "%<volatile%>-qualified return type is "
12964 "deprecated");
12966 /* We now know that the TYPE_QUALS don't apply to the
12967 decl, but to its return type. */
12968 type_quals = TYPE_UNQUALIFIED;
12971 /* Error about some types functions can't return. */
12973 if (TREE_CODE (type) == FUNCTION_TYPE)
12975 error_at (typespec_loc, "%qs declared as function returning "
12976 "a function", name);
12977 return error_mark_node;
12979 if (TREE_CODE (type) == ARRAY_TYPE)
12981 error_at (typespec_loc, "%qs declared as function returning "
12982 "an array", name);
12983 return error_mark_node;
12985 if (constinit_p)
12987 error_at (declspecs->locations[ds_constinit],
12988 "%<constinit%> on function return type is not "
12989 "allowed");
12990 return error_mark_node;
12993 if (check_decltype_auto (typespec_loc, type))
12994 return error_mark_node;
12996 if (ctype == NULL_TREE
12997 && decl_context == FIELD
12998 && funcdecl_p
12999 && friendp == 0)
13000 ctype = current_class_type;
13002 if (ctype && (sfk == sfk_constructor
13003 || sfk == sfk_destructor))
13005 /* We are within a class's scope. If our declarator name
13006 is the same as the class name, and we are defining
13007 a function, then it is a constructor/destructor, and
13008 therefore returns a void type. */
13010 /* ISO C++ 12.4/2. A destructor may not be declared
13011 const or volatile. A destructor may not be static.
13012 A destructor may not be declared with ref-qualifier.
13014 ISO C++ 12.1. A constructor may not be declared
13015 const or volatile. A constructor may not be
13016 virtual. A constructor may not be static.
13017 A constructor may not be declared with ref-qualifier. */
13018 if (staticp == 2)
13019 error_at (declspecs->locations[ds_storage_class],
13020 (flags == DTOR_FLAG)
13021 ? G_("destructor cannot be static member "
13022 "function")
13023 : G_("constructor cannot be static member "
13024 "function"));
13025 if (memfn_quals)
13027 error ((flags == DTOR_FLAG)
13028 ? G_("destructors may not be cv-qualified")
13029 : G_("constructors may not be cv-qualified"));
13030 memfn_quals = TYPE_UNQUALIFIED;
13033 if (rqual)
13035 maybe_warn_cpp0x (CPP0X_REF_QUALIFIER);
13036 error ((flags == DTOR_FLAG)
13037 ? G_("destructors may not be ref-qualified")
13038 : G_("constructors may not be ref-qualified"));
13039 rqual = REF_QUAL_NONE;
13042 if (decl_context == FIELD
13043 && !member_function_or_else (ctype,
13044 current_class_type,
13045 flags))
13046 return error_mark_node;
13048 if (flags != DTOR_FLAG)
13050 /* It's a constructor. */
13051 if (explicitp == 1)
13052 explicitp = 2;
13053 if (virtualp)
13055 permerror (declspecs->locations[ds_virtual],
13056 "constructors cannot be declared %<virtual%>");
13057 virtualp = 0;
13059 if (decl_context == FIELD
13060 && sfk != sfk_constructor)
13061 return error_mark_node;
13063 if (decl_context == FIELD)
13064 staticp = 0;
13066 else if (friendp)
13068 if (virtualp)
13070 /* Cannot be both friend and virtual. */
13071 gcc_rich_location richloc (declspecs->locations[ds_virtual]);
13072 richloc.add_range (declspecs->locations[ds_friend]);
13073 error_at (&richloc, "virtual functions cannot be friends");
13074 friendp = 0;
13076 if (decl_context == NORMAL)
13077 error_at (declarator->id_loc,
13078 "friend declaration not in class definition");
13079 if (current_function_decl && funcdef_flag)
13081 error_at (declarator->id_loc,
13082 "cannot define friend function %qs in a local "
13083 "class definition", name);
13084 friendp = 0;
13086 /* [class.friend]/6: A function can be defined in a friend
13087 declaration if the function name is unqualified. */
13088 if (funcdef_flag && in_namespace)
13090 if (in_namespace == global_namespace)
13091 error_at (declarator->id_loc,
13092 "friend function definition %qs cannot have "
13093 "a name qualified with %<::%>", name);
13094 else
13095 error_at (declarator->id_loc,
13096 "friend function definition %qs cannot have "
13097 "a name qualified with %<%D::%>", name,
13098 in_namespace);
13101 else if (ctype && sfk == sfk_conversion)
13103 if (explicitp == 1)
13105 maybe_warn_cpp0x (CPP0X_EXPLICIT_CONVERSION);
13106 explicitp = 2;
13109 else if (sfk == sfk_deduction_guide)
13111 if (explicitp == 1)
13112 explicitp = 2;
13115 tree pushed_scope = NULL_TREE;
13116 if (funcdecl_p
13117 && decl_context != FIELD
13118 && inner_declarator->u.id.qualifying_scope
13119 && CLASS_TYPE_P (inner_declarator->u.id.qualifying_scope))
13120 pushed_scope
13121 = push_scope (inner_declarator->u.id.qualifying_scope);
13123 arg_types = grokparms (declarator->u.function.parameters, &parms);
13125 if (pushed_scope)
13126 pop_scope (pushed_scope);
13128 if (inner_declarator
13129 && inner_declarator->kind == cdk_id
13130 && inner_declarator->u.id.sfk == sfk_destructor
13131 && arg_types != void_list_node)
13133 error_at (declarator->id_loc,
13134 "destructors may not have parameters");
13135 arg_types = void_list_node;
13136 parms = NULL_TREE;
13139 type = build_function_type (type, arg_types);
13141 tree attrs = declarator->std_attributes;
13142 if (tx_qual)
13144 tree att = build_tree_list (tx_qual, NULL_TREE);
13145 /* transaction_safe applies to the type, but
13146 transaction_safe_dynamic applies to the function. */
13147 if (is_attribute_p ("transaction_safe", tx_qual))
13148 attrs = attr_chainon (attrs, att);
13149 else
13150 returned_attrs = attr_chainon (returned_attrs, att);
13152 if (attrs)
13153 /* [dcl.fct]/2:
13155 The optional attribute-specifier-seq appertains to
13156 the function type. */
13157 cplus_decl_attributes (&type, attrs, 0);
13159 if (raises)
13160 type = build_exception_variant (type, raises);
13162 break;
13164 case cdk_pointer:
13165 case cdk_reference:
13166 case cdk_ptrmem:
13167 /* Filter out pointers-to-references and references-to-references.
13168 We can get these if a TYPE_DECL is used. */
13170 if (TYPE_REF_P (type))
13172 if (declarator->kind != cdk_reference)
13174 error ("cannot declare pointer to %q#T", type);
13175 type = TREE_TYPE (type);
13178 /* In C++0x, we allow reference to reference declarations
13179 that occur indirectly through typedefs [7.1.3/8 dcl.typedef]
13180 and template type arguments [14.3.1/4 temp.arg.type]. The
13181 check for direct reference to reference declarations, which
13182 are still forbidden, occurs below. Reasoning behind the change
13183 can be found in DR106, DR540, and the rvalue reference
13184 proposals. */
13185 else if (cxx_dialect == cxx98)
13187 error ("cannot declare reference to %q#T", type);
13188 type = TREE_TYPE (type);
13191 else if (VOID_TYPE_P (type))
13193 if (declarator->kind == cdk_reference)
13194 error ("cannot declare reference to %q#T", type);
13195 else if (declarator->kind == cdk_ptrmem)
13196 error ("cannot declare pointer to %q#T member", type);
13199 /* We now know that the TYPE_QUALS don't apply to the decl,
13200 but to the target of the pointer. */
13201 type_quals = TYPE_UNQUALIFIED;
13203 /* This code used to handle METHOD_TYPE, but I don't think it's
13204 possible to get it here anymore. */
13205 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
13206 if (declarator->kind == cdk_ptrmem
13207 && TREE_CODE (type) == FUNCTION_TYPE)
13209 memfn_quals |= type_memfn_quals (type);
13210 type = build_memfn_type (type,
13211 declarator->u.pointer.class_type,
13212 memfn_quals,
13213 rqual);
13214 if (type == error_mark_node)
13215 return error_mark_node;
13217 rqual = REF_QUAL_NONE;
13218 memfn_quals = TYPE_UNQUALIFIED;
13221 if (TREE_CODE (type) == FUNCTION_TYPE
13222 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
13223 || type_memfn_rqual (type) != REF_QUAL_NONE))
13224 error (declarator->kind == cdk_reference
13225 ? G_("cannot declare reference to qualified function type %qT")
13226 : G_("cannot declare pointer to qualified function type %qT"),
13227 type);
13229 /* When the pointed-to type involves components of variable size,
13230 care must be taken to ensure that the size evaluation code is
13231 emitted early enough to dominate all the possible later uses
13232 and late enough for the variables on which it depends to have
13233 been assigned.
13235 This is expected to happen automatically when the pointed-to
13236 type has a name/declaration of it's own, but special attention
13237 is required if the type is anonymous.
13239 We handle the NORMAL and FIELD contexts here by inserting a
13240 dummy statement that just evaluates the size at a safe point
13241 and ensures it is not deferred until e.g. within a deeper
13242 conditional context (c++/43555).
13244 We expect nothing to be needed here for PARM or TYPENAME.
13245 Evaluating the size at this point for TYPENAME would
13246 actually be incorrect, as we might be in the middle of an
13247 expression with side effects on the pointed-to type size
13248 "arguments" prior to the pointer declaration point and the
13249 size evaluation could end up prior to the side effects. */
13251 if (!TYPE_NAME (type)
13252 && (decl_context == NORMAL || decl_context == FIELD)
13253 && at_function_scope_p ()
13254 && variably_modified_type_p (type, NULL_TREE))
13256 TYPE_NAME (type) = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
13257 NULL_TREE, type);
13258 add_decl_expr (TYPE_NAME (type));
13261 if (declarator->kind == cdk_reference)
13263 /* In C++0x, the type we are creating a reference to might be
13264 a typedef which is itself a reference type. In that case,
13265 we follow the reference collapsing rules in
13266 [7.1.3/8 dcl.typedef] to create the final reference type:
13268 "If a typedef TD names a type that is a reference to a type
13269 T, an attempt to create the type 'lvalue reference to cv TD'
13270 creates the type 'lvalue reference to T,' while an attempt
13271 to create the type "rvalue reference to cv TD' creates the
13272 type TD."
13274 if (VOID_TYPE_P (type))
13275 /* We already gave an error. */;
13276 else if (TYPE_REF_P (type))
13278 if (declarator->u.reference.rvalue_ref)
13279 /* Leave type alone. */;
13280 else
13281 type = cp_build_reference_type (TREE_TYPE (type), false);
13283 else
13284 type = cp_build_reference_type
13285 (type, declarator->u.reference.rvalue_ref);
13287 /* In C++0x, we need this check for direct reference to
13288 reference declarations, which are forbidden by
13289 [8.3.2/5 dcl.ref]. Reference to reference declarations
13290 are only allowed indirectly through typedefs and template
13291 type arguments. Example:
13293 void foo(int & &); // invalid ref-to-ref decl
13295 typedef int & int_ref;
13296 void foo(int_ref &); // valid ref-to-ref decl
13298 if (inner_declarator && inner_declarator->kind == cdk_reference)
13299 error ("cannot declare reference to %q#T, which is not "
13300 "a typedef or a template type argument", type);
13302 else if (TREE_CODE (type) == METHOD_TYPE)
13303 type = build_ptrmemfunc_type (build_pointer_type (type));
13304 else if (declarator->kind == cdk_ptrmem)
13306 gcc_assert (TREE_CODE (declarator->u.pointer.class_type)
13307 != NAMESPACE_DECL);
13308 if (declarator->u.pointer.class_type == error_mark_node)
13309 /* We will already have complained. */
13310 type = error_mark_node;
13311 else
13312 type = build_ptrmem_type (declarator->u.pointer.class_type,
13313 type);
13315 else
13316 type = build_pointer_type (type);
13318 /* Process a list of type modifier keywords (such as
13319 const or volatile) that were given inside the `*' or `&'. */
13321 if (declarator->u.pointer.qualifiers)
13323 type
13324 = cp_build_qualified_type (type,
13325 declarator->u.pointer.qualifiers);
13326 type_quals = cp_type_quals (type);
13329 /* Apply C++11 attributes to the pointer, and not to the
13330 type pointed to. This is unlike what is done for GNU
13331 attributes above. It is to comply with [dcl.ptr]/1:
13333 [the optional attribute-specifier-seq (7.6.1) appertains
13334 to the pointer and not to the object pointed to]. */
13335 if (declarator->std_attributes)
13336 decl_attributes (&type, declarator->std_attributes,
13339 ctype = NULL_TREE;
13340 break;
13342 case cdk_error:
13343 break;
13345 default:
13346 gcc_unreachable ();
13350 id_loc = declarator ? declarator->id_loc : input_location;
13352 if (innermost_code != cdk_function
13353 /* Don't check this if it can be the artifical decltype(auto)
13354 we created when building a constraint in a compound-requirement:
13355 that the type-constraint is plain is going to be checked in
13356 cp_parser_compound_requirement. */
13357 && decl_context != TYPENAME
13358 && check_decltype_auto (id_loc, type))
13359 return error_mark_node;
13361 /* A `constexpr' specifier used in an object declaration declares
13362 the object as `const'. */
13363 if (constexpr_p && innermost_code != cdk_function)
13365 /* DR1688 says that a `constexpr' specifier in combination with
13366 `volatile' is valid. */
13368 if (!TYPE_REF_P (type))
13370 type_quals |= TYPE_QUAL_CONST;
13371 type = cp_build_qualified_type (type, type_quals);
13375 if (unqualified_id && TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR
13376 && !FUNC_OR_METHOD_TYPE_P (type)
13377 && !variable_template_p (TREE_OPERAND (unqualified_id, 0)))
13379 error ("template-id %qD used as a declarator",
13380 unqualified_id);
13381 unqualified_id = dname;
13384 /* If TYPE is a FUNCTION_TYPE, but the function name was explicitly
13385 qualified with a class-name, turn it into a METHOD_TYPE, unless
13386 we know that the function is static. We take advantage of this
13387 opportunity to do other processing that pertains to entities
13388 explicitly declared to be class members. Note that if DECLARATOR
13389 is non-NULL, we know it is a cdk_id declarator; otherwise, we
13390 would not have exited the loop above. */
13391 if (declarator
13392 && declarator->kind == cdk_id
13393 && declarator->u.id.qualifying_scope
13394 && MAYBE_CLASS_TYPE_P (declarator->u.id.qualifying_scope))
13396 ctype = declarator->u.id.qualifying_scope;
13397 ctype = TYPE_MAIN_VARIANT (ctype);
13398 template_count = num_template_headers_for_class (ctype);
13400 if (ctype == current_class_type)
13402 if (friendp)
13404 permerror (declspecs->locations[ds_friend],
13405 "member functions are implicitly "
13406 "friends of their class");
13407 friendp = 0;
13409 else
13410 permerror (id_loc, "extra qualification %<%T::%> on member %qs",
13411 ctype, name);
13413 else if (/* If the qualifying type is already complete, then we
13414 can skip the following checks. */
13415 !COMPLETE_TYPE_P (ctype)
13416 && (/* If the function is being defined, then
13417 qualifying type must certainly be complete. */
13418 funcdef_flag
13419 /* A friend declaration of "T::f" is OK, even if
13420 "T" is a template parameter. But, if this
13421 function is not a friend, the qualifying type
13422 must be a class. */
13423 || (!friendp && !CLASS_TYPE_P (ctype))
13424 /* For a declaration, the type need not be
13425 complete, if either it is dependent (since there
13426 is no meaningful definition of complete in that
13427 case) or the qualifying class is currently being
13428 defined. */
13429 || !(dependent_type_p (ctype)
13430 || currently_open_class (ctype)))
13431 /* Check that the qualifying type is complete. */
13432 && !complete_type_or_else (ctype, NULL_TREE))
13433 return error_mark_node;
13434 else if (TREE_CODE (type) == FUNCTION_TYPE)
13436 if (current_class_type
13437 && (!friendp || funcdef_flag || initialized))
13439 error_at (id_loc, funcdef_flag || initialized
13440 ? G_("cannot define member function %<%T::%s%> "
13441 "within %qT")
13442 : G_("cannot declare member function %<%T::%s%> "
13443 "within %qT"),
13444 ctype, name, current_class_type);
13445 return error_mark_node;
13448 else if (typedef_p && current_class_type)
13450 error_at (id_loc, "cannot declare member %<%T::%s%> within %qT",
13451 ctype, name, current_class_type);
13452 return error_mark_node;
13456 if (ctype == NULL_TREE && decl_context == FIELD && friendp == 0)
13457 ctype = current_class_type;
13459 /* Now TYPE has the actual type. */
13461 if (returned_attrs)
13463 if (attrlist)
13464 *attrlist = attr_chainon (returned_attrs, *attrlist);
13465 else
13466 attrlist = &returned_attrs;
13469 if (declarator
13470 && declarator->kind == cdk_id
13471 && declarator->std_attributes
13472 && attrlist != NULL)
13474 /* [dcl.meaning]/1: The optional attribute-specifier-seq following
13475 a declarator-id appertains to the entity that is declared. */
13476 if (declarator->std_attributes != error_mark_node)
13477 *attrlist = attr_chainon (*attrlist, declarator->std_attributes);
13478 else
13479 /* We should have already diagnosed the issue (c++/78344). */
13480 gcc_assert (seen_error ());
13483 /* Handle parameter packs. */
13484 if (parameter_pack_p)
13486 if (decl_context == PARM)
13487 /* Turn the type into a pack expansion.*/
13488 type = make_pack_expansion (type);
13489 else
13490 error ("non-parameter %qs cannot be a parameter pack", name);
13493 if ((decl_context == FIELD || decl_context == PARM)
13494 && !processing_template_decl
13495 && variably_modified_type_p (type, NULL_TREE))
13497 if (decl_context == FIELD)
13498 error_at (id_loc,
13499 "data member may not have variably modified type %qT", type);
13500 else
13501 error_at (id_loc,
13502 "parameter may not have variably modified type %qT", type);
13503 type = error_mark_node;
13506 if (explicitp == 1 || (explicitp && friendp))
13508 /* [dcl.fct.spec] (C++11) The explicit specifier shall be used only
13509 in the declaration of a constructor or conversion function within
13510 a class definition. */
13511 if (!current_class_type)
13512 error_at (declspecs->locations[ds_explicit],
13513 "%<explicit%> outside class declaration");
13514 else if (friendp)
13515 error_at (declspecs->locations[ds_explicit],
13516 "%<explicit%> in friend declaration");
13517 else
13518 error_at (declspecs->locations[ds_explicit],
13519 "only declarations of constructors and conversion operators "
13520 "can be %<explicit%>");
13521 explicitp = 0;
13524 if (storage_class == sc_mutable)
13526 location_t sloc = declspecs->locations[ds_storage_class];
13527 if (decl_context != FIELD || friendp)
13529 error_at (sloc, "non-member %qs cannot be declared %<mutable%>",
13530 name);
13531 storage_class = sc_none;
13533 else if (decl_context == TYPENAME || typedef_p)
13535 error_at (sloc,
13536 "non-object member %qs cannot be declared %<mutable%>",
13537 name);
13538 storage_class = sc_none;
13540 else if (FUNC_OR_METHOD_TYPE_P (type))
13542 error_at (sloc, "function %qs cannot be declared %<mutable%>",
13543 name);
13544 storage_class = sc_none;
13546 else if (staticp)
13548 error_at (sloc, "%<static%> %qs cannot be declared %<mutable%>",
13549 name);
13550 storage_class = sc_none;
13552 else if (type_quals & TYPE_QUAL_CONST)
13554 error_at (sloc, "%<const%> %qs cannot be declared %<mutable%>",
13555 name);
13556 storage_class = sc_none;
13558 else if (TYPE_REF_P (type))
13560 permerror (sloc, "reference %qs cannot be declared %<mutable%>",
13561 name);
13562 storage_class = sc_none;
13566 /* If this is declaring a typedef name, return a TYPE_DECL. */
13567 if (typedef_p && decl_context != TYPENAME)
13569 bool alias_p = decl_spec_seq_has_spec_p (declspecs, ds_alias);
13570 tree decl;
13572 if (funcdef_flag)
13574 if (decl_context == NORMAL)
13575 error_at (id_loc,
13576 "typedef may not be a function definition");
13577 else
13578 error_at (id_loc,
13579 "typedef may not be a member function definition");
13580 return error_mark_node;
13583 /* This declaration:
13585 typedef void f(int) const;
13587 declares a function type which is not a member of any
13588 particular class, but which is cv-qualified; for
13589 example "f S::*" declares a pointer to a const-qualified
13590 member function of S. We record the cv-qualification in the
13591 function type. */
13592 if ((rqual || memfn_quals) && TREE_CODE (type) == FUNCTION_TYPE)
13594 type = apply_memfn_quals (type, memfn_quals, rqual);
13596 /* We have now dealt with these qualifiers. */
13597 memfn_quals = TYPE_UNQUALIFIED;
13598 rqual = REF_QUAL_NONE;
13601 if (type_uses_auto (type))
13603 if (alias_p)
13604 error_at (declspecs->locations[ds_type_spec],
13605 "%<auto%> not allowed in alias declaration");
13606 else
13607 error_at (declspecs->locations[ds_type_spec],
13608 "typedef declared %<auto%>");
13609 type = error_mark_node;
13612 if (reqs)
13613 error_at (location_of (reqs), "requires-clause on typedef");
13615 if (id_declarator && declarator->u.id.qualifying_scope)
13617 error_at (id_loc, "typedef name may not be a nested-name-specifier");
13618 type = error_mark_node;
13621 if (decl_context == FIELD)
13622 decl = build_lang_decl_loc (id_loc, TYPE_DECL, unqualified_id, type);
13623 else
13624 decl = build_decl (id_loc, TYPE_DECL, unqualified_id, type);
13626 if (decl_context != FIELD)
13628 if (!current_function_decl)
13629 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
13630 else if (DECL_MAYBE_IN_CHARGE_CDTOR_P (current_function_decl))
13631 /* The TYPE_DECL is "abstract" because there will be
13632 clones of this constructor/destructor, and there will
13633 be copies of this TYPE_DECL generated in those
13634 clones. The decloning optimization (for space) may
13635 revert this subsequently if it determines that
13636 the clones should share a common implementation. */
13637 DECL_ABSTRACT_P (decl) = true;
13639 set_originating_module (decl);
13641 else if (current_class_type
13642 && constructor_name_p (unqualified_id, current_class_type))
13643 permerror (id_loc, "ISO C++ forbids nested type %qD with same name "
13644 "as enclosing class",
13645 unqualified_id);
13647 /* If the user declares "typedef struct {...} foo" then the
13648 struct will have an anonymous name. Fill that name in now.
13649 Nothing can refer to it, so nothing needs know about the name
13650 change. */
13651 if (type != error_mark_node
13652 && unqualified_id
13653 && TYPE_NAME (type)
13654 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
13655 && TYPE_UNNAMED_P (type)
13656 && declspecs->type_definition_p
13657 && attributes_naming_typedef_ok (*attrlist)
13658 && cp_type_quals (type) == TYPE_UNQUALIFIED)
13659 name_unnamed_type (type, decl);
13661 if (signed_p
13662 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
13663 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
13665 bad_specifiers (decl, BSP_TYPE, virtualp,
13666 memfn_quals != TYPE_UNQUALIFIED,
13667 inlinep, friendp, raises != NULL_TREE,
13668 declspecs->locations);
13670 if (alias_p)
13671 /* Acknowledge that this was written:
13672 `using analias = atype;'. */
13673 TYPE_DECL_ALIAS_P (decl) = 1;
13675 return decl;
13678 /* Detect the case of an array type of unspecified size
13679 which came, as such, direct from a typedef name.
13680 We must copy the type, so that the array's domain can be
13681 individually set by the object's initializer. */
13683 if (type && typedef_type
13684 && TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type)
13685 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type))
13686 type = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
13688 /* Detect where we're using a typedef of function type to declare a
13689 function. PARMS will not be set, so we must create it now. */
13691 if (type == typedef_type && TREE_CODE (type) == FUNCTION_TYPE)
13693 tree decls = NULL_TREE;
13694 tree args;
13696 for (args = TYPE_ARG_TYPES (type);
13697 args && args != void_list_node;
13698 args = TREE_CHAIN (args))
13700 tree decl = cp_build_parm_decl (NULL_TREE, NULL_TREE,
13701 TREE_VALUE (args));
13703 DECL_CHAIN (decl) = decls;
13704 decls = decl;
13707 parms = nreverse (decls);
13709 if (decl_context != TYPENAME)
13711 /* The qualifiers on the function type become the qualifiers on
13712 the non-static member function. */
13713 memfn_quals |= type_memfn_quals (type);
13714 rqual = type_memfn_rqual (type);
13715 type_quals = TYPE_UNQUALIFIED;
13716 raises = TYPE_RAISES_EXCEPTIONS (type);
13720 /* If this is a type name (such as, in a cast or sizeof),
13721 compute the type and return it now. */
13723 if (decl_context == TYPENAME)
13725 /* Note that here we don't care about type_quals. */
13727 /* Special case: "friend class foo" looks like a TYPENAME context. */
13728 if (friendp)
13730 if (inlinep)
13732 error ("%<inline%> specified for friend class declaration");
13733 inlinep = 0;
13736 if (!current_aggr)
13738 /* Don't allow friend declaration without a class-key. */
13739 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
13740 permerror (input_location, "template parameters cannot be friends");
13741 else if (TREE_CODE (type) == TYPENAME_TYPE)
13742 permerror (input_location, "friend declaration requires class-key, "
13743 "i.e. %<friend class %T::%D%>",
13744 TYPE_CONTEXT (type), TYPENAME_TYPE_FULLNAME (type));
13745 else
13746 permerror (input_location, "friend declaration requires class-key, "
13747 "i.e. %<friend %#T%>",
13748 type);
13751 /* Only try to do this stuff if we didn't already give up. */
13752 if (type != integer_type_node)
13754 /* A friendly class? */
13755 if (current_class_type)
13756 make_friend_class (current_class_type, TYPE_MAIN_VARIANT (type),
13757 /*complain=*/true);
13758 else
13759 error ("trying to make class %qT a friend of global scope",
13760 type);
13762 type = void_type_node;
13765 else if (memfn_quals || rqual)
13767 if (ctype == NULL_TREE
13768 && TREE_CODE (type) == METHOD_TYPE)
13769 ctype = TYPE_METHOD_BASETYPE (type);
13771 if (ctype)
13772 type = build_memfn_type (type, ctype, memfn_quals, rqual);
13773 /* Core issue #547: need to allow this in template type args.
13774 Allow it in general in C++11 for alias-declarations. */
13775 else if ((template_type_arg || cxx_dialect >= cxx11)
13776 && TREE_CODE (type) == FUNCTION_TYPE)
13777 type = apply_memfn_quals (type, memfn_quals, rqual);
13778 else
13779 error ("invalid qualifiers on non-member function type");
13782 if (reqs)
13783 error_at (location_of (reqs), "requires-clause on type-id");
13785 return type;
13787 else if (unqualified_id == NULL_TREE && decl_context != PARM
13788 && decl_context != CATCHPARM
13789 && TREE_CODE (type) != UNION_TYPE
13790 && ! bitfield
13791 && innermost_code != cdk_decomp)
13793 error ("abstract declarator %qT used as declaration", type);
13794 return error_mark_node;
13797 if (!FUNC_OR_METHOD_TYPE_P (type))
13799 /* Only functions may be declared using an operator-function-id. */
13800 if (dname && IDENTIFIER_ANY_OP_P (dname))
13802 error_at (id_loc, "declaration of %qD as non-function", dname);
13803 return error_mark_node;
13806 if (reqs)
13807 error_at (location_of (reqs),
13808 "requires-clause on declaration of non-function type %qT",
13809 type);
13812 /* We don't check parameter types here because we can emit a better
13813 error message later. */
13814 if (decl_context != PARM)
13816 type = check_var_type (unqualified_id, type, id_loc);
13817 if (type == error_mark_node)
13818 return error_mark_node;
13821 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
13822 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
13824 if (decl_context == PARM || decl_context == CATCHPARM)
13826 if (ctype || in_namespace)
13827 error ("cannot use %<::%> in parameter declaration");
13829 tree auto_node = type_uses_auto (type);
13830 if (auto_node && !(cxx_dialect >= cxx17 && template_parm_flag))
13832 if (cxx_dialect >= cxx14)
13834 if (decl_context == PARM && AUTO_IS_DECLTYPE (auto_node))
13835 error_at (typespec_loc,
13836 "cannot declare a parameter with %<decltype(auto)%>");
13837 else if (tree c = CLASS_PLACEHOLDER_TEMPLATE (auto_node))
13839 auto_diagnostic_group g;
13840 error_at (typespec_loc,
13841 "class template placeholder %qE not permitted "
13842 "in this context", c);
13843 if (decl_context == PARM && cxx_dialect >= cxx20)
13844 inform (typespec_loc, "use %<auto%> for an "
13845 "abbreviated function template");
13847 else
13848 error_at (typespec_loc,
13849 "%<auto%> parameter not permitted in this context");
13851 else
13852 error_at (typespec_loc, "parameter declared %<auto%>");
13853 type = error_mark_node;
13856 /* A parameter declared as an array of T is really a pointer to T.
13857 One declared as a function is really a pointer to a function.
13858 One declared as a member is really a pointer to member. */
13860 if (TREE_CODE (type) == ARRAY_TYPE)
13862 /* Transfer const-ness of array into that of type pointed to. */
13863 type = build_pointer_type (TREE_TYPE (type));
13864 type_quals = TYPE_UNQUALIFIED;
13865 array_parameter_p = true;
13867 else if (TREE_CODE (type) == FUNCTION_TYPE)
13868 type = build_pointer_type (type);
13871 if (ctype && TREE_CODE (type) == FUNCTION_TYPE && staticp < 2
13872 && !(unqualified_id
13873 && identifier_p (unqualified_id)
13874 && IDENTIFIER_NEWDEL_OP_P (unqualified_id)))
13876 cp_cv_quals real_quals = memfn_quals;
13877 if (cxx_dialect < cxx14 && constexpr_p
13878 && sfk != sfk_constructor && sfk != sfk_destructor)
13879 real_quals |= TYPE_QUAL_CONST;
13880 type = build_memfn_type (type, ctype, real_quals, rqual);
13884 tree decl = NULL_TREE;
13886 if (decl_context == PARM)
13888 decl = cp_build_parm_decl (NULL_TREE, unqualified_id, type);
13889 DECL_ARRAY_PARAMETER_P (decl) = array_parameter_p;
13891 bad_specifiers (decl, BSP_PARM, virtualp,
13892 memfn_quals != TYPE_UNQUALIFIED,
13893 inlinep, friendp, raises != NULL_TREE,
13894 declspecs->locations);
13896 else if (decl_context == FIELD)
13898 if (!staticp && !friendp && !FUNC_OR_METHOD_TYPE_P (type))
13899 if (tree auto_node = type_uses_auto (type))
13901 location_t tloc = declspecs->locations[ds_type_spec];
13902 if (CLASS_PLACEHOLDER_TEMPLATE (auto_node))
13903 error_at (tloc, "invalid use of template-name %qE without an "
13904 "argument list",
13905 CLASS_PLACEHOLDER_TEMPLATE (auto_node));
13906 else
13907 error_at (tloc, "non-static data member declared with "
13908 "placeholder %qT", auto_node);
13909 type = error_mark_node;
13912 /* The C99 flexible array extension. */
13913 if (!staticp && TREE_CODE (type) == ARRAY_TYPE
13914 && TYPE_DOMAIN (type) == NULL_TREE)
13916 if (ctype
13917 && (TREE_CODE (ctype) == UNION_TYPE
13918 || TREE_CODE (ctype) == QUAL_UNION_TYPE))
13920 error_at (id_loc, "flexible array member in union");
13921 type = error_mark_node;
13923 else
13925 /* Array is a flexible member. */
13926 if (name)
13927 pedwarn (id_loc, OPT_Wpedantic,
13928 "ISO C++ forbids flexible array member %qs", name);
13929 else
13930 pedwarn (input_location, OPT_Wpedantic,
13931 "ISO C++ forbids flexible array members");
13933 /* Flexible array member has a null domain. */
13934 type = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
13938 if (type == error_mark_node)
13940 /* Happens when declaring arrays of sizes which
13941 are error_mark_node, for example. */
13942 decl = NULL_TREE;
13944 else if (in_namespace && !friendp)
13946 /* Something like struct S { int N::j; }; */
13947 error_at (id_loc, "invalid use of %<::%>");
13948 return error_mark_node;
13950 else if (FUNC_OR_METHOD_TYPE_P (type) && unqualified_id)
13952 int publicp = 0;
13953 tree function_context;
13955 if (friendp == 0)
13957 /* This should never happen in pure C++ (the check
13958 could be an assert). It could happen in
13959 Objective-C++ if someone writes invalid code that
13960 uses a function declaration for an instance
13961 variable or property (instance variables and
13962 properties are parsed as FIELD_DECLs, but they are
13963 part of an Objective-C class, not a C++ class).
13964 That code is invalid and is caught by this
13965 check. */
13966 if (!ctype)
13968 error ("declaration of function %qD in invalid context",
13969 unqualified_id);
13970 return error_mark_node;
13973 /* ``A union may [ ... ] not [ have ] virtual functions.''
13974 ARM 9.5 */
13975 if (virtualp && TREE_CODE (ctype) == UNION_TYPE)
13977 error_at (declspecs->locations[ds_virtual],
13978 "function %qD declared %<virtual%> inside a union",
13979 unqualified_id);
13980 return error_mark_node;
13983 if (virtualp
13984 && identifier_p (unqualified_id)
13985 && IDENTIFIER_NEWDEL_OP_P (unqualified_id))
13987 error_at (declspecs->locations[ds_virtual],
13988 "%qD cannot be declared %<virtual%>, since it "
13989 "is always static", unqualified_id);
13990 virtualp = 0;
13994 /* Check that the name used for a destructor makes sense. */
13995 if (sfk == sfk_destructor)
13997 tree uqname = id_declarator->u.id.unqualified_name;
13999 if (!ctype)
14001 gcc_assert (friendp);
14002 error_at (id_loc, "expected qualified name in friend "
14003 "declaration for destructor %qD", uqname);
14004 return error_mark_node;
14007 if (!check_dtor_name (ctype, TREE_OPERAND (uqname, 0)))
14009 error_at (id_loc, "declaration of %qD as member of %qT",
14010 uqname, ctype);
14011 return error_mark_node;
14013 if (concept_p)
14015 error_at (declspecs->locations[ds_concept],
14016 "a destructor cannot be %qs", "concept");
14017 return error_mark_node;
14019 if (constexpr_p && cxx_dialect < cxx20)
14021 error_at (declspecs->locations[ds_constexpr],
14022 "%<constexpr%> destructors only available"
14023 " with %<-std=c++20%> or %<-std=gnu++20%>");
14024 return error_mark_node;
14026 if (consteval_p)
14028 error_at (declspecs->locations[ds_consteval],
14029 "a destructor cannot be %qs", "consteval");
14030 return error_mark_node;
14033 else if (sfk == sfk_constructor && friendp && !ctype)
14035 error ("expected qualified name in friend declaration "
14036 "for constructor %qD",
14037 id_declarator->u.id.unqualified_name);
14038 return error_mark_node;
14040 if (sfk == sfk_constructor)
14041 if (concept_p)
14043 error_at (declspecs->locations[ds_concept],
14044 "a constructor cannot be %<concept%>");
14045 return error_mark_node;
14047 if (concept_p)
14049 error_at (declspecs->locations[ds_concept],
14050 "a concept cannot be a member function");
14051 concept_p = false;
14053 else if (consteval_p
14054 && identifier_p (unqualified_id)
14055 && IDENTIFIER_NEWDEL_OP_P (unqualified_id))
14057 error_at (declspecs->locations[ds_consteval],
14058 "%qD cannot be %qs", unqualified_id, "consteval");
14059 consteval_p = false;
14062 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
14064 tree tmpl = TREE_OPERAND (unqualified_id, 0);
14065 if (variable_template_p (tmpl))
14067 error_at (id_loc, "specialization of variable template "
14068 "%qD declared as function", tmpl);
14069 inform (DECL_SOURCE_LOCATION (tmpl),
14070 "variable template declared here");
14071 return error_mark_node;
14075 /* Tell grokfndecl if it needs to set TREE_PUBLIC on the node. */
14076 function_context
14077 = (ctype != NULL_TREE
14078 ? decl_function_context (TYPE_MAIN_DECL (ctype)) : NULL_TREE);
14079 publicp = ((! friendp || ! staticp)
14080 && function_context == NULL_TREE);
14082 decl = grokfndecl (ctype, type,
14083 TREE_CODE (unqualified_id) != TEMPLATE_ID_EXPR
14084 ? unqualified_id : dname,
14085 parms,
14086 unqualified_id,
14087 declspecs,
14088 reqs,
14089 virtualp, flags, memfn_quals, rqual, raises,
14090 friendp ? -1 : 0, friendp, publicp,
14091 inlinep | (2 * constexpr_p) | (4 * concept_p)
14092 | (8 * consteval_p),
14093 initialized == SD_DELETED, sfk,
14094 funcdef_flag, late_return_type_p,
14095 template_count, in_namespace,
14096 attrlist, id_loc);
14097 decl = set_virt_specifiers (decl, virt_specifiers);
14098 if (decl == NULL_TREE)
14099 return error_mark_node;
14100 #if 0
14101 /* This clobbers the attrs stored in `decl' from `attrlist'. */
14102 /* The decl and setting of decl_attr is also turned off. */
14103 decl = build_decl_attribute_variant (decl, decl_attr);
14104 #endif
14106 /* [class.conv.ctor]
14108 A constructor declared without the function-specifier
14109 explicit that can be called with a single parameter
14110 specifies a conversion from the type of its first
14111 parameter to the type of its class. Such a constructor
14112 is called a converting constructor. */
14113 if (explicitp == 2)
14114 DECL_NONCONVERTING_P (decl) = 1;
14116 if (declspecs->explicit_specifier)
14117 store_explicit_specifier (decl, declspecs->explicit_specifier);
14119 else if (!staticp
14120 && ((current_class_type
14121 && same_type_p (type, current_class_type))
14122 || (!dependent_type_p (type)
14123 && !COMPLETE_TYPE_P (complete_type (type))
14124 && (!complete_or_array_type_p (type)
14125 || initialized == SD_UNINITIALIZED))))
14127 if (TREE_CODE (type) != ARRAY_TYPE
14128 || !COMPLETE_TYPE_P (TREE_TYPE (type)))
14130 if (unqualified_id)
14132 error_at (id_loc, "field %qD has incomplete type %qT",
14133 unqualified_id, type);
14134 cxx_incomplete_type_inform (strip_array_types (type));
14136 else
14137 error ("name %qT has incomplete type", type);
14139 type = error_mark_node;
14140 decl = NULL_TREE;
14143 else if (!verify_type_context (input_location,
14144 staticp
14145 ? TCTX_STATIC_STORAGE
14146 : TCTX_FIELD, type))
14148 type = error_mark_node;
14149 decl = NULL_TREE;
14151 else
14153 if (friendp)
14155 if (unqualified_id)
14156 error_at (id_loc,
14157 "%qE is neither function nor member function; "
14158 "cannot be declared friend", unqualified_id);
14159 else
14160 error ("unnamed field is neither function nor member "
14161 "function; cannot be declared friend");
14162 return error_mark_node;
14164 decl = NULL_TREE;
14167 if (friendp)
14169 /* Packages tend to use GNU attributes on friends, so we only
14170 warn for standard attributes. */
14171 if (attrlist && !funcdef_flag && cxx11_attribute_p (*attrlist))
14173 *attrlist = NULL_TREE;
14174 if (warning_at (id_loc, OPT_Wattributes, "attribute ignored"))
14175 inform (id_loc, "an attribute that appertains to a friend "
14176 "declaration that is not a definition is ignored");
14178 /* Friends are treated specially. */
14179 if (ctype == current_class_type)
14180 ; /* We already issued a permerror. */
14181 else if (decl && DECL_NAME (decl))
14183 set_originating_module (decl, true);
14185 if (initialized)
14186 /* Kludge: We need funcdef_flag to be true in do_friend for
14187 in-class defaulted functions, but that breaks grokfndecl.
14188 So set it here. */
14189 funcdef_flag = true;
14191 decl = do_friend (ctype, unqualified_id, decl,
14192 flags, funcdef_flag);
14193 return decl;
14195 else
14196 return error_mark_node;
14199 /* Structure field. It may not be a function, except for C++. */
14201 if (decl == NULL_TREE)
14203 if (staticp)
14205 /* C++ allows static class members. All other work
14206 for this is done by grokfield. */
14207 decl = build_lang_decl_loc (id_loc, VAR_DECL,
14208 unqualified_id, type);
14209 set_linkage_for_static_data_member (decl);
14210 if (concept_p)
14211 error_at (declspecs->locations[ds_concept],
14212 "static data member %qE declared %qs",
14213 unqualified_id, "concept");
14214 else if (constexpr_p && !initialized)
14216 error_at (DECL_SOURCE_LOCATION (decl),
14217 "%<constexpr%> static data member %qD must "
14218 "have an initializer", decl);
14219 constexpr_p = false;
14221 if (consteval_p)
14222 error_at (declspecs->locations[ds_consteval],
14223 "static data member %qE declared %qs",
14224 unqualified_id, "consteval");
14226 if (inlinep)
14227 mark_inline_variable (decl, declspecs->locations[ds_inline]);
14229 if (!DECL_VAR_DECLARED_INLINE_P (decl)
14230 && !(cxx_dialect >= cxx17 && constexpr_p))
14231 /* Even if there is an in-class initialization, DECL
14232 is considered undefined until an out-of-class
14233 definition is provided, unless this is an inline
14234 variable. */
14235 DECL_EXTERNAL (decl) = 1;
14237 if (thread_p)
14239 CP_DECL_THREAD_LOCAL_P (decl) = true;
14240 if (!processing_template_decl)
14241 set_decl_tls_model (decl, decl_default_tls_model (decl));
14242 if (declspecs->gnu_thread_keyword_p)
14243 SET_DECL_GNU_TLS_P (decl);
14246 /* Set the constraints on the declaration. */
14247 bool memtmpl = (current_template_depth
14248 > template_class_depth (current_class_type));
14249 if (memtmpl)
14251 tree ci = current_template_constraints ();
14252 set_constraints (decl, ci);
14255 else
14257 if (concept_p)
14259 error_at (declspecs->locations[ds_concept],
14260 "non-static data member %qE declared %qs",
14261 unqualified_id, "concept");
14262 concept_p = false;
14263 constexpr_p = false;
14265 else if (constexpr_p)
14267 error_at (declspecs->locations[ds_constexpr],
14268 "non-static data member %qE declared %qs",
14269 unqualified_id, "constexpr");
14270 constexpr_p = false;
14272 if (constinit_p)
14274 error_at (declspecs->locations[ds_constinit],
14275 "non-static data member %qE declared %qs",
14276 unqualified_id, "constinit");
14277 constinit_p = false;
14279 if (consteval_p)
14281 error_at (declspecs->locations[ds_consteval],
14282 "non-static data member %qE declared %qs",
14283 unqualified_id, "consteval");
14284 consteval_p = false;
14286 decl = build_decl (id_loc, FIELD_DECL, unqualified_id, type);
14287 DECL_NONADDRESSABLE_P (decl) = bitfield;
14288 if (bitfield && !unqualified_id)
14289 DECL_PADDING_P (decl) = 1;
14291 if (storage_class == sc_mutable)
14293 DECL_MUTABLE_P (decl) = 1;
14294 storage_class = sc_none;
14297 if (initialized)
14299 /* An attempt is being made to initialize a non-static
14300 member. This is new in C++11. */
14301 maybe_warn_cpp0x (CPP0X_NSDMI, init_loc);
14303 /* If this has been parsed with static storage class, but
14304 errors forced staticp to be cleared, ensure NSDMI is
14305 not present. */
14306 if (declspecs->storage_class == sc_static)
14307 DECL_INITIAL (decl) = error_mark_node;
14311 bad_specifiers (decl, BSP_FIELD, virtualp,
14312 memfn_quals != TYPE_UNQUALIFIED,
14313 staticp ? false : inlinep, friendp,
14314 raises != NULL_TREE,
14315 declspecs->locations);
14318 else if (FUNC_OR_METHOD_TYPE_P (type))
14320 tree original_name;
14321 int publicp = 0;
14323 if (!unqualified_id)
14324 return error_mark_node;
14326 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
14327 original_name = dname;
14328 else
14329 original_name = unqualified_id;
14330 // FIXME:gcc_assert (original_name == dname);
14332 if (storage_class == sc_auto)
14333 error_at (declspecs->locations[ds_storage_class],
14334 "storage class %<auto%> invalid for function %qs", name);
14335 else if (storage_class == sc_register)
14336 error_at (declspecs->locations[ds_storage_class],
14337 "storage class %<register%> invalid for function %qs",
14338 name);
14339 else if (thread_p)
14341 if (declspecs->gnu_thread_keyword_p)
14342 error_at (declspecs->locations[ds_thread],
14343 "storage class %<__thread%> invalid for function %qs",
14344 name);
14345 else
14346 error_at (declspecs->locations[ds_thread],
14347 "storage class %<thread_local%> invalid for "
14348 "function %qs", name);
14351 if (virt_specifiers)
14352 error ("virt-specifiers in %qs not allowed outside a class "
14353 "definition", name);
14354 /* Function declaration not at top level.
14355 Storage classes other than `extern' are not allowed
14356 and `extern' makes no difference. */
14357 if (! toplevel_bindings_p ()
14358 && (storage_class == sc_static
14359 || decl_spec_seq_has_spec_p (declspecs, ds_inline))
14360 && pedantic)
14362 if (storage_class == sc_static)
14363 pedwarn (declspecs->locations[ds_storage_class], OPT_Wpedantic,
14364 "%<static%> specifier invalid for function %qs "
14365 "declared out of global scope", name);
14366 else
14367 pedwarn (declspecs->locations[ds_inline], OPT_Wpedantic,
14368 "%<inline%> specifier invalid for function %qs "
14369 "declared out of global scope", name);
14372 if (ctype == NULL_TREE)
14374 if (virtualp)
14376 error ("virtual non-class function %qs", name);
14377 virtualp = 0;
14379 else if (sfk == sfk_constructor
14380 || sfk == sfk_destructor)
14382 error (funcdef_flag
14383 ? G_("%qs defined in a non-class scope")
14384 : G_("%qs declared in a non-class scope"), name);
14385 sfk = sfk_none;
14388 if (consteval_p
14389 && identifier_p (unqualified_id)
14390 && IDENTIFIER_NEWDEL_OP_P (unqualified_id))
14392 error_at (declspecs->locations[ds_consteval],
14393 "%qD cannot be %qs", unqualified_id, "consteval");
14394 consteval_p = false;
14397 /* Record whether the function is public. */
14398 publicp = (ctype != NULL_TREE
14399 || storage_class != sc_static);
14401 decl = grokfndecl (ctype, type, original_name, parms, unqualified_id,
14402 declspecs,
14403 reqs, virtualp, flags, memfn_quals, rqual, raises,
14404 1, friendp,
14405 publicp,
14406 inlinep | (2 * constexpr_p) | (4 * concept_p)
14407 | (8 * consteval_p),
14408 initialized == SD_DELETED,
14409 sfk,
14410 funcdef_flag,
14411 late_return_type_p,
14412 template_count, in_namespace, attrlist,
14413 id_loc);
14414 if (decl == NULL_TREE)
14415 return error_mark_node;
14417 if (explicitp == 2)
14418 DECL_NONCONVERTING_P (decl) = 1;
14419 if (staticp == 1)
14421 int invalid_static = 0;
14423 /* Don't allow a static member function in a class, and forbid
14424 declaring main to be static. */
14425 if (TREE_CODE (type) == METHOD_TYPE)
14427 permerror (input_location, "cannot declare member function %qD to have "
14428 "static linkage", decl);
14429 invalid_static = 1;
14431 else if (current_function_decl)
14433 /* 7.1.1: There can be no static function declarations within a
14434 block. */
14435 error_at (declspecs->locations[ds_storage_class],
14436 "cannot declare static function inside another function");
14437 invalid_static = 1;
14440 if (invalid_static)
14442 staticp = 0;
14443 storage_class = sc_none;
14446 if (declspecs->explicit_specifier)
14447 store_explicit_specifier (decl, declspecs->explicit_specifier);
14449 else
14451 /* It's a variable. */
14453 /* An uninitialized decl with `extern' is a reference. */
14454 decl = grokvardecl (type, dname, unqualified_id,
14455 declspecs,
14456 initialized,
14457 type_quals,
14458 inlinep,
14459 concept_p,
14460 template_count,
14461 ctype ? ctype : in_namespace,
14462 id_loc);
14463 if (decl == NULL_TREE)
14464 return error_mark_node;
14466 bad_specifiers (decl, BSP_VAR, virtualp,
14467 memfn_quals != TYPE_UNQUALIFIED,
14468 inlinep, friendp, raises != NULL_TREE,
14469 declspecs->locations);
14471 if (ctype)
14473 DECL_CONTEXT (decl) = ctype;
14474 if (staticp == 1)
14476 permerror (declspecs->locations[ds_storage_class],
14477 "%<static%> may not be used when defining "
14478 "(as opposed to declaring) a static data member");
14479 staticp = 0;
14480 storage_class = sc_none;
14482 if (storage_class == sc_register && TREE_STATIC (decl))
14484 error ("static member %qD declared %<register%>", decl);
14485 storage_class = sc_none;
14487 if (storage_class == sc_extern && pedantic)
14489 pedwarn (input_location, OPT_Wpedantic,
14490 "cannot explicitly declare member %q#D to have "
14491 "extern linkage", decl);
14492 storage_class = sc_none;
14495 else if (constexpr_p && DECL_EXTERNAL (decl))
14497 error_at (DECL_SOURCE_LOCATION (decl),
14498 "declaration of %<constexpr%> variable %qD "
14499 "is not a definition", decl);
14500 constexpr_p = false;
14502 if (consteval_p)
14504 error_at (DECL_SOURCE_LOCATION (decl),
14505 "a variable cannot be declared %<consteval%>");
14506 consteval_p = false;
14509 if (inlinep)
14510 mark_inline_variable (decl, declspecs->locations[ds_inline]);
14511 if (innermost_code == cdk_decomp)
14513 gcc_assert (declarator && declarator->kind == cdk_decomp);
14514 DECL_SOURCE_LOCATION (decl) = id_loc;
14515 DECL_ARTIFICIAL (decl) = 1;
14516 fit_decomposition_lang_decl (decl, NULL_TREE);
14520 if (VAR_P (decl) && !initialized)
14521 if (tree auto_node = type_uses_auto (type))
14522 if (!CLASS_PLACEHOLDER_TEMPLATE (auto_node))
14524 location_t loc = declspecs->locations[ds_type_spec];
14525 error_at (loc, "declaration of %q#D has no initializer", decl);
14526 TREE_TYPE (decl) = error_mark_node;
14529 if (storage_class == sc_extern && initialized && !funcdef_flag)
14531 if (toplevel_bindings_p ())
14533 /* It's common practice (and completely valid) to have a const
14534 be initialized and declared extern. */
14535 if (!(type_quals & TYPE_QUAL_CONST))
14536 warning_at (DECL_SOURCE_LOCATION (decl), 0,
14537 "%qs initialized and declared %<extern%>", name);
14539 else
14541 error_at (DECL_SOURCE_LOCATION (decl),
14542 "%qs has both %<extern%> and initializer", name);
14543 return error_mark_node;
14547 /* Record `register' declaration for warnings on &
14548 and in case doing stupid register allocation. */
14550 if (storage_class == sc_register)
14552 DECL_REGISTER (decl) = 1;
14553 /* Warn about register storage specifiers on PARM_DECLs. */
14554 if (TREE_CODE (decl) == PARM_DECL)
14556 if (cxx_dialect >= cxx17)
14557 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
14558 "ISO C++17 does not allow %<register%> storage "
14559 "class specifier");
14560 else
14561 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
14562 "%<register%> storage class specifier used");
14565 else if (storage_class == sc_extern)
14566 DECL_THIS_EXTERN (decl) = 1;
14567 else if (storage_class == sc_static)
14568 DECL_THIS_STATIC (decl) = 1;
14570 if (VAR_P (decl))
14572 /* Set constexpr flag on vars (functions got it in grokfndecl). */
14573 if (constexpr_p)
14574 DECL_DECLARED_CONSTEXPR_P (decl) = true;
14575 /* And the constinit flag (which only applies to variables). */
14576 else if (constinit_p)
14577 DECL_DECLARED_CONSTINIT_P (decl) = true;
14580 /* Record constancy and volatility on the DECL itself . There's
14581 no need to do this when processing a template; we'll do this
14582 for the instantiated declaration based on the type of DECL. */
14583 if (!processing_template_decl)
14584 cp_apply_type_quals_to_decl (type_quals, decl);
14586 return decl;
14590 /* Subroutine of start_function. Ensure that each of the parameter
14591 types (as listed in PARMS) is complete, as is required for a
14592 function definition. */
14594 static void
14595 require_complete_types_for_parms (tree parms)
14597 for (; parms; parms = DECL_CHAIN (parms))
14599 if (dependent_type_p (TREE_TYPE (parms)))
14600 continue;
14601 if (!VOID_TYPE_P (TREE_TYPE (parms))
14602 && complete_type_or_else (TREE_TYPE (parms), parms))
14604 relayout_decl (parms);
14605 DECL_ARG_TYPE (parms) = type_passed_as (TREE_TYPE (parms));
14607 abstract_virtuals_error (parms, TREE_TYPE (parms));
14608 maybe_warn_parm_abi (TREE_TYPE (parms),
14609 DECL_SOURCE_LOCATION (parms));
14611 else
14612 /* grokparms or complete_type_or_else will have already issued
14613 an error. */
14614 TREE_TYPE (parms) = error_mark_node;
14618 /* Returns nonzero if T is a local variable. */
14621 local_variable_p (const_tree t)
14623 if ((VAR_P (t)
14624 && (DECL_LOCAL_DECL_P (t)
14625 || !DECL_CONTEXT (t)
14626 || TREE_CODE (DECL_CONTEXT (t)) == FUNCTION_DECL))
14627 || (TREE_CODE (t) == PARM_DECL))
14628 return 1;
14630 return 0;
14633 /* Like local_variable_p, but suitable for use as a tree-walking
14634 function. */
14636 static tree
14637 local_variable_p_walkfn (tree *tp, int *walk_subtrees,
14638 void * /*data*/)
14640 if (unevaluated_p (TREE_CODE (*tp)))
14642 /* DR 2082 permits local variables in unevaluated contexts
14643 within a default argument. */
14644 *walk_subtrees = 0;
14645 return NULL_TREE;
14648 if (local_variable_p (*tp)
14649 && (!DECL_ARTIFICIAL (*tp) || DECL_NAME (*tp) == this_identifier))
14650 return *tp;
14651 else if (TYPE_P (*tp))
14652 *walk_subtrees = 0;
14654 return NULL_TREE;
14657 /* Check that ARG, which is a default-argument expression for a
14658 parameter DECL, is valid. Returns ARG, or ERROR_MARK_NODE, if
14659 something goes wrong. DECL may also be a _TYPE node, rather than a
14660 DECL, if there is no DECL available. */
14662 tree
14663 check_default_argument (tree decl, tree arg, tsubst_flags_t complain)
14665 tree var;
14666 tree decl_type;
14668 if (TREE_CODE (arg) == DEFERRED_PARSE)
14669 /* We get a DEFERRED_PARSE when looking at an in-class declaration
14670 with a default argument. Ignore the argument for now; we'll
14671 deal with it after the class is complete. */
14672 return arg;
14674 if (TYPE_P (decl))
14676 decl_type = decl;
14677 decl = NULL_TREE;
14679 else
14680 decl_type = TREE_TYPE (decl);
14682 if (arg == error_mark_node
14683 || decl == error_mark_node
14684 || TREE_TYPE (arg) == error_mark_node
14685 || decl_type == error_mark_node)
14686 /* Something already went wrong. There's no need to check
14687 further. */
14688 return error_mark_node;
14690 /* [dcl.fct.default]
14692 A default argument expression is implicitly converted to the
14693 parameter type. */
14694 ++cp_unevaluated_operand;
14695 /* Avoid digest_init clobbering the initializer. */
14696 tree carg = BRACE_ENCLOSED_INITIALIZER_P (arg) ? unshare_expr (arg): arg;
14697 perform_implicit_conversion_flags (decl_type, carg, complain,
14698 LOOKUP_IMPLICIT);
14699 --cp_unevaluated_operand;
14701 /* Avoid redundant -Wzero-as-null-pointer-constant warnings at
14702 the call sites. */
14703 if (TYPE_PTR_OR_PTRMEM_P (decl_type)
14704 && null_ptr_cst_p (arg)
14705 /* Don't lose side-effects as in PR90473. */
14706 && !TREE_SIDE_EFFECTS (arg))
14707 return nullptr_node;
14709 /* [dcl.fct.default]
14711 Local variables shall not be used in default argument
14712 expressions.
14714 The keyword `this' shall not be used in a default argument of a
14715 member function. */
14716 var = cp_walk_tree_without_duplicates (&arg, local_variable_p_walkfn, NULL);
14717 if (var)
14719 if (complain & tf_warning_or_error)
14721 if (DECL_NAME (var) == this_identifier)
14722 permerror (input_location, "default argument %qE uses %qD",
14723 arg, var);
14724 else
14725 error ("default argument %qE uses local variable %qD", arg, var);
14727 return error_mark_node;
14730 /* All is well. */
14731 return arg;
14734 /* Returns a deprecated type used within TYPE, or NULL_TREE if none. */
14736 static tree
14737 type_is_deprecated (tree type)
14739 enum tree_code code;
14740 if (TREE_DEPRECATED (type))
14741 return type;
14742 if (TYPE_NAME (type))
14744 if (TREE_DEPRECATED (TYPE_NAME (type)))
14745 return type;
14746 else
14748 cp_warn_deprecated_use_scopes (CP_DECL_CONTEXT (TYPE_NAME (type)));
14749 return NULL_TREE;
14753 /* Do warn about using typedefs to a deprecated class. */
14754 if (OVERLOAD_TYPE_P (type) && type != TYPE_MAIN_VARIANT (type))
14755 return type_is_deprecated (TYPE_MAIN_VARIANT (type));
14757 code = TREE_CODE (type);
14759 if (code == POINTER_TYPE || code == REFERENCE_TYPE
14760 || code == OFFSET_TYPE || code == FUNCTION_TYPE
14761 || code == METHOD_TYPE || code == ARRAY_TYPE)
14762 return type_is_deprecated (TREE_TYPE (type));
14764 if (TYPE_PTRMEMFUNC_P (type))
14765 return type_is_deprecated
14766 (TREE_TYPE (TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (type))));
14768 return NULL_TREE;
14771 /* Returns an unavailable type used within TYPE, or NULL_TREE if none. */
14773 static tree
14774 type_is_unavailable (tree type)
14776 enum tree_code code;
14777 if (TREE_UNAVAILABLE (type))
14778 return type;
14779 if (TYPE_NAME (type))
14781 if (TREE_UNAVAILABLE (TYPE_NAME (type)))
14782 return type;
14783 else
14785 cp_warn_deprecated_use_scopes (CP_DECL_CONTEXT (TYPE_NAME (type)));
14786 return NULL_TREE;
14790 /* Do warn about using typedefs to a deprecated class. */
14791 if (OVERLOAD_TYPE_P (type) && type != TYPE_MAIN_VARIANT (type))
14792 return type_is_deprecated (TYPE_MAIN_VARIANT (type));
14794 code = TREE_CODE (type);
14796 if (code == POINTER_TYPE || code == REFERENCE_TYPE
14797 || code == OFFSET_TYPE || code == FUNCTION_TYPE
14798 || code == METHOD_TYPE || code == ARRAY_TYPE)
14799 return type_is_unavailable (TREE_TYPE (type));
14801 if (TYPE_PTRMEMFUNC_P (type))
14802 return type_is_unavailable
14803 (TREE_TYPE (TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (type))));
14805 return NULL_TREE;
14808 /* Decode the list of parameter types for a function type.
14809 Given the list of things declared inside the parens,
14810 return a list of types.
14812 If this parameter does not end with an ellipsis, we append
14813 void_list_node.
14815 *PARMS is set to the chain of PARM_DECLs created. */
14817 tree
14818 grokparms (tree parmlist, tree *parms)
14820 tree result = NULL_TREE;
14821 tree decls = NULL_TREE;
14822 tree parm;
14823 int any_error = 0;
14825 for (parm = parmlist; parm != NULL_TREE; parm = TREE_CHAIN (parm))
14827 tree type = NULL_TREE;
14828 tree init = TREE_PURPOSE (parm);
14829 tree decl = TREE_VALUE (parm);
14831 if (parm == void_list_node || parm == explicit_void_list_node)
14832 break;
14834 if (! decl || TREE_TYPE (decl) == error_mark_node)
14836 any_error = 1;
14837 continue;
14840 type = TREE_TYPE (decl);
14841 if (VOID_TYPE_P (type))
14843 if (same_type_p (type, void_type_node)
14844 && !init
14845 && !DECL_NAME (decl) && !result
14846 && TREE_CHAIN (parm) == void_list_node)
14847 /* DR 577: A parameter list consisting of a single
14848 unnamed parameter of non-dependent type 'void'. */
14849 break;
14850 else if (cv_qualified_p (type))
14851 error_at (DECL_SOURCE_LOCATION (decl),
14852 "invalid use of cv-qualified type %qT in "
14853 "parameter declaration", type);
14854 else
14855 error_at (DECL_SOURCE_LOCATION (decl),
14856 "invalid use of type %<void%> in parameter "
14857 "declaration");
14858 /* It's not a good idea to actually create parameters of
14859 type `void'; other parts of the compiler assume that a
14860 void type terminates the parameter list. */
14861 type = error_mark_node;
14862 TREE_TYPE (decl) = error_mark_node;
14865 if (type != error_mark_node)
14867 if (deprecated_state != UNAVAILABLE_DEPRECATED_SUPPRESS)
14869 tree unavailtype = type_is_unavailable (type);
14870 if (unavailtype)
14871 cp_handle_deprecated_or_unavailable (unavailtype);
14873 if (deprecated_state != DEPRECATED_SUPPRESS
14874 && deprecated_state != UNAVAILABLE_DEPRECATED_SUPPRESS)
14876 tree deptype = type_is_deprecated (type);
14877 if (deptype)
14878 cp_handle_deprecated_or_unavailable (deptype);
14881 /* [dcl.fct] "A parameter with volatile-qualified type is
14882 deprecated." */
14883 if (CP_TYPE_VOLATILE_P (type))
14884 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wvolatile,
14885 "%<volatile%>-qualified parameter is "
14886 "deprecated");
14888 /* Top-level qualifiers on the parameters are
14889 ignored for function types. */
14890 type = cp_build_qualified_type (type, 0);
14891 if (TREE_CODE (type) == METHOD_TYPE)
14893 error ("parameter %qD invalidly declared method type", decl);
14894 type = build_pointer_type (type);
14895 TREE_TYPE (decl) = type;
14897 else if (cxx_dialect < cxx17 && INDIRECT_TYPE_P (type))
14899 /* Before C++17 DR 393:
14900 [dcl.fct]/6, parameter types cannot contain pointers
14901 (references) to arrays of unknown bound. */
14902 tree t = TREE_TYPE (type);
14903 int ptr = TYPE_PTR_P (type);
14905 while (1)
14907 if (TYPE_PTR_P (t))
14908 ptr = 1;
14909 else if (TREE_CODE (t) != ARRAY_TYPE)
14910 break;
14911 else if (!TYPE_DOMAIN (t))
14912 break;
14913 t = TREE_TYPE (t);
14915 if (TREE_CODE (t) == ARRAY_TYPE)
14916 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wpedantic,
14918 ? G_("parameter %qD includes pointer to array of "
14919 "unknown bound %qT")
14920 : G_("parameter %qD includes reference to array of "
14921 "unknown bound %qT"),
14922 decl, t);
14925 if (init && !processing_template_decl)
14926 init = check_default_argument (decl, init, tf_warning_or_error);
14929 DECL_CHAIN (decl) = decls;
14930 decls = decl;
14931 result = tree_cons (init, type, result);
14933 decls = nreverse (decls);
14934 result = nreverse (result);
14935 if (parm)
14936 result = chainon (result, void_list_node);
14937 *parms = decls;
14938 if (any_error)
14939 result = NULL_TREE;
14941 if (any_error)
14942 /* We had parm errors, recover by giving the function (...) type. */
14943 result = NULL_TREE;
14945 return result;
14949 /* D is a constructor or overloaded `operator='.
14951 Let T be the class in which D is declared. Then, this function
14952 returns:
14954 -1 if D's is an ill-formed constructor or copy assignment operator
14955 whose first parameter is of type `T'.
14956 0 if D is not a copy constructor or copy assignment
14957 operator.
14958 1 if D is a copy constructor or copy assignment operator whose
14959 first parameter is a reference to non-const qualified T.
14960 2 if D is a copy constructor or copy assignment operator whose
14961 first parameter is a reference to const qualified T.
14963 This function can be used as a predicate. Positive values indicate
14964 a copy constructor and nonzero values indicate a copy assignment
14965 operator. */
14968 copy_fn_p (const_tree d)
14970 tree args;
14971 tree arg_type;
14972 int result = 1;
14974 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
14976 if (TREE_CODE (d) == TEMPLATE_DECL
14977 || (DECL_TEMPLATE_INFO (d)
14978 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
14979 /* Instantiations of template member functions are never copy
14980 functions. Note that member functions of templated classes are
14981 represented as template functions internally, and we must
14982 accept those as copy functions. */
14983 return 0;
14985 if (!DECL_CONSTRUCTOR_P (d)
14986 && DECL_NAME (d) != assign_op_identifier)
14987 return 0;
14989 args = FUNCTION_FIRST_USER_PARMTYPE (d);
14990 if (!args)
14991 return 0;
14993 arg_type = TREE_VALUE (args);
14994 if (arg_type == error_mark_node)
14995 return 0;
14997 if (TYPE_MAIN_VARIANT (arg_type) == DECL_CONTEXT (d))
14999 /* Pass by value copy assignment operator. */
15000 result = -1;
15002 else if (TYPE_REF_P (arg_type)
15003 && !TYPE_REF_IS_RVALUE (arg_type)
15004 && TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)) == DECL_CONTEXT (d))
15006 if (CP_TYPE_CONST_P (TREE_TYPE (arg_type)))
15007 result = 2;
15009 else
15010 return 0;
15012 args = TREE_CHAIN (args);
15014 if (args && args != void_list_node && !TREE_PURPOSE (args))
15015 /* There are more non-optional args. */
15016 return 0;
15018 return result;
15021 /* D is a constructor or overloaded `operator='.
15023 Let T be the class in which D is declared. Then, this function
15024 returns true when D is a move constructor or move assignment
15025 operator, false otherwise. */
15027 bool
15028 move_fn_p (const_tree d)
15030 if (cxx_dialect == cxx98)
15031 /* There are no move constructors if we are in C++98 mode. */
15032 return false;
15034 if (TREE_CODE (d) == TEMPLATE_DECL
15035 || (DECL_TEMPLATE_INFO (d)
15036 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
15037 /* Instantiations of template member functions are never move
15038 functions. Note that member functions of templated classes are
15039 represented as template functions internally, and we must
15040 accept those as move functions. */
15041 return 0;
15043 return move_signature_fn_p (d);
15046 /* D is a constructor or overloaded `operator='.
15048 Then, this function returns true when D has the same signature as a move
15049 constructor or move assignment operator (because either it is such a
15050 ctor/op= or it is a template specialization with the same signature),
15051 false otherwise. */
15053 bool
15054 move_signature_fn_p (const_tree d)
15056 tree args;
15057 tree arg_type;
15058 bool result = false;
15060 if (!DECL_CONSTRUCTOR_P (d)
15061 && DECL_NAME (d) != assign_op_identifier)
15062 return 0;
15064 args = FUNCTION_FIRST_USER_PARMTYPE (d);
15065 if (!args)
15066 return 0;
15068 arg_type = TREE_VALUE (args);
15069 if (arg_type == error_mark_node)
15070 return 0;
15072 if (TYPE_REF_P (arg_type)
15073 && TYPE_REF_IS_RVALUE (arg_type)
15074 && same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)),
15075 DECL_CONTEXT (d)))
15076 result = true;
15078 args = TREE_CHAIN (args);
15080 if (args && args != void_list_node && !TREE_PURPOSE (args))
15081 /* There are more non-optional args. */
15082 return false;
15084 return result;
15087 /* Remember any special properties of member function DECL. */
15089 void
15090 grok_special_member_properties (tree decl)
15092 tree class_type;
15094 if (TREE_CODE (decl) == USING_DECL
15095 || !DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
15096 return;
15098 class_type = DECL_CONTEXT (decl);
15099 if (IDENTIFIER_CTOR_P (DECL_NAME (decl)))
15101 int ctor = copy_fn_p (decl);
15103 if (!DECL_ARTIFICIAL (decl))
15104 TYPE_HAS_USER_CONSTRUCTOR (class_type) = 1;
15106 if (ctor > 0)
15108 /* [class.copy]
15110 A non-template constructor for class X is a copy
15111 constructor if its first parameter is of type X&, const
15112 X&, volatile X& or const volatile X&, and either there
15113 are no other parameters or else all other parameters have
15114 default arguments. */
15115 TYPE_HAS_COPY_CTOR (class_type) = 1;
15116 if (ctor > 1)
15117 TYPE_HAS_CONST_COPY_CTOR (class_type) = 1;
15120 if (sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (decl)))
15121 TYPE_HAS_DEFAULT_CONSTRUCTOR (class_type) = 1;
15123 if (is_list_ctor (decl))
15124 TYPE_HAS_LIST_CTOR (class_type) = 1;
15126 if (maybe_constexpr_fn (decl)
15127 && !ctor && !move_fn_p (decl))
15128 TYPE_HAS_CONSTEXPR_CTOR (class_type) = 1;
15130 else if (DECL_NAME (decl) == assign_op_identifier)
15132 /* [class.copy]
15134 A non-template assignment operator for class X is a copy
15135 assignment operator if its parameter is of type X, X&, const
15136 X&, volatile X& or const volatile X&. */
15138 int assop = copy_fn_p (decl);
15140 if (assop)
15142 TYPE_HAS_COPY_ASSIGN (class_type) = 1;
15143 if (assop != 1)
15144 TYPE_HAS_CONST_COPY_ASSIGN (class_type) = 1;
15147 else if (IDENTIFIER_CONV_OP_P (DECL_NAME (decl)))
15148 TYPE_HAS_CONVERSION (class_type) = true;
15150 /* Destructors are handled in check_methods. */
15153 /* Check a constructor DECL has the correct form. Complains
15154 if the class has a constructor of the form X(X). */
15156 bool
15157 grok_ctor_properties (const_tree ctype, const_tree decl)
15159 int ctor_parm = copy_fn_p (decl);
15161 if (ctor_parm < 0)
15163 /* [class.copy]
15165 A declaration of a constructor for a class X is ill-formed if
15166 its first parameter is of type (optionally cv-qualified) X
15167 and either there are no other parameters or else all other
15168 parameters have default arguments.
15170 We *don't* complain about member template instantiations that
15171 have this form, though; they can occur as we try to decide
15172 what constructor to use during overload resolution. Since
15173 overload resolution will never prefer such a constructor to
15174 the non-template copy constructor (which is either explicitly
15175 or implicitly defined), there's no need to worry about their
15176 existence. Theoretically, they should never even be
15177 instantiated, but that's hard to forestall. */
15178 error_at (DECL_SOURCE_LOCATION (decl),
15179 "invalid constructor; you probably meant %<%T (const %T&)%>",
15180 ctype, ctype);
15181 return false;
15184 return true;
15187 /* DECL is a declaration for an overloaded or conversion operator. If
15188 COMPLAIN is true, errors are issued for invalid declarations. */
15190 bool
15191 grok_op_properties (tree decl, bool complain)
15193 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
15194 bool methodp = TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE;
15195 tree name = DECL_NAME (decl);
15196 location_t loc = DECL_SOURCE_LOCATION (decl);
15198 tree class_type = DECL_CONTEXT (decl);
15199 if (class_type && !CLASS_TYPE_P (class_type))
15200 class_type = NULL_TREE;
15202 tree_code operator_code;
15203 unsigned op_flags;
15204 if (IDENTIFIER_CONV_OP_P (name))
15206 /* Conversion operators are TYPE_EXPR for the purposes of this
15207 function. */
15208 operator_code = TYPE_EXPR;
15209 op_flags = OVL_OP_FLAG_UNARY;
15211 else
15213 const ovl_op_info_t *ovl_op = IDENTIFIER_OVL_OP_INFO (name);
15215 operator_code = ovl_op->tree_code;
15216 op_flags = ovl_op->flags;
15217 gcc_checking_assert (operator_code != ERROR_MARK);
15218 DECL_OVERLOADED_OPERATOR_CODE_RAW (decl) = ovl_op->ovl_op_code;
15221 if (op_flags & OVL_OP_FLAG_ALLOC)
15223 /* operator new and operator delete are quite special. */
15224 if (class_type)
15225 switch (op_flags)
15227 case OVL_OP_FLAG_ALLOC:
15228 TYPE_HAS_NEW_OPERATOR (class_type) = 1;
15229 break;
15231 case OVL_OP_FLAG_ALLOC | OVL_OP_FLAG_DELETE:
15232 TYPE_GETS_DELETE (class_type) |= 1;
15233 break;
15235 case OVL_OP_FLAG_ALLOC | OVL_OP_FLAG_VEC:
15236 TYPE_HAS_ARRAY_NEW_OPERATOR (class_type) = 1;
15237 break;
15239 case OVL_OP_FLAG_ALLOC | OVL_OP_FLAG_DELETE | OVL_OP_FLAG_VEC:
15240 TYPE_GETS_DELETE (class_type) |= 2;
15241 break;
15243 default:
15244 gcc_unreachable ();
15247 /* [basic.std.dynamic.allocation]/1:
15249 A program is ill-formed if an allocation function is declared
15250 in a namespace scope other than global scope or declared
15251 static in global scope.
15253 The same also holds true for deallocation functions. */
15254 if (DECL_NAMESPACE_SCOPE_P (decl))
15256 if (CP_DECL_CONTEXT (decl) != global_namespace)
15258 error_at (loc, "%qD may not be declared within a namespace",
15259 decl);
15260 return false;
15263 if (!TREE_PUBLIC (decl))
15265 error_at (loc, "%qD may not be declared as static", decl);
15266 return false;
15270 if (op_flags & OVL_OP_FLAG_DELETE)
15272 DECL_SET_IS_OPERATOR_DELETE (decl, true);
15273 coerce_delete_type (decl, loc);
15275 else
15277 DECL_SET_IS_OPERATOR_NEW (decl, true);
15278 TREE_TYPE (decl) = coerce_new_type (TREE_TYPE (decl), loc);
15281 return true;
15284 /* An operator function must either be a non-static member function
15285 or have at least one parameter of a class, a reference to a class,
15286 an enumeration, or a reference to an enumeration. 13.4.0.6 */
15287 if (! methodp || DECL_STATIC_FUNCTION_P (decl))
15289 if (operator_code == TYPE_EXPR
15290 || operator_code == CALL_EXPR
15291 || operator_code == COMPONENT_REF
15292 || operator_code == ARRAY_REF
15293 || operator_code == NOP_EXPR)
15295 error_at (loc, "%qD must be a non-static member function", decl);
15296 return false;
15299 if (DECL_STATIC_FUNCTION_P (decl))
15301 error_at (loc, "%qD must be either a non-static member "
15302 "function or a non-member function", decl);
15303 return false;
15306 for (tree arg = argtypes; ; arg = TREE_CHAIN (arg))
15308 if (!arg || arg == void_list_node)
15310 if (complain)
15311 error_at(loc, "%qD must have an argument of class or "
15312 "enumerated type", decl);
15313 return false;
15316 tree type = non_reference (TREE_VALUE (arg));
15317 if (type == error_mark_node)
15318 return false;
15320 /* MAYBE_CLASS_TYPE_P, rather than CLASS_TYPE_P, is used
15321 because these checks are performed even on template
15322 functions. */
15323 if (MAYBE_CLASS_TYPE_P (type)
15324 || TREE_CODE (type) == ENUMERAL_TYPE)
15325 break;
15329 if (operator_code == CALL_EXPR)
15330 /* There are no further restrictions on the arguments to an overloaded
15331 "operator ()". */
15332 return true;
15334 if (operator_code == COND_EXPR)
15336 /* 13.4.0.3 */
15337 error_at (loc, "ISO C++ prohibits overloading %<operator ?:%>");
15338 return false;
15341 /* Count the number of arguments and check for ellipsis. */
15342 int arity = 0;
15343 for (tree arg = argtypes; arg != void_list_node; arg = TREE_CHAIN (arg))
15345 if (!arg)
15347 /* Variadic. */
15348 if (operator_code == ARRAY_REF && cxx_dialect >= cxx23)
15349 break;
15351 error_at (loc, "%qD must not have variable number of arguments",
15352 decl);
15353 return false;
15355 ++arity;
15358 /* Verify correct number of arguments. */
15359 switch (op_flags)
15361 case OVL_OP_FLAG_AMBIARY:
15362 if (arity == 1)
15364 /* We have a unary instance of an ambi-ary op. Remap to the
15365 unary one. */
15366 unsigned alt = ovl_op_alternate[ovl_op_mapping [operator_code]];
15367 const ovl_op_info_t *ovl_op = &ovl_op_info[false][alt];
15368 gcc_checking_assert (ovl_op->flags == OVL_OP_FLAG_UNARY);
15369 operator_code = ovl_op->tree_code;
15370 DECL_OVERLOADED_OPERATOR_CODE_RAW (decl) = ovl_op->ovl_op_code;
15372 else if (arity != 2)
15374 /* This was an ambiguous operator but is invalid. */
15375 error_at (loc,
15376 methodp
15377 ? G_("%qD must have either zero or one argument")
15378 : G_("%qD must have either one or two arguments"), decl);
15379 return false;
15381 else if ((operator_code == POSTINCREMENT_EXPR
15382 || operator_code == POSTDECREMENT_EXPR)
15383 && ! processing_template_decl
15384 /* x++ and x--'s second argument must be an int. */
15385 && ! same_type_p (TREE_VALUE (TREE_CHAIN (argtypes)),
15386 integer_type_node))
15388 error_at (loc,
15389 methodp
15390 ? G_("postfix %qD must have %<int%> as its argument")
15391 : G_("postfix %qD must have %<int%> as its second argument"),
15392 decl);
15393 return false;
15395 break;
15397 case OVL_OP_FLAG_UNARY:
15398 if (arity != 1)
15400 error_at (loc,
15401 methodp
15402 ? G_("%qD must have no arguments")
15403 : G_("%qD must have exactly one argument"), decl);
15404 return false;
15406 break;
15408 case OVL_OP_FLAG_BINARY:
15409 if (arity != 2)
15411 if (operator_code == ARRAY_REF && cxx_dialect >= cxx23)
15412 break;
15413 error_at (loc,
15414 methodp
15415 ? G_("%qD must have exactly one argument")
15416 : G_("%qD must have exactly two arguments"), decl);
15417 return false;
15419 break;
15421 default:
15422 gcc_unreachable ();
15425 /* There can be no default arguments. */
15426 for (tree arg = argtypes; arg && arg != void_list_node;
15427 arg = TREE_CHAIN (arg))
15428 if (TREE_PURPOSE (arg))
15430 TREE_PURPOSE (arg) = NULL_TREE;
15431 error_at (loc, "%qD cannot have default arguments", decl);
15432 return false;
15435 /* At this point the declaration is well-formed. It may not be
15436 sensible though. */
15438 /* Check member function warnings only on the in-class declaration.
15439 There's no point warning on an out-of-class definition. */
15440 if (class_type && class_type != current_class_type)
15441 return true;
15443 /* Warn about conversion operators that will never be used. */
15444 if (IDENTIFIER_CONV_OP_P (name)
15445 && ! DECL_TEMPLATE_INFO (decl)
15446 && warn_class_conversion)
15448 tree t = TREE_TYPE (name);
15449 int ref = TYPE_REF_P (t);
15451 if (ref)
15452 t = TYPE_MAIN_VARIANT (TREE_TYPE (t));
15454 if (VOID_TYPE_P (t))
15455 warning_at (loc, OPT_Wclass_conversion, "converting %qT to %<void%> "
15456 "will never use a type conversion operator", class_type);
15457 else if (class_type)
15459 if (same_type_ignoring_top_level_qualifiers_p (t, class_type))
15460 warning_at (loc, OPT_Wclass_conversion,
15462 ? G_("converting %qT to a reference to the same type "
15463 "will never use a type conversion operator")
15464 : G_("converting %qT to the same type "
15465 "will never use a type conversion operator"),
15466 class_type);
15467 /* Don't force t to be complete here. */
15468 else if (MAYBE_CLASS_TYPE_P (t)
15469 && COMPLETE_TYPE_P (t)
15470 && DERIVED_FROM_P (t, class_type))
15471 warning_at (loc, OPT_Wclass_conversion,
15473 ? G_("converting %qT to a reference to a base class "
15474 "%qT will never use a type conversion operator")
15475 : G_("converting %qT to a base class %qT "
15476 "will never use a type conversion operator"),
15477 class_type, t);
15481 if (!warn_ecpp)
15482 return true;
15484 /* Effective C++ rules below. */
15486 /* More Effective C++ rule 7. */
15487 if (operator_code == TRUTH_ANDIF_EXPR
15488 || operator_code == TRUTH_ORIF_EXPR
15489 || operator_code == COMPOUND_EXPR)
15490 warning_at (loc, OPT_Weffc__,
15491 "user-defined %qD always evaluates both arguments", decl);
15493 /* More Effective C++ rule 6. */
15494 if (operator_code == POSTINCREMENT_EXPR
15495 || operator_code == POSTDECREMENT_EXPR
15496 || operator_code == PREINCREMENT_EXPR
15497 || operator_code == PREDECREMENT_EXPR)
15499 tree arg = TREE_VALUE (argtypes);
15500 tree ret = TREE_TYPE (TREE_TYPE (decl));
15501 if (methodp || TYPE_REF_P (arg))
15502 arg = TREE_TYPE (arg);
15503 arg = TYPE_MAIN_VARIANT (arg);
15505 if (operator_code == PREINCREMENT_EXPR
15506 || operator_code == PREDECREMENT_EXPR)
15508 if (!TYPE_REF_P (ret)
15509 || !same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (ret)), arg))
15510 warning_at (loc, OPT_Weffc__, "prefix %qD should return %qT", decl,
15511 build_reference_type (arg));
15513 else
15515 if (!same_type_p (TYPE_MAIN_VARIANT (ret), arg))
15516 warning_at (loc, OPT_Weffc__,
15517 "postfix %qD should return %qT", decl, arg);
15521 /* Effective C++ rule 23. */
15522 if (!DECL_ASSIGNMENT_OPERATOR_P (decl)
15523 && (operator_code == PLUS_EXPR
15524 || operator_code == MINUS_EXPR
15525 || operator_code == TRUNC_DIV_EXPR
15526 || operator_code == MULT_EXPR
15527 || operator_code == TRUNC_MOD_EXPR)
15528 && TYPE_REF_P (TREE_TYPE (TREE_TYPE (decl))))
15529 warning_at (loc, OPT_Weffc__, "%qD should return by value", decl);
15531 return true;
15534 /* Return a string giving the keyword associate with CODE. */
15536 static const char *
15537 tag_name (enum tag_types code)
15539 switch (code)
15541 case record_type:
15542 return "struct";
15543 case class_type:
15544 return "class";
15545 case union_type:
15546 return "union";
15547 case enum_type:
15548 return "enum";
15549 case typename_type:
15550 return "typename";
15551 default:
15552 gcc_unreachable ();
15556 /* Name lookup in an elaborated-type-specifier (after the keyword
15557 indicated by TAG_CODE) has found the TYPE_DECL DECL. If the
15558 elaborated-type-specifier is invalid, issue a diagnostic and return
15559 error_mark_node; otherwise, return the *_TYPE to which it referred.
15560 If ALLOW_TEMPLATE_P is true, TYPE may be a class template. */
15562 tree
15563 check_elaborated_type_specifier (enum tag_types tag_code,
15564 tree decl,
15565 bool allow_template_p)
15567 tree type;
15569 /* In the case of:
15571 struct S { struct S *p; };
15573 name lookup will find the TYPE_DECL for the implicit "S::S"
15574 typedef. Adjust for that here. */
15575 if (DECL_SELF_REFERENCE_P (decl))
15576 decl = TYPE_NAME (TREE_TYPE (decl));
15578 type = TREE_TYPE (decl);
15580 /* Check TEMPLATE_TYPE_PARM first because DECL_IMPLICIT_TYPEDEF_P
15581 is false for this case as well. */
15582 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
15584 error ("using template type parameter %qT after %qs",
15585 type, tag_name (tag_code));
15586 return error_mark_node;
15588 /* Accept template template parameters. */
15589 else if (allow_template_p
15590 && (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM
15591 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM))
15593 /* [dcl.type.elab]
15595 If the identifier resolves to a typedef-name or the
15596 simple-template-id resolves to an alias template
15597 specialization, the elaborated-type-specifier is ill-formed.
15599 In other words, the only legitimate declaration to use in the
15600 elaborated type specifier is the implicit typedef created when
15601 the type is declared. */
15602 else if (!DECL_IMPLICIT_TYPEDEF_P (decl)
15603 && !DECL_SELF_REFERENCE_P (decl)
15604 && tag_code != typename_type)
15606 if (alias_template_specialization_p (type, nt_opaque))
15607 error ("using alias template specialization %qT after %qs",
15608 type, tag_name (tag_code));
15609 else
15610 error ("using typedef-name %qD after %qs", decl, tag_name (tag_code));
15611 inform (DECL_SOURCE_LOCATION (decl),
15612 "%qD has a previous declaration here", decl);
15613 return error_mark_node;
15615 else if (TREE_CODE (type) != RECORD_TYPE
15616 && TREE_CODE (type) != UNION_TYPE
15617 && tag_code != enum_type
15618 && tag_code != typename_type)
15620 error ("%qT referred to as %qs", type, tag_name (tag_code));
15621 inform (location_of (type), "%qT has a previous declaration here", type);
15622 return error_mark_node;
15624 else if (TREE_CODE (type) != ENUMERAL_TYPE
15625 && tag_code == enum_type)
15627 error ("%qT referred to as enum", type);
15628 inform (location_of (type), "%qT has a previous declaration here", type);
15629 return error_mark_node;
15631 else if (!allow_template_p
15632 && TREE_CODE (type) == RECORD_TYPE
15633 && CLASSTYPE_IS_TEMPLATE (type))
15635 /* If a class template appears as elaborated type specifier
15636 without a template header such as:
15638 template <class T> class C {};
15639 void f(class C); // No template header here
15641 then the required template argument is missing. */
15642 error ("template argument required for %<%s %T%>",
15643 tag_name (tag_code),
15644 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type)));
15645 return error_mark_node;
15648 return type;
15651 /* Lookup NAME of an elaborated type specifier according to SCOPE and
15652 issue diagnostics if necessary. Return *_TYPE node upon success,
15653 NULL_TREE when the NAME is not found, and ERROR_MARK_NODE for type
15654 error. */
15656 static tree
15657 lookup_and_check_tag (enum tag_types tag_code, tree name,
15658 TAG_how how, bool template_header_p)
15660 tree decl;
15661 if (how == TAG_how::GLOBAL)
15663 /* First try ordinary name lookup, ignoring hidden class name
15664 injected via friend declaration. */
15665 decl = lookup_name (name, LOOK_want::TYPE);
15666 decl = strip_using_decl (decl);
15667 /* If that fails, the name will be placed in the smallest
15668 non-class, non-function-prototype scope according to 3.3.1/5.
15669 We may already have a hidden name declared as friend in this
15670 scope. So lookup again but not ignoring hidden names.
15671 If we find one, that name will be made visible rather than
15672 creating a new tag. */
15673 if (!decl)
15674 decl = lookup_elaborated_type (name, TAG_how::INNERMOST_NON_CLASS);
15676 else
15677 decl = lookup_elaborated_type (name, how);
15679 if (!decl)
15680 /* We found nothing. */
15681 return NULL_TREE;
15683 if (TREE_CODE (decl) == TREE_LIST)
15685 error ("reference to %qD is ambiguous", name);
15686 print_candidates (decl);
15687 return error_mark_node;
15690 if (DECL_CLASS_TEMPLATE_P (decl)
15691 && !template_header_p
15692 && how == TAG_how::CURRENT_ONLY)
15694 error ("class template %qD redeclared as non-template", name);
15695 inform (location_of (decl), "previous declaration here");
15696 CLASSTYPE_ERRONEOUS (TREE_TYPE (decl)) = true;
15697 return error_mark_node;
15700 if (DECL_CLASS_TEMPLATE_P (decl)
15701 /* If scope is TAG_how::CURRENT_ONLY we're defining a class,
15702 so ignore a template template parameter. */
15703 || (how != TAG_how::CURRENT_ONLY && DECL_TEMPLATE_TEMPLATE_PARM_P (decl)))
15704 decl = DECL_TEMPLATE_RESULT (decl);
15706 if (TREE_CODE (decl) != TYPE_DECL)
15707 /* Found not-a-type. */
15708 return NULL_TREE;
15710 /* Look for invalid nested type:
15711 class C {
15712 class C {};
15713 }; */
15714 if (how == TAG_how::CURRENT_ONLY && DECL_SELF_REFERENCE_P (decl))
15716 error ("%qD has the same name as the class in which it is "
15717 "declared", decl);
15718 return error_mark_node;
15721 /* Two cases we need to consider when deciding if a class
15722 template is allowed as an elaborated type specifier:
15723 1. It is a self reference to its own class.
15724 2. It comes with a template header.
15726 For example:
15728 template <class T> class C {
15729 class C *c1; // DECL_SELF_REFERENCE_P is true
15730 class D;
15732 template <class U> class C; // template_header_p is true
15733 template <class T> class C<T>::D {
15734 class C *c2; // DECL_SELF_REFERENCE_P is true
15735 }; */
15737 tree t = check_elaborated_type_specifier (tag_code, decl,
15738 template_header_p
15739 | DECL_SELF_REFERENCE_P (decl));
15740 if (template_header_p && t && CLASS_TYPE_P (t)
15741 && (!CLASSTYPE_TEMPLATE_INFO (t)
15742 || (!PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t)))))
15744 error ("%qT is not a template", t);
15745 inform (location_of (t), "previous declaration here");
15746 if (TYPE_CLASS_SCOPE_P (t)
15747 && CLASSTYPE_TEMPLATE_INFO (TYPE_CONTEXT (t)))
15748 inform (input_location,
15749 "perhaps you want to explicitly add %<%T::%>",
15750 TYPE_CONTEXT (t));
15751 return error_mark_node;
15754 return t;
15757 /* Get the struct, enum or union (TAG_CODE says which) with tag NAME.
15758 Define the tag as a forward-reference if it is not defined.
15760 If a declaration is given, process it here, and report an error if
15761 multiple declarations are not identical.
15763 SCOPE is TS_CURRENT when this is also a definition. Only look in
15764 the current frame for the name (since C++ allows new names in any
15765 scope.) It is TS_WITHIN_ENCLOSING_NON_CLASS if this is a friend
15766 declaration. Only look beginning from the current scope outward up
15767 till the nearest non-class scope. Otherwise it is TS_GLOBAL.
15769 TEMPLATE_HEADER_P is true when this declaration is preceded by
15770 a set of template parameters. */
15772 tree
15773 xref_tag (enum tag_types tag_code, tree name,
15774 TAG_how how, bool template_header_p)
15776 enum tree_code code;
15777 tree context = NULL_TREE;
15779 auto_cond_timevar tv (TV_NAME_LOOKUP);
15781 gcc_assert (identifier_p (name));
15783 switch (tag_code)
15785 case record_type:
15786 case class_type:
15787 code = RECORD_TYPE;
15788 break;
15789 case union_type:
15790 code = UNION_TYPE;
15791 break;
15792 case enum_type:
15793 code = ENUMERAL_TYPE;
15794 break;
15795 default:
15796 gcc_unreachable ();
15799 /* In case of anonymous name, xref_tag is only called to
15800 make type node and push name. Name lookup is not required. */
15801 tree t = NULL_TREE;
15802 if (!IDENTIFIER_ANON_P (name))
15803 t = lookup_and_check_tag (tag_code, name, how, template_header_p);
15805 if (t == error_mark_node)
15806 return error_mark_node;
15808 if (how != TAG_how::CURRENT_ONLY && t && current_class_type
15809 && template_class_depth (current_class_type)
15810 && template_header_p)
15812 if (TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM)
15813 return t;
15815 /* Since HOW is not TAG_how::CURRENT_ONLY, we are not looking at
15816 a definition of this tag. Since, in addition, we are
15817 currently processing a (member) template declaration of a
15818 template class, we must be very careful; consider:
15820 template <class X> struct S1
15822 template <class U> struct S2
15824 template <class V> friend struct S1;
15827 Here, the S2::S1 declaration should not be confused with the
15828 outer declaration. In particular, the inner version should
15829 have a template parameter of level 2, not level 1.
15831 On the other hand, when presented with:
15833 template <class T> struct S1
15835 template <class U> struct S2 {};
15836 template <class U> friend struct S2;
15839 the friend must find S1::S2 eventually. We accomplish this
15840 by making sure that the new type we create to represent this
15841 declaration has the right TYPE_CONTEXT. */
15842 context = TYPE_CONTEXT (t);
15843 t = NULL_TREE;
15846 if (! t)
15848 /* If no such tag is yet defined, create a forward-reference node
15849 and record it as the "definition".
15850 When a real declaration of this type is found,
15851 the forward-reference will be altered into a real type. */
15852 if (code == ENUMERAL_TYPE)
15854 error ("use of enum %q#D without previous declaration", name);
15855 return error_mark_node;
15858 t = make_class_type (code);
15859 TYPE_CONTEXT (t) = context;
15860 if (IDENTIFIER_LAMBDA_P (name))
15861 /* Mark it as a lambda type right now. Our caller will
15862 correct the value. */
15863 CLASSTYPE_LAMBDA_EXPR (t) = error_mark_node;
15864 t = pushtag (name, t, how);
15866 else
15868 if (template_header_p && MAYBE_CLASS_TYPE_P (t))
15870 /* Check that we aren't trying to overload a class with different
15871 constraints. */
15872 if (!redeclare_class_template (t, current_template_parms,
15873 current_template_constraints ()))
15874 return error_mark_node;
15876 else if (!processing_template_decl
15877 && CLASS_TYPE_P (t)
15878 && CLASSTYPE_IS_TEMPLATE (t))
15880 error ("redeclaration of %qT as a non-template", t);
15881 inform (location_of (t), "previous declaration %qD", t);
15882 return error_mark_node;
15885 if (modules_p ()
15886 && how == TAG_how::CURRENT_ONLY)
15888 tree decl = TYPE_NAME (t);
15889 if (!module_may_redeclare (decl))
15891 error ("cannot declare %qD in a different module", decl);
15892 inform (DECL_SOURCE_LOCATION (decl), "declared here");
15893 return error_mark_node;
15896 tree maybe_tmpl = decl;
15897 if (CLASS_TYPE_P (t) && CLASSTYPE_IS_TEMPLATE (t))
15898 maybe_tmpl = CLASSTYPE_TI_TEMPLATE (t);
15900 if (DECL_LANG_SPECIFIC (decl)
15901 && DECL_MODULE_IMPORT_P (decl)
15902 && TREE_CODE (CP_DECL_CONTEXT (decl)) == NAMESPACE_DECL)
15904 /* Push it into this TU's symbol slot. */
15905 gcc_checking_assert (current_namespace == CP_DECL_CONTEXT (decl));
15906 if (maybe_tmpl != decl)
15907 /* We're in the template parm binding level.
15908 Pushtag has logic to slide under that, but we're
15909 not pushing a *new* type. */
15910 push_nested_namespace (CP_DECL_CONTEXT (decl));
15912 pushdecl (maybe_tmpl);
15913 if (maybe_tmpl != decl)
15914 pop_nested_namespace (CP_DECL_CONTEXT (decl));
15917 set_instantiating_module (maybe_tmpl);
15921 return t;
15924 /* Create the binfo hierarchy for REF with (possibly NULL) base list
15925 BASE_LIST. For each element on BASE_LIST the TREE_PURPOSE is an
15926 access_* node, and the TREE_VALUE is the type of the base-class.
15927 Non-NULL TREE_TYPE indicates virtual inheritance. */
15929 void
15930 xref_basetypes (tree ref, tree base_list)
15932 tree *basep;
15933 tree binfo, base_binfo;
15934 unsigned max_vbases = 0; /* Maximum direct & indirect virtual bases. */
15935 unsigned max_bases = 0; /* Maximum direct bases. */
15936 unsigned max_dvbases = 0; /* Maximum direct virtual bases. */
15937 int i;
15938 tree default_access;
15939 tree igo_prev; /* Track Inheritance Graph Order. */
15941 if (ref == error_mark_node)
15942 return;
15944 /* The base of a derived class is private by default, all others are
15945 public. */
15946 default_access = (TREE_CODE (ref) == RECORD_TYPE
15947 && CLASSTYPE_DECLARED_CLASS (ref)
15948 ? access_private_node : access_public_node);
15950 /* First, make sure that any templates in base-classes are
15951 instantiated. This ensures that if we call ourselves recursively
15952 we do not get confused about which classes are marked and which
15953 are not. */
15954 basep = &base_list;
15955 while (*basep)
15957 tree basetype = TREE_VALUE (*basep);
15959 /* The dependent_type_p call below should really be dependent_scope_p
15960 so that we give a hard error about using an incomplete type as a
15961 base, but we allow it with a pedwarn for backward
15962 compatibility. */
15963 if (processing_template_decl
15964 && CLASS_TYPE_P (basetype) && TYPE_BEING_DEFINED (basetype))
15965 cxx_incomplete_type_diagnostic (NULL_TREE, basetype, DK_PEDWARN);
15966 if (!dependent_type_p (basetype)
15967 && !complete_type_or_else (basetype, NULL))
15968 /* An incomplete type. Remove it from the list. */
15969 *basep = TREE_CHAIN (*basep);
15970 else
15972 max_bases++;
15973 if (TREE_TYPE (*basep))
15974 max_dvbases++;
15975 if (CLASS_TYPE_P (basetype))
15976 max_vbases += vec_safe_length (CLASSTYPE_VBASECLASSES (basetype));
15977 basep = &TREE_CHAIN (*basep);
15980 max_vbases += max_dvbases;
15982 TYPE_MARKED_P (ref) = 1;
15984 /* The binfo slot should be empty, unless this is an (ill-formed)
15985 redefinition. */
15986 gcc_assert (!TYPE_BINFO (ref) || TYPE_SIZE (ref));
15988 gcc_assert (TYPE_MAIN_VARIANT (ref) == ref);
15990 binfo = make_tree_binfo (max_bases);
15992 TYPE_BINFO (ref) = binfo;
15993 BINFO_OFFSET (binfo) = size_zero_node;
15994 BINFO_TYPE (binfo) = ref;
15996 /* Apply base-class info set up to the variants of this type. */
15997 fixup_type_variants (ref);
15999 if (max_bases)
16001 vec_alloc (BINFO_BASE_ACCESSES (binfo), max_bases);
16002 /* A C++98 POD cannot have base classes. */
16003 CLASSTYPE_NON_LAYOUT_POD_P (ref) = true;
16005 if (TREE_CODE (ref) == UNION_TYPE)
16007 error ("derived union %qT invalid", ref);
16008 return;
16012 if (max_bases > 1)
16013 warning (OPT_Wmultiple_inheritance,
16014 "%qT defined with multiple direct bases", ref);
16016 if (max_vbases)
16018 /* An aggregate can't have virtual base classes. */
16019 CLASSTYPE_NON_AGGREGATE (ref) = true;
16021 vec_alloc (CLASSTYPE_VBASECLASSES (ref), max_vbases);
16023 if (max_dvbases)
16024 warning (OPT_Wvirtual_inheritance,
16025 "%qT defined with direct virtual base", ref);
16028 for (igo_prev = binfo; base_list; base_list = TREE_CHAIN (base_list))
16030 tree access = TREE_PURPOSE (base_list);
16031 int via_virtual = TREE_TYPE (base_list) != NULL_TREE;
16032 tree basetype = TREE_VALUE (base_list);
16034 if (access == access_default_node)
16035 access = default_access;
16037 /* Before C++17, an aggregate cannot have base classes. In C++17, an
16038 aggregate can't have virtual, private, or protected base classes. */
16039 if (cxx_dialect < cxx17
16040 || access != access_public_node
16041 || via_virtual)
16042 CLASSTYPE_NON_AGGREGATE (ref) = true;
16044 if (PACK_EXPANSION_P (basetype))
16045 basetype = PACK_EXPANSION_PATTERN (basetype);
16046 if (TREE_CODE (basetype) == TYPE_DECL)
16047 basetype = TREE_TYPE (basetype);
16048 if (!MAYBE_CLASS_TYPE_P (basetype) || TREE_CODE (basetype) == UNION_TYPE)
16050 error ("base type %qT fails to be a struct or class type",
16051 basetype);
16052 goto dropped_base;
16055 base_binfo = NULL_TREE;
16056 if (CLASS_TYPE_P (basetype) && !dependent_scope_p (basetype))
16058 base_binfo = TYPE_BINFO (basetype);
16059 /* The original basetype could have been a typedef'd type. */
16060 basetype = BINFO_TYPE (base_binfo);
16062 /* Inherit flags from the base. */
16063 TYPE_HAS_NEW_OPERATOR (ref)
16064 |= TYPE_HAS_NEW_OPERATOR (basetype);
16065 TYPE_HAS_ARRAY_NEW_OPERATOR (ref)
16066 |= TYPE_HAS_ARRAY_NEW_OPERATOR (basetype);
16067 TYPE_GETS_DELETE (ref) |= TYPE_GETS_DELETE (basetype);
16068 TYPE_HAS_CONVERSION (ref) |= TYPE_HAS_CONVERSION (basetype);
16069 CLASSTYPE_DIAMOND_SHAPED_P (ref)
16070 |= CLASSTYPE_DIAMOND_SHAPED_P (basetype);
16071 CLASSTYPE_REPEATED_BASE_P (ref)
16072 |= CLASSTYPE_REPEATED_BASE_P (basetype);
16075 /* We must do this test after we've seen through a typedef
16076 type. */
16077 if (TYPE_MARKED_P (basetype))
16079 if (basetype == ref)
16080 error ("recursive type %qT undefined", basetype);
16081 else
16082 error ("duplicate base type %qT invalid", basetype);
16083 goto dropped_base;
16086 if (PACK_EXPANSION_P (TREE_VALUE (base_list)))
16087 /* Regenerate the pack expansion for the bases. */
16088 basetype = make_pack_expansion (basetype);
16090 TYPE_MARKED_P (basetype) = 1;
16092 base_binfo = copy_binfo (base_binfo, basetype, ref,
16093 &igo_prev, via_virtual);
16094 if (!BINFO_INHERITANCE_CHAIN (base_binfo))
16095 BINFO_INHERITANCE_CHAIN (base_binfo) = binfo;
16097 BINFO_BASE_APPEND (binfo, base_binfo);
16098 BINFO_BASE_ACCESS_APPEND (binfo, access);
16099 continue;
16101 dropped_base:
16102 /* Update max_vbases to reflect the reality that we are dropping
16103 this base: if it reaches zero we want to undo the vec_alloc
16104 above to avoid inconsistencies during error-recovery: eg, in
16105 build_special_member_call, CLASSTYPE_VBASECLASSES non null
16106 and vtt null (c++/27952). */
16107 if (via_virtual)
16108 max_vbases--;
16109 if (CLASS_TYPE_P (basetype))
16110 max_vbases
16111 -= vec_safe_length (CLASSTYPE_VBASECLASSES (basetype));
16114 if (CLASSTYPE_VBASECLASSES (ref)
16115 && max_vbases == 0)
16116 vec_free (CLASSTYPE_VBASECLASSES (ref));
16118 if (vec_safe_length (CLASSTYPE_VBASECLASSES (ref)) < max_vbases)
16119 /* If we didn't get max_vbases vbases, we must have shared at
16120 least one of them, and are therefore diamond shaped. */
16121 CLASSTYPE_DIAMOND_SHAPED_P (ref) = 1;
16123 /* Unmark all the types. */
16124 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
16125 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
16126 TYPE_MARKED_P (ref) = 0;
16128 /* Now see if we have a repeated base type. */
16129 if (!CLASSTYPE_REPEATED_BASE_P (ref))
16131 for (base_binfo = binfo; base_binfo;
16132 base_binfo = TREE_CHAIN (base_binfo))
16134 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
16136 CLASSTYPE_REPEATED_BASE_P (ref) = 1;
16137 break;
16139 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 1;
16141 for (base_binfo = binfo; base_binfo;
16142 base_binfo = TREE_CHAIN (base_binfo))
16143 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
16144 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
16145 else
16146 break;
16151 /* Copies the enum-related properties from type SRC to type DST.
16152 Used with the underlying type of an enum and the enum itself. */
16153 static void
16154 copy_type_enum (tree dst, tree src)
16156 tree t;
16157 for (t = dst; t; t = TYPE_NEXT_VARIANT (t))
16159 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (src);
16160 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (src);
16161 TYPE_SIZE (t) = TYPE_SIZE (src);
16162 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (src);
16163 SET_TYPE_MODE (dst, TYPE_MODE (src));
16164 TYPE_PRECISION (t) = TYPE_PRECISION (src);
16165 unsigned valign = TYPE_ALIGN (src);
16166 if (TYPE_USER_ALIGN (t))
16167 valign = MAX (valign, TYPE_ALIGN (t));
16168 else
16169 TYPE_USER_ALIGN (t) = TYPE_USER_ALIGN (src);
16170 SET_TYPE_ALIGN (t, valign);
16171 TYPE_UNSIGNED (t) = TYPE_UNSIGNED (src);
16175 /* Begin compiling the definition of an enumeration type.
16176 NAME is its name,
16178 if ENUMTYPE is not NULL_TREE then the type has alredy been found.
16180 UNDERLYING_TYPE is the type that will be used as the storage for
16181 the enumeration type. This should be NULL_TREE if no storage type
16182 was specified.
16184 ATTRIBUTES are any attributes specified after the enum-key.
16186 SCOPED_ENUM_P is true if this is a scoped enumeration type.
16188 if IS_NEW is not NULL, gets TRUE iff a new type is created.
16190 Returns the type object, as yet incomplete.
16191 Also records info about it so that build_enumerator
16192 may be used to declare the individual values as they are read. */
16194 tree
16195 start_enum (tree name, tree enumtype, tree underlying_type,
16196 tree attributes, bool scoped_enum_p, bool *is_new)
16198 tree prevtype = NULL_TREE;
16199 gcc_assert (identifier_p (name));
16201 if (is_new)
16202 *is_new = false;
16203 /* [C++0x dcl.enum]p5:
16205 If not explicitly specified, the underlying type of a scoped
16206 enumeration type is int. */
16207 if (!underlying_type && scoped_enum_p)
16208 underlying_type = integer_type_node;
16210 if (underlying_type)
16211 underlying_type = cv_unqualified (underlying_type);
16213 /* If this is the real definition for a previous forward reference,
16214 fill in the contents in the same object that used to be the
16215 forward reference. */
16216 if (!enumtype)
16217 enumtype = lookup_and_check_tag (enum_type, name,
16218 /*tag_scope=*/TAG_how::CURRENT_ONLY,
16219 /*template_header_p=*/false);
16221 /* In case of a template_decl, the only check that should be deferred
16222 to instantiation time is the comparison of underlying types. */
16223 if (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE)
16225 if (scoped_enum_p != SCOPED_ENUM_P (enumtype))
16227 error_at (input_location, "scoped/unscoped mismatch "
16228 "in enum %q#T", enumtype);
16229 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
16230 "previous definition here");
16231 enumtype = error_mark_node;
16233 else if (ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) != !! underlying_type)
16235 error_at (input_location, "underlying type mismatch "
16236 "in enum %q#T", enumtype);
16237 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
16238 "previous definition here");
16239 enumtype = error_mark_node;
16241 else if (underlying_type && ENUM_UNDERLYING_TYPE (enumtype)
16242 && !same_type_p (underlying_type,
16243 ENUM_UNDERLYING_TYPE (enumtype)))
16245 error_at (input_location, "different underlying type "
16246 "in enum %q#T", enumtype);
16247 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
16248 "previous definition here");
16249 underlying_type = NULL_TREE;
16252 if (modules_p ())
16254 if (!module_may_redeclare (TYPE_NAME (enumtype)))
16256 error ("cannot define %qD in different module",
16257 TYPE_NAME (enumtype));
16258 inform (DECL_SOURCE_LOCATION (TYPE_NAME (enumtype)),
16259 "declared here");
16260 enumtype = error_mark_node;
16262 set_instantiating_module (TYPE_NAME (enumtype));
16266 if (!enumtype || TREE_CODE (enumtype) != ENUMERAL_TYPE
16267 || processing_template_decl)
16269 /* In case of error, make a dummy enum to allow parsing to
16270 continue. */
16271 if (enumtype == error_mark_node)
16273 name = make_anon_name ();
16274 enumtype = NULL_TREE;
16277 /* enumtype may be an ENUMERAL_TYPE if this is a redefinition
16278 of an opaque enum, or an opaque enum of an already defined
16279 enumeration (C++11).
16280 In any other case, it'll be NULL_TREE. */
16281 if (!enumtype)
16283 if (is_new)
16284 *is_new = true;
16286 prevtype = enumtype;
16288 /* Do not push the decl more than once. */
16289 if (!enumtype
16290 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
16292 enumtype = cxx_make_type (ENUMERAL_TYPE);
16293 enumtype = pushtag (name, enumtype);
16295 /* std::byte aliases anything. */
16296 if (enumtype != error_mark_node
16297 && TYPE_CONTEXT (enumtype) == std_node
16298 && !strcmp ("byte", TYPE_NAME_STRING (enumtype)))
16299 TYPE_ALIAS_SET (enumtype) = 0;
16301 else
16302 enumtype = xref_tag (enum_type, name);
16304 if (enumtype == error_mark_node)
16305 return error_mark_node;
16307 /* The enum is considered opaque until the opening '{' of the
16308 enumerator list. */
16309 SET_OPAQUE_ENUM_P (enumtype, true);
16310 ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) = !! underlying_type;
16313 SET_SCOPED_ENUM_P (enumtype, scoped_enum_p);
16315 cplus_decl_attributes (&enumtype, attributes, (int)ATTR_FLAG_TYPE_IN_PLACE);
16317 if (underlying_type)
16319 if (ENUM_UNDERLYING_TYPE (enumtype))
16320 /* We already checked that it matches, don't change it to a different
16321 typedef variant. */;
16322 else if (CP_INTEGRAL_TYPE_P (underlying_type))
16324 copy_type_enum (enumtype, underlying_type);
16325 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
16327 else if (dependent_type_p (underlying_type))
16328 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
16329 else
16331 error ("underlying type %qT of %qT must be an integral type",
16332 underlying_type, enumtype);
16333 ENUM_UNDERLYING_TYPE (enumtype) = integer_type_node;
16337 /* If into a template class, the returned enum is always the first
16338 declaration (opaque or not) seen. This way all the references to
16339 this type will be to the same declaration. The following ones are used
16340 only to check for definition errors. */
16341 if (prevtype && processing_template_decl)
16342 return prevtype;
16343 else
16344 return enumtype;
16347 /* After processing and defining all the values of an enumeration type,
16348 install their decls in the enumeration type.
16349 ENUMTYPE is the type object. */
16351 void
16352 finish_enum_value_list (tree enumtype)
16354 tree values;
16355 tree underlying_type;
16356 tree decl;
16357 tree value;
16358 tree minnode, maxnode;
16359 tree t;
16361 bool fixed_underlying_type_p
16362 = ENUM_UNDERLYING_TYPE (enumtype) != NULL_TREE;
16364 /* We built up the VALUES in reverse order. */
16365 TYPE_VALUES (enumtype) = nreverse (TYPE_VALUES (enumtype));
16367 /* For an enum defined in a template, just set the type of the values;
16368 all further processing is postponed until the template is
16369 instantiated. We need to set the type so that tsubst of a CONST_DECL
16370 works. */
16371 if (processing_template_decl)
16373 for (values = TYPE_VALUES (enumtype);
16374 values;
16375 values = TREE_CHAIN (values))
16376 TREE_TYPE (TREE_VALUE (values)) = enumtype;
16377 return;
16380 /* Determine the minimum and maximum values of the enumerators. */
16381 if (TYPE_VALUES (enumtype))
16383 minnode = maxnode = NULL_TREE;
16385 for (values = TYPE_VALUES (enumtype);
16386 values;
16387 values = TREE_CHAIN (values))
16389 decl = TREE_VALUE (values);
16391 /* [dcl.enum]: Following the closing brace of an enum-specifier,
16392 each enumerator has the type of its enumeration. Prior to the
16393 closing brace, the type of each enumerator is the type of its
16394 initializing value. */
16395 TREE_TYPE (decl) = enumtype;
16397 /* Update the minimum and maximum values, if appropriate. */
16398 value = DECL_INITIAL (decl);
16399 if (TREE_CODE (value) != INTEGER_CST)
16400 value = integer_zero_node;
16401 /* Figure out what the minimum and maximum values of the
16402 enumerators are. */
16403 if (!minnode)
16404 minnode = maxnode = value;
16405 else if (tree_int_cst_lt (maxnode, value))
16406 maxnode = value;
16407 else if (tree_int_cst_lt (value, minnode))
16408 minnode = value;
16411 else
16412 /* [dcl.enum]
16414 If the enumerator-list is empty, the underlying type is as if
16415 the enumeration had a single enumerator with value 0. */
16416 minnode = maxnode = integer_zero_node;
16418 if (!fixed_underlying_type_p)
16420 /* Compute the number of bits require to represent all values of the
16421 enumeration. We must do this before the type of MINNODE and
16422 MAXNODE are transformed, since tree_int_cst_min_precision relies
16423 on the TREE_TYPE of the value it is passed. */
16424 signop sgn = tree_int_cst_sgn (minnode) >= 0 ? UNSIGNED : SIGNED;
16425 int lowprec = tree_int_cst_min_precision (minnode, sgn);
16426 int highprec = tree_int_cst_min_precision (maxnode, sgn);
16427 int precision = MAX (lowprec, highprec);
16428 unsigned int itk;
16429 bool use_short_enum;
16431 /* Determine the underlying type of the enumeration.
16433 [dcl.enum]
16435 The underlying type of an enumeration is an integral type that
16436 can represent all the enumerator values defined in the
16437 enumeration. It is implementation-defined which integral type is
16438 used as the underlying type for an enumeration except that the
16439 underlying type shall not be larger than int unless the value of
16440 an enumerator cannot fit in an int or unsigned int.
16442 We use "int" or an "unsigned int" as the underlying type, even if
16443 a smaller integral type would work, unless the user has
16444 explicitly requested that we use the smallest possible type. The
16445 user can request that for all enumerations with a command line
16446 flag, or for just one enumeration with an attribute. */
16448 use_short_enum = flag_short_enums
16449 || lookup_attribute ("packed", TYPE_ATTRIBUTES (enumtype));
16451 /* If the precision of the type was specified with an attribute and it
16452 was too small, give an error. Otherwise, use it. */
16453 if (TYPE_PRECISION (enumtype))
16455 if (precision > TYPE_PRECISION (enumtype))
16456 error ("specified mode too small for enumerated values");
16457 else
16459 use_short_enum = true;
16460 precision = TYPE_PRECISION (enumtype);
16464 for (itk = (use_short_enum ? itk_char : itk_int);
16465 itk != itk_none;
16466 itk++)
16468 underlying_type = integer_types[itk];
16469 if (underlying_type != NULL_TREE
16470 && TYPE_PRECISION (underlying_type) >= precision
16471 && TYPE_SIGN (underlying_type) == sgn)
16472 break;
16474 if (itk == itk_none)
16476 /* DR 377
16478 IF no integral type can represent all the enumerator values, the
16479 enumeration is ill-formed. */
16480 error ("no integral type can represent all of the enumerator values "
16481 "for %qT", enumtype);
16482 precision = TYPE_PRECISION (long_long_integer_type_node);
16483 underlying_type = integer_types[itk_unsigned_long_long];
16486 /* [dcl.enum]
16488 The value of sizeof() applied to an enumeration type, an object
16489 of an enumeration type, or an enumerator, is the value of sizeof()
16490 applied to the underlying type. */
16491 copy_type_enum (enumtype, underlying_type);
16493 /* Compute the minimum and maximum values for the type.
16495 [dcl.enum]
16497 For an enumeration where emin is the smallest enumerator and emax
16498 is the largest, the values of the enumeration are the values of the
16499 underlying type in the range bmin to bmax, where bmin and bmax are,
16500 respectively, the smallest and largest values of the smallest bit-
16501 field that can store emin and emax. */
16503 /* The middle-end currently assumes that types with TYPE_PRECISION
16504 narrower than their underlying type are suitably zero or sign
16505 extended to fill their mode. Similarly, it assumes that the front
16506 end assures that a value of a particular type must be within
16507 TYPE_MIN_VALUE and TYPE_MAX_VALUE.
16509 We used to set these fields based on bmin and bmax, but that led
16510 to invalid assumptions like optimizing away bounds checking. So
16511 now we just set the TYPE_PRECISION, TYPE_MIN_VALUE, and
16512 TYPE_MAX_VALUE to the values for the mode above and only restrict
16513 the ENUM_UNDERLYING_TYPE for the benefit of diagnostics. */
16514 ENUM_UNDERLYING_TYPE (enumtype)
16515 = build_distinct_type_copy (underlying_type);
16516 TYPE_PRECISION (ENUM_UNDERLYING_TYPE (enumtype)) = precision;
16517 set_min_and_max_values_for_integral_type
16518 (ENUM_UNDERLYING_TYPE (enumtype), precision, sgn);
16520 /* If -fstrict-enums, still constrain TYPE_MIN/MAX_VALUE. */
16521 if (flag_strict_enums)
16522 set_min_and_max_values_for_integral_type (enumtype, precision, sgn);
16524 else
16525 underlying_type = ENUM_UNDERLYING_TYPE (enumtype);
16527 /* If the enum is exported, mark the consts too. */
16528 bool export_p = (UNSCOPED_ENUM_P (enumtype)
16529 && DECL_MODULE_EXPORT_P (TYPE_STUB_DECL (enumtype))
16530 && at_namespace_scope_p ());
16532 /* Convert each of the enumerators to the type of the underlying
16533 type of the enumeration. */
16534 for (values = TYPE_VALUES (enumtype); values; values = TREE_CHAIN (values))
16536 decl = TREE_VALUE (values);
16537 iloc_sentinel ils (DECL_SOURCE_LOCATION (decl));
16538 if (fixed_underlying_type_p)
16539 /* If the enumeration type has a fixed underlying type, we
16540 already checked all of the enumerator values. */
16541 value = DECL_INITIAL (decl);
16542 else
16543 value = perform_implicit_conversion (underlying_type,
16544 DECL_INITIAL (decl),
16545 tf_warning_or_error);
16546 /* Do not clobber shared ints. */
16547 if (value != error_mark_node)
16549 value = copy_node (value);
16551 TREE_TYPE (value) = enumtype;
16553 DECL_INITIAL (decl) = value;
16554 if (export_p)
16555 DECL_MODULE_EXPORT_P (decl) = true;
16558 /* Fix up all variant types of this enum type. */
16559 for (t = TYPE_MAIN_VARIANT (enumtype); t; t = TYPE_NEXT_VARIANT (t))
16560 TYPE_VALUES (t) = TYPE_VALUES (enumtype);
16562 if (at_class_scope_p ()
16563 && COMPLETE_TYPE_P (current_class_type)
16564 && UNSCOPED_ENUM_P (enumtype))
16566 insert_late_enum_def_bindings (current_class_type, enumtype);
16567 /* TYPE_FIELDS needs fixup. */
16568 fixup_type_variants (current_class_type);
16571 /* Finish debugging output for this type. */
16572 rest_of_type_compilation (enumtype, namespace_bindings_p ());
16574 /* Each enumerator now has the type of its enumeration. Clear the cache
16575 so that this change in types doesn't confuse us later on. */
16576 clear_cv_and_fold_caches ();
16579 /* Finishes the enum type. This is called only the first time an
16580 enumeration is seen, be it opaque or odinary.
16581 ENUMTYPE is the type object. */
16583 void
16584 finish_enum (tree enumtype)
16586 if (processing_template_decl)
16588 if (at_function_scope_p ())
16589 add_stmt (build_min (TAG_DEFN, enumtype));
16590 return;
16593 /* If this is a forward declaration, there should not be any variants,
16594 though we can get a variant in the middle of an enum-specifier with
16595 wacky code like 'enum E { e = sizeof(const E*) };' */
16596 gcc_assert (enumtype == TYPE_MAIN_VARIANT (enumtype)
16597 && (TYPE_VALUES (enumtype)
16598 || !TYPE_NEXT_VARIANT (enumtype)));
16601 /* Build and install a CONST_DECL for an enumeration constant of the
16602 enumeration type ENUMTYPE whose NAME and VALUE (if any) are provided.
16603 Apply ATTRIBUTES if available. LOC is the location of NAME.
16604 Assignment of sequential values by default is handled here. */
16606 tree
16607 build_enumerator (tree name, tree value, tree enumtype, tree attributes,
16608 location_t loc)
16610 tree decl;
16611 tree context;
16612 tree type;
16614 /* scalar_constant_value will pull out this expression, so make sure
16615 it's folded as appropriate. */
16616 if (processing_template_decl)
16617 value = fold_non_dependent_expr (value);
16619 /* If the VALUE was erroneous, pretend it wasn't there; that will
16620 result in the enum being assigned the next value in sequence. */
16621 if (value == error_mark_node)
16622 value = NULL_TREE;
16624 /* Remove no-op casts from the value. */
16625 if (value)
16626 STRIP_TYPE_NOPS (value);
16628 if (! processing_template_decl)
16630 /* Validate and default VALUE. */
16631 if (value != NULL_TREE)
16633 if (!ENUM_UNDERLYING_TYPE (enumtype))
16635 tree tmp_value = build_expr_type_conversion (WANT_INT | WANT_ENUM,
16636 value, true);
16637 if (tmp_value)
16638 value = tmp_value;
16640 else if (! INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P
16641 (TREE_TYPE (value)))
16642 value = perform_implicit_conversion_flags
16643 (ENUM_UNDERLYING_TYPE (enumtype), value, tf_warning_or_error,
16644 LOOKUP_IMPLICIT | LOOKUP_NO_NARROWING);
16646 if (value == error_mark_node)
16647 value = NULL_TREE;
16649 if (value != NULL_TREE)
16651 if (! INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P
16652 (TREE_TYPE (value)))
16654 error_at (cp_expr_loc_or_input_loc (value),
16655 "enumerator value for %qD must have integral or "
16656 "unscoped enumeration type", name);
16657 value = NULL_TREE;
16659 else
16661 value = cxx_constant_value (value);
16663 if (TREE_CODE (value) != INTEGER_CST)
16665 error ("enumerator value for %qD is not an integer "
16666 "constant", name);
16667 value = NULL_TREE;
16673 /* Default based on previous value. */
16674 if (value == NULL_TREE)
16676 if (TYPE_VALUES (enumtype))
16678 tree prev_value;
16680 /* C++03 7.2/4: If no initializer is specified for the first
16681 enumerator, the type is an unspecified integral
16682 type. Otherwise the type is the same as the type of the
16683 initializing value of the preceding enumerator unless the
16684 incremented value is not representable in that type, in
16685 which case the type is an unspecified integral type
16686 sufficient to contain the incremented value. */
16687 prev_value = DECL_INITIAL (TREE_VALUE (TYPE_VALUES (enumtype)));
16688 if (TREE_CODE (prev_value) != INTEGER_CST)
16689 value = error_mark_node;
16690 else
16692 wi::overflow_type overflowed;
16693 tree type = TREE_TYPE (prev_value);
16694 signop sgn = TYPE_SIGN (type);
16695 widest_int wi = wi::add (wi::to_widest (prev_value), 1, sgn,
16696 &overflowed);
16697 if (!overflowed)
16699 bool pos = !wi::neg_p (wi, sgn);
16700 if (!wi::fits_to_tree_p (wi, type))
16702 unsigned int itk;
16703 for (itk = itk_int; itk != itk_none; itk++)
16705 type = integer_types[itk];
16706 if (type != NULL_TREE
16707 && (pos || !TYPE_UNSIGNED (type))
16708 && wi::fits_to_tree_p (wi, type))
16709 break;
16711 if (type && cxx_dialect < cxx11
16712 && itk > itk_unsigned_long)
16713 pedwarn (input_location, OPT_Wlong_long,
16714 pos ? G_("\
16715 incremented enumerator value is too large for %<unsigned long%>") : G_("\
16716 incremented enumerator value is too large for %<long%>"));
16718 if (type == NULL_TREE)
16719 overflowed = wi::OVF_UNKNOWN;
16720 else
16721 value = wide_int_to_tree (type, wi);
16724 if (overflowed)
16726 error ("overflow in enumeration values at %qD", name);
16727 value = error_mark_node;
16731 else
16732 value = integer_zero_node;
16735 /* Remove no-op casts from the value. */
16736 STRIP_TYPE_NOPS (value);
16738 /* If the underlying type of the enum is fixed, check whether
16739 the enumerator values fits in the underlying type. If it
16740 does not fit, the program is ill-formed [C++0x dcl.enum]. */
16741 if (ENUM_UNDERLYING_TYPE (enumtype)
16742 && value
16743 && TREE_CODE (value) == INTEGER_CST)
16745 if (!int_fits_type_p (value, ENUM_UNDERLYING_TYPE (enumtype)))
16746 error ("enumerator value %qE is outside the range of underlying "
16747 "type %qT", value, ENUM_UNDERLYING_TYPE (enumtype));
16749 /* Convert the value to the appropriate type. */
16750 value = fold_convert (ENUM_UNDERLYING_TYPE (enumtype), value);
16754 /* C++ associates enums with global, function, or class declarations. */
16755 context = current_scope ();
16757 /* Build the actual enumeration constant. Note that the enumeration
16758 constants have the underlying type of the enum (if it is fixed)
16759 or the type of their initializer (if the underlying type of the
16760 enum is not fixed):
16762 [ C++0x dcl.enum ]
16764 If the underlying type is fixed, the type of each enumerator
16765 prior to the closing brace is the underlying type; if the
16766 initializing value of an enumerator cannot be represented by
16767 the underlying type, the program is ill-formed. If the
16768 underlying type is not fixed, the type of each enumerator is
16769 the type of its initializing value.
16771 If the underlying type is not fixed, it will be computed by
16772 finish_enum and we will reset the type of this enumerator. Of
16773 course, if we're processing a template, there may be no value. */
16774 type = value ? TREE_TYPE (value) : NULL_TREE;
16776 decl = build_decl (loc, CONST_DECL, name, type);
16778 DECL_CONTEXT (decl) = enumtype;
16779 TREE_CONSTANT (decl) = 1;
16780 TREE_READONLY (decl) = 1;
16781 DECL_INITIAL (decl) = value;
16783 if (attributes)
16784 cplus_decl_attributes (&decl, attributes, 0);
16786 if (context && context == current_class_type && !SCOPED_ENUM_P (enumtype))
16788 /* In something like `struct S { enum E { i = 7 }; };' we put `i'
16789 on the TYPE_FIELDS list for `S'. (That's so that you can say
16790 things like `S::i' later.) */
16792 /* The enumerator may be getting declared outside of its enclosing
16793 class, like so:
16795 class S { public: enum E : int; }; enum S::E : int { i = 7; };
16797 For which case we need to make sure that the access of `S::i'
16798 matches the access of `S::E'. */
16799 auto cas = make_temp_override (current_access_specifier);
16800 set_current_access_from_decl (TYPE_NAME (enumtype));
16801 finish_member_declaration (decl);
16803 else
16804 pushdecl (decl);
16806 /* Add this enumeration constant to the list for this type. */
16807 TYPE_VALUES (enumtype) = tree_cons (name, decl, TYPE_VALUES (enumtype));
16809 return decl;
16812 /* Look for an enumerator with the given NAME within the enumeration
16813 type ENUMTYPE. This routine is used primarily for qualified name
16814 lookup into an enumerator in C++0x, e.g.,
16816 enum class Color { Red, Green, Blue };
16818 Color color = Color::Red;
16820 Returns the value corresponding to the enumerator, or
16821 NULL_TREE if no such enumerator was found. */
16822 tree
16823 lookup_enumerator (tree enumtype, tree name)
16825 tree e;
16826 gcc_assert (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE);
16828 e = purpose_member (name, TYPE_VALUES (enumtype));
16829 return e? TREE_VALUE (e) : NULL_TREE;
16832 /* Implement LANG_HOOKS_SIMULATE_ENUM_DECL. */
16834 tree
16835 cxx_simulate_enum_decl (location_t loc, const char *name,
16836 vec<string_int_pair> *values)
16838 location_t saved_loc = input_location;
16839 input_location = loc;
16841 tree enumtype = start_enum (get_identifier (name), NULL_TREE, NULL_TREE,
16842 NULL_TREE, false, NULL);
16843 if (!OPAQUE_ENUM_P (enumtype))
16845 error_at (loc, "multiple definition of %q#T", enumtype);
16846 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
16847 "previous definition here");
16848 return enumtype;
16850 SET_OPAQUE_ENUM_P (enumtype, false);
16851 DECL_SOURCE_LOCATION (TYPE_NAME (enumtype)) = loc;
16853 for (const string_int_pair &value : values)
16854 build_enumerator (get_identifier (value.first),
16855 build_int_cst (integer_type_node, value.second),
16856 enumtype, NULL_TREE, loc);
16858 finish_enum_value_list (enumtype);
16859 finish_enum (enumtype);
16861 input_location = saved_loc;
16862 return enumtype;
16865 /* Implement LANG_HOOKS_SIMULATE_RECORD_DECL. */
16867 tree
16868 cxx_simulate_record_decl (location_t loc, const char *name,
16869 array_slice<const tree> fields)
16871 iloc_sentinel ils (loc);
16873 tree ident = get_identifier (name);
16874 tree type = xref_tag (/*tag_code=*/record_type, ident);
16875 if (type != error_mark_node
16876 && (TREE_CODE (type) != RECORD_TYPE || COMPLETE_TYPE_P (type)))
16878 error ("redefinition of %q#T", type);
16879 type = error_mark_node;
16881 if (type == error_mark_node)
16882 return lhd_simulate_record_decl (loc, name, fields);
16884 xref_basetypes (type, NULL_TREE);
16885 type = begin_class_definition (type);
16886 if (type == error_mark_node)
16887 return lhd_simulate_record_decl (loc, name, fields);
16889 for (tree field : fields)
16890 finish_member_declaration (field);
16892 type = finish_struct (type, NULL_TREE);
16894 tree decl = build_decl (loc, TYPE_DECL, ident, type);
16895 set_underlying_type (decl);
16896 lang_hooks.decls.pushdecl (decl);
16898 return type;
16901 /* We're defining DECL. Make sure that its type is OK. */
16903 static void
16904 check_function_type (tree decl, tree current_function_parms)
16906 tree fntype = TREE_TYPE (decl);
16907 tree return_type = complete_type (TREE_TYPE (fntype));
16909 /* In a function definition, arg types must be complete. */
16910 require_complete_types_for_parms (current_function_parms);
16912 if (dependent_type_p (return_type)
16913 || type_uses_auto (return_type))
16914 return;
16915 if (!COMPLETE_OR_VOID_TYPE_P (return_type))
16917 tree args = TYPE_ARG_TYPES (fntype);
16919 error ("return type %q#T is incomplete", return_type);
16921 /* Make it return void instead. */
16922 if (TREE_CODE (fntype) == METHOD_TYPE)
16923 fntype = build_method_type_directly (TREE_TYPE (TREE_VALUE (args)),
16924 void_type_node,
16925 TREE_CHAIN (args));
16926 else
16927 fntype = build_function_type (void_type_node, args);
16928 fntype = (cp_build_type_attribute_variant
16929 (fntype, TYPE_ATTRIBUTES (TREE_TYPE (decl))));
16930 fntype = cxx_copy_lang_qualifiers (fntype, TREE_TYPE (decl));
16931 TREE_TYPE (decl) = fntype;
16933 else
16935 abstract_virtuals_error (decl, TREE_TYPE (fntype));
16936 maybe_warn_parm_abi (TREE_TYPE (fntype),
16937 DECL_SOURCE_LOCATION (decl));
16941 /* True iff FN is an implicitly-defined default constructor. */
16943 static bool
16944 implicit_default_ctor_p (tree fn)
16946 return (DECL_CONSTRUCTOR_P (fn)
16947 && !user_provided_p (fn)
16948 && sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (fn)));
16951 /* Clobber the contents of *this to let the back end know that the object
16952 storage is dead when we enter the constructor or leave the destructor. */
16954 static tree
16955 build_clobber_this ()
16957 /* Clobbering an empty base is pointless, and harmful if its one byte
16958 TYPE_SIZE overlays real data. */
16959 if (is_empty_class (current_class_type))
16960 return void_node;
16962 /* If we have virtual bases, clobber the whole object, but only if we're in
16963 charge. If we don't have virtual bases, clobber the as-base type so we
16964 don't mess with tail padding. */
16965 bool vbases = CLASSTYPE_VBASECLASSES (current_class_type);
16967 tree ctype = current_class_type;
16968 if (!vbases)
16969 ctype = CLASSTYPE_AS_BASE (ctype);
16971 tree clobber = build_clobber (ctype);
16973 tree thisref = current_class_ref;
16974 if (ctype != current_class_type)
16976 thisref = build_nop (build_reference_type (ctype), current_class_ptr);
16977 thisref = convert_from_reference (thisref);
16980 tree exprstmt = build2 (MODIFY_EXPR, void_type_node, thisref, clobber);
16981 if (vbases)
16982 exprstmt = build_if_in_charge (exprstmt);
16984 return exprstmt;
16987 /* Create the FUNCTION_DECL for a function definition.
16988 DECLSPECS and DECLARATOR are the parts of the declaration;
16989 they describe the function's name and the type it returns,
16990 but twisted together in a fashion that parallels the syntax of C.
16992 FLAGS is a bitwise or of SF_PRE_PARSED (indicating that the
16993 DECLARATOR is really the DECL for the function we are about to
16994 process and that DECLSPECS should be ignored), SF_INCLASS_INLINE
16995 indicating that the function is an inline defined in-class.
16997 This function creates a binding context for the function body
16998 as well as setting up the FUNCTION_DECL in current_function_decl.
17000 For C++, we must first check whether that datum makes any sense.
17001 For example, "class A local_a(1,2);" means that variable local_a
17002 is an aggregate of type A, which should have a constructor
17003 applied to it with the argument list [1, 2].
17005 On entry, DECL_INITIAL (decl1) should be NULL_TREE or error_mark_node,
17006 or may be a BLOCK if the function has been defined previously
17007 in this translation unit. On exit, DECL_INITIAL (decl1) will be
17008 error_mark_node if the function has never been defined, or
17009 a BLOCK if the function has been defined somewhere. */
17011 bool
17012 start_preparsed_function (tree decl1, tree attrs, int flags)
17014 tree ctype = NULL_TREE;
17015 bool doing_friend = false;
17017 /* Sanity check. */
17018 gcc_assert (VOID_TYPE_P (TREE_VALUE (void_list_node)));
17019 gcc_assert (TREE_CHAIN (void_list_node) == NULL_TREE);
17021 tree fntype = TREE_TYPE (decl1);
17022 if (TREE_CODE (fntype) == METHOD_TYPE)
17023 ctype = TYPE_METHOD_BASETYPE (fntype);
17024 else
17026 ctype = DECL_FRIEND_CONTEXT (decl1);
17028 if (ctype)
17029 doing_friend = true;
17032 if (DECL_DECLARED_INLINE_P (decl1)
17033 && lookup_attribute ("noinline", attrs))
17034 warning_at (DECL_SOURCE_LOCATION (decl1), 0,
17035 "inline function %qD given attribute %qs", decl1, "noinline");
17037 /* Handle gnu_inline attribute. */
17038 if (GNU_INLINE_P (decl1))
17040 DECL_EXTERNAL (decl1) = 1;
17041 DECL_NOT_REALLY_EXTERN (decl1) = 0;
17042 DECL_INTERFACE_KNOWN (decl1) = 1;
17043 DECL_DISREGARD_INLINE_LIMITS (decl1) = 1;
17046 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl1))
17047 /* This is a constructor, we must ensure that any default args
17048 introduced by this definition are propagated to the clones
17049 now. The clones are used directly in overload resolution. */
17050 adjust_clone_args (decl1);
17052 /* Sometimes we don't notice that a function is a static member, and
17053 build a METHOD_TYPE for it. Fix that up now. */
17054 gcc_assert (!(ctype != NULL_TREE && DECL_STATIC_FUNCTION_P (decl1)
17055 && TREE_CODE (TREE_TYPE (decl1)) == METHOD_TYPE));
17057 /* Set up current_class_type, and enter the scope of the class, if
17058 appropriate. */
17059 if (ctype)
17060 push_nested_class (ctype);
17061 else if (DECL_STATIC_FUNCTION_P (decl1))
17062 push_nested_class (DECL_CONTEXT (decl1));
17064 /* Now that we have entered the scope of the class, we must restore
17065 the bindings for any template parameters surrounding DECL1, if it
17066 is an inline member template. (Order is important; consider the
17067 case where a template parameter has the same name as a field of
17068 the class.) It is not until after this point that
17069 PROCESSING_TEMPLATE_DECL is guaranteed to be set up correctly. */
17070 if (flags & SF_INCLASS_INLINE)
17071 maybe_begin_member_template_processing (decl1);
17073 /* Effective C++ rule 15. */
17074 if (warn_ecpp
17075 && DECL_ASSIGNMENT_OPERATOR_P (decl1)
17076 && DECL_OVERLOADED_OPERATOR_IS (decl1, NOP_EXPR)
17077 && VOID_TYPE_P (TREE_TYPE (fntype)))
17078 warning (OPT_Weffc__,
17079 "%<operator=%> should return a reference to %<*this%>");
17081 /* Make the init_value nonzero so pushdecl knows this is not tentative.
17082 error_mark_node is replaced below (in poplevel) with the BLOCK. */
17083 if (!DECL_INITIAL (decl1))
17084 DECL_INITIAL (decl1) = error_mark_node;
17086 /* This function exists in static storage.
17087 (This does not mean `static' in the C sense!) */
17088 TREE_STATIC (decl1) = 1;
17090 /* We must call push_template_decl after current_class_type is set
17091 up. (If we are processing inline definitions after exiting a
17092 class scope, current_class_type will be NULL_TREE until set above
17093 by push_nested_class.) */
17094 if (processing_template_decl)
17096 tree newdecl1 = push_template_decl (decl1, doing_friend);
17097 if (newdecl1 == error_mark_node)
17099 if (ctype || DECL_STATIC_FUNCTION_P (decl1))
17100 pop_nested_class ();
17101 return false;
17103 decl1 = newdecl1;
17106 /* Make sure the parameter and return types are reasonable. When
17107 you declare a function, these types can be incomplete, but they
17108 must be complete when you define the function. */
17109 check_function_type (decl1, DECL_ARGUMENTS (decl1));
17111 /* Build the return declaration for the function. */
17112 tree restype = TREE_TYPE (fntype);
17114 if (DECL_RESULT (decl1) == NULL_TREE)
17116 tree resdecl;
17118 resdecl = build_decl (input_location, RESULT_DECL, 0, restype);
17119 DECL_ARTIFICIAL (resdecl) = 1;
17120 DECL_IGNORED_P (resdecl) = 1;
17121 DECL_RESULT (decl1) = resdecl;
17123 cp_apply_type_quals_to_decl (cp_type_quals (restype), resdecl);
17126 /* Record the decl so that the function name is defined.
17127 If we already have a decl for this name, and it is a FUNCTION_DECL,
17128 use the old decl. */
17129 if (!processing_template_decl && !(flags & SF_PRE_PARSED))
17131 /* A specialization is not used to guide overload resolution. */
17132 if (!DECL_FUNCTION_MEMBER_P (decl1)
17133 && !(DECL_USE_TEMPLATE (decl1) &&
17134 PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl1))))
17136 tree olddecl = pushdecl (decl1);
17138 if (olddecl == error_mark_node)
17139 /* If something went wrong when registering the declaration,
17140 use DECL1; we have to have a FUNCTION_DECL to use when
17141 parsing the body of the function. */
17143 else
17145 /* Otherwise, OLDDECL is either a previous declaration
17146 of the same function or DECL1 itself. */
17148 if (warn_missing_declarations
17149 && olddecl == decl1
17150 && !DECL_MAIN_P (decl1)
17151 && TREE_PUBLIC (decl1)
17152 && !DECL_DECLARED_INLINE_P (decl1))
17154 tree context;
17156 /* Check whether DECL1 is in an anonymous
17157 namespace. */
17158 for (context = DECL_CONTEXT (decl1);
17159 context;
17160 context = DECL_CONTEXT (context))
17162 if (TREE_CODE (context) == NAMESPACE_DECL
17163 && DECL_NAME (context) == NULL_TREE)
17164 break;
17167 if (context == NULL)
17168 warning_at (DECL_SOURCE_LOCATION (decl1),
17169 OPT_Wmissing_declarations,
17170 "no previous declaration for %qD", decl1);
17173 decl1 = olddecl;
17176 else
17178 /* We need to set the DECL_CONTEXT. */
17179 if (!DECL_CONTEXT (decl1) && DECL_TEMPLATE_INFO (decl1))
17180 DECL_CONTEXT (decl1) = DECL_CONTEXT (DECL_TI_TEMPLATE (decl1));
17182 fntype = TREE_TYPE (decl1);
17183 restype = TREE_TYPE (fntype);
17185 /* If #pragma weak applies, mark the decl appropriately now.
17186 The pragma only applies to global functions. Because
17187 determining whether or not the #pragma applies involves
17188 computing the mangled name for the declaration, we cannot
17189 apply the pragma until after we have merged this declaration
17190 with any previous declarations; if the original declaration
17191 has a linkage specification, that specification applies to
17192 the definition as well, and may affect the mangled name. */
17193 if (DECL_FILE_SCOPE_P (decl1))
17194 maybe_apply_pragma_weak (decl1);
17197 /* We are now in the scope of the function being defined. */
17198 current_function_decl = decl1;
17200 /* Save the parm names or decls from this function's declarator
17201 where store_parm_decls will find them. */
17202 tree current_function_parms = DECL_ARGUMENTS (decl1);
17204 /* Let the user know we're compiling this function. */
17205 announce_function (decl1);
17207 gcc_assert (DECL_INITIAL (decl1));
17209 /* This function may already have been parsed, in which case just
17210 return; our caller will skip over the body without parsing. */
17211 if (DECL_INITIAL (decl1) != error_mark_node)
17212 return true;
17214 /* Initialize RTL machinery. We cannot do this until
17215 CURRENT_FUNCTION_DECL and DECL_RESULT are set up. We do this
17216 even when processing a template; this is how we get
17217 CFUN set up, and our per-function variables initialized.
17218 FIXME factor out the non-RTL stuff. */
17219 cp_binding_level *bl = current_binding_level;
17220 allocate_struct_function (decl1, processing_template_decl);
17222 /* Initialize the language data structures. Whenever we start
17223 a new function, we destroy temporaries in the usual way. */
17224 cfun->language = ggc_cleared_alloc<language_function> ();
17225 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
17226 current_binding_level = bl;
17228 /* If we are (erroneously) defining a function that we have already
17229 defined before, wipe out what we knew before. */
17230 gcc_checking_assert (!DECL_PENDING_INLINE_P (decl1));
17231 FNDECL_USED_AUTO (decl1) = false;
17232 DECL_SAVED_AUTO_RETURN_TYPE (decl1) = NULL;
17234 if (!processing_template_decl && type_uses_auto (restype))
17236 FNDECL_USED_AUTO (decl1) = true;
17237 DECL_SAVED_AUTO_RETURN_TYPE (decl1) = restype;
17240 /* Start the statement-tree, start the tree now. */
17241 DECL_SAVED_TREE (decl1) = push_stmt_list ();
17243 if (ctype && !doing_friend && !DECL_STATIC_FUNCTION_P (decl1))
17245 /* We know that this was set up by `grokclassfn'. We do not
17246 wait until `store_parm_decls', since evil parse errors may
17247 never get us to that point. Here we keep the consistency
17248 between `current_class_type' and `current_class_ptr'. */
17249 tree t = DECL_ARGUMENTS (decl1);
17251 gcc_assert (t != NULL_TREE && TREE_CODE (t) == PARM_DECL);
17252 gcc_assert (TYPE_PTR_P (TREE_TYPE (t)));
17254 cp_function_chain->x_current_class_ref
17255 = cp_build_fold_indirect_ref (t);
17256 /* Set this second to avoid shortcut in cp_build_indirect_ref. */
17257 cp_function_chain->x_current_class_ptr = t;
17259 /* Constructors and destructors need to know whether they're "in
17260 charge" of initializing virtual base classes. */
17261 t = DECL_CHAIN (t);
17262 if (DECL_HAS_IN_CHARGE_PARM_P (decl1))
17264 current_in_charge_parm = t;
17265 t = DECL_CHAIN (t);
17267 if (DECL_HAS_VTT_PARM_P (decl1))
17269 gcc_assert (DECL_NAME (t) == vtt_parm_identifier);
17270 current_vtt_parm = t;
17274 bool honor_interface = (!DECL_TEMPLATE_INSTANTIATION (decl1)
17275 /* Implicitly-defined methods (like the
17276 destructor for a class in which no destructor
17277 is explicitly declared) must not be defined
17278 until their definition is needed. So, we
17279 ignore interface specifications for
17280 compiler-generated functions. */
17281 && !DECL_ARTIFICIAL (decl1));
17282 struct c_fileinfo *finfo
17283 = get_fileinfo (LOCATION_FILE (DECL_SOURCE_LOCATION (decl1)));
17285 if (processing_template_decl)
17286 /* Don't mess with interface flags. */;
17287 else if (DECL_INTERFACE_KNOWN (decl1))
17289 tree ctx = decl_function_context (decl1);
17291 if (DECL_NOT_REALLY_EXTERN (decl1))
17292 DECL_EXTERNAL (decl1) = 0;
17294 if (ctx != NULL_TREE && vague_linkage_p (ctx))
17295 /* This is a function in a local class in an extern inline
17296 or template function. */
17297 comdat_linkage (decl1);
17299 /* If this function belongs to an interface, it is public.
17300 If it belongs to someone else's interface, it is also external.
17301 This only affects inlines and template instantiations. */
17302 else if (!finfo->interface_unknown && honor_interface)
17304 if (DECL_DECLARED_INLINE_P (decl1)
17305 || DECL_TEMPLATE_INSTANTIATION (decl1))
17307 DECL_EXTERNAL (decl1)
17308 = (finfo->interface_only
17309 || (DECL_DECLARED_INLINE_P (decl1)
17310 && ! flag_implement_inlines
17311 && !DECL_VINDEX (decl1)));
17313 /* For WIN32 we also want to put these in linkonce sections. */
17314 maybe_make_one_only (decl1);
17316 else
17317 DECL_EXTERNAL (decl1) = 0;
17318 DECL_INTERFACE_KNOWN (decl1) = 1;
17319 /* If this function is in an interface implemented in this file,
17320 make sure that the back end knows to emit this function
17321 here. */
17322 if (!DECL_EXTERNAL (decl1))
17323 mark_needed (decl1);
17325 else if (finfo->interface_unknown && finfo->interface_only
17326 && honor_interface)
17328 /* If MULTIPLE_SYMBOL_SPACES is defined and we saw a #pragma
17329 interface, we will have both finfo->interface_unknown and
17330 finfo->interface_only set. In that case, we don't want to
17331 use the normal heuristics because someone will supply a
17332 #pragma implementation elsewhere, and deducing it here would
17333 produce a conflict. */
17334 comdat_linkage (decl1);
17335 DECL_EXTERNAL (decl1) = 0;
17336 DECL_INTERFACE_KNOWN (decl1) = 1;
17337 DECL_DEFER_OUTPUT (decl1) = 1;
17339 else
17341 /* This is a definition, not a reference.
17342 So clear DECL_EXTERNAL, unless this is a GNU extern inline. */
17343 if (!GNU_INLINE_P (decl1))
17344 DECL_EXTERNAL (decl1) = 0;
17346 if ((DECL_DECLARED_INLINE_P (decl1)
17347 || DECL_TEMPLATE_INSTANTIATION (decl1))
17348 && ! DECL_INTERFACE_KNOWN (decl1))
17349 DECL_DEFER_OUTPUT (decl1) = 1;
17350 else
17351 DECL_INTERFACE_KNOWN (decl1) = 1;
17354 /* Determine the ELF visibility attribute for the function. We must not
17355 do this before calling "pushdecl", as we must allow "duplicate_decls"
17356 to merge any attributes appropriately. We also need to wait until
17357 linkage is set. */
17358 if (!DECL_CLONED_FUNCTION_P (decl1))
17359 determine_visibility (decl1);
17361 if (!processing_template_decl)
17362 maybe_instantiate_noexcept (decl1);
17364 begin_scope (sk_function_parms, decl1);
17366 ++function_depth;
17368 start_fname_decls ();
17370 store_parm_decls (current_function_parms);
17372 if (!processing_template_decl
17373 && (flag_lifetime_dse > 1)
17374 && DECL_CONSTRUCTOR_P (decl1)
17375 && !DECL_CLONED_FUNCTION_P (decl1)
17376 /* Clobbering an empty base is harmful if it overlays real data. */
17377 && !is_empty_class (current_class_type)
17378 /* We can't clobber safely for an implicitly-defined default constructor
17379 because part of the initialization might happen before we enter the
17380 constructor, via AGGR_INIT_ZERO_FIRST (c++/68006). */
17381 && !implicit_default_ctor_p (decl1))
17382 finish_expr_stmt (build_clobber_this ());
17384 if (!processing_template_decl
17385 && DECL_CONSTRUCTOR_P (decl1)
17386 && sanitize_flags_p (SANITIZE_VPTR)
17387 && !DECL_CLONED_FUNCTION_P (decl1)
17388 && !implicit_default_ctor_p (decl1))
17389 cp_ubsan_maybe_initialize_vtbl_ptrs (current_class_ptr);
17391 if (!DECL_OMP_DECLARE_REDUCTION_P (decl1))
17392 start_lambda_scope (decl1);
17394 return true;
17398 /* Like start_preparsed_function, except that instead of a
17399 FUNCTION_DECL, this function takes DECLSPECS and DECLARATOR.
17401 Returns true on success. If the DECLARATOR is not suitable
17402 for a function, we return false, which tells the parser to
17403 skip the entire function. */
17405 bool
17406 start_function (cp_decl_specifier_seq *declspecs,
17407 const cp_declarator *declarator,
17408 tree attrs)
17410 tree decl1;
17412 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1, &attrs);
17413 invoke_plugin_callbacks (PLUGIN_START_PARSE_FUNCTION, decl1);
17414 if (decl1 == error_mark_node)
17415 return false;
17417 if (DECL_MAIN_P (decl1))
17418 /* main must return int. grokfndecl should have corrected it
17419 (and issued a diagnostic) if the user got it wrong. */
17420 gcc_assert (same_type_p (TREE_TYPE (TREE_TYPE (decl1)),
17421 integer_type_node));
17423 return start_preparsed_function (decl1, attrs, /*flags=*/SF_DEFAULT);
17426 /* Returns true iff an EH_SPEC_BLOCK should be created in the body of
17427 FN. */
17429 static bool
17430 use_eh_spec_block (tree fn)
17432 return (flag_exceptions && flag_enforce_eh_specs
17433 && !processing_template_decl
17434 /* We insert the EH_SPEC_BLOCK only in the original
17435 function; then, it is copied automatically to the
17436 clones. */
17437 && !DECL_CLONED_FUNCTION_P (fn)
17438 /* Implicitly-generated constructors and destructors have
17439 exception specifications. However, those specifications
17440 are the union of the possible exceptions specified by the
17441 constructors/destructors for bases and members, so no
17442 unallowed exception will ever reach this function. By
17443 not creating the EH_SPEC_BLOCK we save a little memory,
17444 and we avoid spurious warnings about unreachable
17445 code. */
17446 && !DECL_DEFAULTED_FN (fn)
17447 && !type_throw_all_p (TREE_TYPE (fn)));
17450 /* Helper function to push ARGS into the current lexical scope. DECL
17451 is the function declaration. NONPARMS is used to handle enum
17452 constants. */
17454 void
17455 do_push_parm_decls (tree decl, tree args, tree *nonparms)
17457 /* If we're doing semantic analysis, then we'll call pushdecl
17458 for each of these. We must do them in reverse order so that
17459 they end in the correct forward order. */
17460 args = nreverse (args);
17462 tree next;
17463 for (tree parm = args; parm; parm = next)
17465 next = DECL_CHAIN (parm);
17466 if (TREE_CODE (parm) == PARM_DECL)
17467 pushdecl (parm);
17468 else if (nonparms)
17470 /* If we find an enum constant or a type tag, put it aside for
17471 the moment. */
17472 TREE_CHAIN (parm) = NULL_TREE;
17473 *nonparms = chainon (*nonparms, parm);
17477 /* Get the decls in their original chain order and record in the
17478 function. This is all and only the PARM_DECLs that were
17479 pushed into scope by the loop above. */
17480 DECL_ARGUMENTS (decl) = get_local_decls ();
17483 /* Store the parameter declarations into the current function declaration.
17484 This is called after parsing the parameter declarations, before
17485 digesting the body of the function.
17487 Also install to binding contour return value identifier, if any. */
17489 static void
17490 store_parm_decls (tree current_function_parms)
17492 tree fndecl = current_function_decl;
17494 /* This is a chain of any other decls that came in among the parm
17495 declarations. If a parm is declared with enum {foo, bar} x;
17496 then CONST_DECLs for foo and bar are put here. */
17497 tree nonparms = NULL_TREE;
17499 if (current_function_parms)
17501 /* This case is when the function was defined with an ANSI prototype.
17502 The parms already have decls, so we need not do anything here
17503 except record them as in effect
17504 and complain if any redundant old-style parm decls were written. */
17506 tree specparms = current_function_parms;
17508 /* Must clear this because it might contain TYPE_DECLs declared
17509 at class level. */
17510 current_binding_level->names = NULL;
17512 do_push_parm_decls (fndecl, specparms, &nonparms);
17514 else
17515 DECL_ARGUMENTS (fndecl) = NULL_TREE;
17517 /* Now store the final chain of decls for the arguments
17518 as the decl-chain of the current lexical scope.
17519 Put the enumerators in as well, at the front so that
17520 DECL_ARGUMENTS is not modified. */
17521 current_binding_level->names = chainon (nonparms, DECL_ARGUMENTS (fndecl));
17523 if (use_eh_spec_block (current_function_decl))
17524 current_eh_spec_block = begin_eh_spec_block ();
17528 /* Set the return value of the [cd]tor if the ABI wants that. */
17530 void
17531 maybe_return_this (void)
17533 if (targetm.cxx.cdtor_returns_this ())
17535 /* Return the address of the object. */
17536 tree val = DECL_ARGUMENTS (current_function_decl);
17537 suppress_warning (val, OPT_Wuse_after_free);
17538 val = fold_convert (TREE_TYPE (DECL_RESULT (current_function_decl)), val);
17539 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
17540 DECL_RESULT (current_function_decl), val);
17541 tree exprstmt = build_stmt (input_location, RETURN_EXPR, val);
17542 add_stmt (exprstmt);
17546 /* Do all the processing for the beginning of a destructor; set up the
17547 vtable pointers and cleanups for bases and members. */
17549 static void
17550 begin_destructor_body (void)
17552 tree compound_stmt;
17554 /* If the CURRENT_CLASS_TYPE is incomplete, we will have already
17555 issued an error message. We still want to try to process the
17556 body of the function, but initialize_vtbl_ptrs will crash if
17557 TYPE_BINFO is NULL. */
17558 if (COMPLETE_TYPE_P (current_class_type))
17560 compound_stmt = begin_compound_stmt (0);
17561 /* Make all virtual function table pointers in non-virtual base
17562 classes point to CURRENT_CLASS_TYPE's virtual function
17563 tables. */
17564 initialize_vtbl_ptrs (current_class_ptr);
17565 finish_compound_stmt (compound_stmt);
17567 if (flag_lifetime_dse
17568 /* Clobbering an empty base is harmful if it overlays real data. */
17569 && !is_empty_class (current_class_type))
17571 if (sanitize_flags_p (SANITIZE_VPTR)
17572 && (flag_sanitize_recover & SANITIZE_VPTR) == 0
17573 && TYPE_CONTAINS_VPTR_P (current_class_type))
17575 tree binfo = TYPE_BINFO (current_class_type);
17576 tree ref
17577 = cp_build_fold_indirect_ref (current_class_ptr);
17579 tree vtbl_ptr = build_vfield_ref (ref, TREE_TYPE (binfo));
17580 tree vtbl = build_zero_cst (TREE_TYPE (vtbl_ptr));
17581 tree stmt = cp_build_modify_expr (input_location, vtbl_ptr,
17582 NOP_EXPR, vtbl,
17583 tf_warning_or_error);
17584 /* If the vptr is shared with some virtual nearly empty base,
17585 don't clear it if not in charge, the dtor of the virtual
17586 nearly empty base will do that later. */
17587 if (CLASSTYPE_VBASECLASSES (current_class_type))
17589 tree c = current_class_type;
17590 while (CLASSTYPE_PRIMARY_BINFO (c))
17592 if (BINFO_VIRTUAL_P (CLASSTYPE_PRIMARY_BINFO (c)))
17594 stmt = convert_to_void (stmt, ICV_STATEMENT,
17595 tf_warning_or_error);
17596 stmt = build_if_in_charge (stmt);
17597 break;
17599 c = BINFO_TYPE (CLASSTYPE_PRIMARY_BINFO (c));
17602 finish_decl_cleanup (NULL_TREE, stmt);
17604 else
17605 finish_decl_cleanup (NULL_TREE, build_clobber_this ());
17608 /* And insert cleanups for our bases and members so that they
17609 will be properly destroyed if we throw. */
17610 push_base_cleanups ();
17614 /* Do the necessary processing for the beginning of a function body, which
17615 in this case includes member-initializers, but not the catch clauses of
17616 a function-try-block. Currently, this means opening a binding level
17617 for the member-initializers (in a ctor), member cleanups (in a dtor),
17618 and capture proxies (in a lambda operator()). */
17620 tree
17621 begin_function_body (void)
17623 if (! FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
17624 return NULL_TREE;
17626 if (processing_template_decl)
17627 /* Do nothing now. */;
17628 else
17629 /* Always keep the BLOCK node associated with the outermost pair of
17630 curly braces of a function. These are needed for correct
17631 operation of dwarfout.c. */
17632 keep_next_level (true);
17634 tree stmt = begin_compound_stmt (BCS_FN_BODY);
17636 if (processing_template_decl)
17637 /* Do nothing now. */;
17638 else if (DECL_DESTRUCTOR_P (current_function_decl))
17639 begin_destructor_body ();
17641 return stmt;
17644 /* Do the processing for the end of a function body. Currently, this means
17645 closing out the cleanups for fully-constructed bases and members, and in
17646 the case of the destructor, deleting the object if desired. Again, this
17647 is only meaningful for [cd]tors, since they are the only functions where
17648 there is a significant distinction between the main body and any
17649 function catch clauses. Handling, say, main() return semantics here
17650 would be wrong, as flowing off the end of a function catch clause for
17651 main() would also need to return 0. */
17653 void
17654 finish_function_body (tree compstmt)
17656 if (compstmt == NULL_TREE)
17657 return;
17659 /* Close the block. */
17660 finish_compound_stmt (compstmt);
17662 if (processing_template_decl)
17663 /* Do nothing now. */;
17664 else if (DECL_CONSTRUCTOR_P (current_function_decl)
17665 || DECL_DESTRUCTOR_P (current_function_decl))
17666 maybe_return_this ();
17669 /* Given a function, returns the BLOCK corresponding to the outermost level
17670 of curly braces, skipping the artificial block created for constructor
17671 initializers. */
17673 tree
17674 outer_curly_brace_block (tree fndecl)
17676 tree block = DECL_INITIAL (fndecl);
17677 if (BLOCK_OUTER_CURLY_BRACE_P (block))
17678 return block;
17679 block = BLOCK_SUBBLOCKS (block);
17680 if (BLOCK_OUTER_CURLY_BRACE_P (block))
17681 return block;
17682 block = BLOCK_SUBBLOCKS (block);
17683 gcc_assert (BLOCK_OUTER_CURLY_BRACE_P (block));
17684 return block;
17687 /* If FNDECL is a class's key method, add the class to the list of
17688 keyed classes that should be emitted. */
17690 static void
17691 record_key_method_defined (tree fndecl)
17693 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fndecl)
17694 && DECL_VIRTUAL_P (fndecl)
17695 && !processing_template_decl)
17697 tree fnclass = DECL_CONTEXT (fndecl);
17698 if (fndecl == CLASSTYPE_KEY_METHOD (fnclass))
17699 vec_safe_push (keyed_classes, fnclass);
17703 /* Attempt to add a fix-it hint to RICHLOC suggesting the insertion
17704 of "return *this;" immediately before its location, using FNDECL's
17705 first statement (if any) to give the indentation, if appropriate. */
17707 static void
17708 add_return_star_this_fixit (gcc_rich_location *richloc, tree fndecl)
17710 location_t indent = UNKNOWN_LOCATION;
17711 tree stmts = expr_first (DECL_SAVED_TREE (fndecl));
17712 if (stmts)
17713 indent = EXPR_LOCATION (stmts);
17714 richloc->add_fixit_insert_formatted ("return *this;",
17715 richloc->get_loc (),
17716 indent);
17719 /* This function carries out the subset of finish_function operations needed
17720 to emit the compiler-generated outlined helper functions used by the
17721 coroutines implementation. */
17723 static void
17724 emit_coro_helper (tree helper)
17726 /* This is a partial set of the operations done by finish_function()
17727 plus emitting the result. */
17728 set_cfun (NULL);
17729 current_function_decl = helper;
17730 begin_scope (sk_function_parms, NULL);
17731 store_parm_decls (DECL_ARGUMENTS (helper));
17732 announce_function (helper);
17733 allocate_struct_function (helper, false);
17734 cfun->language = ggc_cleared_alloc<language_function> ();
17735 poplevel (1, 0, 1);
17736 maybe_save_constexpr_fundef (helper);
17737 /* We must start each function with a clear fold cache. */
17738 clear_fold_cache ();
17739 cp_fold_function (helper);
17740 DECL_CONTEXT (DECL_RESULT (helper)) = helper;
17741 BLOCK_SUPERCONTEXT (DECL_INITIAL (helper)) = helper;
17742 /* This function has coroutine IFNs that we should handle in middle
17743 end lowering. */
17744 cfun->coroutine_component = true;
17745 cp_genericize (helper);
17746 expand_or_defer_fn (helper);
17749 /* Finish up a function declaration and compile that function
17750 all the way to assembler language output. The free the storage
17751 for the function definition. INLINE_P is TRUE if we just
17752 finished processing the body of an in-class inline function
17753 definition. (This processing will have taken place after the
17754 class definition is complete.) */
17756 tree
17757 finish_function (bool inline_p)
17759 tree fndecl = current_function_decl;
17760 tree fntype, ctype = NULL_TREE;
17761 tree resumer = NULL_TREE, destroyer = NULL_TREE;
17762 bool coro_p = flag_coroutines
17763 && !processing_template_decl
17764 && DECL_COROUTINE_P (fndecl);
17765 bool coro_emit_helpers = false;
17767 /* When we get some parse errors, we can end up without a
17768 current_function_decl, so cope. */
17769 if (fndecl == NULL_TREE)
17770 return error_mark_node;
17772 if (!DECL_OMP_DECLARE_REDUCTION_P (fndecl))
17773 finish_lambda_scope ();
17775 if (c_dialect_objc ())
17776 objc_finish_function ();
17778 record_key_method_defined (fndecl);
17780 fntype = TREE_TYPE (fndecl);
17782 /* TREE_READONLY (fndecl) = 1;
17783 This caused &foo to be of type ptr-to-const-function
17784 which then got a warning when stored in a ptr-to-function variable. */
17786 gcc_assert (building_stmt_list_p ());
17787 /* The current function is being defined, so its DECL_INITIAL should
17788 be set, and unless there's a multiple definition, it should be
17789 error_mark_node. */
17790 gcc_assert (DECL_INITIAL (fndecl) == error_mark_node);
17792 if (coro_p)
17794 /* Only try to emit the coroutine outlined helper functions if the
17795 transforms succeeded. Otherwise, treat errors in the same way as
17796 a regular function. */
17797 coro_emit_helpers = morph_fn_to_coro (fndecl, &resumer, &destroyer);
17799 /* We should handle coroutine IFNs in middle end lowering. */
17800 cfun->coroutine_component = true;
17802 /* Do not try to process the ramp's EH unless outlining succeeded. */
17803 if (coro_emit_helpers && use_eh_spec_block (fndecl))
17804 finish_eh_spec_block (TYPE_RAISES_EXCEPTIONS
17805 (TREE_TYPE (fndecl)),
17806 current_eh_spec_block);
17808 else
17809 /* For a cloned function, we've already got all the code we need;
17810 there's no need to add any extra bits. */
17811 if (!DECL_CLONED_FUNCTION_P (fndecl))
17813 /* Make it so that `main' always returns 0 by default. */
17814 if (DECL_MAIN_P (current_function_decl))
17815 finish_return_stmt (integer_zero_node);
17817 if (use_eh_spec_block (current_function_decl))
17818 finish_eh_spec_block (TYPE_RAISES_EXCEPTIONS
17819 (TREE_TYPE (current_function_decl)),
17820 current_eh_spec_block);
17823 /* If we're saving up tree structure, tie off the function now. */
17824 DECL_SAVED_TREE (fndecl) = pop_stmt_list (DECL_SAVED_TREE (fndecl));
17826 finish_fname_decls ();
17828 /* If this function can't throw any exceptions, remember that. */
17829 if (!processing_template_decl
17830 && !cp_function_chain->can_throw
17831 && !flag_non_call_exceptions
17832 && !decl_replaceable_p (fndecl,
17833 opt_for_fn (fndecl, flag_semantic_interposition)))
17834 TREE_NOTHROW (fndecl) = 1;
17836 /* This must come after expand_function_end because cleanups might
17837 have declarations (from inline functions) that need to go into
17838 this function's blocks. */
17840 /* If the current binding level isn't the outermost binding level
17841 for this function, either there is a bug, or we have experienced
17842 syntax errors and the statement tree is malformed. */
17843 if (current_binding_level->kind != sk_function_parms)
17845 /* Make sure we have already experienced errors. */
17846 gcc_assert (errorcount);
17848 /* Throw away the broken statement tree and extra binding
17849 levels. */
17850 DECL_SAVED_TREE (fndecl) = alloc_stmt_list ();
17852 while (current_binding_level->kind != sk_function_parms)
17854 if (current_binding_level->kind == sk_class)
17855 pop_nested_class ();
17856 else
17857 poplevel (0, 0, 0);
17860 poplevel (1, 0, 1);
17862 /* Statements should always be full-expressions at the outermost set
17863 of curly braces for a function. */
17864 gcc_assert (stmts_are_full_exprs_p ());
17866 /* If there are no return statements in a function with auto return type,
17867 the return type is void. But if the declared type is something like
17868 auto*, this is an error. */
17869 if (!processing_template_decl && FNDECL_USED_AUTO (fndecl)
17870 && TREE_TYPE (fntype) == DECL_SAVED_AUTO_RETURN_TYPE (fndecl))
17872 if (is_auto (DECL_SAVED_AUTO_RETURN_TYPE (fndecl))
17873 && !current_function_returns_value
17874 && !current_function_returns_null)
17876 /* We haven't applied return type deduction because we haven't
17877 seen any return statements. Do that now. */
17878 tree node = type_uses_auto (DECL_SAVED_AUTO_RETURN_TYPE (fndecl));
17879 do_auto_deduction (DECL_SAVED_AUTO_RETURN_TYPE (fndecl),
17880 void_node, node, tf_warning_or_error,
17881 adc_return_type);
17883 apply_deduced_return_type (fndecl, void_type_node);
17884 fntype = TREE_TYPE (fndecl);
17886 else if (!current_function_returns_value
17887 && !current_function_returns_null)
17889 error ("no return statements in function returning %qT",
17890 DECL_SAVED_AUTO_RETURN_TYPE (fndecl));
17891 inform (input_location, "only plain %<auto%> return type can be "
17892 "deduced to %<void%>");
17896 /* Remember that we were in class scope. */
17897 if (current_class_name)
17898 ctype = current_class_type;
17900 if (DECL_DELETED_FN (fndecl))
17902 DECL_INITIAL (fndecl) = error_mark_node;
17903 DECL_SAVED_TREE (fndecl) = NULL_TREE;
17904 goto cleanup;
17907 // If this is a concept, check that the definition is reasonable.
17908 if (DECL_DECLARED_CONCEPT_P (fndecl))
17909 check_function_concept (fndecl);
17911 if (flag_openmp)
17912 if (tree attr = lookup_attribute ("omp declare variant base",
17913 DECL_ATTRIBUTES (fndecl)))
17914 omp_declare_variant_finalize (fndecl, attr);
17916 /* Complain if there's just no return statement. */
17917 if ((warn_return_type
17918 || (cxx_dialect >= cxx14
17919 && DECL_DECLARED_CONSTEXPR_P (fndecl)))
17920 && !VOID_TYPE_P (TREE_TYPE (fntype))
17921 && !dependent_type_p (TREE_TYPE (fntype))
17922 && !current_function_returns_value && !current_function_returns_null
17923 /* Don't complain if we abort or throw. */
17924 && !current_function_returns_abnormally
17925 /* Don't complain if there's an infinite loop. */
17926 && !current_function_infinite_loop
17927 /* Don't complain if we are declared noreturn. */
17928 && !TREE_THIS_VOLATILE (fndecl)
17929 && !DECL_NAME (DECL_RESULT (fndecl))
17930 && !warning_suppressed_p (fndecl, OPT_Wreturn_type)
17931 /* Structor return values (if any) are set by the compiler. */
17932 && !DECL_CONSTRUCTOR_P (fndecl)
17933 && !DECL_DESTRUCTOR_P (fndecl)
17934 && targetm.warn_func_return (fndecl))
17936 gcc_rich_location richloc (input_location);
17937 /* Potentially add a "return *this;" fix-it hint for
17938 assignment operators. */
17939 if (IDENTIFIER_ASSIGN_OP_P (DECL_NAME (fndecl)))
17941 tree valtype = TREE_TYPE (DECL_RESULT (fndecl));
17942 if (TREE_CODE (valtype) == REFERENCE_TYPE
17943 && current_class_ref
17944 && same_type_ignoring_top_level_qualifiers_p
17945 (TREE_TYPE (valtype), TREE_TYPE (current_class_ref))
17946 && global_dc->option_enabled (OPT_Wreturn_type,
17947 global_dc->lang_mask,
17948 global_dc->option_state))
17949 add_return_star_this_fixit (&richloc, fndecl);
17951 if (cxx_dialect >= cxx14
17952 && DECL_DECLARED_CONSTEXPR_P (fndecl))
17953 error_at (&richloc, "no return statement in %<constexpr%> function "
17954 "returning non-void");
17955 else if (warning_at (&richloc, OPT_Wreturn_type,
17956 "no return statement in function returning "
17957 "non-void"))
17958 suppress_warning (fndecl, OPT_Wreturn_type);
17961 /* Lambda closure members are implicitly constexpr if possible. */
17962 if (cxx_dialect >= cxx17
17963 && LAMBDA_TYPE_P (CP_DECL_CONTEXT (fndecl)))
17964 DECL_DECLARED_CONSTEXPR_P (fndecl)
17965 = ((processing_template_decl
17966 || is_valid_constexpr_fn (fndecl, /*complain*/false))
17967 && potential_constant_expression (DECL_SAVED_TREE (fndecl)));
17969 /* Save constexpr function body before it gets munged by
17970 the NRV transformation. */
17971 maybe_save_constexpr_fundef (fndecl);
17973 /* Invoke the pre-genericize plugin before we start munging things. */
17974 if (!processing_template_decl)
17975 invoke_plugin_callbacks (PLUGIN_PRE_GENERICIZE, fndecl);
17977 /* Perform delayed folding before NRV transformation. */
17978 if (!processing_template_decl
17979 && !DECL_IMMEDIATE_FUNCTION_P (fndecl)
17980 && !DECL_OMP_DECLARE_REDUCTION_P (fndecl))
17981 cp_fold_function (fndecl);
17983 /* Set up the named return value optimization, if we can. Candidate
17984 variables are selected in check_return_expr. */
17985 if (current_function_return_value)
17987 tree r = current_function_return_value;
17988 tree outer;
17990 if (r != error_mark_node
17991 /* This is only worth doing for fns that return in memory--and
17992 simpler, since we don't have to worry about promoted modes. */
17993 && aggregate_value_p (TREE_TYPE (TREE_TYPE (fndecl)), fndecl)
17994 /* Only allow this for variables declared in the outer scope of
17995 the function so we know that their lifetime always ends with a
17996 return; see g++.dg/opt/nrv6.C. We could be more flexible if
17997 we were to do this optimization in tree-ssa. */
17998 && (outer = outer_curly_brace_block (fndecl))
17999 && chain_member (r, BLOCK_VARS (outer)))
18000 finalize_nrv (&DECL_SAVED_TREE (fndecl), r, DECL_RESULT (fndecl));
18002 current_function_return_value = NULL_TREE;
18005 /* Must mark the RESULT_DECL as being in this function. */
18006 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
18008 /* Set the BLOCK_SUPERCONTEXT of the outermost function scope to point
18009 to the FUNCTION_DECL node itself. */
18010 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
18012 /* Store the end of the function, so that we get good line number
18013 info for the epilogue. */
18014 cfun->function_end_locus = input_location;
18016 /* Complain about parameters that are only set, but never otherwise used. */
18017 if (warn_unused_but_set_parameter
18018 && !processing_template_decl
18019 && errorcount == unused_but_set_errorcount
18020 && !DECL_CLONED_FUNCTION_P (fndecl))
18022 tree decl;
18024 for (decl = DECL_ARGUMENTS (fndecl);
18025 decl;
18026 decl = DECL_CHAIN (decl))
18027 if (TREE_USED (decl)
18028 && TREE_CODE (decl) == PARM_DECL
18029 && !DECL_READ_P (decl)
18030 && DECL_NAME (decl)
18031 && !DECL_ARTIFICIAL (decl)
18032 && !warning_suppressed_p (decl,OPT_Wunused_but_set_parameter)
18033 && !DECL_IN_SYSTEM_HEADER (decl)
18034 && TREE_TYPE (decl) != error_mark_node
18035 && !TYPE_REF_P (TREE_TYPE (decl))
18036 && (!CLASS_TYPE_P (TREE_TYPE (decl))
18037 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (decl))))
18038 warning_at (DECL_SOURCE_LOCATION (decl),
18039 OPT_Wunused_but_set_parameter,
18040 "parameter %qD set but not used", decl);
18041 unused_but_set_errorcount = errorcount;
18044 /* Complain about locally defined typedefs that are not used in this
18045 function. */
18046 maybe_warn_unused_local_typedefs ();
18048 /* Possibly warn about unused parameters. */
18049 if (warn_unused_parameter
18050 && !processing_template_decl
18051 && !DECL_CLONED_FUNCTION_P (fndecl))
18052 do_warn_unused_parameter (fndecl);
18054 /* Genericize before inlining. */
18055 if (!processing_template_decl
18056 && !DECL_IMMEDIATE_FUNCTION_P (fndecl)
18057 && !DECL_OMP_DECLARE_REDUCTION_P (fndecl))
18058 cp_genericize (fndecl);
18060 /* Emit the resumer and destroyer functions now, providing that we have
18061 not encountered some fatal error. */
18062 if (coro_emit_helpers)
18064 emit_coro_helper (resumer);
18065 emit_coro_helper (destroyer);
18068 cleanup:
18069 /* We're leaving the context of this function, so zap cfun. It's still in
18070 DECL_STRUCT_FUNCTION, and we'll restore it in tree_rest_of_compilation. */
18071 set_cfun (NULL);
18072 current_function_decl = NULL;
18074 /* If this is an in-class inline definition, we may have to pop the
18075 bindings for the template parameters that we added in
18076 maybe_begin_member_template_processing when start_function was
18077 called. */
18078 if (inline_p)
18079 maybe_end_member_template_processing ();
18081 /* Leave the scope of the class. */
18082 if (ctype)
18083 pop_nested_class ();
18085 --function_depth;
18087 /* Clean up. */
18088 current_function_decl = NULL_TREE;
18090 invoke_plugin_callbacks (PLUGIN_FINISH_PARSE_FUNCTION, fndecl);
18091 return fndecl;
18094 /* Create the FUNCTION_DECL for a function definition.
18095 DECLSPECS and DECLARATOR are the parts of the declaration;
18096 they describe the return type and the name of the function,
18097 but twisted together in a fashion that parallels the syntax of C.
18099 This function creates a binding context for the function body
18100 as well as setting up the FUNCTION_DECL in current_function_decl.
18102 Returns a FUNCTION_DECL on success.
18104 If the DECLARATOR is not suitable for a function (it defines a datum
18105 instead), we return 0, which tells yyparse to report a parse error.
18107 May return void_type_node indicating that this method is actually
18108 a friend. See grokfield for more details.
18110 Came here with a `.pushlevel' .
18112 DO NOT MAKE ANY CHANGES TO THIS CODE WITHOUT MAKING CORRESPONDING
18113 CHANGES TO CODE IN `grokfield'. */
18115 tree
18116 grokmethod (cp_decl_specifier_seq *declspecs,
18117 const cp_declarator *declarator, tree attrlist)
18119 tree fndecl = grokdeclarator (declarator, declspecs, MEMFUNCDEF, 0,
18120 &attrlist);
18122 if (fndecl == error_mark_node)
18123 return error_mark_node;
18125 if (attrlist)
18126 cplus_decl_attributes (&fndecl, attrlist, 0);
18128 /* Pass friends other than inline friend functions back. */
18129 if (fndecl == void_type_node)
18130 return fndecl;
18132 if (DECL_IN_AGGR_P (fndecl))
18134 if (DECL_CLASS_SCOPE_P (fndecl))
18135 error ("%qD is already defined in class %qT", fndecl,
18136 DECL_CONTEXT (fndecl));
18137 return error_mark_node;
18140 check_template_shadow (fndecl);
18142 /* p1779 ABI-Isolation makes inline not a default for in-class
18143 definitions in named module purview. If the user explicitly
18144 made it inline, grokdeclarator will already have done the right
18145 things. */
18146 if ((!named_module_purview_p ()
18147 || flag_module_implicit_inline
18148 /* Lambda's operator function remains inline. */
18149 || LAMBDA_TYPE_P (DECL_CONTEXT (fndecl)))
18150 /* If the user explicitly asked for this to be inline, we don't
18151 need to do more, but more importantly we want to warn if we
18152 can't inline it. */
18153 && !DECL_DECLARED_INLINE_P (fndecl))
18155 if (TREE_PUBLIC (fndecl))
18156 DECL_COMDAT (fndecl) = 1;
18157 DECL_DECLARED_INLINE_P (fndecl) = 1;
18158 /* It's ok if we can't inline this. */
18159 DECL_NO_INLINE_WARNING_P (fndecl) = 1;
18162 /* We process method specializations in finish_struct_1. */
18163 if (processing_template_decl && !DECL_TEMPLATE_SPECIALIZATION (fndecl))
18165 /* Avoid calling decl_spec_seq... until we have to. */
18166 bool friendp = decl_spec_seq_has_spec_p (declspecs, ds_friend);
18167 fndecl = push_template_decl (fndecl, friendp);
18168 if (fndecl == error_mark_node)
18169 return fndecl;
18172 if (DECL_CHAIN (fndecl) && !decl_spec_seq_has_spec_p (declspecs, ds_friend))
18174 fndecl = copy_node (fndecl);
18175 TREE_CHAIN (fndecl) = NULL_TREE;
18178 cp_finish_decl (fndecl, NULL_TREE, false, NULL_TREE, 0);
18180 DECL_IN_AGGR_P (fndecl) = 1;
18181 return fndecl;
18185 /* VAR is a VAR_DECL. If its type is incomplete, remember VAR so that
18186 we can lay it out later, when and if its type becomes complete.
18188 Also handle constexpr variables where the initializer involves
18189 an unlowered PTRMEM_CST because the class isn't complete yet. */
18191 void
18192 maybe_register_incomplete_var (tree var)
18194 gcc_assert (VAR_P (var));
18196 /* Keep track of variables with incomplete types. */
18197 if (!processing_template_decl && TREE_TYPE (var) != error_mark_node
18198 && DECL_EXTERNAL (var))
18200 tree inner_type = TREE_TYPE (var);
18202 while (TREE_CODE (inner_type) == ARRAY_TYPE)
18203 inner_type = TREE_TYPE (inner_type);
18204 inner_type = TYPE_MAIN_VARIANT (inner_type);
18206 if ((!COMPLETE_TYPE_P (inner_type) && CLASS_TYPE_P (inner_type))
18207 /* RTTI TD entries are created while defining the type_info. */
18208 || (TYPE_LANG_SPECIFIC (inner_type)
18209 && TYPE_BEING_DEFINED (inner_type)))
18211 incomplete_var iv = {var, inner_type};
18212 vec_safe_push (incomplete_vars, iv);
18214 else if (!(DECL_LANG_SPECIFIC (var) && DECL_TEMPLATE_INFO (var))
18215 && decl_constant_var_p (var)
18216 && (TYPE_PTRMEM_P (inner_type) || CLASS_TYPE_P (inner_type)))
18218 /* When the outermost open class is complete we can resolve any
18219 pointers-to-members. */
18220 tree context = outermost_open_class ();
18221 incomplete_var iv = {var, context};
18222 vec_safe_push (incomplete_vars, iv);
18227 /* Called when a class type (given by TYPE) is defined. If there are
18228 any existing VAR_DECLs whose type has been completed by this
18229 declaration, update them now. */
18231 void
18232 complete_vars (tree type)
18234 unsigned ix;
18235 incomplete_var *iv;
18237 for (ix = 0; vec_safe_iterate (incomplete_vars, ix, &iv); )
18239 if (same_type_p (type, iv->incomplete_type))
18241 tree var = iv->decl;
18242 tree type = TREE_TYPE (var);
18244 if (type != error_mark_node
18245 && (TYPE_MAIN_VARIANT (strip_array_types (type))
18246 == iv->incomplete_type))
18248 /* Complete the type of the variable. */
18249 complete_type (type);
18250 cp_apply_type_quals_to_decl (cp_type_quals (type), var);
18251 if (COMPLETE_TYPE_P (type))
18252 layout_var_decl (var);
18255 /* Remove this entry from the list. */
18256 incomplete_vars->unordered_remove (ix);
18258 else
18259 ix++;
18263 /* If DECL is of a type which needs a cleanup, build and return an
18264 expression to perform that cleanup here. Return NULL_TREE if no
18265 cleanup need be done. DECL can also be a _REF when called from
18266 split_nonconstant_init_1. */
18268 tree
18269 cxx_maybe_build_cleanup (tree decl, tsubst_flags_t complain)
18271 tree type;
18272 tree attr;
18273 tree cleanup;
18275 /* Assume no cleanup is required. */
18276 cleanup = NULL_TREE;
18278 if (error_operand_p (decl))
18279 return cleanup;
18281 /* Handle "__attribute__((cleanup))". We run the cleanup function
18282 before the destructor since the destructor is what actually
18283 terminates the lifetime of the object. */
18284 if (DECL_P (decl))
18285 attr = lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl));
18286 else
18287 attr = NULL_TREE;
18288 if (attr)
18290 tree id;
18291 tree fn;
18292 tree arg;
18294 /* Get the name specified by the user for the cleanup function. */
18295 id = TREE_VALUE (TREE_VALUE (attr));
18296 /* Look up the name to find the cleanup function to call. It is
18297 important to use lookup_name here because that is what is
18298 used in c-common.cc:handle_cleanup_attribute when performing
18299 initial checks on the attribute. Note that those checks
18300 include ensuring that the function found is not an overloaded
18301 function, or an object with an overloaded call operator,
18302 etc.; we can rely on the fact that the function found is an
18303 ordinary FUNCTION_DECL. */
18304 fn = lookup_name (id);
18305 arg = build_address (decl);
18306 if (!mark_used (decl, complain) && !(complain & tf_error))
18307 return error_mark_node;
18308 cleanup = cp_build_function_call_nary (fn, complain, arg, NULL_TREE);
18309 if (cleanup == error_mark_node)
18310 return error_mark_node;
18312 /* Handle ordinary C++ destructors. */
18313 type = TREE_TYPE (decl);
18314 if (type_build_dtor_call (type))
18316 int flags = LOOKUP_NORMAL|LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR;
18317 tree addr;
18318 tree call;
18320 if (TREE_CODE (type) == ARRAY_TYPE)
18321 addr = decl;
18322 else
18323 addr = build_address (decl);
18325 call = build_delete (input_location, TREE_TYPE (addr), addr,
18326 sfk_complete_destructor, flags, 0, complain);
18327 if (call == error_mark_node)
18328 cleanup = error_mark_node;
18329 else if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
18330 /* Discard the call. */;
18331 else if (decl_maybe_constant_destruction (decl, type)
18332 && DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl))
18333 cxx_constant_dtor (call, decl);
18334 else if (cleanup)
18335 cleanup = cp_build_compound_expr (cleanup, call, complain);
18336 else
18337 cleanup = call;
18340 /* build_delete sets the location of the destructor call to the
18341 current location, even though the destructor is going to be
18342 called later, at the end of the current scope. This can lead to
18343 a "jumpy" behavior for users of debuggers when they step around
18344 the end of the block. So let's unset the location of the
18345 destructor call instead. */
18346 protected_set_expr_location (cleanup, UNKNOWN_LOCATION);
18347 if (cleanup && CONVERT_EXPR_P (cleanup))
18348 protected_set_expr_location (TREE_OPERAND (cleanup, 0), UNKNOWN_LOCATION);
18350 if (cleanup
18351 && DECL_P (decl)
18352 && !lookup_attribute ("warn_unused", TYPE_ATTRIBUTES (TREE_TYPE (decl)))
18353 /* Treat objects with destructors as used; the destructor may do
18354 something substantive. */
18355 && !mark_used (decl, complain) && !(complain & tf_error))
18356 return error_mark_node;
18358 if (cleanup && cfun && !processing_template_decl
18359 && !expr_noexcept_p (cleanup, tf_none))
18360 cp_function_chain->throwing_cleanup = true;
18362 return cleanup;
18366 /* Return the FUNCTION_TYPE that corresponds to MEMFNTYPE, which can be a
18367 FUNCTION_DECL, METHOD_TYPE, FUNCTION_TYPE, pointer or reference to
18368 METHOD_TYPE or FUNCTION_TYPE, or pointer to member function. */
18370 tree
18371 static_fn_type (tree memfntype)
18373 tree fntype;
18374 tree args;
18376 if (TYPE_PTRMEMFUNC_P (memfntype))
18377 memfntype = TYPE_PTRMEMFUNC_FN_TYPE (memfntype);
18378 if (INDIRECT_TYPE_P (memfntype)
18379 || TREE_CODE (memfntype) == FUNCTION_DECL)
18380 memfntype = TREE_TYPE (memfntype);
18381 if (TREE_CODE (memfntype) == FUNCTION_TYPE)
18382 return memfntype;
18383 gcc_assert (TREE_CODE (memfntype) == METHOD_TYPE);
18384 args = TYPE_ARG_TYPES (memfntype);
18385 fntype = build_function_type (TREE_TYPE (memfntype), TREE_CHAIN (args));
18386 fntype = apply_memfn_quals (fntype, type_memfn_quals (memfntype));
18387 fntype = (cp_build_type_attribute_variant
18388 (fntype, TYPE_ATTRIBUTES (memfntype)));
18389 fntype = cxx_copy_lang_qualifiers (fntype, memfntype);
18390 return fntype;
18393 /* DECL was originally constructed as a non-static member function,
18394 but turned out to be static. Update it accordingly. */
18396 void
18397 revert_static_member_fn (tree decl)
18399 tree stype = static_fn_type (decl);
18400 cp_cv_quals quals = type_memfn_quals (stype);
18401 cp_ref_qualifier rqual = type_memfn_rqual (stype);
18403 if (quals != TYPE_UNQUALIFIED || rqual != REF_QUAL_NONE)
18404 stype = apply_memfn_quals (stype, TYPE_UNQUALIFIED, REF_QUAL_NONE);
18406 TREE_TYPE (decl) = stype;
18408 if (DECL_ARGUMENTS (decl))
18409 DECL_ARGUMENTS (decl) = DECL_CHAIN (DECL_ARGUMENTS (decl));
18410 DECL_STATIC_FUNCTION_P (decl) = 1;
18413 /* Return which tree structure is used by T, or TS_CP_GENERIC if T is
18414 one of the language-independent trees. */
18416 enum cp_tree_node_structure_enum
18417 cp_tree_node_structure (union lang_tree_node * t)
18419 switch (TREE_CODE (&t->generic))
18421 case ARGUMENT_PACK_SELECT: return TS_CP_ARGUMENT_PACK_SELECT;
18422 case BASELINK: return TS_CP_BASELINK;
18423 case CONSTRAINT_INFO: return TS_CP_CONSTRAINT_INFO;
18424 case DEFERRED_NOEXCEPT: return TS_CP_DEFERRED_NOEXCEPT;
18425 case DEFERRED_PARSE: return TS_CP_DEFERRED_PARSE;
18426 case IDENTIFIER_NODE: return TS_CP_IDENTIFIER;
18427 case LAMBDA_EXPR: return TS_CP_LAMBDA_EXPR;
18428 case BINDING_VECTOR: return TS_CP_BINDING_VECTOR;
18429 case OVERLOAD: return TS_CP_OVERLOAD;
18430 case PTRMEM_CST: return TS_CP_PTRMEM;
18431 case STATIC_ASSERT: return TS_CP_STATIC_ASSERT;
18432 case TEMPLATE_DECL: return TS_CP_TEMPLATE_DECL;
18433 case TEMPLATE_INFO: return TS_CP_TEMPLATE_INFO;
18434 case TEMPLATE_PARM_INDEX: return TS_CP_TPI;
18435 case TRAIT_EXPR: return TS_CP_TRAIT_EXPR;
18436 case USERDEF_LITERAL: return TS_CP_USERDEF_LITERAL;
18437 default: return TS_CP_GENERIC;
18441 /* Build the void_list_node (void_type_node having been created). */
18442 tree
18443 build_void_list_node (void)
18445 tree t = build_tree_list (NULL_TREE, void_type_node);
18446 return t;
18449 bool
18450 cp_missing_noreturn_ok_p (tree decl)
18452 /* A missing noreturn is ok for the `main' function. */
18453 return DECL_MAIN_P (decl);
18456 /* Return the decl used to identify the COMDAT group into which DECL should
18457 be placed. */
18459 tree
18460 cxx_comdat_group (tree decl)
18462 /* Virtual tables, construction virtual tables, and virtual table
18463 tables all go in a single COMDAT group, named after the primary
18464 virtual table. */
18465 if (VAR_P (decl) && DECL_VTABLE_OR_VTT_P (decl))
18466 decl = CLASSTYPE_VTABLES (DECL_CONTEXT (decl));
18467 /* For all other DECLs, the COMDAT group is the mangled name of the
18468 declaration itself. */
18469 else
18471 while (DECL_THUNK_P (decl))
18473 /* If TARGET_USE_LOCAL_THUNK_ALIAS_P, use_thunk puts the thunk
18474 into the same section as the target function. In that case
18475 we must return target's name. */
18476 tree target = THUNK_TARGET (decl);
18477 if (TARGET_USE_LOCAL_THUNK_ALIAS_P (target)
18478 && DECL_SECTION_NAME (target) != NULL
18479 && DECL_ONE_ONLY (target))
18480 decl = target;
18481 else
18482 break;
18486 return decl;
18489 /* Returns the return type for FN as written by the user, which may include
18490 a placeholder for a deduced return type. */
18492 tree
18493 fndecl_declared_return_type (tree fn)
18495 fn = STRIP_TEMPLATE (fn);
18496 if (FNDECL_USED_AUTO (fn))
18497 return DECL_SAVED_AUTO_RETURN_TYPE (fn);
18499 return TREE_TYPE (TREE_TYPE (fn));
18502 /* Returns true iff DECL is a variable or function declared with an auto type
18503 that has not yet been deduced to a real type. */
18505 bool
18506 undeduced_auto_decl (tree decl)
18508 if (cxx_dialect < cxx11)
18509 return false;
18510 STRIP_ANY_LOCATION_WRAPPER (decl);
18511 return ((VAR_OR_FUNCTION_DECL_P (decl)
18512 || TREE_CODE (decl) == TEMPLATE_DECL)
18513 && type_uses_auto (TREE_TYPE (decl)));
18516 /* Complain if DECL has an undeduced return type. */
18518 bool
18519 require_deduced_type (tree decl, tsubst_flags_t complain)
18521 if (undeduced_auto_decl (decl))
18523 if (warning_suppressed_p (decl) && seen_error ())
18524 /* We probably already complained about deduction failure. */;
18525 else if (complain & tf_error)
18526 error ("use of %qD before deduction of %<auto%>", decl);
18527 note_failed_type_completion_for_satisfaction (decl);
18528 return false;
18530 return true;
18533 /* Create a representation of the explicit-specifier with
18534 constant-expression of EXPR. COMPLAIN is as for tsubst. */
18536 tree
18537 build_explicit_specifier (tree expr, tsubst_flags_t complain)
18539 if (check_for_bare_parameter_packs (expr))
18540 return error_mark_node;
18542 if (instantiation_dependent_expression_p (expr))
18543 /* Wait for instantiation, tsubst_function_decl will handle it. */
18544 return expr;
18546 expr = build_converted_constant_bool_expr (expr, complain);
18547 expr = instantiate_non_dependent_expr_sfinae (expr, complain);
18548 expr = cxx_constant_value (expr);
18549 return expr;
18552 #include "gt-cp-decl.h"