P0595R1 - is_constant_evaluated
[official-gcc.git] / gcc / cp / decl.c
blob78ebbde61a33ac2a71bc246cd5e48cf4ae75de87
1 /* Process declarations and variables for C++ compiler.
2 Copyright (C) 1988-2018 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"
57 /* Possible cases of bad specifiers type used by bad_specifiers. */
58 enum bad_spec_place {
59 BSP_VAR, /* variable */
60 BSP_PARM, /* parameter */
61 BSP_TYPE, /* type */
62 BSP_FIELD /* field */
65 static const char *redeclaration_error_message (tree, tree);
67 static int decl_jump_unsafe (tree);
68 static void require_complete_types_for_parms (tree);
69 static void push_local_name (tree);
70 static tree grok_reference_init (tree, tree, tree, int);
71 static tree grokvardecl (tree, tree, tree, const cp_decl_specifier_seq *,
72 int, int, int, bool, int, tree);
73 static int check_static_variable_definition (tree, tree);
74 static void record_unknown_type (tree, const char *);
75 static tree builtin_function_1 (tree, tree, bool);
76 static int member_function_or_else (tree, tree, enum overload_flags);
77 static tree local_variable_p_walkfn (tree *, int *, void *);
78 static const char *tag_name (enum tag_types);
79 static tree lookup_and_check_tag (enum tag_types, tree, tag_scope, bool);
80 static void maybe_deduce_size_from_array_init (tree, tree);
81 static void layout_var_decl (tree);
82 static tree check_initializer (tree, tree, int, vec<tree, va_gc> **);
83 static void make_rtl_for_nonlocal_decl (tree, tree, const char *);
84 static void save_function_data (tree);
85 static void copy_type_enum (tree , tree);
86 static void check_function_type (tree, tree);
87 static void finish_constructor_body (void);
88 static void begin_destructor_body (void);
89 static void finish_destructor_body (void);
90 static void record_key_method_defined (tree);
91 static tree create_array_type_for_decl (tree, tree, tree);
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);
106 /* The following symbols are subsumed in the cp_global_trees array, and
107 listed here individually for documentation purposes.
109 C++ extensions
110 tree wchar_decl_node;
112 tree vtable_entry_type;
113 tree delta_type_node;
114 tree __t_desc_type_node;
116 tree class_type_node;
117 tree unknown_type_node;
119 Array type `vtable_entry_type[]'
121 tree vtbl_type_node;
122 tree vtbl_ptr_type_node;
124 Namespaces,
126 tree std_node;
127 tree abi_node;
129 A FUNCTION_DECL which can call `abort'. Not necessarily the
130 one that the user will declare, but sufficient to be called
131 by routines that want to abort the program.
133 tree abort_fndecl;
135 Used by RTTI
136 tree type_info_type_node, tinfo_decl_id, tinfo_decl_type;
137 tree tinfo_var_id; */
139 tree cp_global_trees[CPTI_MAX];
141 #define local_names cp_function_chain->x_local_names
143 /* A list of objects which have constructors or destructors
144 which reside in the global scope. The decl is stored in
145 the TREE_VALUE slot and the initializer is stored
146 in the TREE_PURPOSE slot. */
147 tree static_aggregates;
149 /* Like static_aggregates, but for thread_local variables. */
150 tree tls_aggregates;
152 /* -- end of C++ */
154 /* A node for the integer constant 2. */
156 tree integer_two_node;
158 /* vector of static decls. */
159 vec<tree, va_gc> *static_decls;
161 /* vector of keyed classes. */
162 vec<tree, va_gc> *keyed_classes;
164 /* Used only for jumps to as-yet undefined labels, since jumps to
165 defined labels can have their validity checked immediately. */
167 struct GTY((chain_next ("%h.next"))) named_label_use_entry {
168 struct named_label_use_entry *next;
169 /* The binding level to which this entry is *currently* attached.
170 This is initially the binding level in which the goto appeared,
171 but is modified as scopes are closed. */
172 cp_binding_level *binding_level;
173 /* The head of the names list that was current when the goto appeared,
174 or the inner scope popped. These are the decls that will *not* be
175 skipped when jumping to the label. */
176 tree names_in_scope;
177 /* The location of the goto, for error reporting. */
178 location_t o_goto_locus;
179 /* True if an OpenMP structured block scope has been closed since
180 the goto appeared. This means that the branch from the label will
181 illegally exit an OpenMP scope. */
182 bool in_omp_scope;
185 /* A list of all LABEL_DECLs in the function that have names. Here so
186 we can clear out their names' definitions at the end of the
187 function, and so we can check the validity of jumps to these labels. */
189 struct GTY((for_user)) named_label_entry {
191 tree name; /* Name of decl. */
193 tree label_decl; /* LABEL_DECL, unless deleted local label. */
195 named_label_entry *outer; /* Outer shadowed chain. */
197 /* The binding level to which the label is *currently* attached.
198 This is initially set to the binding level in which the label
199 is defined, but is modified as scopes are closed. */
200 cp_binding_level *binding_level;
202 /* The head of the names list that was current when the label was
203 defined, or the inner scope popped. These are the decls that will
204 be skipped when jumping to the label. */
205 tree names_in_scope;
207 /* A vector of all decls from all binding levels that would be
208 crossed by a backward branch to the label. */
209 vec<tree, va_gc> *bad_decls;
211 /* A list of uses of the label, before the label is defined. */
212 named_label_use_entry *uses;
214 /* The following bits are set after the label is defined, and are
215 updated as scopes are popped. They indicate that a jump to the
216 label will illegally enter a scope of the given flavor. */
217 bool in_try_scope;
218 bool in_catch_scope;
219 bool in_omp_scope;
220 bool in_transaction_scope;
221 bool in_constexpr_if;
224 #define named_labels cp_function_chain->x_named_labels
226 /* The number of function bodies which we are currently processing.
227 (Zero if we are at namespace scope, one inside the body of a
228 function, two inside the body of a function in a local class, etc.) */
229 int function_depth;
231 /* Whether the exception-specifier is part of a function type (i.e. C++17). */
232 bool flag_noexcept_type;
234 /* States indicating how grokdeclarator() should handle declspecs marked
235 with __attribute__((deprecated)). An object declared as
236 __attribute__((deprecated)) suppresses warnings of uses of other
237 deprecated items. */
238 enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
241 /* A list of VAR_DECLs whose type was incomplete at the time the
242 variable was declared. */
244 struct GTY(()) incomplete_var {
245 tree decl;
246 tree incomplete_type;
250 static GTY(()) vec<incomplete_var, va_gc> *incomplete_vars;
252 /* Returns the kind of template specialization we are currently
253 processing, given that it's declaration contained N_CLASS_SCOPES
254 explicit scope qualifications. */
256 tmpl_spec_kind
257 current_tmpl_spec_kind (int n_class_scopes)
259 int n_template_parm_scopes = 0;
260 int seen_specialization_p = 0;
261 int innermost_specialization_p = 0;
262 cp_binding_level *b;
264 /* Scan through the template parameter scopes. */
265 for (b = current_binding_level;
266 b->kind == sk_template_parms;
267 b = b->level_chain)
269 /* If we see a specialization scope inside a parameter scope,
270 then something is wrong. That corresponds to a declaration
271 like:
273 template <class T> template <> ...
275 which is always invalid since [temp.expl.spec] forbids the
276 specialization of a class member template if the enclosing
277 class templates are not explicitly specialized as well. */
278 if (b->explicit_spec_p)
280 if (n_template_parm_scopes == 0)
281 innermost_specialization_p = 1;
282 else
283 seen_specialization_p = 1;
285 else if (seen_specialization_p == 1)
286 return tsk_invalid_member_spec;
288 ++n_template_parm_scopes;
291 /* Handle explicit instantiations. */
292 if (processing_explicit_instantiation)
294 if (n_template_parm_scopes != 0)
295 /* We've seen a template parameter list during an explicit
296 instantiation. For example:
298 template <class T> template void f(int);
300 This is erroneous. */
301 return tsk_invalid_expl_inst;
302 else
303 return tsk_expl_inst;
306 if (n_template_parm_scopes < n_class_scopes)
307 /* We've not seen enough template headers to match all the
308 specialized classes present. For example:
310 template <class T> void R<T>::S<T>::f(int);
312 This is invalid; there needs to be one set of template
313 parameters for each class. */
314 return tsk_insufficient_parms;
315 else if (n_template_parm_scopes == n_class_scopes)
316 /* We're processing a non-template declaration (even though it may
317 be a member of a template class.) For example:
319 template <class T> void S<T>::f(int);
321 The `class T' matches the `S<T>', leaving no template headers
322 corresponding to the `f'. */
323 return tsk_none;
324 else if (n_template_parm_scopes > n_class_scopes + 1)
325 /* We've got too many template headers. For example:
327 template <> template <class T> void f (T);
329 There need to be more enclosing classes. */
330 return tsk_excessive_parms;
331 else
332 /* This must be a template. It's of the form:
334 template <class T> template <class U> void S<T>::f(U);
336 This is a specialization if the innermost level was a
337 specialization; otherwise it's just a definition of the
338 template. */
339 return innermost_specialization_p ? tsk_expl_spec : tsk_template;
342 /* Exit the current scope. */
344 void
345 finish_scope (void)
347 poplevel (0, 0, 0);
350 /* When a label goes out of scope, check to see if that label was used
351 in a valid manner, and issue any appropriate warnings or errors. */
353 static void
354 check_label_used (tree label)
356 if (!processing_template_decl)
358 if (DECL_INITIAL (label) == NULL_TREE)
360 location_t location;
362 error ("label %q+D used but not defined", label);
363 location = input_location;
364 /* FIXME want (LOCATION_FILE (input_location), (line)0) */
365 /* Avoid crashing later. */
366 define_label (location, DECL_NAME (label));
368 else
369 warn_for_unused_label (label);
373 /* Helper function to sort named label entries in a vector by DECL_UID. */
375 static int
376 sort_labels (const void *a, const void *b)
378 tree label1 = *(tree const *) a;
379 tree label2 = *(tree const *) b;
381 /* DECL_UIDs can never be equal. */
382 return DECL_UID (label1) > DECL_UID (label2) ? -1 : +1;
385 /* At the end of a function, all labels declared within the function
386 go out of scope. BLOCK is the top-level block for the
387 function. */
389 static void
390 pop_labels (tree block)
392 if (!named_labels)
393 return;
395 /* We need to add the labels to the block chain, so debug
396 information is emitted. But, we want the order to be stable so
397 need to sort them first. Otherwise the debug output could be
398 randomly ordered. I guess it's mostly stable, unless the hash
399 table implementation changes. */
400 auto_vec<tree, 32> labels (named_labels->elements ());
401 hash_table<named_label_hash>::iterator end (named_labels->end ());
402 for (hash_table<named_label_hash>::iterator iter
403 (named_labels->begin ()); iter != end; ++iter)
405 named_label_entry *ent = *iter;
407 gcc_checking_assert (!ent->outer);
408 if (ent->label_decl)
409 labels.quick_push (ent->label_decl);
410 ggc_free (ent);
412 named_labels = NULL;
413 labels.qsort (sort_labels);
415 while (labels.length ())
417 tree label = labels.pop ();
419 DECL_CHAIN (label) = BLOCK_VARS (block);
420 BLOCK_VARS (block) = label;
422 check_label_used (label);
426 /* At the end of a block with local labels, restore the outer definition. */
428 static void
429 pop_local_label (tree id, tree label)
431 check_label_used (label);
432 named_label_entry **slot = named_labels->find_slot_with_hash
433 (id, IDENTIFIER_HASH_VALUE (id), NO_INSERT);
434 named_label_entry *ent = *slot;
436 if (ent->outer)
437 ent = ent->outer;
438 else
440 ent = ggc_cleared_alloc<named_label_entry> ();
441 ent->name = id;
443 *slot = ent;
446 /* The following two routines are used to interface to Objective-C++.
447 The binding level is purposely treated as an opaque type. */
449 void *
450 objc_get_current_scope (void)
452 return current_binding_level;
455 /* The following routine is used by the NeXT-style SJLJ exceptions;
456 variables get marked 'volatile' so as to not be clobbered by
457 _setjmp()/_longjmp() calls. All variables in the current scope,
458 as well as parent scopes up to (but not including) ENCLOSING_BLK
459 shall be thusly marked. */
461 void
462 objc_mark_locals_volatile (void *enclosing_blk)
464 cp_binding_level *scope;
466 for (scope = current_binding_level;
467 scope && scope != enclosing_blk;
468 scope = scope->level_chain)
470 tree decl;
472 for (decl = scope->names; decl; decl = TREE_CHAIN (decl))
473 objc_volatilize_decl (decl);
475 /* Do not climb up past the current function. */
476 if (scope->kind == sk_function_parms)
477 break;
481 /* True if B is the level for the condition of a constexpr if. */
483 static bool
484 level_for_constexpr_if (cp_binding_level *b)
486 return (b->kind == sk_cond && b->this_entity
487 && TREE_CODE (b->this_entity) == IF_STMT
488 && IF_STMT_CONSTEXPR_P (b->this_entity));
491 /* Update data for defined and undefined labels when leaving a scope. */
494 poplevel_named_label_1 (named_label_entry **slot, cp_binding_level *bl)
496 named_label_entry *ent = *slot;
497 cp_binding_level *obl = bl->level_chain;
499 if (ent->binding_level == bl)
501 tree decl;
503 /* ENT->NAMES_IN_SCOPE may contain a mixture of DECLs and
504 TREE_LISTs representing OVERLOADs, so be careful. */
505 for (decl = ent->names_in_scope; decl; decl = (DECL_P (decl)
506 ? DECL_CHAIN (decl)
507 : TREE_CHAIN (decl)))
508 if (decl_jump_unsafe (decl))
509 vec_safe_push (ent->bad_decls, decl);
511 ent->binding_level = obl;
512 ent->names_in_scope = obl->names;
513 switch (bl->kind)
515 case sk_try:
516 ent->in_try_scope = true;
517 break;
518 case sk_catch:
519 ent->in_catch_scope = true;
520 break;
521 case sk_omp:
522 ent->in_omp_scope = true;
523 break;
524 case sk_transaction:
525 ent->in_transaction_scope = true;
526 break;
527 case sk_block:
528 if (level_for_constexpr_if (bl->level_chain))
529 ent->in_constexpr_if = true;
530 break;
531 default:
532 break;
535 else if (ent->uses)
537 struct named_label_use_entry *use;
539 for (use = ent->uses; use ; use = use->next)
540 if (use->binding_level == bl)
542 use->binding_level = obl;
543 use->names_in_scope = obl->names;
544 if (bl->kind == sk_omp)
545 use->in_omp_scope = true;
549 return 1;
552 /* Saved errorcount to avoid -Wunused-but-set-{parameter,variable} warnings
553 when errors were reported, except for -Werror-unused-but-set-*. */
554 static int unused_but_set_errorcount;
556 /* Exit a binding level.
557 Pop the level off, and restore the state of the identifier-decl mappings
558 that were in effect when this level was entered.
560 If KEEP == 1, this level had explicit declarations, so
561 and create a "block" (a BLOCK node) for the level
562 to record its declarations and subblocks for symbol table output.
564 If FUNCTIONBODY is nonzero, this level is the body of a function,
565 so create a block as if KEEP were set and also clear out all
566 label names.
568 If REVERSE is nonzero, reverse the order of decls before putting
569 them into the BLOCK. */
571 tree
572 poplevel (int keep, int reverse, int functionbody)
574 tree link;
575 /* The chain of decls was accumulated in reverse order.
576 Put it into forward order, just for cleanliness. */
577 tree decls;
578 tree subblocks;
579 tree block;
580 tree decl;
581 scope_kind kind;
583 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
584 restart:
586 block = NULL_TREE;
588 gcc_assert (current_binding_level->kind != sk_class
589 && current_binding_level->kind != sk_namespace);
591 if (current_binding_level->kind == sk_cleanup)
592 functionbody = 0;
593 subblocks = functionbody >= 0 ? current_binding_level->blocks : 0;
595 gcc_assert (!vec_safe_length (current_binding_level->class_shadowed));
597 /* We used to use KEEP == 2 to indicate that the new block should go
598 at the beginning of the list of blocks at this binding level,
599 rather than the end. This hack is no longer used. */
600 gcc_assert (keep == 0 || keep == 1);
602 if (current_binding_level->keep)
603 keep = 1;
605 /* Any uses of undefined labels, and any defined labels, now operate
606 under constraints of next binding contour. */
607 if (cfun && !functionbody && named_labels)
608 named_labels->traverse<cp_binding_level *, poplevel_named_label_1>
609 (current_binding_level);
611 /* Get the decls in the order they were written.
612 Usually current_binding_level->names is in reverse order.
613 But parameter decls were previously put in forward order. */
615 decls = current_binding_level->names;
616 if (reverse)
618 decls = nreverse (decls);
619 current_binding_level->names = decls;
622 /* If there were any declarations or structure tags in that level,
623 or if this level is a function body,
624 create a BLOCK to record them for the life of this function. */
625 block = NULL_TREE;
626 /* Avoid function body block if possible. */
627 if (functionbody && subblocks && BLOCK_CHAIN (subblocks) == NULL_TREE)
628 keep = 0;
629 else if (keep == 1 || functionbody)
630 block = make_node (BLOCK);
631 if (block != NULL_TREE)
633 BLOCK_VARS (block) = decls;
634 BLOCK_SUBBLOCKS (block) = subblocks;
637 /* In each subblock, record that this is its superior. */
638 if (keep >= 0)
639 for (link = subblocks; link; link = BLOCK_CHAIN (link))
640 BLOCK_SUPERCONTEXT (link) = block;
642 /* Before we remove the declarations first check for unused variables. */
643 if ((warn_unused_variable || warn_unused_but_set_variable)
644 && current_binding_level->kind != sk_template_parms
645 && !processing_template_decl)
646 for (tree d = get_local_decls (); d; d = TREE_CHAIN (d))
648 /* There are cases where D itself is a TREE_LIST. See in
649 push_local_binding where the list of decls returned by
650 getdecls is built. */
651 decl = TREE_CODE (d) == TREE_LIST ? TREE_VALUE (d) : d;
653 tree type = TREE_TYPE (decl);
654 if (VAR_P (decl)
655 && (! TREE_USED (decl) || !DECL_READ_P (decl))
656 && ! DECL_IN_SYSTEM_HEADER (decl)
657 /* For structured bindings, consider only real variables, not
658 subobjects. */
659 && (DECL_DECOMPOSITION_P (decl) ? !DECL_DECOMP_BASE (decl)
660 : (DECL_NAME (decl) && !DECL_ARTIFICIAL (decl)))
661 && type != error_mark_node
662 && (!CLASS_TYPE_P (type)
663 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
664 || lookup_attribute ("warn_unused",
665 TYPE_ATTRIBUTES (TREE_TYPE (decl)))))
667 if (! TREE_USED (decl))
669 if (!DECL_NAME (decl) && DECL_DECOMPOSITION_P (decl))
670 warning_at (DECL_SOURCE_LOCATION (decl),
671 OPT_Wunused_variable,
672 "unused structured binding declaration");
673 else
674 warning_at (DECL_SOURCE_LOCATION (decl),
675 OPT_Wunused_variable, "unused variable %qD", decl);
677 else if (DECL_CONTEXT (decl) == current_function_decl
678 // For -Wunused-but-set-variable leave references alone.
679 && !TYPE_REF_P (TREE_TYPE (decl))
680 && errorcount == unused_but_set_errorcount)
682 if (!DECL_NAME (decl) && DECL_DECOMPOSITION_P (decl))
683 warning_at (DECL_SOURCE_LOCATION (decl),
684 OPT_Wunused_but_set_variable, "structured "
685 "binding declaration set but not used");
686 else
687 warning_at (DECL_SOURCE_LOCATION (decl),
688 OPT_Wunused_but_set_variable,
689 "variable %qD set but not used", decl);
690 unused_but_set_errorcount = errorcount;
695 /* Remove declarations for all the DECLs in this level. */
696 for (link = decls; link; link = TREE_CHAIN (link))
698 decl = TREE_CODE (link) == TREE_LIST ? TREE_VALUE (link) : link;
699 tree name = OVL_NAME (decl);
701 /* Remove the binding. */
702 if (TREE_CODE (decl) == LABEL_DECL)
703 pop_local_label (name, decl);
704 else
705 pop_local_binding (name, decl);
708 /* Restore the IDENTIFIER_TYPE_VALUEs. */
709 for (link = current_binding_level->type_shadowed;
710 link; link = TREE_CHAIN (link))
711 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (link), TREE_VALUE (link));
713 /* There may be OVERLOADs (wrapped in TREE_LISTs) on the BLOCK_VARs
714 list if a `using' declaration put them there. The debugging
715 back ends won't understand OVERLOAD, so we remove them here.
716 Because the BLOCK_VARS are (temporarily) shared with
717 CURRENT_BINDING_LEVEL->NAMES we must do this fixup after we have
718 popped all the bindings. Also remove undeduced 'auto' decls,
719 which LTO doesn't understand, and can't have been used by anything. */
720 if (block)
722 tree* d;
724 for (d = &BLOCK_VARS (block); *d; )
726 if (TREE_CODE (*d) == TREE_LIST
727 || (!processing_template_decl
728 && undeduced_auto_decl (*d)))
729 *d = TREE_CHAIN (*d);
730 else
731 d = &DECL_CHAIN (*d);
735 /* If the level being exited is the top level of a function,
736 check over all the labels. */
737 if (functionbody)
739 if (block)
741 /* Since this is the top level block of a function, the vars are
742 the function's parameters. Don't leave them in the BLOCK
743 because they are found in the FUNCTION_DECL instead. */
744 BLOCK_VARS (block) = 0;
745 pop_labels (block);
747 else
748 pop_labels (subblocks);
751 kind = current_binding_level->kind;
752 if (kind == sk_cleanup)
754 tree stmt;
756 /* If this is a temporary binding created for a cleanup, then we'll
757 have pushed a statement list level. Pop that, create a new
758 BIND_EXPR for the block, and insert it into the stream. */
759 stmt = pop_stmt_list (current_binding_level->statement_list);
760 stmt = c_build_bind_expr (input_location, block, stmt);
761 add_stmt (stmt);
764 leave_scope ();
765 if (functionbody)
767 /* The current function is being defined, so its DECL_INITIAL
768 should be error_mark_node. */
769 gcc_assert (DECL_INITIAL (current_function_decl) == error_mark_node);
770 DECL_INITIAL (current_function_decl) = block ? block : subblocks;
771 if (subblocks)
773 if (FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
775 if (BLOCK_SUBBLOCKS (subblocks))
776 BLOCK_OUTER_CURLY_BRACE_P (BLOCK_SUBBLOCKS (subblocks)) = 1;
778 else
779 BLOCK_OUTER_CURLY_BRACE_P (subblocks) = 1;
782 else if (block)
783 current_binding_level->blocks
784 = block_chainon (current_binding_level->blocks, block);
786 /* If we did not make a block for the level just exited,
787 any blocks made for inner levels
788 (since they cannot be recorded as subblocks in that level)
789 must be carried forward so they will later become subblocks
790 of something else. */
791 else if (subblocks)
792 current_binding_level->blocks
793 = block_chainon (current_binding_level->blocks, subblocks);
795 /* Each and every BLOCK node created here in `poplevel' is important
796 (e.g. for proper debugging information) so if we created one
797 earlier, mark it as "used". */
798 if (block)
799 TREE_USED (block) = 1;
801 /* All temporary bindings created for cleanups are popped silently. */
802 if (kind == sk_cleanup)
803 goto restart;
805 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
806 return block;
809 /* Call wrapup_globals_declarations for the globals in NAMESPACE. */
810 /* Diagnose odr-used extern inline variables without definitions
811 in the current TU. */
814 wrapup_namespace_globals ()
816 if (vec<tree, va_gc> *statics = static_decls)
818 tree decl;
819 unsigned int i;
820 FOR_EACH_VEC_ELT (*statics, i, decl)
822 if (warn_unused_function
823 && TREE_CODE (decl) == FUNCTION_DECL
824 && DECL_INITIAL (decl) == 0
825 && DECL_EXTERNAL (decl)
826 && !TREE_PUBLIC (decl)
827 && !DECL_ARTIFICIAL (decl)
828 && !DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl)
829 && !TREE_NO_WARNING (decl))
830 warning_at (DECL_SOURCE_LOCATION (decl),
831 OPT_Wunused_function,
832 "%qF declared %<static%> but never defined", decl);
834 if (VAR_P (decl)
835 && DECL_EXTERNAL (decl)
836 && DECL_INLINE_VAR_P (decl)
837 && DECL_ODR_USED (decl))
838 error_at (DECL_SOURCE_LOCATION (decl),
839 "odr-used inline variable %qD is not defined", decl);
842 /* Clear out the list, so we don't rescan next time. */
843 static_decls = NULL;
845 /* Write out any globals that need to be output. */
846 return wrapup_global_declarations (statics->address (),
847 statics->length ());
849 return 0;
852 /* In C++, you don't have to write `struct S' to refer to `S'; you
853 can just use `S'. We accomplish this by creating a TYPE_DECL as
854 if the user had written `typedef struct S S'. Create and return
855 the TYPE_DECL for TYPE. */
857 tree
858 create_implicit_typedef (tree name, tree type)
860 tree decl;
862 decl = build_decl (input_location, TYPE_DECL, name, type);
863 DECL_ARTIFICIAL (decl) = 1;
864 /* There are other implicit type declarations, like the one *within*
865 a class that allows you to write `S::S'. We must distinguish
866 amongst these. */
867 SET_DECL_IMPLICIT_TYPEDEF_P (decl);
868 TYPE_NAME (type) = decl;
869 TYPE_STUB_DECL (type) = decl;
871 return decl;
874 /* Remember a local name for name-mangling purposes. */
876 static void
877 push_local_name (tree decl)
879 size_t i, nelts;
880 tree t, name;
882 timevar_start (TV_NAME_LOOKUP);
884 name = DECL_NAME (decl);
886 nelts = vec_safe_length (local_names);
887 for (i = 0; i < nelts; i++)
889 t = (*local_names)[i];
890 if (DECL_NAME (t) == name)
892 retrofit_lang_decl (decl);
893 DECL_LANG_SPECIFIC (decl)->u.base.u2sel = 1;
894 if (DECL_DISCRIMINATOR_SET_P (t))
895 DECL_DISCRIMINATOR (decl) = DECL_DISCRIMINATOR (t) + 1;
896 else
897 DECL_DISCRIMINATOR (decl) = 1;
899 (*local_names)[i] = decl;
900 timevar_stop (TV_NAME_LOOKUP);
901 return;
905 vec_safe_push (local_names, decl);
906 timevar_stop (TV_NAME_LOOKUP);
909 /* Subroutine of duplicate_decls: return truthvalue of whether
910 or not types of these decls match.
912 For C++, we must compare the parameter list so that `int' can match
913 `int&' in a parameter position, but `int&' is not confused with
914 `const int&'. */
917 decls_match (tree newdecl, tree olddecl, bool record_versions /* = true */)
919 int types_match;
921 if (newdecl == olddecl)
922 return 1;
924 if (TREE_CODE (newdecl) != TREE_CODE (olddecl))
925 /* If the two DECLs are not even the same kind of thing, we're not
926 interested in their types. */
927 return 0;
929 gcc_assert (DECL_P (newdecl));
931 if (TREE_CODE (newdecl) == FUNCTION_DECL)
933 tree f1 = TREE_TYPE (newdecl);
934 tree f2 = TREE_TYPE (olddecl);
935 tree p1 = TYPE_ARG_TYPES (f1);
936 tree p2 = TYPE_ARG_TYPES (f2);
937 tree r2;
939 /* Specializations of different templates are different functions
940 even if they have the same type. */
941 tree t1 = (DECL_USE_TEMPLATE (newdecl)
942 ? DECL_TI_TEMPLATE (newdecl)
943 : NULL_TREE);
944 tree t2 = (DECL_USE_TEMPLATE (olddecl)
945 ? DECL_TI_TEMPLATE (olddecl)
946 : NULL_TREE);
947 if (t1 != t2)
948 return 0;
950 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
951 && ! (DECL_EXTERN_C_P (newdecl)
952 && DECL_EXTERN_C_P (olddecl)))
953 return 0;
955 /* A new declaration doesn't match a built-in one unless it
956 is also extern "C". */
957 if (DECL_IS_BUILTIN (olddecl)
958 && DECL_EXTERN_C_P (olddecl) && !DECL_EXTERN_C_P (newdecl))
959 return 0;
961 if (TREE_CODE (f1) != TREE_CODE (f2))
962 return 0;
964 /* A declaration with deduced return type should use its pre-deduction
965 type for declaration matching. */
966 r2 = fndecl_declared_return_type (olddecl);
968 if (same_type_p (TREE_TYPE (f1), r2))
970 if (!prototype_p (f2) && DECL_EXTERN_C_P (olddecl)
971 && (DECL_BUILT_IN (olddecl)
972 #ifdef SYSTEM_IMPLICIT_EXTERN_C
973 || (DECL_IN_SYSTEM_HEADER (newdecl) && !DECL_CLASS_SCOPE_P (newdecl))
974 || (DECL_IN_SYSTEM_HEADER (olddecl) && !DECL_CLASS_SCOPE_P (olddecl))
975 #endif
978 types_match = self_promoting_args_p (p1);
979 if (p1 == void_list_node)
980 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
982 #ifdef SYSTEM_IMPLICIT_EXTERN_C
983 else if (!prototype_p (f1)
984 && (DECL_EXTERN_C_P (olddecl)
985 && DECL_IN_SYSTEM_HEADER (olddecl)
986 && !DECL_CLASS_SCOPE_P (olddecl))
987 && (DECL_EXTERN_C_P (newdecl)
988 && DECL_IN_SYSTEM_HEADER (newdecl)
989 && !DECL_CLASS_SCOPE_P (newdecl)))
991 types_match = self_promoting_args_p (p2);
992 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
994 #endif
995 else
996 types_match =
997 compparms (p1, p2)
998 && type_memfn_rqual (f1) == type_memfn_rqual (f2)
999 && (TYPE_ATTRIBUTES (TREE_TYPE (newdecl)) == NULL_TREE
1000 || comp_type_attributes (TREE_TYPE (newdecl),
1001 TREE_TYPE (olddecl)) != 0);
1003 else
1004 types_match = 0;
1006 /* The decls dont match if they correspond to two different versions
1007 of the same function. Disallow extern "C" functions to be
1008 versions for now. */
1009 if (types_match
1010 && !DECL_EXTERN_C_P (newdecl)
1011 && !DECL_EXTERN_C_P (olddecl)
1012 && record_versions
1013 && maybe_version_functions (newdecl, olddecl,
1014 (!DECL_FUNCTION_VERSIONED (newdecl)
1015 || !DECL_FUNCTION_VERSIONED (olddecl))))
1016 return 0;
1018 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1020 tree oldres = DECL_TEMPLATE_RESULT (olddecl);
1021 tree newres = DECL_TEMPLATE_RESULT (newdecl);
1023 if (TREE_CODE (newres) != TREE_CODE (oldres))
1024 return 0;
1026 if (!comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1027 DECL_TEMPLATE_PARMS (olddecl)))
1028 return 0;
1030 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1031 types_match = (same_type_p (TREE_TYPE (oldres), TREE_TYPE (newres))
1032 && equivalently_constrained (olddecl, newdecl));
1033 else
1034 // We don't need to check equivalently_constrained for variable and
1035 // function templates because we check it on the results.
1036 types_match = decls_match (oldres, newres);
1038 else
1040 /* Need to check scope for variable declaration (VAR_DECL).
1041 For typedef (TYPE_DECL), scope is ignored. */
1042 if (VAR_P (newdecl)
1043 && CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
1044 /* [dcl.link]
1045 Two declarations for an object with C language linkage
1046 with the same name (ignoring the namespace that qualify
1047 it) that appear in different namespace scopes refer to
1048 the same object. */
1049 && !(DECL_EXTERN_C_P (olddecl) && DECL_EXTERN_C_P (newdecl)))
1050 return 0;
1052 if (TREE_TYPE (newdecl) == error_mark_node)
1053 types_match = TREE_TYPE (olddecl) == error_mark_node;
1054 else if (TREE_TYPE (olddecl) == NULL_TREE)
1055 types_match = TREE_TYPE (newdecl) == NULL_TREE;
1056 else if (TREE_TYPE (newdecl) == NULL_TREE)
1057 types_match = 0;
1058 else
1059 types_match = comptypes (TREE_TYPE (newdecl),
1060 TREE_TYPE (olddecl),
1061 COMPARE_REDECLARATION);
1064 // Normal functions can be constrained, as can variable partial
1065 // specializations.
1066 if (types_match && VAR_OR_FUNCTION_DECL_P (newdecl))
1067 types_match = equivalently_constrained (newdecl, olddecl);
1069 return types_match;
1072 /* NEWDECL and OLDDECL have identical signatures. If they are
1073 different versions adjust them and return true.
1074 If RECORD is set to true, record function versions. */
1076 bool
1077 maybe_version_functions (tree newdecl, tree olddecl, bool record)
1079 if (!targetm.target_option.function_versions (newdecl, olddecl))
1080 return false;
1082 if (!DECL_FUNCTION_VERSIONED (olddecl))
1084 DECL_FUNCTION_VERSIONED (olddecl) = 1;
1085 if (DECL_ASSEMBLER_NAME_SET_P (olddecl))
1086 mangle_decl (olddecl);
1089 if (!DECL_FUNCTION_VERSIONED (newdecl))
1091 DECL_FUNCTION_VERSIONED (newdecl) = 1;
1092 if (DECL_ASSEMBLER_NAME_SET_P (newdecl))
1093 mangle_decl (newdecl);
1096 if (record)
1097 cgraph_node::record_function_versions (olddecl, newdecl);
1099 return true;
1102 /* If NEWDECL is `static' and an `extern' was seen previously,
1103 warn about it. OLDDECL is the previous declaration.
1105 Note that this does not apply to the C++ case of declaring
1106 a variable `extern const' and then later `const'.
1108 Don't complain about built-in functions, since they are beyond
1109 the user's control. */
1111 void
1112 warn_extern_redeclared_static (tree newdecl, tree olddecl)
1114 if (TREE_CODE (newdecl) == TYPE_DECL
1115 || TREE_CODE (newdecl) == TEMPLATE_DECL
1116 || TREE_CODE (newdecl) == CONST_DECL
1117 || TREE_CODE (newdecl) == NAMESPACE_DECL)
1118 return;
1120 /* Don't get confused by static member functions; that's a different
1121 use of `static'. */
1122 if (TREE_CODE (newdecl) == FUNCTION_DECL
1123 && DECL_STATIC_FUNCTION_P (newdecl))
1124 return;
1126 /* If the old declaration was `static', or the new one isn't, then
1127 everything is OK. */
1128 if (DECL_THIS_STATIC (olddecl) || !DECL_THIS_STATIC (newdecl))
1129 return;
1131 /* It's OK to declare a builtin function as `static'. */
1132 if (TREE_CODE (olddecl) == FUNCTION_DECL
1133 && DECL_ARTIFICIAL (olddecl))
1134 return;
1136 if (permerror (DECL_SOURCE_LOCATION (newdecl),
1137 "%qD was declared %<extern%> and later %<static%>", newdecl))
1138 inform (DECL_SOURCE_LOCATION (olddecl),
1139 "previous declaration of %qD", olddecl);
1142 /* NEW_DECL is a redeclaration of OLD_DECL; both are functions or
1143 function templates. If their exception specifications do not
1144 match, issue a diagnostic. */
1146 static void
1147 check_redeclaration_exception_specification (tree new_decl,
1148 tree old_decl)
1150 tree new_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl));
1151 tree old_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl));
1153 /* Two default specs are equivalent, don't force evaluation. */
1154 if (UNEVALUATED_NOEXCEPT_SPEC_P (new_exceptions)
1155 && UNEVALUATED_NOEXCEPT_SPEC_P (old_exceptions))
1156 return;
1158 if (!type_dependent_expression_p (old_decl))
1160 maybe_instantiate_noexcept (new_decl);
1161 maybe_instantiate_noexcept (old_decl);
1163 new_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl));
1164 old_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl));
1166 /* [except.spec]
1168 If any declaration of a function has an exception-specification,
1169 all declarations, including the definition and an explicit
1170 specialization, of that function shall have an
1171 exception-specification with the same set of type-ids. */
1172 if (! DECL_IS_BUILTIN (old_decl)
1173 && !comp_except_specs (new_exceptions, old_exceptions, ce_normal))
1175 const char *const msg
1176 = G_("declaration of %qF has a different exception specifier");
1177 bool complained = true;
1178 location_t new_loc = DECL_SOURCE_LOCATION (new_decl);
1179 if (DECL_IN_SYSTEM_HEADER (old_decl))
1180 complained = pedwarn (new_loc, OPT_Wsystem_headers, msg, new_decl);
1181 else if (!flag_exceptions)
1182 /* We used to silently permit mismatched eh specs with
1183 -fno-exceptions, so make them a pedwarn now. */
1184 complained = pedwarn (new_loc, OPT_Wpedantic, msg, new_decl);
1185 else
1186 error_at (new_loc, msg, new_decl);
1187 if (complained)
1188 inform (DECL_SOURCE_LOCATION (old_decl),
1189 "from previous declaration %qF", old_decl);
1193 /* Return true if OLD_DECL and NEW_DECL agree on constexprness.
1194 Otherwise issue diagnostics. */
1196 static bool
1197 validate_constexpr_redeclaration (tree old_decl, tree new_decl)
1199 old_decl = STRIP_TEMPLATE (old_decl);
1200 new_decl = STRIP_TEMPLATE (new_decl);
1201 if (!VAR_OR_FUNCTION_DECL_P (old_decl)
1202 || !VAR_OR_FUNCTION_DECL_P (new_decl))
1203 return true;
1204 if (DECL_DECLARED_CONSTEXPR_P (old_decl)
1205 == DECL_DECLARED_CONSTEXPR_P (new_decl))
1206 return true;
1207 if (TREE_CODE (old_decl) == FUNCTION_DECL)
1209 if (DECL_BUILT_IN (old_decl))
1211 /* Hide a built-in declaration. */
1212 DECL_DECLARED_CONSTEXPR_P (old_decl)
1213 = DECL_DECLARED_CONSTEXPR_P (new_decl);
1214 return true;
1216 /* 7.1.5 [dcl.constexpr]
1217 Note: An explicit specialization can differ from the template
1218 declaration with respect to the constexpr specifier. */
1219 if (! DECL_TEMPLATE_SPECIALIZATION (old_decl)
1220 && DECL_TEMPLATE_SPECIALIZATION (new_decl))
1221 return true;
1223 error_at (DECL_SOURCE_LOCATION (new_decl),
1224 "redeclaration %qD differs in %<constexpr%> "
1225 "from previous declaration", new_decl);
1226 inform (DECL_SOURCE_LOCATION (old_decl),
1227 "previous declaration %qD", old_decl);
1228 return false;
1230 return true;
1233 // If OLDDECL and NEWDECL are concept declarations with the same type
1234 // (i.e., and template parameters), but different requirements,
1235 // emit diagnostics and return true. Otherwise, return false.
1236 static inline bool
1237 check_concept_refinement (tree olddecl, tree newdecl)
1239 if (!DECL_DECLARED_CONCEPT_P (olddecl) || !DECL_DECLARED_CONCEPT_P (newdecl))
1240 return false;
1242 tree d1 = DECL_TEMPLATE_RESULT (olddecl);
1243 tree d2 = DECL_TEMPLATE_RESULT (newdecl);
1244 if (TREE_CODE (d1) != TREE_CODE (d2))
1245 return false;
1247 tree t1 = TREE_TYPE (d1);
1248 tree t2 = TREE_TYPE (d2);
1249 if (TREE_CODE (d1) == FUNCTION_DECL)
1251 if (compparms (TYPE_ARG_TYPES (t1), TYPE_ARG_TYPES (t2))
1252 && comp_template_parms (DECL_TEMPLATE_PARMS (olddecl),
1253 DECL_TEMPLATE_PARMS (newdecl))
1254 && !equivalently_constrained (olddecl, newdecl))
1256 error ("cannot specialize concept %q#D", olddecl);
1257 return true;
1260 return false;
1263 /* DECL is a redeclaration of a function or function template. If
1264 it does have default arguments issue a diagnostic. Note: this
1265 function is used to enforce the requirements in C++11 8.3.6 about
1266 no default arguments in redeclarations. */
1268 static void
1269 check_redeclaration_no_default_args (tree decl)
1271 gcc_assert (DECL_DECLARES_FUNCTION_P (decl));
1273 for (tree t = FUNCTION_FIRST_USER_PARMTYPE (decl);
1274 t && t != void_list_node; t = TREE_CHAIN (t))
1275 if (TREE_PURPOSE (t))
1277 permerror (DECL_SOURCE_LOCATION (decl),
1278 "redeclaration of %q#D may not have default "
1279 "arguments", decl);
1280 return;
1284 /* NEWDECL is a redeclaration of a function or function template OLDDECL,
1285 in any case represented as FUNCTION_DECLs (the DECL_TEMPLATE_RESULTs of
1286 the TEMPLATE_DECLs in case of function templates). This function is used
1287 to enforce the final part of C++17 11.3.6/4, about a single declaration:
1288 "If a friend declaration specifies a default argument expression, that
1289 declaration shall be a definition and shall be the only declaration of
1290 the function or function template in the translation unit." */
1292 static void
1293 check_no_redeclaration_friend_default_args (tree olddecl, tree newdecl,
1294 bool olddecl_hidden_friend_p)
1296 if (!olddecl_hidden_friend_p && !DECL_FRIEND_P (newdecl))
1297 return;
1299 tree t1 = FUNCTION_FIRST_USER_PARMTYPE (olddecl);
1300 tree t2 = FUNCTION_FIRST_USER_PARMTYPE (newdecl);
1302 for (; t1 && t1 != void_list_node;
1303 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
1304 if ((olddecl_hidden_friend_p && TREE_PURPOSE (t1))
1305 || (DECL_FRIEND_P (newdecl) && TREE_PURPOSE (t2)))
1307 if (permerror (DECL_SOURCE_LOCATION (newdecl),
1308 "friend declaration of %q#D specifies default "
1309 "arguments and isn't the only declaration", newdecl))
1310 inform (DECL_SOURCE_LOCATION (olddecl),
1311 "previous declaration of %q#D", olddecl);
1312 return;
1316 /* Merge tree bits that correspond to attributes noreturn, nothrow,
1317 const, malloc, and pure from NEWDECL with those of OLDDECL. */
1319 static void
1320 merge_attribute_bits (tree newdecl, tree olddecl)
1322 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1323 TREE_THIS_VOLATILE (olddecl) |= TREE_THIS_VOLATILE (newdecl);
1324 TREE_NOTHROW (newdecl) |= TREE_NOTHROW (olddecl);
1325 TREE_NOTHROW (olddecl) |= TREE_NOTHROW (newdecl);
1326 TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
1327 TREE_READONLY (olddecl) |= TREE_READONLY (newdecl);
1328 DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
1329 DECL_IS_MALLOC (olddecl) |= DECL_IS_MALLOC (newdecl);
1330 DECL_PURE_P (newdecl) |= DECL_PURE_P (olddecl);
1331 DECL_PURE_P (olddecl) |= DECL_PURE_P (newdecl);
1332 DECL_UNINLINABLE (newdecl) |= DECL_UNINLINABLE (olddecl);
1333 DECL_UNINLINABLE (olddecl) |= DECL_UNINLINABLE (newdecl);
1336 #define GNU_INLINE_P(fn) (DECL_DECLARED_INLINE_P (fn) \
1337 && lookup_attribute ("gnu_inline", \
1338 DECL_ATTRIBUTES (fn)))
1340 /* If NEWDECL is a redeclaration of OLDDECL, merge the declarations.
1341 If the redeclaration is invalid, a diagnostic is issued, and the
1342 error_mark_node is returned. Otherwise, OLDDECL is returned.
1344 If NEWDECL is not a redeclaration of OLDDECL, NULL_TREE is
1345 returned.
1347 NEWDECL_IS_FRIEND is true if NEWDECL was declared as a friend. */
1349 tree
1350 duplicate_decls (tree newdecl, tree olddecl, bool newdecl_is_friend)
1352 unsigned olddecl_uid = DECL_UID (olddecl);
1353 int olddecl_friend = 0, types_match = 0, hidden_friend = 0;
1354 int olddecl_hidden_friend = 0;
1355 int new_defines_function = 0;
1356 tree new_template_info;
1357 location_t olddecl_loc = DECL_SOURCE_LOCATION (olddecl);
1358 location_t newdecl_loc = DECL_SOURCE_LOCATION (newdecl);
1360 if (newdecl == olddecl)
1361 return olddecl;
1363 types_match = decls_match (newdecl, olddecl);
1365 /* If either the type of the new decl or the type of the old decl is an
1366 error_mark_node, then that implies that we have already issued an
1367 error (earlier) for some bogus type specification, and in that case,
1368 it is rather pointless to harass the user with yet more error message
1369 about the same declaration, so just pretend the types match here. */
1370 if (TREE_TYPE (newdecl) == error_mark_node
1371 || TREE_TYPE (olddecl) == error_mark_node)
1372 return error_mark_node;
1374 if (DECL_NAME (newdecl)
1375 && DECL_NAME (olddecl)
1376 && UDLIT_OPER_P (DECL_NAME (newdecl))
1377 && UDLIT_OPER_P (DECL_NAME (olddecl)))
1379 if (TREE_CODE (newdecl) == TEMPLATE_DECL
1380 && TREE_CODE (olddecl) != TEMPLATE_DECL
1381 && check_raw_literal_operator (olddecl))
1382 error_at (newdecl_loc,
1383 "literal operator template %qD conflicts with"
1384 " raw literal operator %qD", newdecl, olddecl);
1385 else if (TREE_CODE (newdecl) != TEMPLATE_DECL
1386 && TREE_CODE (olddecl) == TEMPLATE_DECL
1387 && check_raw_literal_operator (newdecl))
1388 error_at (newdecl_loc,
1389 "raw literal operator %qD conflicts with"
1390 " literal operator template %qD", newdecl, olddecl);
1393 /* True to merge attributes between the declarations, false to
1394 set OLDDECL's attributes to those of NEWDECL (for template
1395 explicit specializations that specify their own attributes
1396 independent of those specified for the primary template). */
1397 const bool merge_attr = (TREE_CODE (newdecl) != FUNCTION_DECL
1398 || !DECL_TEMPLATE_SPECIALIZATION (newdecl)
1399 || DECL_TEMPLATE_SPECIALIZATION (olddecl));
1401 if (DECL_P (olddecl)
1402 && TREE_CODE (newdecl) == FUNCTION_DECL
1403 && TREE_CODE (olddecl) == FUNCTION_DECL
1404 && merge_attr
1405 && diagnose_mismatched_attributes (olddecl, newdecl))
1407 if (DECL_INITIAL (olddecl))
1408 inform (olddecl_loc,
1409 "previous definition of %qD was here", olddecl);
1410 else
1411 inform (olddecl_loc,
1412 "previous declaration of %qD was here", olddecl);
1415 /* Check for redeclaration and other discrepancies. */
1416 if (TREE_CODE (olddecl) == FUNCTION_DECL
1417 && DECL_ARTIFICIAL (olddecl))
1419 gcc_assert (!DECL_HIDDEN_FRIEND_P (olddecl));
1420 if (TREE_CODE (newdecl) != FUNCTION_DECL)
1422 /* Avoid warnings redeclaring built-ins which have not been
1423 explicitly declared. */
1424 if (DECL_ANTICIPATED (olddecl))
1426 if (TREE_PUBLIC (newdecl)
1427 && CP_DECL_CONTEXT (newdecl) == global_namespace)
1428 warning_at (newdecl_loc,
1429 OPT_Wbuiltin_declaration_mismatch,
1430 "built-in function %qD declared as non-function",
1431 newdecl);
1432 return NULL_TREE;
1435 /* If you declare a built-in or predefined function name as static,
1436 the old definition is overridden, but optionally warn this was a
1437 bad choice of name. */
1438 if (! TREE_PUBLIC (newdecl))
1440 warning_at (newdecl_loc,
1441 OPT_Wshadow,
1442 DECL_BUILT_IN (olddecl)
1443 ? G_("shadowing built-in function %q#D")
1444 : G_("shadowing library function %q#D"), olddecl);
1445 /* Discard the old built-in function. */
1446 return NULL_TREE;
1448 /* If the built-in is not ansi, then programs can override
1449 it even globally without an error. */
1450 else if (! DECL_BUILT_IN (olddecl))
1451 warning_at (newdecl_loc, 0,
1452 "library function %q#D redeclared as non-function %q#D",
1453 olddecl, newdecl);
1454 else
1455 error_at (newdecl_loc,
1456 "declaration of %q#D conflicts with built-in "
1457 "declaration %q#D", newdecl, olddecl);
1458 return NULL_TREE;
1460 else if (DECL_OMP_DECLARE_REDUCTION_P (olddecl))
1462 gcc_assert (DECL_OMP_DECLARE_REDUCTION_P (newdecl));
1463 error_at (newdecl_loc,
1464 "redeclaration of %<pragma omp declare reduction%>");
1465 inform (olddecl_loc,
1466 "previous %<pragma omp declare reduction%> declaration");
1467 return error_mark_node;
1469 else if (!types_match)
1471 /* Avoid warnings redeclaring built-ins which have not been
1472 explicitly declared. */
1473 if (DECL_ANTICIPATED (olddecl))
1475 tree t1, t2;
1477 /* A new declaration doesn't match a built-in one unless it
1478 is also extern "C". */
1479 gcc_assert (DECL_IS_BUILTIN (olddecl));
1480 gcc_assert (DECL_EXTERN_C_P (olddecl));
1481 if (!DECL_EXTERN_C_P (newdecl))
1482 return NULL_TREE;
1484 for (t1 = TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1485 t2 = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1486 t1 || t2;
1487 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
1489 if (!t1 || !t2)
1490 break;
1491 /* FILE, tm types are not known at the time
1492 we create the builtins. */
1493 for (unsigned i = 0;
1494 i < sizeof (builtin_structptr_types)
1495 / sizeof (builtin_structptr_type);
1496 ++i)
1497 if (TREE_VALUE (t2) == builtin_structptr_types[i].node)
1499 tree t = TREE_VALUE (t1);
1501 if (TYPE_PTR_P (t)
1502 && TYPE_IDENTIFIER (TREE_TYPE (t))
1503 == get_identifier (builtin_structptr_types[i].str)
1504 && compparms (TREE_CHAIN (t1), TREE_CHAIN (t2)))
1506 tree oldargs = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1508 TYPE_ARG_TYPES (TREE_TYPE (olddecl))
1509 = TYPE_ARG_TYPES (TREE_TYPE (newdecl));
1510 types_match = decls_match (newdecl, olddecl);
1511 if (types_match)
1512 return duplicate_decls (newdecl, olddecl,
1513 newdecl_is_friend);
1514 TYPE_ARG_TYPES (TREE_TYPE (olddecl)) = oldargs;
1516 goto next_arg;
1519 if (! same_type_p (TREE_VALUE (t1), TREE_VALUE (t2)))
1520 break;
1521 next_arg:;
1524 warning_at (newdecl_loc,
1525 OPT_Wbuiltin_declaration_mismatch,
1526 "declaration of %q#D conflicts with built-in "
1527 "declaration %q#D", newdecl, olddecl);
1529 else if ((DECL_EXTERN_C_P (newdecl)
1530 && DECL_EXTERN_C_P (olddecl))
1531 || compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1532 TYPE_ARG_TYPES (TREE_TYPE (olddecl))))
1534 /* Don't really override olddecl for __* prefixed builtins
1535 except for __[^b]*_chk, the compiler might be using those
1536 explicitly. */
1537 if (DECL_BUILT_IN (olddecl))
1539 tree id = DECL_NAME (olddecl);
1540 const char *name = IDENTIFIER_POINTER (id);
1541 size_t len;
1543 if (name[0] == '_'
1544 && name[1] == '_'
1545 && (strncmp (name + 2, "builtin_",
1546 strlen ("builtin_")) == 0
1547 || (len = strlen (name)) <= strlen ("___chk")
1548 || memcmp (name + len - strlen ("_chk"),
1549 "_chk", strlen ("_chk") + 1) != 0))
1551 if (DECL_INITIAL (newdecl))
1553 error_at (newdecl_loc,
1554 "definition of %q#D ambiguates built-in "
1555 "declaration %q#D", newdecl, olddecl);
1556 return error_mark_node;
1558 if (permerror (newdecl_loc,
1559 "new declaration %q#D ambiguates built-in"
1560 " declaration %q#D", newdecl, olddecl)
1561 && flag_permissive)
1562 inform (newdecl_loc,
1563 "ignoring the %q#D declaration", newdecl);
1564 return flag_permissive ? olddecl : error_mark_node;
1568 /* A near match; override the builtin. */
1570 if (TREE_PUBLIC (newdecl))
1571 warning_at (newdecl_loc,
1572 OPT_Wbuiltin_declaration_mismatch,
1573 "new declaration %q#D ambiguates built-in "
1574 "declaration %q#D", newdecl, olddecl);
1575 else
1576 warning (OPT_Wshadow,
1577 DECL_BUILT_IN (olddecl)
1578 ? G_("shadowing built-in function %q#D")
1579 : G_("shadowing library function %q#D"), olddecl);
1581 else
1582 /* Discard the old built-in function. */
1583 return NULL_TREE;
1585 /* Replace the old RTL to avoid problems with inlining. */
1586 COPY_DECL_RTL (newdecl, olddecl);
1588 /* Even if the types match, prefer the new declarations type for
1589 built-ins which have not been explicitly declared, for
1590 exception lists, etc... */
1591 else if (DECL_IS_BUILTIN (olddecl))
1593 tree type = TREE_TYPE (newdecl);
1594 tree attribs = (*targetm.merge_type_attributes)
1595 (TREE_TYPE (olddecl), type);
1597 type = cp_build_type_attribute_variant (type, attribs);
1598 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = type;
1601 /* If a function is explicitly declared "throw ()", propagate that to
1602 the corresponding builtin. */
1603 if (DECL_BUILT_IN_CLASS (olddecl) == BUILT_IN_NORMAL
1604 && DECL_ANTICIPATED (olddecl)
1605 && TREE_NOTHROW (newdecl)
1606 && !TREE_NOTHROW (olddecl))
1608 enum built_in_function fncode = DECL_FUNCTION_CODE (olddecl);
1609 tree tmpdecl = builtin_decl_explicit (fncode);
1610 if (tmpdecl && tmpdecl != olddecl && types_match)
1611 TREE_NOTHROW (tmpdecl) = 1;
1614 /* Whether or not the builtin can throw exceptions has no
1615 bearing on this declarator. */
1616 TREE_NOTHROW (olddecl) = 0;
1618 if (DECL_THIS_STATIC (newdecl) && !DECL_THIS_STATIC (olddecl))
1620 /* If a builtin function is redeclared as `static', merge
1621 the declarations, but make the original one static. */
1622 DECL_THIS_STATIC (olddecl) = 1;
1623 TREE_PUBLIC (olddecl) = 0;
1625 /* Make the old declaration consistent with the new one so
1626 that all remnants of the builtin-ness of this function
1627 will be banished. */
1628 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
1629 COPY_DECL_RTL (newdecl, olddecl);
1632 else if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1634 /* C++ Standard, 3.3, clause 4:
1635 "[Note: a namespace name or a class template name must be unique
1636 in its declarative region (7.3.2, clause 14). ]" */
1637 if (TREE_CODE (olddecl) != NAMESPACE_DECL
1638 && TREE_CODE (newdecl) != NAMESPACE_DECL
1639 && (TREE_CODE (olddecl) != TEMPLATE_DECL
1640 || TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) != TYPE_DECL)
1641 && (TREE_CODE (newdecl) != TEMPLATE_DECL
1642 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != TYPE_DECL))
1644 if ((TREE_CODE (olddecl) == TYPE_DECL && DECL_ARTIFICIAL (olddecl)
1645 && TREE_CODE (newdecl) != TYPE_DECL)
1646 || (TREE_CODE (newdecl) == TYPE_DECL && DECL_ARTIFICIAL (newdecl)
1647 && TREE_CODE (olddecl) != TYPE_DECL))
1649 /* We do nothing special here, because C++ does such nasty
1650 things with TYPE_DECLs. Instead, just let the TYPE_DECL
1651 get shadowed, and know that if we need to find a TYPE_DECL
1652 for a given name, we can look in the IDENTIFIER_TYPE_VALUE
1653 slot of the identifier. */
1654 return NULL_TREE;
1657 if ((TREE_CODE (newdecl) == FUNCTION_DECL
1658 && DECL_FUNCTION_TEMPLATE_P (olddecl))
1659 || (TREE_CODE (olddecl) == FUNCTION_DECL
1660 && DECL_FUNCTION_TEMPLATE_P (newdecl)))
1661 return NULL_TREE;
1664 error ("%q#D redeclared as different kind of symbol", newdecl);
1665 if (TREE_CODE (olddecl) == TREE_LIST)
1666 olddecl = TREE_VALUE (olddecl);
1667 inform (olddecl_loc,
1668 "previous declaration %q#D", olddecl);
1670 return error_mark_node;
1672 else if (!types_match)
1674 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl))
1675 /* These are certainly not duplicate declarations; they're
1676 from different scopes. */
1677 return NULL_TREE;
1679 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1681 /* The name of a class template may not be declared to refer to
1682 any other template, class, function, object, namespace, value,
1683 or type in the same scope. */
1684 if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == TYPE_DECL
1685 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1687 error_at (newdecl_loc,
1688 "conflicting declaration of template %q#D", newdecl);
1689 inform (olddecl_loc,
1690 "previous declaration %q#D", olddecl);
1691 return error_mark_node;
1693 else if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == FUNCTION_DECL
1694 && TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == FUNCTION_DECL
1695 && compparms (TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl))),
1696 TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (newdecl))))
1697 && comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1698 DECL_TEMPLATE_PARMS (olddecl))
1699 /* Template functions can be disambiguated by
1700 return type. */
1701 && same_type_p (TREE_TYPE (TREE_TYPE (newdecl)),
1702 TREE_TYPE (TREE_TYPE (olddecl)))
1703 // Template functions can also be disambiguated by
1704 // constraints.
1705 && equivalently_constrained (olddecl, newdecl))
1707 error_at (newdecl_loc, "ambiguating new declaration %q#D",
1708 newdecl);
1709 inform (olddecl_loc,
1710 "old declaration %q#D", olddecl);
1712 else if (check_concept_refinement (olddecl, newdecl))
1713 return error_mark_node;
1714 return NULL_TREE;
1716 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1718 if (DECL_EXTERN_C_P (newdecl) && DECL_EXTERN_C_P (olddecl))
1720 error_at (newdecl_loc,
1721 "conflicting declaration of C function %q#D",
1722 newdecl);
1723 inform (olddecl_loc,
1724 "previous declaration %q#D", olddecl);
1725 return NULL_TREE;
1727 /* For function versions, params and types match, but they
1728 are not ambiguous. */
1729 else if ((!DECL_FUNCTION_VERSIONED (newdecl)
1730 && !DECL_FUNCTION_VERSIONED (olddecl))
1731 // The functions have the same parameter types.
1732 && compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1733 TYPE_ARG_TYPES (TREE_TYPE (olddecl)))
1734 // And the same constraints.
1735 && equivalently_constrained (newdecl, olddecl))
1737 error_at (newdecl_loc,
1738 "ambiguating new declaration of %q#D", newdecl);
1739 inform (olddecl_loc,
1740 "old declaration %q#D", olddecl);
1741 return error_mark_node;
1743 else
1744 return NULL_TREE;
1746 else
1748 error_at (newdecl_loc, "conflicting declaration %q#D", newdecl);
1749 inform (olddecl_loc,
1750 "previous declaration as %q#D", olddecl);
1751 return error_mark_node;
1754 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1755 && ((DECL_TEMPLATE_SPECIALIZATION (olddecl)
1756 && (!DECL_TEMPLATE_INFO (newdecl)
1757 || (DECL_TI_TEMPLATE (newdecl)
1758 != DECL_TI_TEMPLATE (olddecl))))
1759 || (DECL_TEMPLATE_SPECIALIZATION (newdecl)
1760 && (!DECL_TEMPLATE_INFO (olddecl)
1761 || (DECL_TI_TEMPLATE (olddecl)
1762 != DECL_TI_TEMPLATE (newdecl))))))
1763 /* It's OK to have a template specialization and a non-template
1764 with the same type, or to have specializations of two
1765 different templates with the same type. Note that if one is a
1766 specialization, and the other is an instantiation of the same
1767 template, that we do not exit at this point. That situation
1768 can occur if we instantiate a template class, and then
1769 specialize one of its methods. This situation is valid, but
1770 the declarations must be merged in the usual way. */
1771 return NULL_TREE;
1772 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1773 && ((DECL_TEMPLATE_INSTANTIATION (olddecl)
1774 && !DECL_USE_TEMPLATE (newdecl))
1775 || (DECL_TEMPLATE_INSTANTIATION (newdecl)
1776 && !DECL_USE_TEMPLATE (olddecl))))
1777 /* One of the declarations is a template instantiation, and the
1778 other is not a template at all. That's OK. */
1779 return NULL_TREE;
1780 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
1782 /* In [namespace.alias] we have:
1784 In a declarative region, a namespace-alias-definition can be
1785 used to redefine a namespace-alias declared in that declarative
1786 region to refer only to the namespace to which it already
1787 refers.
1789 Therefore, if we encounter a second alias directive for the same
1790 alias, we can just ignore the second directive. */
1791 if (DECL_NAMESPACE_ALIAS (newdecl)
1792 && (DECL_NAMESPACE_ALIAS (newdecl)
1793 == DECL_NAMESPACE_ALIAS (olddecl)))
1794 return olddecl;
1796 /* Leave it to update_binding to merge or report error. */
1797 return NULL_TREE;
1799 else
1801 const char *errmsg = redeclaration_error_message (newdecl, olddecl);
1802 if (errmsg)
1804 error_at (newdecl_loc, errmsg, newdecl);
1805 if (DECL_NAME (olddecl) != NULL_TREE)
1806 inform (olddecl_loc,
1807 (DECL_INITIAL (olddecl) && namespace_bindings_p ())
1808 ? G_("%q#D previously defined here")
1809 : G_("%q#D previously declared here"), olddecl);
1810 return error_mark_node;
1812 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1813 && DECL_INITIAL (olddecl) != NULL_TREE
1814 && !prototype_p (TREE_TYPE (olddecl))
1815 && prototype_p (TREE_TYPE (newdecl)))
1817 /* Prototype decl follows defn w/o prototype. */
1818 if (warning_at (newdecl_loc, 0,
1819 "prototype specified for %q#D", newdecl))
1820 inform (olddecl_loc,
1821 "previous non-prototype definition here");
1823 else if (VAR_OR_FUNCTION_DECL_P (olddecl)
1824 && DECL_LANGUAGE (newdecl) != DECL_LANGUAGE (olddecl))
1826 /* [dcl.link]
1827 If two declarations of the same function or object
1828 specify different linkage-specifications ..., the program
1829 is ill-formed.... Except for functions with C++ linkage,
1830 a function declaration without a linkage specification
1831 shall not precede the first linkage specification for
1832 that function. A function can be declared without a
1833 linkage specification after an explicit linkage
1834 specification has been seen; the linkage explicitly
1835 specified in the earlier declaration is not affected by
1836 such a function declaration.
1838 DR 563 raises the question why the restrictions on
1839 functions should not also apply to objects. Older
1840 versions of G++ silently ignore the linkage-specification
1841 for this example:
1843 namespace N {
1844 extern int i;
1845 extern "C" int i;
1848 which is clearly wrong. Therefore, we now treat objects
1849 like functions. */
1850 if (current_lang_depth () == 0)
1852 /* There is no explicit linkage-specification, so we use
1853 the linkage from the previous declaration. */
1854 retrofit_lang_decl (newdecl);
1855 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
1857 else
1859 error_at (newdecl_loc,
1860 "conflicting declaration of %q#D with %qL linkage",
1861 newdecl, DECL_LANGUAGE (newdecl));
1862 inform (olddecl_loc,
1863 "previous declaration with %qL linkage",
1864 DECL_LANGUAGE (olddecl));
1868 if (DECL_LANG_SPECIFIC (olddecl) && DECL_USE_TEMPLATE (olddecl))
1870 else if (TREE_CODE (olddecl) == FUNCTION_DECL)
1872 /* Note: free functions, as TEMPLATE_DECLs, are handled below. */
1873 if (DECL_FUNCTION_MEMBER_P (olddecl)
1874 && (/* grokfndecl passes member function templates too
1875 as FUNCTION_DECLs. */
1876 DECL_TEMPLATE_INFO (olddecl)
1877 /* C++11 8.3.6/6.
1878 Default arguments for a member function of a class
1879 template shall be specified on the initial declaration
1880 of the member function within the class template. */
1881 || CLASSTYPE_TEMPLATE_INFO (CP_DECL_CONTEXT (olddecl))))
1882 check_redeclaration_no_default_args (newdecl);
1883 else
1885 tree t1 = FUNCTION_FIRST_USER_PARMTYPE (olddecl);
1886 tree t2 = FUNCTION_FIRST_USER_PARMTYPE (newdecl);
1887 int i = 1;
1889 for (; t1 && t1 != void_list_node;
1890 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2), i++)
1891 if (TREE_PURPOSE (t1) && TREE_PURPOSE (t2))
1893 if (simple_cst_equal (TREE_PURPOSE (t1),
1894 TREE_PURPOSE (t2)) == 1)
1896 if (permerror (newdecl_loc,
1897 "default argument given for parameter "
1898 "%d of %q#D", i, newdecl))
1899 inform (olddecl_loc,
1900 "previous specification in %q#D here",
1901 olddecl);
1903 else
1905 error_at (newdecl_loc,
1906 "default argument given for parameter %d "
1907 "of %q#D", i, newdecl);
1908 inform (olddecl_loc,
1909 "previous specification in %q#D here",
1910 olddecl);
1914 /* C++17 11.3.6/4: "If a friend declaration specifies a default
1915 argument expression, that declaration... shall be the only
1916 declaration of the function or function template in the
1917 translation unit." */
1918 check_no_redeclaration_friend_default_args
1919 (olddecl, newdecl, DECL_HIDDEN_FRIEND_P (olddecl));
1924 /* Do not merge an implicit typedef with an explicit one. In:
1926 class A;
1928 typedef class A A __attribute__ ((foo));
1930 the attribute should apply only to the typedef. */
1931 if (TREE_CODE (olddecl) == TYPE_DECL
1932 && (DECL_IMPLICIT_TYPEDEF_P (olddecl)
1933 || DECL_IMPLICIT_TYPEDEF_P (newdecl)))
1934 return NULL_TREE;
1936 /* If new decl is `static' and an `extern' was seen previously,
1937 warn about it. */
1938 warn_extern_redeclared_static (newdecl, olddecl);
1940 if (!validate_constexpr_redeclaration (olddecl, newdecl))
1941 return error_mark_node;
1943 /* We have committed to returning 1 at this point. */
1944 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1946 /* Now that functions must hold information normally held
1947 by field decls, there is extra work to do so that
1948 declaration information does not get destroyed during
1949 definition. */
1950 if (DECL_VINDEX (olddecl))
1951 DECL_VINDEX (newdecl) = DECL_VINDEX (olddecl);
1952 if (DECL_CONTEXT (olddecl))
1953 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1954 DECL_STATIC_CONSTRUCTOR (newdecl) |= DECL_STATIC_CONSTRUCTOR (olddecl);
1955 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1956 DECL_PURE_VIRTUAL_P (newdecl) |= DECL_PURE_VIRTUAL_P (olddecl);
1957 DECL_VIRTUAL_P (newdecl) |= DECL_VIRTUAL_P (olddecl);
1958 DECL_INVALID_OVERRIDER_P (newdecl) |= DECL_INVALID_OVERRIDER_P (olddecl);
1959 DECL_FINAL_P (newdecl) |= DECL_FINAL_P (olddecl);
1960 DECL_OVERRIDE_P (newdecl) |= DECL_OVERRIDE_P (olddecl);
1961 DECL_THIS_STATIC (newdecl) |= DECL_THIS_STATIC (olddecl);
1962 if (DECL_OVERLOADED_OPERATOR_P (olddecl))
1963 DECL_OVERLOADED_OPERATOR_CODE_RAW (newdecl)
1964 = DECL_OVERLOADED_OPERATOR_CODE_RAW (olddecl);
1965 new_defines_function = DECL_INITIAL (newdecl) != NULL_TREE;
1967 /* Optionally warn about more than one declaration for the same
1968 name, but don't warn about a function declaration followed by a
1969 definition. */
1970 if (warn_redundant_decls && ! DECL_ARTIFICIAL (olddecl)
1971 && !(new_defines_function && DECL_INITIAL (olddecl) == NULL_TREE)
1972 /* Don't warn about extern decl followed by definition. */
1973 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl))
1974 /* Don't warn about friends, let add_friend take care of it. */
1975 && ! (newdecl_is_friend || DECL_FRIEND_P (olddecl))
1976 /* Don't warn about declaration followed by specialization. */
1977 && (! DECL_TEMPLATE_SPECIALIZATION (newdecl)
1978 || DECL_TEMPLATE_SPECIALIZATION (olddecl)))
1980 if (warning_at (newdecl_loc,
1981 OPT_Wredundant_decls,
1982 "redundant redeclaration of %qD in same scope",
1983 newdecl))
1984 inform (olddecl_loc,
1985 "previous declaration of %qD", olddecl);
1988 if (!(DECL_TEMPLATE_INSTANTIATION (olddecl)
1989 && DECL_TEMPLATE_SPECIALIZATION (newdecl)))
1991 if (DECL_DELETED_FN (newdecl))
1993 error_at (newdecl_loc, "deleted definition of %qD", newdecl);
1994 inform (olddecl_loc,
1995 "previous declaration of %qD", olddecl);
1997 DECL_DELETED_FN (newdecl) |= DECL_DELETED_FN (olddecl);
2001 /* Deal with C++: must preserve virtual function table size. */
2002 if (TREE_CODE (olddecl) == TYPE_DECL)
2004 tree newtype = TREE_TYPE (newdecl);
2005 tree oldtype = TREE_TYPE (olddecl);
2007 if (newtype != error_mark_node && oldtype != error_mark_node
2008 && TYPE_LANG_SPECIFIC (newtype) && TYPE_LANG_SPECIFIC (oldtype))
2009 CLASSTYPE_FRIEND_CLASSES (newtype)
2010 = CLASSTYPE_FRIEND_CLASSES (oldtype);
2012 DECL_ORIGINAL_TYPE (newdecl) = DECL_ORIGINAL_TYPE (olddecl);
2015 /* Copy all the DECL_... slots specified in the new decl except for
2016 any that we copy here from the old type. */
2017 if (merge_attr)
2018 DECL_ATTRIBUTES (newdecl)
2019 = (*targetm.merge_decl_attributes) (olddecl, newdecl);
2020 else
2021 DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
2023 if (DECL_DECLARES_FUNCTION_P (olddecl) && DECL_DECLARES_FUNCTION_P (newdecl))
2025 olddecl_friend = DECL_FRIEND_P (olddecl);
2026 olddecl_hidden_friend = DECL_HIDDEN_FRIEND_P (olddecl);
2027 hidden_friend = (DECL_ANTICIPATED (olddecl)
2028 && DECL_HIDDEN_FRIEND_P (olddecl)
2029 && newdecl_is_friend);
2030 if (!hidden_friend)
2032 DECL_ANTICIPATED (olddecl) = 0;
2033 DECL_HIDDEN_FRIEND_P (olddecl) = 0;
2037 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
2039 tree old_result = DECL_TEMPLATE_RESULT (olddecl);
2040 tree new_result = DECL_TEMPLATE_RESULT (newdecl);
2041 TREE_TYPE (olddecl) = TREE_TYPE (old_result);
2042 DECL_TEMPLATE_SPECIALIZATIONS (olddecl)
2043 = chainon (DECL_TEMPLATE_SPECIALIZATIONS (olddecl),
2044 DECL_TEMPLATE_SPECIALIZATIONS (newdecl));
2046 DECL_ATTRIBUTES (old_result)
2047 = (*targetm.merge_decl_attributes) (old_result, new_result);
2049 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
2051 if (DECL_SOURCE_LOCATION (newdecl)
2052 != DECL_SOURCE_LOCATION (olddecl))
2054 /* Per C++11 8.3.6/4, default arguments cannot be added in
2055 later declarations of a function template. */
2056 check_redeclaration_no_default_args (newdecl);
2057 /* C++17 11.3.6/4: "If a friend declaration specifies a default
2058 argument expression, that declaration... shall be the only
2059 declaration of the function or function template in the
2060 translation unit." */
2061 check_no_redeclaration_friend_default_args
2062 (old_result, new_result, olddecl_hidden_friend);
2065 check_default_args (newdecl);
2067 if (GNU_INLINE_P (old_result) != GNU_INLINE_P (new_result)
2068 && DECL_INITIAL (new_result))
2070 if (DECL_INITIAL (old_result))
2071 DECL_UNINLINABLE (old_result) = 1;
2072 else
2073 DECL_UNINLINABLE (old_result) = DECL_UNINLINABLE (new_result);
2074 DECL_EXTERNAL (old_result) = DECL_EXTERNAL (new_result);
2075 DECL_NOT_REALLY_EXTERN (old_result)
2076 = DECL_NOT_REALLY_EXTERN (new_result);
2077 DECL_INTERFACE_KNOWN (old_result)
2078 = DECL_INTERFACE_KNOWN (new_result);
2079 DECL_DECLARED_INLINE_P (old_result)
2080 = DECL_DECLARED_INLINE_P (new_result);
2081 DECL_DISREGARD_INLINE_LIMITS (old_result)
2082 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
2085 else
2087 DECL_DECLARED_INLINE_P (old_result)
2088 |= DECL_DECLARED_INLINE_P (new_result);
2089 DECL_DISREGARD_INLINE_LIMITS (old_result)
2090 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
2091 check_redeclaration_exception_specification (newdecl, olddecl);
2093 merge_attribute_bits (new_result, old_result);
2097 /* If the new declaration is a definition, update the file and
2098 line information on the declaration, and also make
2099 the old declaration the same definition. */
2100 if (DECL_INITIAL (new_result) != NULL_TREE)
2102 DECL_SOURCE_LOCATION (olddecl)
2103 = DECL_SOURCE_LOCATION (old_result)
2104 = DECL_SOURCE_LOCATION (newdecl);
2105 DECL_INITIAL (old_result) = DECL_INITIAL (new_result);
2106 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
2108 tree parm;
2109 DECL_ARGUMENTS (old_result)
2110 = DECL_ARGUMENTS (new_result);
2111 for (parm = DECL_ARGUMENTS (old_result); parm;
2112 parm = DECL_CHAIN (parm))
2113 DECL_CONTEXT (parm) = old_result;
2117 return olddecl;
2120 if (types_match)
2122 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2123 check_redeclaration_exception_specification (newdecl, olddecl);
2125 /* Automatically handles default parameters. */
2126 tree oldtype = TREE_TYPE (olddecl);
2127 tree newtype;
2129 /* For typedefs use the old type, as the new type's DECL_NAME points
2130 at newdecl, which will be ggc_freed. */
2131 if (TREE_CODE (newdecl) == TYPE_DECL)
2133 /* But NEWTYPE might have an attribute, honor that. */
2134 tree tem = TREE_TYPE (newdecl);
2135 newtype = oldtype;
2137 if (TYPE_USER_ALIGN (tem))
2139 if (TYPE_ALIGN (tem) > TYPE_ALIGN (newtype))
2140 SET_TYPE_ALIGN (newtype, TYPE_ALIGN (tem));
2141 TYPE_USER_ALIGN (newtype) = true;
2144 /* And remove the new type from the variants list. */
2145 if (TYPE_NAME (TREE_TYPE (newdecl)) == newdecl)
2147 tree remove = TREE_TYPE (newdecl);
2148 for (tree t = TYPE_MAIN_VARIANT (remove); ;
2149 t = TYPE_NEXT_VARIANT (t))
2150 if (TYPE_NEXT_VARIANT (t) == remove)
2152 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (remove);
2153 break;
2157 else if (merge_attr)
2158 newtype = merge_types (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
2159 else
2160 newtype = TREE_TYPE (newdecl);
2162 if (VAR_P (newdecl))
2164 DECL_THIS_EXTERN (newdecl) |= DECL_THIS_EXTERN (olddecl);
2165 /* For already initialized vars, TREE_READONLY could have been
2166 cleared in cp_finish_decl, because the var needs runtime
2167 initialization or destruction. Make sure not to set
2168 TREE_READONLY on it again. */
2169 if (DECL_INITIALIZED_P (olddecl)
2170 && !DECL_EXTERNAL (olddecl)
2171 && !TREE_READONLY (olddecl))
2172 TREE_READONLY (newdecl) = 0;
2173 DECL_INITIALIZED_P (newdecl) |= DECL_INITIALIZED_P (olddecl);
2174 DECL_NONTRIVIALLY_INITIALIZED_P (newdecl)
2175 |= DECL_NONTRIVIALLY_INITIALIZED_P (olddecl);
2176 if (DECL_DEPENDENT_INIT_P (olddecl))
2177 SET_DECL_DEPENDENT_INIT_P (newdecl, true);
2178 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (newdecl)
2179 |= DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (olddecl);
2180 if (DECL_CLASS_SCOPE_P (olddecl))
2181 DECL_DECLARED_CONSTEXPR_P (newdecl)
2182 |= DECL_DECLARED_CONSTEXPR_P (olddecl);
2184 /* Merge the threadprivate attribute from OLDDECL into NEWDECL. */
2185 if (DECL_LANG_SPECIFIC (olddecl)
2186 && CP_DECL_THREADPRIVATE_P (olddecl))
2188 /* Allocate a LANG_SPECIFIC structure for NEWDECL, if needed. */
2189 retrofit_lang_decl (newdecl);
2190 CP_DECL_THREADPRIVATE_P (newdecl) = 1;
2194 /* An explicit specialization of a function template or of a member
2195 function of a class template can be declared transaction_safe
2196 independently of whether the corresponding template entity is declared
2197 transaction_safe. */
2198 if (flag_tm && TREE_CODE (newdecl) == FUNCTION_DECL
2199 && DECL_TEMPLATE_INSTANTIATION (olddecl)
2200 && DECL_TEMPLATE_SPECIALIZATION (newdecl)
2201 && tx_safe_fn_type_p (newtype)
2202 && !tx_safe_fn_type_p (TREE_TYPE (newdecl)))
2203 newtype = tx_unsafe_fn_variant (newtype);
2205 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = newtype;
2207 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2208 check_default_args (newdecl);
2210 /* Lay the type out, unless already done. */
2211 if (! same_type_p (newtype, oldtype)
2212 && TREE_TYPE (newdecl) != error_mark_node
2213 && !(processing_template_decl && uses_template_parms (newdecl)))
2214 layout_type (TREE_TYPE (newdecl));
2216 if ((VAR_P (newdecl)
2217 || TREE_CODE (newdecl) == PARM_DECL
2218 || TREE_CODE (newdecl) == RESULT_DECL
2219 || TREE_CODE (newdecl) == FIELD_DECL
2220 || TREE_CODE (newdecl) == TYPE_DECL)
2221 && !(processing_template_decl && uses_template_parms (newdecl)))
2222 layout_decl (newdecl, 0);
2224 /* Merge deprecatedness. */
2225 if (TREE_DEPRECATED (newdecl))
2226 TREE_DEPRECATED (olddecl) = 1;
2228 /* Preserve function specific target and optimization options */
2229 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2231 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl)
2232 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl))
2233 DECL_FUNCTION_SPECIFIC_TARGET (newdecl)
2234 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl);
2236 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl)
2237 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl))
2238 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl)
2239 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl);
2241 else
2243 /* Merge the const type qualifier. */
2244 if (TREE_READONLY (newdecl))
2245 TREE_READONLY (olddecl) = 1;
2246 /* Merge the volatile type qualifier. */
2247 if (TREE_THIS_VOLATILE (newdecl))
2248 TREE_THIS_VOLATILE (olddecl) = 1;
2251 /* Merge the initialization information. */
2252 if (DECL_INITIAL (newdecl) == NULL_TREE
2253 && DECL_INITIAL (olddecl) != NULL_TREE)
2255 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2256 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2257 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2259 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
2260 DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl);
2264 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2266 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
2267 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
2268 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
2269 DECL_IS_OPERATOR_NEW (newdecl) |= DECL_IS_OPERATOR_NEW (olddecl);
2270 DECL_LOOPING_CONST_OR_PURE_P (newdecl)
2271 |= DECL_LOOPING_CONST_OR_PURE_P (olddecl);
2273 if (merge_attr)
2274 merge_attribute_bits (newdecl, olddecl);
2275 else
2277 /* Merge the noreturn bit. */
2278 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
2279 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
2280 TREE_NOTHROW (olddecl) = TREE_NOTHROW (newdecl);
2281 DECL_IS_MALLOC (olddecl) = DECL_IS_MALLOC (newdecl);
2282 DECL_PURE_P (olddecl) = DECL_PURE_P (newdecl);
2284 /* Keep the old RTL. */
2285 COPY_DECL_RTL (olddecl, newdecl);
2287 else if (VAR_P (newdecl)
2288 && (DECL_SIZE (olddecl) || !DECL_SIZE (newdecl)))
2290 /* Keep the old RTL. We cannot keep the old RTL if the old
2291 declaration was for an incomplete object and the new
2292 declaration is not since many attributes of the RTL will
2293 change. */
2294 COPY_DECL_RTL (olddecl, newdecl);
2297 /* If cannot merge, then use the new type and qualifiers,
2298 and don't preserve the old rtl. */
2299 else
2301 /* Clean out any memory we had of the old declaration. */
2302 tree oldstatic = value_member (olddecl, static_aggregates);
2303 if (oldstatic)
2304 TREE_VALUE (oldstatic) = error_mark_node;
2306 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
2307 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
2308 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
2309 TREE_NOTHROW (olddecl) = TREE_NOTHROW (newdecl);
2310 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
2313 /* Merge the storage class information. */
2314 merge_weak (newdecl, olddecl);
2316 DECL_DEFER_OUTPUT (newdecl) |= DECL_DEFER_OUTPUT (olddecl);
2317 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
2318 TREE_STATIC (olddecl) = TREE_STATIC (newdecl) |= TREE_STATIC (olddecl);
2319 if (! DECL_EXTERNAL (olddecl))
2320 DECL_EXTERNAL (newdecl) = 0;
2321 if (! DECL_COMDAT (olddecl))
2322 DECL_COMDAT (newdecl) = 0;
2324 new_template_info = NULL_TREE;
2325 if (DECL_LANG_SPECIFIC (newdecl) && DECL_LANG_SPECIFIC (olddecl))
2327 bool new_redefines_gnu_inline = false;
2329 if (new_defines_function
2330 && ((DECL_INTERFACE_KNOWN (olddecl)
2331 && TREE_CODE (olddecl) == FUNCTION_DECL)
2332 || (TREE_CODE (olddecl) == TEMPLATE_DECL
2333 && (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl))
2334 == FUNCTION_DECL))))
2336 tree fn = olddecl;
2338 if (TREE_CODE (fn) == TEMPLATE_DECL)
2339 fn = DECL_TEMPLATE_RESULT (olddecl);
2341 new_redefines_gnu_inline = GNU_INLINE_P (fn) && DECL_INITIAL (fn);
2344 if (!new_redefines_gnu_inline)
2346 DECL_INTERFACE_KNOWN (newdecl) |= DECL_INTERFACE_KNOWN (olddecl);
2347 DECL_NOT_REALLY_EXTERN (newdecl) |= DECL_NOT_REALLY_EXTERN (olddecl);
2348 DECL_COMDAT (newdecl) |= DECL_COMDAT (olddecl);
2350 DECL_TEMPLATE_INSTANTIATED (newdecl)
2351 |= DECL_TEMPLATE_INSTANTIATED (olddecl);
2352 DECL_ODR_USED (newdecl) |= DECL_ODR_USED (olddecl);
2354 /* If the OLDDECL is an instantiation and/or specialization,
2355 then the NEWDECL must be too. But, it may not yet be marked
2356 as such if the caller has created NEWDECL, but has not yet
2357 figured out that it is a redeclaration. */
2358 if (!DECL_USE_TEMPLATE (newdecl))
2359 DECL_USE_TEMPLATE (newdecl) = DECL_USE_TEMPLATE (olddecl);
2361 /* Don't really know how much of the language-specific
2362 values we should copy from old to new. */
2363 DECL_IN_AGGR_P (newdecl) = DECL_IN_AGGR_P (olddecl);
2364 DECL_REPO_AVAILABLE_P (newdecl) = DECL_REPO_AVAILABLE_P (olddecl);
2365 DECL_INITIALIZED_IN_CLASS_P (newdecl)
2366 |= DECL_INITIALIZED_IN_CLASS_P (olddecl);
2368 if (LANG_DECL_HAS_MIN (newdecl))
2370 DECL_LANG_SPECIFIC (newdecl)->u.min.u2 =
2371 DECL_LANG_SPECIFIC (olddecl)->u.min.u2;
2372 if (DECL_TEMPLATE_INFO (newdecl))
2374 new_template_info = DECL_TEMPLATE_INFO (newdecl);
2375 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
2376 && DECL_TEMPLATE_SPECIALIZATION (newdecl))
2377 /* Remember the presence of explicit specialization args. */
2378 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (olddecl))
2379 = TINFO_USED_TEMPLATE_ID (new_template_info);
2381 DECL_TEMPLATE_INFO (newdecl) = DECL_TEMPLATE_INFO (olddecl);
2383 /* Only functions have these fields. */
2384 if (DECL_DECLARES_FUNCTION_P (newdecl))
2386 DECL_NONCONVERTING_P (newdecl) = DECL_NONCONVERTING_P (olddecl);
2387 DECL_BEFRIENDING_CLASSES (newdecl)
2388 = chainon (DECL_BEFRIENDING_CLASSES (newdecl),
2389 DECL_BEFRIENDING_CLASSES (olddecl));
2390 /* DECL_THUNKS is only valid for virtual functions,
2391 otherwise it is a DECL_FRIEND_CONTEXT. */
2392 if (DECL_VIRTUAL_P (newdecl))
2393 SET_DECL_THUNKS (newdecl, DECL_THUNKS (olddecl));
2395 /* Only variables have this field. */
2396 else if (VAR_P (newdecl)
2397 && VAR_HAD_UNKNOWN_BOUND (olddecl))
2398 SET_VAR_HAD_UNKNOWN_BOUND (newdecl);
2401 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2403 tree parm;
2405 /* Merge parameter attributes. */
2406 tree oldarg, newarg;
2407 for (oldarg = DECL_ARGUMENTS(olddecl),
2408 newarg = DECL_ARGUMENTS(newdecl);
2409 oldarg && newarg;
2410 oldarg = DECL_CHAIN(oldarg), newarg = DECL_CHAIN(newarg)) {
2411 DECL_ATTRIBUTES (newarg)
2412 = (*targetm.merge_decl_attributes) (oldarg, newarg);
2413 DECL_ATTRIBUTES (oldarg) = DECL_ATTRIBUTES (newarg);
2416 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
2417 && !DECL_TEMPLATE_INSTANTIATION (newdecl))
2419 /* If newdecl is not a specialization, then it is not a
2420 template-related function at all. And that means that we
2421 should have exited above, returning 0. */
2422 gcc_assert (DECL_TEMPLATE_SPECIALIZATION (newdecl));
2424 if (DECL_ODR_USED (olddecl))
2425 /* From [temp.expl.spec]:
2427 If a template, a member template or the member of a class
2428 template is explicitly specialized then that
2429 specialization shall be declared before the first use of
2430 that specialization that would cause an implicit
2431 instantiation to take place, in every translation unit in
2432 which such a use occurs. */
2433 error ("explicit specialization of %qD after first use",
2434 olddecl);
2436 SET_DECL_TEMPLATE_SPECIALIZATION (olddecl);
2437 DECL_COMDAT (newdecl) = (TREE_PUBLIC (newdecl)
2438 && DECL_DECLARED_INLINE_P (newdecl));
2440 /* Don't propagate visibility from the template to the
2441 specialization here. We'll do that in determine_visibility if
2442 appropriate. */
2443 DECL_VISIBILITY_SPECIFIED (olddecl) = 0;
2445 /* [temp.expl.spec/14] We don't inline explicit specialization
2446 just because the primary template says so. */
2447 gcc_assert (!merge_attr);
2449 DECL_DECLARED_INLINE_P (olddecl)
2450 = DECL_DECLARED_INLINE_P (newdecl);
2452 DECL_DISREGARD_INLINE_LIMITS (olddecl)
2453 = DECL_DISREGARD_INLINE_LIMITS (newdecl);
2455 DECL_UNINLINABLE (olddecl) = DECL_UNINLINABLE (newdecl);
2457 else if (new_defines_function && DECL_INITIAL (olddecl))
2459 /* Never inline re-defined extern inline functions.
2460 FIXME: this could be better handled by keeping both
2461 function as separate declarations. */
2462 DECL_UNINLINABLE (newdecl) = 1;
2464 else
2466 if (DECL_PENDING_INLINE_P (olddecl))
2468 DECL_PENDING_INLINE_P (newdecl) = 1;
2469 DECL_PENDING_INLINE_INFO (newdecl)
2470 = DECL_PENDING_INLINE_INFO (olddecl);
2472 else if (DECL_PENDING_INLINE_P (newdecl))
2474 else if (DECL_SAVED_FUNCTION_DATA (newdecl) == NULL)
2475 DECL_SAVED_FUNCTION_DATA (newdecl)
2476 = DECL_SAVED_FUNCTION_DATA (olddecl);
2478 DECL_DECLARED_INLINE_P (newdecl) |= DECL_DECLARED_INLINE_P (olddecl);
2480 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
2481 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
2483 DECL_DISREGARD_INLINE_LIMITS (newdecl)
2484 = DECL_DISREGARD_INLINE_LIMITS (olddecl)
2485 = (DECL_DISREGARD_INLINE_LIMITS (newdecl)
2486 || DECL_DISREGARD_INLINE_LIMITS (olddecl));
2489 /* Preserve abstractness on cloned [cd]tors. */
2490 DECL_ABSTRACT_P (newdecl) = DECL_ABSTRACT_P (olddecl);
2492 /* Update newdecl's parms to point at olddecl. */
2493 for (parm = DECL_ARGUMENTS (newdecl); parm;
2494 parm = DECL_CHAIN (parm))
2495 DECL_CONTEXT (parm) = olddecl;
2497 if (! types_match)
2499 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
2500 COPY_DECL_ASSEMBLER_NAME (newdecl, olddecl);
2501 COPY_DECL_RTL (newdecl, olddecl);
2503 if (! types_match || new_defines_function)
2505 /* These need to be copied so that the names are available.
2506 Note that if the types do match, we'll preserve inline
2507 info and other bits, but if not, we won't. */
2508 DECL_ARGUMENTS (olddecl) = DECL_ARGUMENTS (newdecl);
2509 DECL_RESULT (olddecl) = DECL_RESULT (newdecl);
2511 /* If redeclaring a builtin function, it stays built in
2512 if newdecl is a gnu_inline definition, or if newdecl is just
2513 a declaration. */
2514 if (DECL_BUILT_IN (olddecl)
2515 && (new_defines_function ? GNU_INLINE_P (newdecl) : types_match))
2517 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
2518 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2519 /* If we're keeping the built-in definition, keep the rtl,
2520 regardless of declaration matches. */
2521 COPY_DECL_RTL (olddecl, newdecl);
2522 if (DECL_BUILT_IN_CLASS (newdecl) == BUILT_IN_NORMAL)
2524 enum built_in_function fncode = DECL_FUNCTION_CODE (newdecl);
2525 switch (fncode)
2527 /* If a compatible prototype of these builtin functions
2528 is seen, assume the runtime implements it with the
2529 expected semantics. */
2530 case BUILT_IN_STPCPY:
2531 if (builtin_decl_explicit_p (fncode))
2532 set_builtin_decl_implicit_p (fncode, true);
2533 break;
2534 default:
2535 if (builtin_decl_explicit_p (fncode))
2536 set_builtin_decl_declared_p (fncode, true);
2537 break;
2541 copy_attributes_to_builtin (newdecl);
2543 if (new_defines_function)
2544 /* If defining a function declared with other language
2545 linkage, use the previously declared language linkage. */
2546 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
2547 else if (types_match)
2549 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2550 /* Don't clear out the arguments if we're just redeclaring a
2551 function. */
2552 if (DECL_ARGUMENTS (olddecl))
2553 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
2556 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
2557 NAMESPACE_LEVEL (newdecl) = NAMESPACE_LEVEL (olddecl);
2559 /* Now preserve various other info from the definition. */
2560 TREE_ADDRESSABLE (newdecl) = TREE_ADDRESSABLE (olddecl);
2561 TREE_ASM_WRITTEN (newdecl) = TREE_ASM_WRITTEN (olddecl);
2562 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
2563 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
2565 /* Warn about conflicting visibility specifications. */
2566 if (DECL_VISIBILITY_SPECIFIED (olddecl)
2567 && DECL_VISIBILITY_SPECIFIED (newdecl)
2568 && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
2570 if (warning_at (newdecl_loc, OPT_Wattributes,
2571 "%qD: visibility attribute ignored because it "
2572 "conflicts with previous declaration", newdecl))
2573 inform (olddecl_loc,
2574 "previous declaration of %qD", olddecl);
2576 /* Choose the declaration which specified visibility. */
2577 if (DECL_VISIBILITY_SPECIFIED (olddecl))
2579 DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
2580 DECL_VISIBILITY_SPECIFIED (newdecl) = 1;
2582 /* Init priority used to be merged from newdecl to olddecl by the memcpy,
2583 so keep this behavior. */
2584 if (VAR_P (newdecl) && DECL_HAS_INIT_PRIORITY_P (newdecl))
2586 SET_DECL_INIT_PRIORITY (olddecl, DECL_INIT_PRIORITY (newdecl));
2587 DECL_HAS_INIT_PRIORITY_P (olddecl) = 1;
2589 /* Likewise for DECL_ALIGN, DECL_USER_ALIGN and DECL_PACKED. */
2590 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
2592 SET_DECL_ALIGN (newdecl, DECL_ALIGN (olddecl));
2593 DECL_USER_ALIGN (newdecl) |= DECL_USER_ALIGN (olddecl);
2595 DECL_USER_ALIGN (olddecl) = DECL_USER_ALIGN (newdecl);
2596 if (DECL_WARN_IF_NOT_ALIGN (olddecl)
2597 > DECL_WARN_IF_NOT_ALIGN (newdecl))
2598 SET_DECL_WARN_IF_NOT_ALIGN (newdecl,
2599 DECL_WARN_IF_NOT_ALIGN (olddecl));
2600 if (TREE_CODE (newdecl) == FIELD_DECL)
2601 DECL_PACKED (olddecl) = DECL_PACKED (newdecl);
2603 /* The DECL_LANG_SPECIFIC information in OLDDECL will be replaced
2604 with that from NEWDECL below. */
2605 if (DECL_LANG_SPECIFIC (olddecl))
2607 gcc_assert (DECL_LANG_SPECIFIC (olddecl)
2608 != DECL_LANG_SPECIFIC (newdecl));
2609 ggc_free (DECL_LANG_SPECIFIC (olddecl));
2612 /* Merge the USED information. */
2613 if (TREE_USED (olddecl))
2614 TREE_USED (newdecl) = 1;
2615 else if (TREE_USED (newdecl))
2616 TREE_USED (olddecl) = 1;
2617 if (VAR_P (newdecl))
2619 if (DECL_READ_P (olddecl))
2620 DECL_READ_P (newdecl) = 1;
2621 else if (DECL_READ_P (newdecl))
2622 DECL_READ_P (olddecl) = 1;
2624 if (DECL_PRESERVE_P (olddecl))
2625 DECL_PRESERVE_P (newdecl) = 1;
2626 else if (DECL_PRESERVE_P (newdecl))
2627 DECL_PRESERVE_P (olddecl) = 1;
2629 /* Merge the DECL_FUNCTION_VERSIONED information. newdecl will be copied
2630 to olddecl and deleted. */
2631 if (TREE_CODE (newdecl) == FUNCTION_DECL
2632 && DECL_FUNCTION_VERSIONED (olddecl))
2634 /* Set the flag for newdecl so that it gets copied to olddecl. */
2635 DECL_FUNCTION_VERSIONED (newdecl) = 1;
2636 /* newdecl will be purged after copying to olddecl and is no longer
2637 a version. */
2638 cgraph_node::delete_function_version_by_decl (newdecl);
2641 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2643 int function_size;
2644 struct symtab_node *snode = symtab_node::get (olddecl);
2646 function_size = sizeof (struct tree_decl_common);
2648 memcpy ((char *) olddecl + sizeof (struct tree_common),
2649 (char *) newdecl + sizeof (struct tree_common),
2650 function_size - sizeof (struct tree_common));
2652 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2653 (char *) newdecl + sizeof (struct tree_decl_common),
2654 sizeof (struct tree_function_decl) - sizeof (struct tree_decl_common));
2656 /* Preserve symtab node mapping. */
2657 olddecl->decl_with_vis.symtab_node = snode;
2659 if (new_template_info)
2660 /* If newdecl is a template instantiation, it is possible that
2661 the following sequence of events has occurred:
2663 o A friend function was declared in a class template. The
2664 class template was instantiated.
2666 o The instantiation of the friend declaration was
2667 recorded on the instantiation list, and is newdecl.
2669 o Later, however, instantiate_class_template called pushdecl
2670 on the newdecl to perform name injection. But, pushdecl in
2671 turn called duplicate_decls when it discovered that another
2672 declaration of a global function with the same name already
2673 existed.
2675 o Here, in duplicate_decls, we decided to clobber newdecl.
2677 If we're going to do that, we'd better make sure that
2678 olddecl, and not newdecl, is on the list of
2679 instantiations so that if we try to do the instantiation
2680 again we won't get the clobbered declaration. */
2681 reregister_specialization (newdecl,
2682 new_template_info,
2683 olddecl);
2685 else
2687 size_t size = tree_code_size (TREE_CODE (newdecl));
2689 memcpy ((char *) olddecl + sizeof (struct tree_common),
2690 (char *) newdecl + sizeof (struct tree_common),
2691 sizeof (struct tree_decl_common) - sizeof (struct tree_common));
2692 switch (TREE_CODE (newdecl))
2694 case LABEL_DECL:
2695 case VAR_DECL:
2696 case RESULT_DECL:
2697 case PARM_DECL:
2698 case FIELD_DECL:
2699 case TYPE_DECL:
2700 case CONST_DECL:
2702 struct symtab_node *snode = NULL;
2704 if (VAR_P (newdecl)
2705 && (TREE_STATIC (olddecl) || TREE_PUBLIC (olddecl)
2706 || DECL_EXTERNAL (olddecl)))
2707 snode = symtab_node::get (olddecl);
2708 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2709 (char *) newdecl + sizeof (struct tree_decl_common),
2710 size - sizeof (struct tree_decl_common)
2711 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
2712 if (VAR_P (newdecl))
2713 olddecl->decl_with_vis.symtab_node = snode;
2715 break;
2716 default:
2717 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2718 (char *) newdecl + sizeof (struct tree_decl_common),
2719 sizeof (struct tree_decl_non_common) - sizeof (struct tree_decl_common)
2720 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
2721 break;
2725 if (VAR_OR_FUNCTION_DECL_P (newdecl))
2727 if (DECL_EXTERNAL (olddecl)
2728 || TREE_PUBLIC (olddecl)
2729 || TREE_STATIC (olddecl))
2731 /* Merge the section attribute.
2732 We want to issue an error if the sections conflict but that must be
2733 done later in decl_attributes since we are called before attributes
2734 are assigned. */
2735 if (DECL_SECTION_NAME (newdecl) != NULL)
2736 set_decl_section_name (olddecl, DECL_SECTION_NAME (newdecl));
2738 if (DECL_ONE_ONLY (newdecl))
2740 struct symtab_node *oldsym, *newsym;
2741 if (TREE_CODE (olddecl) == FUNCTION_DECL)
2742 oldsym = cgraph_node::get_create (olddecl);
2743 else
2744 oldsym = varpool_node::get_create (olddecl);
2745 newsym = symtab_node::get (newdecl);
2746 oldsym->set_comdat_group (newsym->get_comdat_group ());
2750 if (VAR_P (newdecl)
2751 && CP_DECL_THREAD_LOCAL_P (newdecl))
2753 CP_DECL_THREAD_LOCAL_P (olddecl) = true;
2754 if (!processing_template_decl)
2755 set_decl_tls_model (olddecl, DECL_TLS_MODEL (newdecl));
2759 DECL_UID (olddecl) = olddecl_uid;
2760 if (olddecl_friend)
2761 DECL_FRIEND_P (olddecl) = 1;
2762 if (hidden_friend)
2764 DECL_ANTICIPATED (olddecl) = 1;
2765 DECL_HIDDEN_FRIEND_P (olddecl) = 1;
2768 /* NEWDECL contains the merged attribute lists.
2769 Update OLDDECL to be the same. */
2770 DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
2772 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
2773 so that encode_section_info has a chance to look at the new decl
2774 flags and attributes. */
2775 if (DECL_RTL_SET_P (olddecl)
2776 && (TREE_CODE (olddecl) == FUNCTION_DECL
2777 || (VAR_P (olddecl)
2778 && TREE_STATIC (olddecl))))
2779 make_decl_rtl (olddecl);
2781 /* The NEWDECL will no longer be needed. Because every out-of-class
2782 declaration of a member results in a call to duplicate_decls,
2783 freeing these nodes represents in a significant savings.
2785 Before releasing the node, be sore to remove function from symbol
2786 table that might have been inserted there to record comdat group.
2787 Be sure to however do not free DECL_STRUCT_FUNCTION because this
2788 structure is shared in between newdecl and oldecl. */
2789 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2790 DECL_STRUCT_FUNCTION (newdecl) = NULL;
2791 if (VAR_OR_FUNCTION_DECL_P (newdecl))
2793 struct symtab_node *snode = symtab_node::get (newdecl);
2794 if (snode)
2795 snode->remove ();
2798 /* Remove the associated constraints for newdecl, if any, before
2799 reclaiming memory. */
2800 if (flag_concepts)
2801 remove_constraints (newdecl);
2803 ggc_free (newdecl);
2805 return olddecl;
2808 /* Return zero if the declaration NEWDECL is valid
2809 when the declaration OLDDECL (assumed to be for the same name)
2810 has already been seen.
2811 Otherwise return an error message format string with a %s
2812 where the identifier should go. */
2814 static const char *
2815 redeclaration_error_message (tree newdecl, tree olddecl)
2817 if (TREE_CODE (newdecl) == TYPE_DECL)
2819 /* Because C++ can put things into name space for free,
2820 constructs like "typedef struct foo { ... } foo"
2821 would look like an erroneous redeclaration. */
2822 if (same_type_p (TREE_TYPE (newdecl), TREE_TYPE (olddecl)))
2823 return NULL;
2824 else
2825 return G_("redefinition of %q#D");
2827 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2829 /* If this is a pure function, its olddecl will actually be
2830 the original initialization to `0' (which we force to call
2831 abort()). Don't complain about redefinition in this case. */
2832 if (DECL_LANG_SPECIFIC (olddecl) && DECL_PURE_VIRTUAL_P (olddecl)
2833 && DECL_INITIAL (olddecl) == NULL_TREE)
2834 return NULL;
2836 /* If both functions come from different namespaces, this is not
2837 a redeclaration - this is a conflict with a used function. */
2838 if (DECL_NAMESPACE_SCOPE_P (olddecl)
2839 && DECL_CONTEXT (olddecl) != DECL_CONTEXT (newdecl)
2840 && ! decls_match (olddecl, newdecl))
2841 return G_("%qD conflicts with used function");
2843 /* We'll complain about linkage mismatches in
2844 warn_extern_redeclared_static. */
2846 /* Defining the same name twice is no good. */
2847 if (decl_defined_p (olddecl)
2848 && decl_defined_p (newdecl))
2850 if (DECL_NAME (olddecl) == NULL_TREE)
2851 return G_("%q#D not declared in class");
2852 else if (!GNU_INLINE_P (olddecl)
2853 || GNU_INLINE_P (newdecl))
2854 return G_("redefinition of %q#D");
2857 if (DECL_DECLARED_INLINE_P (olddecl) && DECL_DECLARED_INLINE_P (newdecl))
2859 bool olda = GNU_INLINE_P (olddecl);
2860 bool newa = GNU_INLINE_P (newdecl);
2862 if (olda != newa)
2864 if (newa)
2865 return G_("%q+D redeclared inline with "
2866 "%<gnu_inline%> attribute");
2867 else
2868 return G_("%q+D redeclared inline without "
2869 "%<gnu_inline%> attribute");
2873 check_abi_tag_redeclaration
2874 (olddecl, lookup_attribute ("abi_tag", DECL_ATTRIBUTES (olddecl)),
2875 lookup_attribute ("abi_tag", DECL_ATTRIBUTES (newdecl)));
2877 return NULL;
2879 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
2881 tree nt, ot;
2883 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
2885 if (COMPLETE_TYPE_P (TREE_TYPE (newdecl))
2886 && COMPLETE_TYPE_P (TREE_TYPE (olddecl)))
2887 return G_("redefinition of %q#D");
2888 return NULL;
2891 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != FUNCTION_DECL
2892 || (DECL_TEMPLATE_RESULT (newdecl)
2893 == DECL_TEMPLATE_RESULT (olddecl)))
2894 return NULL;
2896 nt = DECL_TEMPLATE_RESULT (newdecl);
2897 if (DECL_TEMPLATE_INFO (nt))
2898 nt = DECL_TEMPLATE_RESULT (template_for_substitution (nt));
2899 ot = DECL_TEMPLATE_RESULT (olddecl);
2900 if (DECL_TEMPLATE_INFO (ot))
2901 ot = DECL_TEMPLATE_RESULT (template_for_substitution (ot));
2902 if (DECL_INITIAL (nt) && DECL_INITIAL (ot)
2903 && (!GNU_INLINE_P (ot) || GNU_INLINE_P (nt)))
2904 return G_("redefinition of %q#D");
2906 if (DECL_DECLARED_INLINE_P (ot) && DECL_DECLARED_INLINE_P (nt))
2908 bool olda = GNU_INLINE_P (ot);
2909 bool newa = GNU_INLINE_P (nt);
2911 if (olda != newa)
2913 if (newa)
2914 return G_("%q+D redeclared inline with "
2915 "%<gnu_inline%> attribute");
2916 else
2917 return G_("%q+D redeclared inline without "
2918 "%<gnu_inline%> attribute");
2922 /* Core issue #226 (C++0x):
2924 If a friend function template declaration specifies a
2925 default template-argument, that declaration shall be a
2926 definition and shall be the only declaration of the
2927 function template in the translation unit. */
2928 if ((cxx_dialect != cxx98)
2929 && TREE_CODE (ot) == FUNCTION_DECL && DECL_FRIEND_P (ot)
2930 && !check_default_tmpl_args (nt, DECL_TEMPLATE_PARMS (newdecl),
2931 /*is_primary=*/true,
2932 /*is_partial=*/false,
2933 /*is_friend_decl=*/2))
2934 return G_("redeclaration of friend %q#D "
2935 "may not have default template arguments");
2937 return NULL;
2939 else if (VAR_P (newdecl)
2940 && CP_DECL_THREAD_LOCAL_P (newdecl) != CP_DECL_THREAD_LOCAL_P (olddecl)
2941 && (! DECL_LANG_SPECIFIC (olddecl)
2942 || ! CP_DECL_THREADPRIVATE_P (olddecl)
2943 || CP_DECL_THREAD_LOCAL_P (newdecl)))
2945 /* Only variables can be thread-local, and all declarations must
2946 agree on this property. */
2947 if (CP_DECL_THREAD_LOCAL_P (newdecl))
2948 return G_("thread-local declaration of %q#D follows "
2949 "non-thread-local declaration");
2950 else
2951 return G_("non-thread-local declaration of %q#D follows "
2952 "thread-local declaration");
2954 else if (toplevel_bindings_p () || DECL_NAMESPACE_SCOPE_P (newdecl))
2956 /* The objects have been declared at namespace scope. If either
2957 is a member of an anonymous union, then this is an invalid
2958 redeclaration. For example:
2960 int i;
2961 union { int i; };
2963 is invalid. */
2964 if ((VAR_P (newdecl) && DECL_ANON_UNION_VAR_P (newdecl))
2965 || (VAR_P (olddecl) && DECL_ANON_UNION_VAR_P (olddecl)))
2966 return G_("redeclaration of %q#D");
2967 /* If at least one declaration is a reference, there is no
2968 conflict. For example:
2970 int i = 3;
2971 extern int i;
2973 is valid. */
2974 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2975 return NULL;
2977 /* Static data member declared outside a class definition
2978 if the variable is defined within the class with constexpr
2979 specifier is declaration rather than definition (and
2980 deprecated). */
2981 if (cxx_dialect >= cxx17
2982 && VAR_P (olddecl)
2983 && DECL_CLASS_SCOPE_P (olddecl)
2984 && DECL_DECLARED_CONSTEXPR_P (olddecl)
2985 && !DECL_INITIAL (newdecl))
2987 DECL_EXTERNAL (newdecl) = 1;
2988 /* For now, only warn with explicit -Wdeprecated. */
2989 if (global_options_set.x_warn_deprecated
2990 && warning_at (DECL_SOURCE_LOCATION (newdecl), OPT_Wdeprecated,
2991 "redundant redeclaration of %<constexpr%> static "
2992 "data member %qD", newdecl))
2993 inform (DECL_SOURCE_LOCATION (olddecl),
2994 "previous declaration of %qD", olddecl);
2995 return NULL;
2998 /* Reject two definitions. */
2999 return G_("redefinition of %q#D");
3001 else
3003 /* Objects declared with block scope: */
3004 /* Reject two definitions, and reject a definition
3005 together with an external reference. */
3006 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl)))
3007 return G_("redeclaration of %q#D");
3008 return NULL;
3013 /* Hash and equality functions for the named_label table. */
3015 hashval_t
3016 named_label_hash::hash (const value_type entry)
3018 return IDENTIFIER_HASH_VALUE (entry->name);
3021 bool
3022 named_label_hash::equal (const value_type entry, compare_type name)
3024 return name == entry->name;
3027 /* Look for a label named ID in the current function. If one cannot
3028 be found, create one. Return the named_label_entry, or NULL on
3029 failure. */
3031 static named_label_entry *
3032 lookup_label_1 (tree id, bool making_local_p)
3034 /* You can't use labels at global scope. */
3035 if (current_function_decl == NULL_TREE)
3037 error ("label %qE referenced outside of any function", id);
3038 return NULL;
3041 if (!named_labels)
3042 named_labels = hash_table<named_label_hash>::create_ggc (13);
3044 hashval_t hash = IDENTIFIER_HASH_VALUE (id);
3045 named_label_entry **slot
3046 = named_labels->find_slot_with_hash (id, hash, INSERT);
3047 named_label_entry *old = *slot;
3049 if (old && old->label_decl)
3051 if (!making_local_p)
3052 return old;
3054 if (old->binding_level == current_binding_level)
3056 error ("local label %qE conflicts with existing label", id);
3057 inform (DECL_SOURCE_LOCATION (old->label_decl), "previous label");
3058 return NULL;
3062 /* We are making a new decl, create or reuse the named_label_entry */
3063 named_label_entry *ent = NULL;
3064 if (old && !old->label_decl)
3065 ent = old;
3066 else
3068 ent = ggc_cleared_alloc<named_label_entry> ();
3069 ent->name = id;
3070 ent->outer = old;
3071 *slot = ent;
3074 /* Now create the LABEL_DECL. */
3075 tree decl = build_decl (input_location, LABEL_DECL, id, void_type_node);
3077 DECL_CONTEXT (decl) = current_function_decl;
3078 SET_DECL_MODE (decl, VOIDmode);
3079 if (making_local_p)
3081 C_DECLARED_LABEL_FLAG (decl) = true;
3082 DECL_CHAIN (decl) = current_binding_level->names;
3083 current_binding_level->names = decl;
3086 ent->label_decl = decl;
3088 return ent;
3091 /* Wrapper for lookup_label_1. */
3093 tree
3094 lookup_label (tree id)
3096 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
3097 named_label_entry *ent = lookup_label_1 (id, false);
3098 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
3099 return ent ? ent->label_decl : NULL_TREE;
3102 tree
3103 declare_local_label (tree id)
3105 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
3106 named_label_entry *ent = lookup_label_1 (id, true);
3107 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
3108 return ent ? ent->label_decl : NULL_TREE;
3111 /* Returns nonzero if it is ill-formed to jump past the declaration of
3112 DECL. Returns 2 if it's also a real problem. */
3114 static int
3115 decl_jump_unsafe (tree decl)
3117 /* [stmt.dcl]/3: A program that jumps from a point where a local variable
3118 with automatic storage duration is not in scope to a point where it is
3119 in scope is ill-formed unless the variable has scalar type, class type
3120 with a trivial default constructor and a trivial destructor, a
3121 cv-qualified version of one of these types, or an array of one of the
3122 preceding types and is declared without an initializer (8.5). */
3123 tree type = TREE_TYPE (decl);
3125 if (!VAR_P (decl) || TREE_STATIC (decl)
3126 || type == error_mark_node)
3127 return 0;
3129 if (DECL_NONTRIVIALLY_INITIALIZED_P (decl)
3130 || variably_modified_type_p (type, NULL_TREE))
3131 return 2;
3133 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
3134 return 1;
3136 return 0;
3139 /* A subroutine of check_previous_goto_1 and check_goto to identify a branch
3140 to the user. */
3142 static bool
3143 identify_goto (tree decl, location_t loc, const location_t *locus,
3144 diagnostic_t diag_kind)
3146 bool complained
3147 = emit_diagnostic (diag_kind, loc, 0,
3148 decl ? N_("jump to label %qD")
3149 : N_("jump to case label"), decl);
3150 if (complained && locus)
3151 inform (*locus, " from here");
3152 return complained;
3155 /* Check that a single previously seen jump to a newly defined label
3156 is OK. DECL is the LABEL_DECL or 0; LEVEL is the binding_level for
3157 the jump context; NAMES are the names in scope in LEVEL at the jump
3158 context; LOCUS is the source position of the jump or 0. Returns
3159 true if all is well. */
3161 static bool
3162 check_previous_goto_1 (tree decl, cp_binding_level* level, tree names,
3163 bool exited_omp, const location_t *locus)
3165 cp_binding_level *b;
3166 bool complained = false;
3167 int identified = 0;
3168 bool saw_eh = false, saw_omp = false, saw_tm = false, saw_cxif = false;
3170 if (exited_omp)
3172 complained = identify_goto (decl, input_location, locus, DK_ERROR);
3173 if (complained)
3174 inform (input_location, " exits OpenMP structured block");
3175 saw_omp = true;
3176 identified = 2;
3179 for (b = current_binding_level; b ; b = b->level_chain)
3181 tree new_decls, old_decls = (b == level ? names : NULL_TREE);
3183 for (new_decls = b->names; new_decls != old_decls;
3184 new_decls = (DECL_P (new_decls) ? DECL_CHAIN (new_decls)
3185 : TREE_CHAIN (new_decls)))
3187 int problem = decl_jump_unsafe (new_decls);
3188 if (! problem)
3189 continue;
3191 if (!identified)
3193 complained = identify_goto (decl, input_location, locus,
3194 DK_PERMERROR);
3195 identified = 1;
3197 if (complained)
3199 if (problem > 1)
3200 inform (DECL_SOURCE_LOCATION (new_decls),
3201 " crosses initialization of %q#D", new_decls);
3202 else
3203 inform (DECL_SOURCE_LOCATION (new_decls),
3204 " enters scope of %q#D, which has "
3205 "non-trivial destructor", new_decls);
3209 if (b == level)
3210 break;
3212 const char *inf = NULL;
3213 location_t loc = input_location;
3214 switch (b->kind)
3216 case sk_try:
3217 if (!saw_eh)
3218 inf = N_("enters try block");
3219 saw_eh = true;
3220 break;
3222 case sk_catch:
3223 if (!saw_eh)
3224 inf = N_("enters catch block");
3225 saw_eh = true;
3226 break;
3228 case sk_omp:
3229 if (!saw_omp)
3230 inf = N_("enters OpenMP structured block");
3231 saw_omp = true;
3232 break;
3234 case sk_transaction:
3235 if (!saw_tm)
3236 inf = N_("enters synchronized or atomic statement");
3237 saw_tm = true;
3238 break;
3240 case sk_block:
3241 if (!saw_cxif && level_for_constexpr_if (b->level_chain))
3243 inf = N_("enters constexpr if statement");
3244 loc = EXPR_LOCATION (b->level_chain->this_entity);
3245 saw_cxif = true;
3247 break;
3249 default:
3250 break;
3253 if (inf)
3255 if (identified < 2)
3256 complained = identify_goto (decl, input_location, locus, DK_ERROR);
3257 identified = 2;
3258 if (complained)
3259 inform (loc, " %s", inf);
3263 return !identified;
3266 static void
3267 check_previous_goto (tree decl, struct named_label_use_entry *use)
3269 check_previous_goto_1 (decl, use->binding_level,
3270 use->names_in_scope, use->in_omp_scope,
3271 &use->o_goto_locus);
3274 static bool
3275 check_switch_goto (cp_binding_level* level)
3277 return check_previous_goto_1 (NULL_TREE, level, level->names, false, NULL);
3280 /* Check that a new jump to a label DECL is OK. Called by
3281 finish_goto_stmt. */
3283 void
3284 check_goto (tree decl)
3286 /* We can't know where a computed goto is jumping.
3287 So we assume that it's OK. */
3288 if (TREE_CODE (decl) != LABEL_DECL)
3289 return;
3291 /* We didn't record any information about this label when we created it,
3292 and there's not much point since it's trivial to analyze as a return. */
3293 if (decl == cdtor_label)
3294 return;
3296 hashval_t hash = IDENTIFIER_HASH_VALUE (DECL_NAME (decl));
3297 named_label_entry **slot
3298 = named_labels->find_slot_with_hash (DECL_NAME (decl), hash, NO_INSERT);
3299 named_label_entry *ent = *slot;
3301 /* If the label hasn't been defined yet, defer checking. */
3302 if (! DECL_INITIAL (decl))
3304 /* Don't bother creating another use if the last goto had the
3305 same data, and will therefore create the same set of errors. */
3306 if (ent->uses
3307 && ent->uses->names_in_scope == current_binding_level->names)
3308 return;
3310 named_label_use_entry *new_use
3311 = ggc_alloc<named_label_use_entry> ();
3312 new_use->binding_level = current_binding_level;
3313 new_use->names_in_scope = current_binding_level->names;
3314 new_use->o_goto_locus = input_location;
3315 new_use->in_omp_scope = false;
3317 new_use->next = ent->uses;
3318 ent->uses = new_use;
3319 return;
3322 bool saw_catch = false, complained = false;
3323 int identified = 0;
3324 tree bad;
3325 unsigned ix;
3327 if (ent->in_try_scope || ent->in_catch_scope || ent->in_transaction_scope
3328 || ent->in_constexpr_if
3329 || ent->in_omp_scope || !vec_safe_is_empty (ent->bad_decls))
3331 diagnostic_t diag_kind = DK_PERMERROR;
3332 if (ent->in_try_scope || ent->in_catch_scope || ent->in_constexpr_if
3333 || ent->in_transaction_scope || ent->in_omp_scope)
3334 diag_kind = DK_ERROR;
3335 complained = identify_goto (decl, DECL_SOURCE_LOCATION (decl),
3336 &input_location, diag_kind);
3337 identified = 1 + (diag_kind == DK_ERROR);
3340 FOR_EACH_VEC_SAFE_ELT (ent->bad_decls, ix, bad)
3342 int u = decl_jump_unsafe (bad);
3344 if (u > 1 && DECL_ARTIFICIAL (bad))
3346 /* Can't skip init of __exception_info. */
3347 if (identified == 1)
3349 complained = identify_goto (decl, DECL_SOURCE_LOCATION (decl),
3350 &input_location, DK_ERROR);
3351 identified = 2;
3353 if (complained)
3354 inform (DECL_SOURCE_LOCATION (bad), " enters catch block");
3355 saw_catch = true;
3357 else if (complained)
3359 if (u > 1)
3360 inform (DECL_SOURCE_LOCATION (bad),
3361 " skips initialization of %q#D", bad);
3362 else
3363 inform (DECL_SOURCE_LOCATION (bad),
3364 " enters scope of %q#D which has "
3365 "non-trivial destructor", bad);
3369 if (complained)
3371 if (ent->in_try_scope)
3372 inform (input_location, " enters try block");
3373 else if (ent->in_catch_scope && !saw_catch)
3374 inform (input_location, " enters catch block");
3375 else if (ent->in_transaction_scope)
3376 inform (input_location, " enters synchronized or atomic statement");
3377 else if (ent->in_constexpr_if)
3378 inform (input_location, " enters %<constexpr%> if statement");
3381 if (ent->in_omp_scope)
3383 if (complained)
3384 inform (input_location, " enters OpenMP structured block");
3386 else if (flag_openmp)
3387 for (cp_binding_level *b = current_binding_level; b ; b = b->level_chain)
3389 if (b == ent->binding_level)
3390 break;
3391 if (b->kind == sk_omp)
3393 if (identified < 2)
3395 complained = identify_goto (decl,
3396 DECL_SOURCE_LOCATION (decl),
3397 &input_location, DK_ERROR);
3398 identified = 2;
3400 if (complained)
3401 inform (input_location, " exits OpenMP structured block");
3402 break;
3407 /* Check that a return is ok wrt OpenMP structured blocks.
3408 Called by finish_return_stmt. Returns true if all is well. */
3410 bool
3411 check_omp_return (void)
3413 for (cp_binding_level *b = current_binding_level; b ; b = b->level_chain)
3414 if (b->kind == sk_omp)
3416 error ("invalid exit from OpenMP structured block");
3417 return false;
3419 else if (b->kind == sk_function_parms)
3420 break;
3421 return true;
3424 /* Define a label, specifying the location in the source file.
3425 Return the LABEL_DECL node for the label. */
3427 static tree
3428 define_label_1 (location_t location, tree name)
3430 /* After labels, make any new cleanups in the function go into their
3431 own new (temporary) binding contour. */
3432 for (cp_binding_level *p = current_binding_level;
3433 p->kind != sk_function_parms;
3434 p = p->level_chain)
3435 p->more_cleanups_ok = 0;
3437 named_label_entry *ent = lookup_label_1 (name, false);
3438 tree decl = ent->label_decl;
3440 if (DECL_INITIAL (decl) != NULL_TREE)
3442 error ("duplicate label %qD", decl);
3443 return error_mark_node;
3445 else
3447 /* Mark label as having been defined. */
3448 DECL_INITIAL (decl) = error_mark_node;
3449 /* Say where in the source. */
3450 DECL_SOURCE_LOCATION (decl) = location;
3452 ent->binding_level = current_binding_level;
3453 ent->names_in_scope = current_binding_level->names;
3455 for (named_label_use_entry *use = ent->uses; use; use = use->next)
3456 check_previous_goto (decl, use);
3457 ent->uses = NULL;
3460 return decl;
3463 /* Wrapper for define_label_1. */
3465 tree
3466 define_label (location_t location, tree name)
3468 bool running = timevar_cond_start (TV_NAME_LOOKUP);
3469 tree ret = define_label_1 (location, name);
3470 timevar_cond_stop (TV_NAME_LOOKUP, running);
3471 return ret;
3475 struct cp_switch
3477 cp_binding_level *level;
3478 struct cp_switch *next;
3479 /* The SWITCH_STMT being built. */
3480 tree switch_stmt;
3481 /* A splay-tree mapping the low element of a case range to the high
3482 element, or NULL_TREE if there is no high element. Used to
3483 determine whether or not a new case label duplicates an old case
3484 label. We need a tree, rather than simply a hash table, because
3485 of the GNU case range extension. */
3486 splay_tree cases;
3487 /* Remember whether there was a case value that is outside the
3488 range of the original type of the controlling expression. */
3489 bool outside_range_p;
3490 /* Remember whether a default: case label has been seen. */
3491 bool has_default_p;
3492 /* Remember whether a BREAK_STMT has been seen in this SWITCH_STMT. */
3493 bool break_stmt_seen_p;
3494 /* Set if inside of {FOR,DO,WHILE}_BODY nested inside of a switch,
3495 where BREAK_STMT doesn't belong to the SWITCH_STMT. */
3496 bool in_loop_body_p;
3499 /* A stack of the currently active switch statements. The innermost
3500 switch statement is on the top of the stack. There is no need to
3501 mark the stack for garbage collection because it is only active
3502 during the processing of the body of a function, and we never
3503 collect at that point. */
3505 static struct cp_switch *switch_stack;
3507 /* Called right after a switch-statement condition is parsed.
3508 SWITCH_STMT is the switch statement being parsed. */
3510 void
3511 push_switch (tree switch_stmt)
3513 struct cp_switch *p = XNEW (struct cp_switch);
3514 p->level = current_binding_level;
3515 p->next = switch_stack;
3516 p->switch_stmt = switch_stmt;
3517 p->cases = splay_tree_new (case_compare, NULL, NULL);
3518 p->outside_range_p = false;
3519 p->has_default_p = false;
3520 p->break_stmt_seen_p = false;
3521 p->in_loop_body_p = false;
3522 switch_stack = p;
3525 void
3526 pop_switch (void)
3528 struct cp_switch *cs = switch_stack;
3529 location_t switch_location;
3531 /* Emit warnings as needed. */
3532 switch_location = cp_expr_loc_or_loc (cs->switch_stmt, input_location);
3533 const bool bool_cond_p
3534 = (SWITCH_STMT_TYPE (cs->switch_stmt)
3535 && TREE_CODE (SWITCH_STMT_TYPE (cs->switch_stmt)) == BOOLEAN_TYPE);
3536 if (!processing_template_decl)
3537 c_do_switch_warnings (cs->cases, switch_location,
3538 SWITCH_STMT_TYPE (cs->switch_stmt),
3539 SWITCH_STMT_COND (cs->switch_stmt),
3540 bool_cond_p, cs->outside_range_p);
3542 /* For the benefit of block_may_fallthru remember if the switch body
3543 case labels cover all possible values and if there are break; stmts. */
3544 if (cs->has_default_p
3545 || (!processing_template_decl
3546 && c_switch_covers_all_cases_p (cs->cases,
3547 SWITCH_STMT_TYPE (cs->switch_stmt))))
3548 SWITCH_STMT_ALL_CASES_P (cs->switch_stmt) = 1;
3549 if (!cs->break_stmt_seen_p)
3550 SWITCH_STMT_NO_BREAK_P (cs->switch_stmt) = 1;
3551 gcc_assert (!cs->in_loop_body_p);
3552 splay_tree_delete (cs->cases);
3553 switch_stack = switch_stack->next;
3554 free (cs);
3557 /* Note that a BREAK_STMT is about to be added. If it is inside of
3558 a SWITCH_STMT and not inside of a loop body inside of it, note
3559 in switch_stack we've seen a BREAK_STMT. */
3561 void
3562 note_break_stmt (void)
3564 if (switch_stack && !switch_stack->in_loop_body_p)
3565 switch_stack->break_stmt_seen_p = true;
3568 /* Note the start of processing of an iteration statement's body.
3569 The note_break_stmt function will do nothing while processing it.
3570 Return a flag that should be passed to note_iteration_stmt_body_end. */
3572 bool
3573 note_iteration_stmt_body_start (void)
3575 if (!switch_stack)
3576 return false;
3577 bool ret = switch_stack->in_loop_body_p;
3578 switch_stack->in_loop_body_p = true;
3579 return ret;
3582 /* Note the end of processing of an iteration statement's body. */
3584 void
3585 note_iteration_stmt_body_end (bool prev)
3587 if (switch_stack)
3588 switch_stack->in_loop_body_p = prev;
3591 /* Convert a case constant VALUE in a switch to the type TYPE of the switch
3592 condition. Note that if TYPE and VALUE are already integral we don't
3593 really do the conversion because the language-independent
3594 warning/optimization code will work better that way. */
3596 static tree
3597 case_conversion (tree type, tree value)
3599 if (value == NULL_TREE)
3600 return value;
3602 value = mark_rvalue_use (value);
3604 if (cxx_dialect >= cxx11
3605 && (SCOPED_ENUM_P (type)
3606 || !INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (value))))
3608 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
3609 type = type_promotes_to (type);
3610 value = (perform_implicit_conversion_flags
3611 (type, value, tf_warning_or_error,
3612 LOOKUP_IMPLICIT | LOOKUP_NO_NON_INTEGRAL));
3614 return cxx_constant_value (value);
3617 /* Note that we've seen a definition of a case label, and complain if this
3618 is a bad place for one. */
3620 tree
3621 finish_case_label (location_t loc, tree low_value, tree high_value)
3623 tree cond, r;
3624 cp_binding_level *p;
3625 tree type;
3627 if (low_value == NULL_TREE && high_value == NULL_TREE)
3628 switch_stack->has_default_p = true;
3630 if (processing_template_decl)
3632 tree label;
3634 /* For templates, just add the case label; we'll do semantic
3635 analysis at instantiation-time. */
3636 label = build_decl (loc, LABEL_DECL, NULL_TREE, NULL_TREE);
3637 return add_stmt (build_case_label (low_value, high_value, label));
3640 /* Find the condition on which this switch statement depends. */
3641 cond = SWITCH_STMT_COND (switch_stack->switch_stmt);
3642 if (cond && TREE_CODE (cond) == TREE_LIST)
3643 cond = TREE_VALUE (cond);
3645 if (!check_switch_goto (switch_stack->level))
3646 return error_mark_node;
3648 type = SWITCH_STMT_TYPE (switch_stack->switch_stmt);
3650 low_value = case_conversion (type, low_value);
3651 high_value = case_conversion (type, high_value);
3653 r = c_add_case_label (loc, switch_stack->cases, cond, type,
3654 low_value, high_value,
3655 &switch_stack->outside_range_p);
3657 /* After labels, make any new cleanups in the function go into their
3658 own new (temporary) binding contour. */
3659 for (p = current_binding_level;
3660 p->kind != sk_function_parms;
3661 p = p->level_chain)
3662 p->more_cleanups_ok = 0;
3664 return r;
3667 struct typename_info {
3668 tree scope;
3669 tree name;
3670 tree template_id;
3671 bool enum_p;
3672 bool class_p;
3675 struct typename_hasher : ggc_ptr_hash<tree_node>
3677 typedef typename_info *compare_type;
3679 /* Hash a TYPENAME_TYPE. */
3681 static hashval_t
3682 hash (tree t)
3684 hashval_t hash;
3686 hash = (htab_hash_pointer (TYPE_CONTEXT (t))
3687 ^ htab_hash_pointer (TYPE_IDENTIFIER (t)));
3689 return hash;
3692 /* Compare two TYPENAME_TYPEs. */
3694 static bool
3695 equal (tree t1, const typename_info *t2)
3697 return (TYPE_IDENTIFIER (t1) == t2->name
3698 && TYPE_CONTEXT (t1) == t2->scope
3699 && TYPENAME_TYPE_FULLNAME (t1) == t2->template_id
3700 && TYPENAME_IS_ENUM_P (t1) == t2->enum_p
3701 && TYPENAME_IS_CLASS_P (t1) == t2->class_p);
3705 /* Build a TYPENAME_TYPE. If the type is `typename T::t', CONTEXT is
3706 the type of `T', NAME is the IDENTIFIER_NODE for `t'.
3708 Returns the new TYPENAME_TYPE. */
3710 static GTY (()) hash_table<typename_hasher> *typename_htab;
3712 tree
3713 build_typename_type (tree context, tree name, tree fullname,
3714 enum tag_types tag_type)
3716 tree t;
3717 tree d;
3718 typename_info ti;
3719 tree *e;
3720 hashval_t hash;
3722 if (typename_htab == NULL)
3723 typename_htab = hash_table<typename_hasher>::create_ggc (61);
3725 ti.scope = FROB_CONTEXT (context);
3726 ti.name = name;
3727 ti.template_id = fullname;
3728 ti.enum_p = tag_type == enum_type;
3729 ti.class_p = (tag_type == class_type
3730 || tag_type == record_type
3731 || tag_type == union_type);
3732 hash = (htab_hash_pointer (ti.scope)
3733 ^ htab_hash_pointer (ti.name));
3735 /* See if we already have this type. */
3736 e = typename_htab->find_slot_with_hash (&ti, hash, INSERT);
3737 if (*e)
3738 t = *e;
3739 else
3741 /* Build the TYPENAME_TYPE. */
3742 t = cxx_make_type (TYPENAME_TYPE);
3743 TYPE_CONTEXT (t) = ti.scope;
3744 TYPENAME_TYPE_FULLNAME (t) = ti.template_id;
3745 TYPENAME_IS_ENUM_P (t) = ti.enum_p;
3746 TYPENAME_IS_CLASS_P (t) = ti.class_p;
3748 /* Build the corresponding TYPE_DECL. */
3749 d = build_decl (input_location, TYPE_DECL, name, t);
3750 TYPE_NAME (TREE_TYPE (d)) = d;
3751 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
3752 DECL_CONTEXT (d) = FROB_CONTEXT (context);
3753 DECL_ARTIFICIAL (d) = 1;
3755 /* Store it in the hash table. */
3756 *e = t;
3758 /* TYPENAME_TYPEs must always be compared structurally, because
3759 they may or may not resolve down to another type depending on
3760 the currently open classes. */
3761 SET_TYPE_STRUCTURAL_EQUALITY (t);
3764 return t;
3767 /* Resolve `typename CONTEXT::NAME'. TAG_TYPE indicates the tag
3768 provided to name the type. Returns an appropriate type, unless an
3769 error occurs, in which case error_mark_node is returned. If we
3770 locate a non-artificial TYPE_DECL and TF_KEEP_TYPE_DECL is set, we
3771 return that, rather than the _TYPE it corresponds to, in other
3772 cases we look through the type decl. If TF_ERROR is set, complain
3773 about errors, otherwise be quiet. */
3775 tree
3776 make_typename_type (tree context, tree name, enum tag_types tag_type,
3777 tsubst_flags_t complain)
3779 tree fullname;
3780 tree t;
3781 bool want_template;
3783 if (name == error_mark_node
3784 || context == NULL_TREE
3785 || context == error_mark_node)
3786 return error_mark_node;
3788 if (TYPE_P (name))
3790 if (!(TYPE_LANG_SPECIFIC (name)
3791 && (CLASSTYPE_IS_TEMPLATE (name)
3792 || CLASSTYPE_USE_TEMPLATE (name))))
3793 name = TYPE_IDENTIFIER (name);
3794 else
3795 /* Create a TEMPLATE_ID_EXPR for the type. */
3796 name = build_nt (TEMPLATE_ID_EXPR,
3797 CLASSTYPE_TI_TEMPLATE (name),
3798 CLASSTYPE_TI_ARGS (name));
3800 else if (TREE_CODE (name) == TYPE_DECL)
3801 name = DECL_NAME (name);
3803 fullname = name;
3805 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
3807 name = TREE_OPERAND (name, 0);
3808 if (DECL_TYPE_TEMPLATE_P (name))
3809 name = TREE_OPERAND (fullname, 0) = DECL_NAME (name);
3810 if (TREE_CODE (name) != IDENTIFIER_NODE)
3812 if (complain & tf_error)
3813 error ("%qD is not a type", name);
3814 return error_mark_node;
3817 if (TREE_CODE (name) == TEMPLATE_DECL)
3819 if (complain & tf_error)
3820 error ("%qD used without template arguments", name);
3821 return error_mark_node;
3823 gcc_assert (identifier_p (name));
3824 gcc_assert (TYPE_P (context));
3826 if (!MAYBE_CLASS_TYPE_P (context))
3828 if (complain & tf_error)
3829 error ("%q#T is not a class", context);
3830 return error_mark_node;
3833 /* When the CONTEXT is a dependent type, NAME could refer to a
3834 dependent base class of CONTEXT. But look inside it anyway
3835 if CONTEXT is a currently open scope, in case it refers to a
3836 member of the current instantiation or a non-dependent base;
3837 lookup will stop when we hit a dependent base. */
3838 if (!dependent_scope_p (context))
3839 /* We should only set WANT_TYPE when we're a nested typename type.
3840 Then we can give better diagnostics if we find a non-type. */
3841 t = lookup_field (context, name, 2, /*want_type=*/true);
3842 else
3843 t = NULL_TREE;
3845 if ((!t || TREE_CODE (t) == TREE_LIST) && dependent_type_p (context))
3846 return build_typename_type (context, name, fullname, tag_type);
3848 want_template = TREE_CODE (fullname) == TEMPLATE_ID_EXPR;
3850 if (!t)
3852 if (complain & tf_error)
3854 if (!COMPLETE_TYPE_P (context))
3855 cxx_incomplete_type_error (NULL_TREE, context);
3856 else
3857 error (want_template ? G_("no class template named %q#T in %q#T")
3858 : G_("no type named %q#T in %q#T"), name, context);
3860 return error_mark_node;
3863 /* Pull out the template from an injected-class-name (or multiple). */
3864 if (want_template)
3865 t = maybe_get_template_decl_from_type_decl (t);
3867 if (TREE_CODE (t) == TREE_LIST)
3869 if (complain & tf_error)
3871 error ("lookup of %qT in %qT is ambiguous", name, context);
3872 print_candidates (t);
3874 return error_mark_node;
3877 if (want_template && !DECL_TYPE_TEMPLATE_P (t))
3879 if (complain & tf_error)
3880 error ("%<typename %T::%D%> names %q#T, which is not a class template",
3881 context, name, t);
3882 return error_mark_node;
3884 if (!want_template && TREE_CODE (t) != TYPE_DECL)
3886 if (complain & tf_error)
3887 error ("%<typename %T::%D%> names %q#T, which is not a type",
3888 context, name, t);
3889 return error_mark_node;
3892 if (!perform_or_defer_access_check (TYPE_BINFO (context), t, t, complain))
3893 return error_mark_node;
3895 /* If we are currently parsing a template and if T is a typedef accessed
3896 through CONTEXT then we need to remember and check access of T at
3897 template instantiation time. */
3898 add_typedef_to_current_template_for_access_check (t, context, input_location);
3900 if (want_template)
3901 return lookup_template_class (t, TREE_OPERAND (fullname, 1),
3902 NULL_TREE, context,
3903 /*entering_scope=*/0,
3904 complain | tf_user);
3906 if (DECL_ARTIFICIAL (t) || !(complain & tf_keep_type_decl))
3907 t = TREE_TYPE (t);
3909 maybe_record_typedef_use (t);
3911 return t;
3914 /* Resolve `CONTEXT::template NAME'. Returns a TEMPLATE_DECL if the name
3915 can be resolved or an UNBOUND_CLASS_TEMPLATE, unless an error occurs,
3916 in which case error_mark_node is returned.
3918 If PARM_LIST is non-NULL, also make sure that the template parameter
3919 list of TEMPLATE_DECL matches.
3921 If COMPLAIN zero, don't complain about any errors that occur. */
3923 tree
3924 make_unbound_class_template (tree context, tree name, tree parm_list,
3925 tsubst_flags_t complain)
3927 tree t;
3928 tree d;
3930 if (TYPE_P (name))
3931 name = TYPE_IDENTIFIER (name);
3932 else if (DECL_P (name))
3933 name = DECL_NAME (name);
3934 gcc_assert (identifier_p (name));
3936 if (!dependent_type_p (context)
3937 || currently_open_class (context))
3939 tree tmpl = NULL_TREE;
3941 if (MAYBE_CLASS_TYPE_P (context))
3942 tmpl = lookup_field (context, name, 0, false);
3944 if (tmpl && TREE_CODE (tmpl) == TYPE_DECL)
3945 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
3947 if (!tmpl || !DECL_TYPE_TEMPLATE_P (tmpl))
3949 if (complain & tf_error)
3950 error ("no class template named %q#T in %q#T", name, context);
3951 return error_mark_node;
3954 if (parm_list
3955 && !comp_template_parms (DECL_TEMPLATE_PARMS (tmpl), parm_list))
3957 if (complain & tf_error)
3959 error ("template parameters do not match template %qD", tmpl);
3960 inform (DECL_SOURCE_LOCATION (tmpl),
3961 "%qD declared here", tmpl);
3963 return error_mark_node;
3966 if (!perform_or_defer_access_check (TYPE_BINFO (context), tmpl, tmpl,
3967 complain))
3968 return error_mark_node;
3970 return tmpl;
3973 /* Build the UNBOUND_CLASS_TEMPLATE. */
3974 t = cxx_make_type (UNBOUND_CLASS_TEMPLATE);
3975 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
3976 TREE_TYPE (t) = NULL_TREE;
3977 SET_TYPE_STRUCTURAL_EQUALITY (t);
3979 /* Build the corresponding TEMPLATE_DECL. */
3980 d = build_decl (input_location, TEMPLATE_DECL, name, t);
3981 TYPE_NAME (TREE_TYPE (d)) = d;
3982 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
3983 DECL_CONTEXT (d) = FROB_CONTEXT (context);
3984 DECL_ARTIFICIAL (d) = 1;
3985 DECL_TEMPLATE_PARMS (d) = parm_list;
3987 return t;
3992 /* Push the declarations of builtin types into the global namespace.
3993 RID_INDEX is the index of the builtin type in the array
3994 RID_POINTERS. NAME is the name used when looking up the builtin
3995 type. TYPE is the _TYPE node for the builtin type.
3997 The calls to set_global_binding below should be
3998 eliminated. Built-in types should not be looked up name; their
3999 names are keywords that the parser can recognize. However, there
4000 is code in c-common.c that uses identifier_global_value to look up
4001 built-in types by name. */
4003 void
4004 record_builtin_type (enum rid rid_index,
4005 const char* name,
4006 tree type)
4008 tree decl = NULL_TREE;
4010 if (name)
4012 tree tname = get_identifier (name);
4013 tree tdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, tname, type);
4014 DECL_ARTIFICIAL (tdecl) = 1;
4015 set_global_binding (tdecl);
4016 decl = tdecl;
4019 if ((int) rid_index < (int) RID_MAX)
4020 if (tree rname = ridpointers[(int) rid_index])
4021 if (!decl || DECL_NAME (decl) != rname)
4023 tree rdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, rname, type);
4024 DECL_ARTIFICIAL (rdecl) = 1;
4025 set_global_binding (rdecl);
4026 if (!decl)
4027 decl = rdecl;
4030 if (decl)
4032 if (!TYPE_NAME (type))
4033 TYPE_NAME (type) = decl;
4034 debug_hooks->type_decl (decl, 0);
4038 /* Push a type into the namespace so that the back ends ignore it. */
4040 static void
4041 record_unknown_type (tree type, const char* name)
4043 tree decl = pushdecl (build_decl (UNKNOWN_LOCATION,
4044 TYPE_DECL, get_identifier (name), type));
4045 /* Make sure the "unknown type" typedecl gets ignored for debug info. */
4046 DECL_IGNORED_P (decl) = 1;
4047 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
4048 TYPE_SIZE (type) = TYPE_SIZE (void_type_node);
4049 SET_TYPE_ALIGN (type, 1);
4050 TYPE_USER_ALIGN (type) = 0;
4051 SET_TYPE_MODE (type, TYPE_MODE (void_type_node));
4054 /* Create all the predefined identifiers. */
4056 static void
4057 initialize_predefined_identifiers (void)
4059 struct predefined_identifier
4061 const char *name; /* Name. */
4062 tree *node; /* Node to store it in. */
4063 cp_identifier_kind kind; /* Kind of identifier. */
4066 /* A table of identifiers to create at startup. */
4067 static const predefined_identifier predefined_identifiers[] = {
4068 {"C++", &lang_name_cplusplus, cik_normal},
4069 {"C", &lang_name_c, cik_normal},
4070 /* Some of these names have a trailing space so that it is
4071 impossible for them to conflict with names written by users. */
4072 {"__ct ", &ctor_identifier, cik_ctor},
4073 {"__ct_base ", &base_ctor_identifier, cik_ctor},
4074 {"__ct_comp ", &complete_ctor_identifier, cik_ctor},
4075 {"__dt ", &dtor_identifier, cik_dtor},
4076 {"__dt_base ", &base_dtor_identifier, cik_dtor},
4077 {"__dt_comp ", &complete_dtor_identifier, cik_dtor},
4078 {"__dt_del ", &deleting_dtor_identifier, cik_dtor},
4079 {"__conv_op ", &conv_op_identifier, cik_conv_op},
4080 {"__in_chrg", &in_charge_identifier, cik_normal},
4081 {"this", &this_identifier, cik_normal},
4082 {"__delta", &delta_identifier, cik_normal},
4083 {"__pfn", &pfn_identifier, cik_normal},
4084 {"_vptr", &vptr_identifier, cik_normal},
4085 {"__vtt_parm", &vtt_parm_identifier, cik_normal},
4086 {"::", &global_identifier, cik_normal},
4087 {"std", &std_identifier, cik_normal},
4088 /* The demangler expects anonymous namespaces to be called
4089 something starting with '_GLOBAL__N_'. It no longer needs
4090 to be unique to the TU. */
4091 {"_GLOBAL__N_1", &anon_identifier, cik_normal},
4092 {"auto", &auto_identifier, cik_normal},
4093 {"decltype(auto)", &decltype_auto_identifier, cik_normal},
4094 {"initializer_list", &init_list_identifier, cik_normal},
4095 {"__for_range ", &for_range__identifier, cik_normal},
4096 {"__for_begin ", &for_begin__identifier, cik_normal},
4097 {"__for_end ", &for_end__identifier, cik_normal},
4098 {"__for_range", &for_range_identifier, cik_normal},
4099 {"__for_begin", &for_begin_identifier, cik_normal},
4100 {"__for_end", &for_end_identifier, cik_normal},
4101 {"abi_tag", &abi_tag_identifier, cik_normal},
4102 {"aligned", &aligned_identifier, cik_normal},
4103 {"begin", &begin_identifier, cik_normal},
4104 {"end", &end_identifier, cik_normal},
4105 {"get", &get__identifier, cik_normal},
4106 {"gnu", &gnu_identifier, cik_normal},
4107 {"tuple_element", &tuple_element_identifier, cik_normal},
4108 {"tuple_size", &tuple_size_identifier, cik_normal},
4109 {"type", &type_identifier, cik_normal},
4110 {"value", &value_identifier, cik_normal},
4111 {"_FUN", &fun_identifier, cik_normal},
4112 {"__closure", &closure_identifier, cik_normal},
4113 {NULL, NULL, cik_normal}
4116 for (const predefined_identifier *pid = predefined_identifiers;
4117 pid->name; ++pid)
4119 *pid->node = get_identifier (pid->name);
4120 /* Some of these identifiers already have a special kind. */
4121 if (pid->kind != cik_normal)
4122 set_identifier_kind (*pid->node, pid->kind);
4126 /* Create the predefined scalar types of C,
4127 and some nodes representing standard constants (0, 1, (void *)0).
4128 Initialize the global binding level.
4129 Make definitions for built-in primitive functions. */
4131 void
4132 cxx_init_decl_processing (void)
4134 tree void_ftype;
4135 tree void_ftype_ptr;
4137 /* Create all the identifiers we need. */
4138 initialize_predefined_identifiers ();
4140 /* Create the global variables. */
4141 push_to_top_level ();
4143 current_function_decl = NULL_TREE;
4144 current_binding_level = NULL;
4145 /* Enter the global namespace. */
4146 gcc_assert (global_namespace == NULL_TREE);
4147 global_namespace = build_lang_decl (NAMESPACE_DECL, global_identifier,
4148 void_type_node);
4149 TREE_PUBLIC (global_namespace) = 1;
4150 DECL_CONTEXT (global_namespace)
4151 = build_translation_unit_decl (get_identifier (main_input_filename));
4152 /* Remember whether we want the empty class passing ABI change warning
4153 in this TU. */
4154 TRANSLATION_UNIT_WARN_EMPTY_P (DECL_CONTEXT (global_namespace))
4155 = warn_abi && abi_version_crosses (12);
4156 debug_hooks->register_main_translation_unit
4157 (DECL_CONTEXT (global_namespace));
4158 begin_scope (sk_namespace, global_namespace);
4159 current_namespace = global_namespace;
4161 if (flag_visibility_ms_compat)
4162 default_visibility = VISIBILITY_HIDDEN;
4164 /* Initially, C. */
4165 current_lang_name = lang_name_c;
4167 /* Create the `std' namespace. */
4168 push_namespace (std_identifier);
4169 std_node = current_namespace;
4170 pop_namespace ();
4172 flag_noexcept_type = (cxx_dialect >= cxx17);
4174 c_common_nodes_and_builtins ();
4176 tree bool_ftype = build_function_type_list (boolean_type_node, NULL_TREE);
4177 tree decl
4178 = add_builtin_function ("__builtin_is_constant_evaluated",
4179 bool_ftype, CP_BUILT_IN_IS_CONSTANT_EVALUATED,
4180 BUILT_IN_FRONTEND, NULL, NULL_TREE);
4181 set_call_expr_flags (decl, ECF_CONST | ECF_NOTHROW | ECF_LEAF);
4183 integer_two_node = build_int_cst (NULL_TREE, 2);
4185 /* Guess at the initial static decls size. */
4186 vec_alloc (static_decls, 500);
4188 /* ... and keyed classes. */
4189 vec_alloc (keyed_classes, 100);
4191 record_builtin_type (RID_BOOL, "bool", boolean_type_node);
4192 truthvalue_type_node = boolean_type_node;
4193 truthvalue_false_node = boolean_false_node;
4194 truthvalue_true_node = boolean_true_node;
4196 empty_except_spec = build_tree_list (NULL_TREE, NULL_TREE);
4197 noexcept_true_spec = build_tree_list (boolean_true_node, NULL_TREE);
4198 noexcept_false_spec = build_tree_list (boolean_false_node, NULL_TREE);
4199 noexcept_deferred_spec = build_tree_list (make_node (DEFERRED_NOEXCEPT),
4200 NULL_TREE);
4202 #if 0
4203 record_builtin_type (RID_MAX, NULL, string_type_node);
4204 #endif
4206 delta_type_node = ptrdiff_type_node;
4207 vtable_index_type = ptrdiff_type_node;
4209 vtt_parm_type = build_pointer_type (const_ptr_type_node);
4210 void_ftype = build_function_type_list (void_type_node, NULL_TREE);
4211 void_ftype_ptr = build_function_type_list (void_type_node,
4212 ptr_type_node, NULL_TREE);
4213 void_ftype_ptr
4214 = build_exception_variant (void_ftype_ptr, empty_except_spec);
4216 /* Create the conversion operator marker. This operator's DECL_NAME
4217 is in the identifier table, so we can use identifier equality to
4218 find it. */
4219 conv_op_marker = build_lang_decl (FUNCTION_DECL, conv_op_identifier,
4220 void_ftype);
4222 /* C++ extensions */
4224 unknown_type_node = make_node (LANG_TYPE);
4225 record_unknown_type (unknown_type_node, "unknown type");
4227 /* Indirecting an UNKNOWN_TYPE node yields an UNKNOWN_TYPE node. */
4228 TREE_TYPE (unknown_type_node) = unknown_type_node;
4230 /* Looking up TYPE_POINTER_TO and TYPE_REFERENCE_TO yield the same
4231 result. */
4232 TYPE_POINTER_TO (unknown_type_node) = unknown_type_node;
4233 TYPE_REFERENCE_TO (unknown_type_node) = unknown_type_node;
4235 init_list_type_node = make_node (LANG_TYPE);
4236 record_unknown_type (init_list_type_node, "init list");
4239 /* Make sure we get a unique function type, so we can give
4240 its pointer type a name. (This wins for gdb.) */
4241 tree vfunc_type = make_node (FUNCTION_TYPE);
4242 TREE_TYPE (vfunc_type) = integer_type_node;
4243 TYPE_ARG_TYPES (vfunc_type) = NULL_TREE;
4244 layout_type (vfunc_type);
4246 vtable_entry_type = build_pointer_type (vfunc_type);
4248 record_builtin_type (RID_MAX, "__vtbl_ptr_type", vtable_entry_type);
4250 vtbl_type_node
4251 = build_cplus_array_type (vtable_entry_type, NULL_TREE);
4252 layout_type (vtbl_type_node);
4253 vtbl_type_node = cp_build_qualified_type (vtbl_type_node, TYPE_QUAL_CONST);
4254 record_builtin_type (RID_MAX, NULL, vtbl_type_node);
4255 vtbl_ptr_type_node = build_pointer_type (vtable_entry_type);
4256 layout_type (vtbl_ptr_type_node);
4257 record_builtin_type (RID_MAX, NULL, vtbl_ptr_type_node);
4259 push_namespace (get_identifier ("__cxxabiv1"));
4260 abi_node = current_namespace;
4261 pop_namespace ();
4263 global_type_node = make_node (LANG_TYPE);
4264 record_unknown_type (global_type_node, "global type");
4266 any_targ_node = make_node (LANG_TYPE);
4267 record_unknown_type (any_targ_node, "any type");
4269 /* Now, C++. */
4270 current_lang_name = lang_name_cplusplus;
4272 if (aligned_new_threshold > 1
4273 && !pow2p_hwi (aligned_new_threshold))
4275 error ("-faligned-new=%d is not a power of two", aligned_new_threshold);
4276 aligned_new_threshold = 1;
4278 if (aligned_new_threshold == -1)
4279 aligned_new_threshold = (cxx_dialect >= cxx17) ? 1 : 0;
4280 if (aligned_new_threshold == 1)
4281 aligned_new_threshold = malloc_alignment () / BITS_PER_UNIT;
4284 tree newattrs, extvisattr;
4285 tree newtype, deltype;
4286 tree ptr_ftype_sizetype;
4287 tree new_eh_spec;
4289 ptr_ftype_sizetype
4290 = build_function_type_list (ptr_type_node, size_type_node, NULL_TREE);
4291 if (cxx_dialect == cxx98)
4293 tree bad_alloc_id;
4294 tree bad_alloc_type_node;
4295 tree bad_alloc_decl;
4297 push_namespace (std_identifier);
4298 bad_alloc_id = get_identifier ("bad_alloc");
4299 bad_alloc_type_node = make_class_type (RECORD_TYPE);
4300 TYPE_CONTEXT (bad_alloc_type_node) = current_namespace;
4301 bad_alloc_decl
4302 = create_implicit_typedef (bad_alloc_id, bad_alloc_type_node);
4303 DECL_CONTEXT (bad_alloc_decl) = current_namespace;
4304 pop_namespace ();
4306 new_eh_spec
4307 = add_exception_specifier (NULL_TREE, bad_alloc_type_node, -1);
4309 else
4310 new_eh_spec = noexcept_false_spec;
4312 /* Ensure attribs.c is initialized. */
4313 init_attributes ();
4315 /* Ensure constraint.cc is initialized. */
4316 init_constraint_processing ();
4318 extvisattr = build_tree_list (get_identifier ("externally_visible"),
4319 NULL_TREE);
4320 newattrs = tree_cons (get_identifier ("alloc_size"),
4321 build_tree_list (NULL_TREE, integer_one_node),
4322 extvisattr);
4323 newtype = cp_build_type_attribute_variant (ptr_ftype_sizetype, newattrs);
4324 newtype = build_exception_variant (newtype, new_eh_spec);
4325 deltype = cp_build_type_attribute_variant (void_ftype_ptr, extvisattr);
4326 deltype = build_exception_variant (deltype, empty_except_spec);
4327 tree opnew = push_cp_library_fn (NEW_EXPR, newtype, 0);
4328 DECL_IS_MALLOC (opnew) = 1;
4329 DECL_IS_OPERATOR_NEW (opnew) = 1;
4330 opnew = push_cp_library_fn (VEC_NEW_EXPR, newtype, 0);
4331 DECL_IS_MALLOC (opnew) = 1;
4332 DECL_IS_OPERATOR_NEW (opnew) = 1;
4333 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4334 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4335 if (flag_sized_deallocation)
4337 /* Also push the sized deallocation variants:
4338 void operator delete(void*, std::size_t) throw();
4339 void operator delete[](void*, std::size_t) throw(); */
4340 tree void_ftype_ptr_size
4341 = build_function_type_list (void_type_node, ptr_type_node,
4342 size_type_node, NULL_TREE);
4343 deltype = cp_build_type_attribute_variant (void_ftype_ptr_size,
4344 extvisattr);
4345 deltype = build_exception_variant (deltype, empty_except_spec);
4346 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4347 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4350 if (aligned_new_threshold)
4352 push_namespace (std_identifier);
4353 tree align_id = get_identifier ("align_val_t");
4354 align_type_node = start_enum (align_id, NULL_TREE, size_type_node,
4355 NULL_TREE, /*scoped*/true, NULL);
4356 pop_namespace ();
4358 /* operator new (size_t, align_val_t); */
4359 newtype = build_function_type_list (ptr_type_node, size_type_node,
4360 align_type_node, NULL_TREE);
4361 newtype = cp_build_type_attribute_variant (newtype, newattrs);
4362 newtype = build_exception_variant (newtype, new_eh_spec);
4363 opnew = push_cp_library_fn (NEW_EXPR, newtype, 0);
4364 DECL_IS_MALLOC (opnew) = 1;
4365 DECL_IS_OPERATOR_NEW (opnew) = 1;
4366 opnew = push_cp_library_fn (VEC_NEW_EXPR, newtype, 0);
4367 DECL_IS_MALLOC (opnew) = 1;
4368 DECL_IS_OPERATOR_NEW (opnew) = 1;
4370 /* operator delete (void *, align_val_t); */
4371 deltype = build_function_type_list (void_type_node, ptr_type_node,
4372 align_type_node, NULL_TREE);
4373 deltype = cp_build_type_attribute_variant (deltype, extvisattr);
4374 deltype = build_exception_variant (deltype, empty_except_spec);
4375 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4376 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4378 if (flag_sized_deallocation)
4380 /* operator delete (void *, size_t, align_val_t); */
4381 deltype = build_function_type_list (void_type_node, ptr_type_node,
4382 size_type_node, align_type_node,
4383 NULL_TREE);
4384 deltype = cp_build_type_attribute_variant (deltype, extvisattr);
4385 deltype = build_exception_variant (deltype, empty_except_spec);
4386 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4387 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4391 nullptr_type_node = make_node (NULLPTR_TYPE);
4392 TYPE_SIZE (nullptr_type_node) = bitsize_int (GET_MODE_BITSIZE (ptr_mode));
4393 TYPE_SIZE_UNIT (nullptr_type_node) = size_int (GET_MODE_SIZE (ptr_mode));
4394 TYPE_UNSIGNED (nullptr_type_node) = 1;
4395 TYPE_PRECISION (nullptr_type_node) = GET_MODE_BITSIZE (ptr_mode);
4396 if (abi_version_at_least (9))
4397 SET_TYPE_ALIGN (nullptr_type_node, GET_MODE_ALIGNMENT (ptr_mode));
4398 SET_TYPE_MODE (nullptr_type_node, ptr_mode);
4399 record_builtin_type (RID_MAX, "decltype(nullptr)", nullptr_type_node);
4400 nullptr_node = build_int_cst (nullptr_type_node, 0);
4403 abort_fndecl
4404 = build_library_fn_ptr ("__cxa_pure_virtual", void_ftype,
4405 ECF_NORETURN | ECF_NOTHROW | ECF_COLD);
4407 /* Perform other language dependent initializations. */
4408 init_class_processing ();
4409 init_rtti_processing ();
4410 init_template_processing ();
4412 if (flag_exceptions)
4413 init_exception_processing ();
4415 if (! supports_one_only ())
4416 flag_weak = 0;
4418 make_fname_decl = cp_make_fname_decl;
4419 start_fname_decls ();
4421 /* Show we use EH for cleanups. */
4422 if (flag_exceptions)
4423 using_eh_for_cleanups ();
4426 /* Generate an initializer for a function naming variable from
4427 NAME. NAME may be NULL, to indicate a dependent name. TYPE_P is
4428 filled in with the type of the init. */
4430 tree
4431 cp_fname_init (const char* name, tree *type_p)
4433 tree domain = NULL_TREE;
4434 tree type;
4435 tree init = NULL_TREE;
4436 size_t length = 0;
4438 if (name)
4440 length = strlen (name);
4441 domain = build_index_type (size_int (length));
4442 init = build_string (length + 1, name);
4445 type = cp_build_qualified_type (char_type_node, TYPE_QUAL_CONST);
4446 type = build_cplus_array_type (type, domain);
4448 *type_p = type;
4450 if (init)
4451 TREE_TYPE (init) = type;
4452 else
4453 init = error_mark_node;
4455 return init;
4458 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give
4459 the decl, LOC is the location to give the decl, NAME is the
4460 initialization string and TYPE_DEP indicates whether NAME depended
4461 on the type of the function. We make use of that to detect
4462 __PRETTY_FUNCTION__ inside a template fn. This is being done lazily
4463 at the point of first use, so we mustn't push the decl now. */
4465 static tree
4466 cp_make_fname_decl (location_t loc, tree id, int type_dep)
4468 const char *const name = (type_dep && processing_template_decl
4469 ? NULL : fname_as_string (type_dep));
4470 tree type;
4471 tree init = cp_fname_init (name, &type);
4472 tree decl = build_decl (loc, VAR_DECL, id, type);
4474 if (name)
4475 free (CONST_CAST (char *, name));
4477 TREE_STATIC (decl) = 1;
4478 TREE_READONLY (decl) = 1;
4479 DECL_ARTIFICIAL (decl) = 1;
4481 TREE_USED (decl) = 1;
4483 if (current_function_decl)
4485 DECL_CONTEXT (decl) = current_function_decl;
4486 decl = pushdecl_outermost_localscope (decl);
4487 cp_finish_decl (decl, init, /*init_const_expr_p=*/false, NULL_TREE,
4488 LOOKUP_ONLYCONVERTING);
4490 else
4492 DECL_THIS_STATIC (decl) = true;
4493 pushdecl_top_level_and_finish (decl, init);
4496 return decl;
4499 static tree
4500 builtin_function_1 (tree decl, tree context, bool is_global)
4502 tree id = DECL_NAME (decl);
4503 const char *name = IDENTIFIER_POINTER (id);
4505 retrofit_lang_decl (decl);
4507 DECL_ARTIFICIAL (decl) = 1;
4508 SET_DECL_LANGUAGE (decl, lang_c);
4509 /* Runtime library routines are, by definition, available in an
4510 external shared object. */
4511 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
4512 DECL_VISIBILITY_SPECIFIED (decl) = 1;
4514 DECL_CONTEXT (decl) = context;
4516 /* A function in the user's namespace should have an explicit
4517 declaration before it is used. Mark the built-in function as
4518 anticipated but not actually declared. */
4519 if (name[0] != '_' || name[1] != '_')
4520 DECL_ANTICIPATED (decl) = 1;
4521 else if (strncmp (name + 2, "builtin_", strlen ("builtin_")) != 0)
4523 size_t len = strlen (name);
4525 /* Treat __*_chk fortification functions as anticipated as well,
4526 unless they are __builtin_*. */
4527 if (len > strlen ("___chk")
4528 && memcmp (name + len - strlen ("_chk"),
4529 "_chk", strlen ("_chk") + 1) == 0)
4530 DECL_ANTICIPATED (decl) = 1;
4533 if (is_global)
4534 pushdecl_top_level (decl);
4535 else
4536 pushdecl (decl);
4538 return decl;
4541 tree
4542 cxx_builtin_function (tree decl)
4544 tree id = DECL_NAME (decl);
4545 const char *name = IDENTIFIER_POINTER (id);
4546 /* All builtins that don't begin with an '_' should additionally
4547 go in the 'std' namespace. */
4548 if (name[0] != '_')
4550 tree decl2 = copy_node(decl);
4551 push_namespace (std_identifier);
4552 builtin_function_1 (decl2, std_node, false);
4553 pop_namespace ();
4556 return builtin_function_1 (decl, NULL_TREE, false);
4559 /* Like cxx_builtin_function, but guarantee the function is added to the global
4560 scope. This is to allow function specific options to add new machine
4561 dependent builtins when the target ISA changes via attribute((target(...)))
4562 which saves space on program startup if the program does not use non-generic
4563 ISAs. */
4565 tree
4566 cxx_builtin_function_ext_scope (tree decl)
4569 tree id = DECL_NAME (decl);
4570 const char *name = IDENTIFIER_POINTER (id);
4571 /* All builtins that don't begin with an '_' should additionally
4572 go in the 'std' namespace. */
4573 if (name[0] != '_')
4575 tree decl2 = copy_node(decl);
4576 push_namespace (std_identifier);
4577 builtin_function_1 (decl2, std_node, true);
4578 pop_namespace ();
4581 return builtin_function_1 (decl, NULL_TREE, true);
4584 /* Generate a FUNCTION_DECL with the typical flags for a runtime library
4585 function. Not called directly. */
4587 static tree
4588 build_library_fn (tree name, enum tree_code operator_code, tree type,
4589 int ecf_flags)
4591 tree fn = build_lang_decl (FUNCTION_DECL, name, type);
4592 DECL_EXTERNAL (fn) = 1;
4593 TREE_PUBLIC (fn) = 1;
4594 DECL_ARTIFICIAL (fn) = 1;
4595 DECL_OVERLOADED_OPERATOR_CODE_RAW (fn)
4596 = OVL_OP_INFO (false, operator_code)->ovl_op_code;
4597 SET_DECL_LANGUAGE (fn, lang_c);
4598 /* Runtime library routines are, by definition, available in an
4599 external shared object. */
4600 DECL_VISIBILITY (fn) = VISIBILITY_DEFAULT;
4601 DECL_VISIBILITY_SPECIFIED (fn) = 1;
4602 set_call_expr_flags (fn, ecf_flags);
4603 return fn;
4606 /* Returns the _DECL for a library function with C++ linkage. */
4608 static tree
4609 build_cp_library_fn (tree name, enum tree_code operator_code, tree type,
4610 int ecf_flags)
4612 tree fn = build_library_fn (name, operator_code, type, ecf_flags);
4613 DECL_CONTEXT (fn) = FROB_CONTEXT (current_namespace);
4614 SET_DECL_LANGUAGE (fn, lang_cplusplus);
4615 return fn;
4618 /* Like build_library_fn, but takes a C string instead of an
4619 IDENTIFIER_NODE. */
4621 tree
4622 build_library_fn_ptr (const char* name, tree type, int ecf_flags)
4624 return build_library_fn (get_identifier (name), ERROR_MARK, type, ecf_flags);
4627 /* Like build_cp_library_fn, but takes a C string instead of an
4628 IDENTIFIER_NODE. */
4630 tree
4631 build_cp_library_fn_ptr (const char* name, tree type, int ecf_flags)
4633 return build_cp_library_fn (get_identifier (name), ERROR_MARK, type,
4634 ecf_flags);
4637 /* Like build_library_fn, but also pushes the function so that we will
4638 be able to find it via get_global_binding. Also, the function
4639 may throw exceptions listed in RAISES. */
4641 tree
4642 push_library_fn (tree name, tree type, tree raises, int ecf_flags)
4644 tree fn;
4646 if (raises)
4647 type = build_exception_variant (type, raises);
4649 fn = build_library_fn (name, ERROR_MARK, type, ecf_flags);
4650 pushdecl_top_level (fn);
4651 return fn;
4654 /* Like build_cp_library_fn, but also pushes the function so that it
4655 will be found by normal lookup. */
4657 static tree
4658 push_cp_library_fn (enum tree_code operator_code, tree type,
4659 int ecf_flags)
4661 tree fn = build_cp_library_fn (ovl_op_identifier (false, operator_code),
4662 operator_code, type, ecf_flags);
4663 pushdecl (fn);
4664 if (flag_tm)
4665 apply_tm_attr (fn, get_identifier ("transaction_safe"));
4666 return fn;
4669 /* Like push_library_fn, but takes a TREE_LIST of parm types rather than
4670 a FUNCTION_TYPE. */
4672 tree
4673 push_void_library_fn (tree name, tree parmtypes, int ecf_flags)
4675 tree type = build_function_type (void_type_node, parmtypes);
4676 return push_library_fn (name, type, NULL_TREE, ecf_flags);
4679 /* Like push_library_fn, but also note that this function throws
4680 and does not return. Used for __throw_foo and the like. */
4682 tree
4683 push_throw_library_fn (tree name, tree type)
4685 tree fn = push_library_fn (name, type, NULL_TREE, ECF_NORETURN | ECF_COLD);
4686 return fn;
4689 /* When we call finish_struct for an anonymous union, we create
4690 default copy constructors and such. But, an anonymous union
4691 shouldn't have such things; this function undoes the damage to the
4692 anonymous union type T.
4694 (The reason that we create the synthesized methods is that we don't
4695 distinguish `union { int i; }' from `typedef union { int i; } U'.
4696 The first is an anonymous union; the second is just an ordinary
4697 union type.) */
4699 void
4700 fixup_anonymous_aggr (tree t)
4702 /* Wipe out memory of synthesized methods. */
4703 TYPE_HAS_USER_CONSTRUCTOR (t) = 0;
4704 TYPE_HAS_DEFAULT_CONSTRUCTOR (t) = 0;
4705 TYPE_HAS_COPY_CTOR (t) = 0;
4706 TYPE_HAS_CONST_COPY_CTOR (t) = 0;
4707 TYPE_HAS_COPY_ASSIGN (t) = 0;
4708 TYPE_HAS_CONST_COPY_ASSIGN (t) = 0;
4710 /* Splice the implicitly generated functions out of TYPE_FIELDS. */
4711 for (tree probe, *prev_p = &TYPE_FIELDS (t); (probe = *prev_p);)
4712 if (TREE_CODE (probe) == FUNCTION_DECL && DECL_ARTIFICIAL (probe))
4713 *prev_p = DECL_CHAIN (probe);
4714 else
4715 prev_p = &DECL_CHAIN (probe);
4717 /* Anonymous aggregates cannot have fields with ctors, dtors or complex
4718 assignment operators (because they cannot have these methods themselves).
4719 For anonymous unions this is already checked because they are not allowed
4720 in any union, otherwise we have to check it. */
4721 if (TREE_CODE (t) != UNION_TYPE)
4723 tree field, type;
4725 for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
4726 if (TREE_CODE (field) == FIELD_DECL)
4728 type = TREE_TYPE (field);
4729 if (CLASS_TYPE_P (type))
4731 if (TYPE_NEEDS_CONSTRUCTING (type))
4732 error ("member %q+#D with constructor not allowed "
4733 "in anonymous aggregate", field);
4734 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
4735 error ("member %q+#D with destructor not allowed "
4736 "in anonymous aggregate", field);
4737 if (TYPE_HAS_COMPLEX_COPY_ASSIGN (type))
4738 error ("member %q+#D with copy assignment operator "
4739 "not allowed in anonymous aggregate", field);
4745 /* Warn for an attribute located at LOCATION that appertains to the
4746 class type CLASS_TYPE that has not been properly placed after its
4747 class-key, in it class-specifier. */
4749 void
4750 warn_misplaced_attr_for_class_type (source_location location,
4751 tree class_type)
4753 gcc_assert (OVERLOAD_TYPE_P (class_type));
4755 if (warning_at (location, OPT_Wattributes,
4756 "attribute ignored in declaration "
4757 "of %q#T", class_type))
4758 inform (location,
4759 "attribute for %q#T must follow the %qs keyword",
4760 class_type, class_key_or_enum_as_string (class_type));
4763 /* Make sure that a declaration with no declarator is well-formed, i.e.
4764 just declares a tagged type or anonymous union.
4766 Returns the type declared; or NULL_TREE if none. */
4768 tree
4769 check_tag_decl (cp_decl_specifier_seq *declspecs,
4770 bool explicit_type_instantiation_p)
4772 int saw_friend = decl_spec_seq_has_spec_p (declspecs, ds_friend);
4773 int saw_typedef = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
4774 /* If a class, struct, or enum type is declared by the DECLSPECS
4775 (i.e, if a class-specifier, enum-specifier, or non-typename
4776 elaborated-type-specifier appears in the DECLSPECS),
4777 DECLARED_TYPE is set to the corresponding type. */
4778 tree declared_type = NULL_TREE;
4779 bool error_p = false;
4781 if (declspecs->multiple_types_p)
4782 error ("multiple types in one declaration");
4783 else if (declspecs->redefined_builtin_type)
4785 if (!in_system_header_at (input_location))
4786 permerror (declspecs->locations[ds_redefined_builtin_type_spec],
4787 "redeclaration of C++ built-in type %qT",
4788 declspecs->redefined_builtin_type);
4789 return NULL_TREE;
4792 if (declspecs->type
4793 && TYPE_P (declspecs->type)
4794 && ((TREE_CODE (declspecs->type) != TYPENAME_TYPE
4795 && MAYBE_CLASS_TYPE_P (declspecs->type))
4796 || TREE_CODE (declspecs->type) == ENUMERAL_TYPE))
4797 declared_type = declspecs->type;
4798 else if (declspecs->type == error_mark_node)
4799 error_p = true;
4800 if (declared_type == NULL_TREE && ! saw_friend && !error_p)
4801 permerror (input_location, "declaration does not declare anything");
4802 else if (declared_type != NULL_TREE && type_uses_auto (declared_type))
4804 error_at (declspecs->locations[ds_type_spec],
4805 "%<auto%> can only be specified for variables "
4806 "or function declarations");
4807 return error_mark_node;
4809 /* Check for an anonymous union. */
4810 else if (declared_type && RECORD_OR_UNION_CODE_P (TREE_CODE (declared_type))
4811 && TYPE_UNNAMED_P (declared_type))
4813 /* 7/3 In a simple-declaration, the optional init-declarator-list
4814 can be omitted only when declaring a class (clause 9) or
4815 enumeration (7.2), that is, when the decl-specifier-seq contains
4816 either a class-specifier, an elaborated-type-specifier with
4817 a class-key (9.1), or an enum-specifier. In these cases and
4818 whenever a class-specifier or enum-specifier is present in the
4819 decl-specifier-seq, the identifiers in these specifiers are among
4820 the names being declared by the declaration (as class-name,
4821 enum-names, or enumerators, depending on the syntax). In such
4822 cases, and except for the declaration of an unnamed bit-field (9.6),
4823 the decl-specifier-seq shall introduce one or more names into the
4824 program, or shall redeclare a name introduced by a previous
4825 declaration. [Example:
4826 enum { }; // ill-formed
4827 typedef class { }; // ill-formed
4828 --end example] */
4829 if (saw_typedef)
4831 error ("missing type-name in typedef-declaration");
4832 return NULL_TREE;
4834 /* Anonymous unions are objects, so they can have specifiers. */;
4835 SET_ANON_AGGR_TYPE_P (declared_type);
4837 if (TREE_CODE (declared_type) != UNION_TYPE
4838 && !in_system_header_at (input_location))
4839 pedwarn (input_location, OPT_Wpedantic, "ISO C++ prohibits anonymous structs");
4842 else
4844 if (decl_spec_seq_has_spec_p (declspecs, ds_inline))
4845 error_at (declspecs->locations[ds_inline],
4846 "%<inline%> can only be specified for functions");
4847 else if (decl_spec_seq_has_spec_p (declspecs, ds_virtual))
4848 error_at (declspecs->locations[ds_virtual],
4849 "%<virtual%> can only be specified for functions");
4850 else if (saw_friend
4851 && (!current_class_type
4852 || current_scope () != current_class_type))
4853 error_at (declspecs->locations[ds_friend],
4854 "%<friend%> can only be specified inside a class");
4855 else if (decl_spec_seq_has_spec_p (declspecs, ds_explicit))
4856 error_at (declspecs->locations[ds_explicit],
4857 "%<explicit%> can only be specified for constructors");
4858 else if (declspecs->storage_class)
4859 error_at (declspecs->locations[ds_storage_class],
4860 "a storage class can only be specified for objects "
4861 "and functions");
4862 else if (decl_spec_seq_has_spec_p (declspecs, ds_const))
4863 error_at (declspecs->locations[ds_const],
4864 "%<const%> can only be specified for objects and "
4865 "functions");
4866 else if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
4867 error_at (declspecs->locations[ds_volatile],
4868 "%<volatile%> can only be specified for objects and "
4869 "functions");
4870 else if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
4871 error_at (declspecs->locations[ds_restrict],
4872 "%<__restrict%> can only be specified for objects and "
4873 "functions");
4874 else if (decl_spec_seq_has_spec_p (declspecs, ds_thread))
4875 error_at (declspecs->locations[ds_thread],
4876 "%<__thread%> can only be specified for objects "
4877 "and functions");
4878 else if (saw_typedef)
4879 warning_at (declspecs->locations[ds_typedef], 0,
4880 "%<typedef%> was ignored in this declaration");
4881 else if (decl_spec_seq_has_spec_p (declspecs, ds_constexpr))
4882 error_at (declspecs->locations[ds_constexpr],
4883 "%<constexpr%> cannot be used for type declarations");
4886 if (declspecs->attributes && warn_attributes && declared_type)
4888 location_t loc;
4889 if (!CLASS_TYPE_P (declared_type)
4890 || !CLASSTYPE_TEMPLATE_INSTANTIATION (declared_type))
4891 /* For a non-template class, use the name location. */
4892 loc = location_of (declared_type);
4893 else
4894 /* For a template class (an explicit instantiation), use the
4895 current location. */
4896 loc = input_location;
4898 if (explicit_type_instantiation_p)
4899 /* [dcl.attr.grammar]/4:
4901 No attribute-specifier-seq shall appertain to an explicit
4902 instantiation. */
4904 if (warning_at (loc, OPT_Wattributes,
4905 "attribute ignored in explicit instantiation %q#T",
4906 declared_type))
4907 inform (loc,
4908 "no attribute can be applied to "
4909 "an explicit instantiation");
4911 else
4912 warn_misplaced_attr_for_class_type (loc, declared_type);
4915 return declared_type;
4918 /* Called when a declaration is seen that contains no names to declare.
4919 If its type is a reference to a structure, union or enum inherited
4920 from a containing scope, shadow that tag name for the current scope
4921 with a forward reference.
4922 If its type defines a new named structure or union
4923 or defines an enum, it is valid but we need not do anything here.
4924 Otherwise, it is an error.
4926 C++: may have to grok the declspecs to learn about static,
4927 complain for anonymous unions.
4929 Returns the TYPE declared -- or NULL_TREE if none. */
4931 tree
4932 shadow_tag (cp_decl_specifier_seq *declspecs)
4934 tree t = check_tag_decl (declspecs,
4935 /*explicit_type_instantiation_p=*/false);
4937 if (!t)
4938 return NULL_TREE;
4940 if (maybe_process_partial_specialization (t) == error_mark_node)
4941 return NULL_TREE;
4943 /* This is where the variables in an anonymous union are
4944 declared. An anonymous union declaration looks like:
4945 union { ... } ;
4946 because there is no declarator after the union, the parser
4947 sends that declaration here. */
4948 if (ANON_AGGR_TYPE_P (t))
4950 fixup_anonymous_aggr (t);
4952 if (TYPE_FIELDS (t))
4954 tree decl = grokdeclarator (/*declarator=*/NULL,
4955 declspecs, NORMAL, 0, NULL);
4956 finish_anon_union (decl);
4960 return t;
4963 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
4965 tree
4966 groktypename (cp_decl_specifier_seq *type_specifiers,
4967 const cp_declarator *declarator,
4968 bool is_template_arg)
4970 tree attrs;
4971 tree type;
4972 enum decl_context context
4973 = is_template_arg ? TEMPLATE_TYPE_ARG : TYPENAME;
4974 attrs = type_specifiers->attributes;
4975 type_specifiers->attributes = NULL_TREE;
4976 type = grokdeclarator (declarator, type_specifiers, context, 0, &attrs);
4977 if (attrs && type != error_mark_node)
4979 if (CLASS_TYPE_P (type))
4980 warning (OPT_Wattributes, "ignoring attributes applied to class type %qT "
4981 "outside of definition", type);
4982 else if (MAYBE_CLASS_TYPE_P (type))
4983 /* A template type parameter or other dependent type. */
4984 warning (OPT_Wattributes, "ignoring attributes applied to dependent "
4985 "type %qT without an associated declaration", type);
4986 else
4987 cplus_decl_attributes (&type, attrs, 0);
4989 return type;
4992 /* Process a DECLARATOR for a function-scope variable declaration,
4993 namespace-scope variable declaration, or function declaration.
4994 (Function definitions go through start_function; class member
4995 declarations appearing in the body of the class go through
4996 grokfield.) The DECL corresponding to the DECLARATOR is returned.
4997 If an error occurs, the error_mark_node is returned instead.
4999 DECLSPECS are the decl-specifiers for the declaration. INITIALIZED is
5000 SD_INITIALIZED if an explicit initializer is present, or SD_DEFAULTED
5001 for an explicitly defaulted function, or SD_DELETED for an explicitly
5002 deleted function, but 0 (SD_UNINITIALIZED) if this is a variable
5003 implicitly initialized via a default constructor. ATTRIBUTES and
5004 PREFIX_ATTRIBUTES are GNU attributes associated with this declaration.
5006 The scope represented by the context of the returned DECL is pushed
5007 (if it is not the global namespace) and is assigned to
5008 *PUSHED_SCOPE_P. The caller is then responsible for calling
5009 pop_scope on *PUSHED_SCOPE_P if it is set. */
5011 tree
5012 start_decl (const cp_declarator *declarator,
5013 cp_decl_specifier_seq *declspecs,
5014 int initialized,
5015 tree attributes,
5016 tree prefix_attributes,
5017 tree *pushed_scope_p)
5019 tree decl;
5020 tree context;
5021 bool was_public;
5022 int flags;
5023 bool alias;
5025 *pushed_scope_p = NULL_TREE;
5027 /* An object declared as __attribute__((deprecated)) suppresses
5028 warnings of uses of other deprecated items. */
5029 if (lookup_attribute ("deprecated", attributes))
5030 deprecated_state = DEPRECATED_SUPPRESS;
5032 attributes = chainon (attributes, prefix_attributes);
5034 decl = grokdeclarator (declarator, declspecs, NORMAL, initialized,
5035 &attributes);
5037 deprecated_state = DEPRECATED_NORMAL;
5039 if (decl == NULL_TREE || VOID_TYPE_P (decl)
5040 || decl == error_mark_node)
5041 return error_mark_node;
5043 context = CP_DECL_CONTEXT (decl);
5044 if (context != global_namespace)
5045 *pushed_scope_p = push_scope (context);
5047 /* Is it valid for this decl to have an initializer at all?
5048 If not, set INITIALIZED to zero, which will indirectly
5049 tell `cp_finish_decl' to ignore the initializer once it is parsed. */
5050 if (initialized
5051 && TREE_CODE (decl) == TYPE_DECL)
5053 error ("typedef %qD is initialized (use decltype instead)", decl);
5054 return error_mark_node;
5057 if (initialized)
5059 if (! toplevel_bindings_p ()
5060 && DECL_EXTERNAL (decl))
5061 warning (0, "declaration of %q#D has %<extern%> and is initialized",
5062 decl);
5063 DECL_EXTERNAL (decl) = 0;
5064 if (toplevel_bindings_p ())
5065 TREE_STATIC (decl) = 1;
5067 alias = lookup_attribute ("alias", DECL_ATTRIBUTES (decl)) != 0;
5069 if (alias && TREE_CODE (decl) == FUNCTION_DECL)
5070 record_key_method_defined (decl);
5072 /* If this is a typedef that names the class for linkage purposes
5073 (7.1.3p8), apply any attributes directly to the type. */
5074 if (TREE_CODE (decl) == TYPE_DECL
5075 && OVERLOAD_TYPE_P (TREE_TYPE (decl))
5076 && decl == TYPE_NAME (TYPE_MAIN_VARIANT (TREE_TYPE (decl))))
5077 flags = ATTR_FLAG_TYPE_IN_PLACE;
5078 else
5079 flags = 0;
5081 /* Set attributes here so if duplicate decl, will have proper attributes. */
5082 cplus_decl_attributes (&decl, attributes, flags);
5084 /* Dllimported symbols cannot be defined. Static data members (which
5085 can be initialized in-class and dllimported) go through grokfield,
5086 not here, so we don't need to exclude those decls when checking for
5087 a definition. */
5088 if (initialized && DECL_DLLIMPORT_P (decl))
5090 error ("definition of %q#D is marked %<dllimport%>", decl);
5091 DECL_DLLIMPORT_P (decl) = 0;
5094 /* If #pragma weak was used, mark the decl weak now. */
5095 if (!processing_template_decl && !DECL_DECOMPOSITION_P (decl))
5096 maybe_apply_pragma_weak (decl);
5098 if (TREE_CODE (decl) == FUNCTION_DECL
5099 && DECL_DECLARED_INLINE_P (decl)
5100 && DECL_UNINLINABLE (decl)
5101 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
5102 warning_at (DECL_SOURCE_LOCATION (decl), 0,
5103 "inline function %qD given attribute noinline", decl);
5105 if (TYPE_P (context) && COMPLETE_TYPE_P (complete_type (context)))
5107 bool this_tmpl = (processing_template_decl
5108 > template_class_depth (context));
5109 if (VAR_P (decl))
5111 tree field = lookup_field (context, DECL_NAME (decl), 0, false);
5112 if (field == NULL_TREE
5113 || !(VAR_P (field) || variable_template_p (field)))
5114 error ("%q+#D is not a static data member of %q#T", decl, context);
5115 else if (variable_template_p (field)
5116 && (DECL_LANG_SPECIFIC (decl)
5117 && DECL_TEMPLATE_SPECIALIZATION (decl)))
5118 /* OK, specialization was already checked. */;
5119 else if (variable_template_p (field) && !this_tmpl)
5121 error_at (DECL_SOURCE_LOCATION (decl),
5122 "non-member-template declaration of %qD", decl);
5123 inform (DECL_SOURCE_LOCATION (field), "does not match "
5124 "member template declaration here");
5125 return error_mark_node;
5127 else
5129 if (variable_template_p (field))
5130 field = DECL_TEMPLATE_RESULT (field);
5132 if (DECL_CONTEXT (field) != context)
5134 if (!same_type_p (DECL_CONTEXT (field), context))
5135 permerror (input_location, "ISO C++ does not permit %<%T::%D%> "
5136 "to be defined as %<%T::%D%>",
5137 DECL_CONTEXT (field), DECL_NAME (decl),
5138 context, DECL_NAME (decl));
5139 DECL_CONTEXT (decl) = DECL_CONTEXT (field);
5141 /* Static data member are tricky; an in-class initialization
5142 still doesn't provide a definition, so the in-class
5143 declaration will have DECL_EXTERNAL set, but will have an
5144 initialization. Thus, duplicate_decls won't warn
5145 about this situation, and so we check here. */
5146 if (initialized && DECL_INITIALIZED_IN_CLASS_P (field))
5147 error ("duplicate initialization of %qD", decl);
5148 field = duplicate_decls (decl, field,
5149 /*newdecl_is_friend=*/false);
5150 if (field == error_mark_node)
5151 return error_mark_node;
5152 else if (field)
5153 decl = field;
5156 else
5158 tree field = check_classfn (context, decl,
5159 this_tmpl
5160 ? current_template_parms
5161 : NULL_TREE);
5162 if (field && field != error_mark_node
5163 && duplicate_decls (decl, field,
5164 /*newdecl_is_friend=*/false))
5165 decl = field;
5168 /* cp_finish_decl sets DECL_EXTERNAL if DECL_IN_AGGR_P is set. */
5169 DECL_IN_AGGR_P (decl) = 0;
5170 /* Do not mark DECL as an explicit specialization if it was not
5171 already marked as an instantiation; a declaration should
5172 never be marked as a specialization unless we know what
5173 template is being specialized. */
5174 if (DECL_LANG_SPECIFIC (decl) && DECL_USE_TEMPLATE (decl))
5176 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
5177 if (TREE_CODE (decl) == FUNCTION_DECL)
5178 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
5179 && DECL_DECLARED_INLINE_P (decl));
5180 else
5181 DECL_COMDAT (decl) = false;
5183 /* [temp.expl.spec] An explicit specialization of a static data
5184 member of a template is a definition if the declaration
5185 includes an initializer; otherwise, it is a declaration.
5187 We check for processing_specialization so this only applies
5188 to the new specialization syntax. */
5189 if (!initialized && processing_specialization)
5190 DECL_EXTERNAL (decl) = 1;
5193 if (DECL_EXTERNAL (decl) && ! DECL_TEMPLATE_SPECIALIZATION (decl)
5194 /* Aliases are definitions. */
5195 && !alias)
5196 permerror (input_location, "declaration of %q#D outside of class is not definition",
5197 decl);
5200 was_public = TREE_PUBLIC (decl);
5202 /* Enter this declaration into the symbol table. Don't push the plain
5203 VAR_DECL for a variable template. */
5204 if (!template_parm_scope_p ()
5205 || !VAR_P (decl))
5206 decl = maybe_push_decl (decl);
5208 if (processing_template_decl)
5209 decl = push_template_decl (decl);
5210 if (decl == error_mark_node)
5211 return error_mark_node;
5213 if (VAR_P (decl)
5214 && DECL_NAMESPACE_SCOPE_P (decl) && !TREE_PUBLIC (decl) && !was_public
5215 && !DECL_THIS_STATIC (decl) && !DECL_ARTIFICIAL (decl))
5217 /* This is a const variable with implicit 'static'. Set
5218 DECL_THIS_STATIC so we can tell it from variables that are
5219 !TREE_PUBLIC because of the anonymous namespace. */
5220 gcc_assert (CP_TYPE_CONST_P (TREE_TYPE (decl)) || errorcount);
5221 DECL_THIS_STATIC (decl) = 1;
5224 if (current_function_decl && VAR_P (decl)
5225 && DECL_DECLARED_CONSTEXPR_P (current_function_decl))
5227 bool ok = false;
5228 if (CP_DECL_THREAD_LOCAL_P (decl))
5229 error ("%qD declared %<thread_local%> in %<constexpr%> function",
5230 decl);
5231 else if (TREE_STATIC (decl))
5232 error ("%qD declared %<static%> in %<constexpr%> function", decl);
5233 else
5234 ok = true;
5235 if (!ok)
5236 cp_function_chain->invalid_constexpr = true;
5239 if (!processing_template_decl && VAR_P (decl))
5240 start_decl_1 (decl, initialized);
5242 return decl;
5245 /* Process the declaration of a variable DECL. INITIALIZED is true
5246 iff DECL is explicitly initialized. (INITIALIZED is false if the
5247 variable is initialized via an implicitly-called constructor.)
5248 This function must be called for ordinary variables (including, for
5249 example, implicit instantiations of templates), but must not be
5250 called for template declarations. */
5252 void
5253 start_decl_1 (tree decl, bool initialized)
5255 tree type;
5256 bool complete_p;
5257 bool aggregate_definition_p;
5259 gcc_assert (!processing_template_decl);
5261 if (error_operand_p (decl))
5262 return;
5264 gcc_assert (VAR_P (decl));
5266 type = TREE_TYPE (decl);
5267 complete_p = COMPLETE_TYPE_P (type);
5268 aggregate_definition_p = MAYBE_CLASS_TYPE_P (type) && !DECL_EXTERNAL (decl);
5270 /* If an explicit initializer is present, or if this is a definition
5271 of an aggregate, then we need a complete type at this point.
5272 (Scalars are always complete types, so there is nothing to
5273 check.) This code just sets COMPLETE_P; errors (if necessary)
5274 are issued below. */
5275 if ((initialized || aggregate_definition_p)
5276 && !complete_p
5277 && COMPLETE_TYPE_P (complete_type (type)))
5279 complete_p = true;
5280 /* We will not yet have set TREE_READONLY on DECL if the type
5281 was "const", but incomplete, before this point. But, now, we
5282 have a complete type, so we can try again. */
5283 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
5286 if (initialized)
5287 /* Is it valid for this decl to have an initializer at all? */
5289 /* Don't allow initializations for incomplete types except for
5290 arrays which might be completed by the initialization. */
5291 if (complete_p)
5292 ; /* A complete type is ok. */
5293 else if (type_uses_auto (type))
5294 ; /* An auto type is ok. */
5295 else if (TREE_CODE (type) != ARRAY_TYPE)
5297 error ("variable %q#D has initializer but incomplete type", decl);
5298 type = TREE_TYPE (decl) = error_mark_node;
5300 else if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (type))))
5302 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
5303 error ("elements of array %q#D have incomplete type", decl);
5304 /* else we already gave an error in start_decl. */
5307 else if (aggregate_definition_p && !complete_p)
5309 if (type_uses_auto (type))
5310 gcc_assert (CLASS_PLACEHOLDER_TEMPLATE (type));
5311 else
5313 error ("aggregate %q#D has incomplete type and cannot be defined",
5314 decl);
5315 /* Change the type so that assemble_variable will give
5316 DECL an rtl we can live with: (mem (const_int 0)). */
5317 type = TREE_TYPE (decl) = error_mark_node;
5321 /* Create a new scope to hold this declaration if necessary.
5322 Whether or not a new scope is necessary cannot be determined
5323 until after the type has been completed; if the type is a
5324 specialization of a class template it is not until after
5325 instantiation has occurred that TYPE_HAS_NONTRIVIAL_DESTRUCTOR
5326 will be set correctly. */
5327 maybe_push_cleanup_level (type);
5330 /* Handle initialization of references. DECL, TYPE, and INIT have the
5331 same meaning as in cp_finish_decl. *CLEANUP must be NULL on entry,
5332 but will be set to a new CLEANUP_STMT if a temporary is created
5333 that must be destroyed subsequently.
5335 Returns an initializer expression to use to initialize DECL, or
5336 NULL if the initialization can be performed statically.
5338 Quotes on semantics can be found in ARM 8.4.3. */
5340 static tree
5341 grok_reference_init (tree decl, tree type, tree init, int flags)
5343 if (init == NULL_TREE)
5345 if ((DECL_LANG_SPECIFIC (decl) == 0
5346 || DECL_IN_AGGR_P (decl) == 0)
5347 && ! DECL_THIS_EXTERN (decl))
5348 error ("%qD declared as reference but not initialized", decl);
5349 return NULL_TREE;
5352 if (TREE_CODE (init) == TREE_LIST)
5353 init = build_x_compound_expr_from_list (init, ELK_INIT,
5354 tf_warning_or_error);
5356 tree ttype = TREE_TYPE (type);
5357 if (TREE_CODE (ttype) != ARRAY_TYPE
5358 && TREE_CODE (TREE_TYPE (init)) == ARRAY_TYPE)
5359 /* Note: default conversion is only called in very special cases. */
5360 init = decay_conversion (init, tf_warning_or_error);
5362 /* check_initializer handles this for non-reference variables, but for
5363 references we need to do it here or the initializer will get the
5364 incomplete array type and confuse later calls to
5365 cp_complete_array_type. */
5366 if (TREE_CODE (ttype) == ARRAY_TYPE
5367 && TYPE_DOMAIN (ttype) == NULL_TREE
5368 && (BRACE_ENCLOSED_INITIALIZER_P (init)
5369 || TREE_CODE (init) == STRING_CST))
5371 cp_complete_array_type (&ttype, init, false);
5372 if (ttype != TREE_TYPE (type))
5373 type = cp_build_reference_type (ttype, TYPE_REF_IS_RVALUE (type));
5376 /* Convert INIT to the reference type TYPE. This may involve the
5377 creation of a temporary, whose lifetime must be the same as that
5378 of the reference. If so, a DECL_EXPR for the temporary will be
5379 added just after the DECL_EXPR for DECL. That's why we don't set
5380 DECL_INITIAL for local references (instead assigning to them
5381 explicitly); we need to allow the temporary to be initialized
5382 first. */
5383 return initialize_reference (type, init, flags,
5384 tf_warning_or_error);
5387 /* Designated initializers in arrays are not supported in GNU C++.
5388 The parser cannot detect this error since it does not know whether
5389 a given brace-enclosed initializer is for a class type or for an
5390 array. This function checks that CE does not use a designated
5391 initializer. If it does, an error is issued. Returns true if CE
5392 is valid, i.e., does not have a designated initializer. */
5394 bool
5395 check_array_designated_initializer (constructor_elt *ce,
5396 unsigned HOST_WIDE_INT index)
5398 /* Designated initializers for array elements are not supported. */
5399 if (ce->index)
5401 /* The parser only allows identifiers as designated
5402 initializers. */
5403 if (ce->index == error_mark_node)
5405 error ("name used in a GNU-style designated "
5406 "initializer for an array");
5407 return false;
5409 else if (identifier_p (ce->index))
5411 error ("name %qD used in a GNU-style designated "
5412 "initializer for an array", ce->index);
5413 return false;
5416 tree ce_index = build_expr_type_conversion (WANT_INT | WANT_ENUM,
5417 ce->index, true);
5418 if (ce_index
5419 && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (ce_index))
5420 && (TREE_CODE (ce_index = fold_non_dependent_expr (ce_index))
5421 == INTEGER_CST))
5423 /* A C99 designator is OK if it matches the current index. */
5424 if (wi::to_wide (ce_index) == index)
5426 ce->index = ce_index;
5427 return true;
5429 else
5430 sorry ("non-trivial designated initializers not supported");
5432 else
5433 error ("C99 designator %qE is not an integral constant-expression",
5434 ce->index);
5436 return false;
5439 return true;
5442 /* When parsing `int a[] = {1, 2};' we don't know the size of the
5443 array until we finish parsing the initializer. If that's the
5444 situation we're in, update DECL accordingly. */
5446 static void
5447 maybe_deduce_size_from_array_init (tree decl, tree init)
5449 tree type = TREE_TYPE (decl);
5451 if (TREE_CODE (type) == ARRAY_TYPE
5452 && TYPE_DOMAIN (type) == NULL_TREE
5453 && TREE_CODE (decl) != TYPE_DECL)
5455 /* do_default is really a C-ism to deal with tentative definitions.
5456 But let's leave it here to ease the eventual merge. */
5457 int do_default = !DECL_EXTERNAL (decl);
5458 tree initializer = init ? init : DECL_INITIAL (decl);
5459 int failure = 0;
5461 /* Check that there are no designated initializers in INIT, as
5462 those are not supported in GNU C++, and as the middle-end
5463 will crash if presented with a non-numeric designated
5464 initializer. */
5465 if (initializer && BRACE_ENCLOSED_INITIALIZER_P (initializer))
5467 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initializer);
5468 constructor_elt *ce;
5469 HOST_WIDE_INT i;
5470 FOR_EACH_VEC_SAFE_ELT (v, i, ce)
5472 if (instantiation_dependent_expression_p (ce->index))
5473 return;
5474 if (!check_array_designated_initializer (ce, i))
5475 failure = 1;
5479 if (failure)
5480 TREE_TYPE (decl) = error_mark_node;
5481 else
5483 failure = cp_complete_array_type (&TREE_TYPE (decl), initializer,
5484 do_default);
5485 if (failure == 1)
5487 error_at (cp_expr_loc_or_loc (initializer,
5488 DECL_SOURCE_LOCATION (decl)),
5489 "initializer fails to determine size of %qD", decl);
5491 else if (failure == 2)
5493 if (do_default)
5495 error_at (DECL_SOURCE_LOCATION (decl),
5496 "array size missing in %qD", decl);
5498 /* If a `static' var's size isn't known, make it extern as
5499 well as static, so it does not get allocated. If it's not
5500 `static', then don't mark it extern; finish_incomplete_decl
5501 will give it a default size and it will get allocated. */
5502 else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
5503 DECL_EXTERNAL (decl) = 1;
5505 else if (failure == 3)
5507 error_at (DECL_SOURCE_LOCATION (decl),
5508 "zero-size array %qD", decl);
5512 cp_apply_type_quals_to_decl (cp_type_quals (TREE_TYPE (decl)), decl);
5514 relayout_decl (decl);
5518 /* Set DECL_SIZE, DECL_ALIGN, etc. for DECL (a VAR_DECL), and issue
5519 any appropriate error messages regarding the layout. */
5521 static void
5522 layout_var_decl (tree decl)
5524 tree type;
5526 type = TREE_TYPE (decl);
5527 if (type == error_mark_node)
5528 return;
5530 /* If we haven't already laid out this declaration, do so now.
5531 Note that we must not call complete type for an external object
5532 because it's type might involve templates that we are not
5533 supposed to instantiate yet. (And it's perfectly valid to say
5534 `extern X x' for some incomplete type `X'.) */
5535 if (!DECL_EXTERNAL (decl))
5536 complete_type (type);
5537 if (!DECL_SIZE (decl)
5538 && TREE_TYPE (decl) != error_mark_node
5539 && complete_or_array_type_p (type))
5540 layout_decl (decl, 0);
5542 if (!DECL_EXTERNAL (decl) && DECL_SIZE (decl) == NULL_TREE)
5544 /* An automatic variable with an incomplete type: that is an error.
5545 Don't talk about array types here, since we took care of that
5546 message in grokdeclarator. */
5547 error_at (DECL_SOURCE_LOCATION (decl),
5548 "storage size of %qD isn%'t known", decl);
5549 TREE_TYPE (decl) = error_mark_node;
5551 #if 0
5552 /* Keep this code around in case we later want to control debug info
5553 based on whether a type is "used". (jason 1999-11-11) */
5555 else if (!DECL_EXTERNAL (decl) && MAYBE_CLASS_TYPE_P (ttype))
5556 /* Let debugger know it should output info for this type. */
5557 note_debug_info_needed (ttype);
5559 if (TREE_STATIC (decl) && DECL_CLASS_SCOPE_P (decl))
5560 note_debug_info_needed (DECL_CONTEXT (decl));
5561 #endif
5563 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
5564 && DECL_SIZE (decl) != NULL_TREE
5565 && ! TREE_CONSTANT (DECL_SIZE (decl)))
5567 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
5568 constant_expression_warning (DECL_SIZE (decl));
5569 else
5571 error_at (DECL_SOURCE_LOCATION (decl),
5572 "storage size of %qD isn%'t constant", decl);
5573 TREE_TYPE (decl) = error_mark_node;
5578 /* If a local static variable is declared in an inline function, or if
5579 we have a weak definition, we must endeavor to create only one
5580 instance of the variable at link-time. */
5582 void
5583 maybe_commonize_var (tree decl)
5585 /* Static data in a function with comdat linkage also has comdat
5586 linkage. */
5587 if ((TREE_STATIC (decl)
5588 /* Don't mess with __FUNCTION__. */
5589 && ! DECL_ARTIFICIAL (decl)
5590 && DECL_FUNCTION_SCOPE_P (decl)
5591 && vague_linkage_p (DECL_CONTEXT (decl)))
5592 || (TREE_PUBLIC (decl) && DECL_INLINE_VAR_P (decl)))
5594 if (flag_weak)
5596 /* With weak symbols, we simply make the variable COMDAT;
5597 that will cause copies in multiple translations units to
5598 be merged. */
5599 comdat_linkage (decl);
5601 else
5603 if (DECL_INITIAL (decl) == NULL_TREE
5604 || DECL_INITIAL (decl) == error_mark_node)
5606 /* Without weak symbols, we can use COMMON to merge
5607 uninitialized variables. */
5608 TREE_PUBLIC (decl) = 1;
5609 DECL_COMMON (decl) = 1;
5611 else
5613 /* While for initialized variables, we must use internal
5614 linkage -- which means that multiple copies will not
5615 be merged. */
5616 TREE_PUBLIC (decl) = 0;
5617 DECL_COMMON (decl) = 0;
5618 const char *msg;
5619 if (DECL_INLINE_VAR_P (decl))
5620 msg = G_("sorry: semantics of inline variable "
5621 "%q#D are wrong (you%'ll wind up with "
5622 "multiple copies)");
5623 else
5624 msg = G_("sorry: semantics of inline function "
5625 "static data %q#D are wrong (you%'ll wind "
5626 "up with multiple copies)");
5627 if (warning_at (DECL_SOURCE_LOCATION (decl), 0,
5628 msg, decl))
5629 inform (DECL_SOURCE_LOCATION (decl),
5630 "you can work around this by removing the initializer");
5636 /* Issue an error message if DECL is an uninitialized const variable.
5637 CONSTEXPR_CONTEXT_P is true when the function is called in a constexpr
5638 context from potential_constant_expression. Returns true if all is well,
5639 false otherwise. */
5641 bool
5642 check_for_uninitialized_const_var (tree decl, bool constexpr_context_p,
5643 tsubst_flags_t complain)
5645 tree type = strip_array_types (TREE_TYPE (decl));
5647 /* ``Unless explicitly declared extern, a const object does not have
5648 external linkage and must be initialized. ($8.4; $12.1)'' ARM
5649 7.1.6 */
5650 if (VAR_P (decl)
5651 && !TYPE_REF_P (type)
5652 && (constexpr_context_p
5653 || CP_TYPE_CONST_P (type) || var_in_constexpr_fn (decl))
5654 && !DECL_NONTRIVIALLY_INITIALIZED_P (decl))
5656 tree field = default_init_uninitialized_part (type);
5657 if (!field)
5658 return true;
5660 if (!constexpr_context_p)
5662 if (CP_TYPE_CONST_P (type))
5664 if (complain & tf_error)
5665 permerror (DECL_SOURCE_LOCATION (decl),
5666 "uninitialized const %qD", decl);
5668 else
5670 if (!is_instantiation_of_constexpr (current_function_decl)
5671 && (complain & tf_error))
5672 error_at (DECL_SOURCE_LOCATION (decl),
5673 "uninitialized variable %qD in %<constexpr%> "
5674 "function", decl);
5675 cp_function_chain->invalid_constexpr = true;
5678 else if (complain & tf_error)
5679 error_at (DECL_SOURCE_LOCATION (decl),
5680 "uninitialized variable %qD in %<constexpr%> context",
5681 decl);
5683 if (CLASS_TYPE_P (type) && (complain & tf_error))
5685 tree defaulted_ctor;
5687 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)),
5688 "%q#T has no user-provided default constructor", type);
5689 defaulted_ctor = in_class_defaulted_default_constructor (type);
5690 if (defaulted_ctor)
5691 inform (DECL_SOURCE_LOCATION (defaulted_ctor),
5692 "constructor is not user-provided because it is "
5693 "explicitly defaulted in the class body");
5694 inform (DECL_SOURCE_LOCATION (field),
5695 "and the implicitly-defined constructor does not "
5696 "initialize %q#D", field);
5699 return false;
5702 return true;
5705 /* Structure holding the current initializer being processed by reshape_init.
5706 CUR is a pointer to the current element being processed, END is a pointer
5707 after the last element present in the initializer. */
5708 struct reshape_iter
5710 constructor_elt *cur;
5711 constructor_elt *end;
5714 static tree reshape_init_r (tree, reshape_iter *, bool, tsubst_flags_t);
5716 /* FIELD is a FIELD_DECL or NULL. In the former case, the value
5717 returned is the next FIELD_DECL (possibly FIELD itself) that can be
5718 initialized. If there are no more such fields, the return value
5719 will be NULL. */
5721 tree
5722 next_initializable_field (tree field)
5724 while (field
5725 && (TREE_CODE (field) != FIELD_DECL
5726 || DECL_UNNAMED_BIT_FIELD (field)
5727 || (DECL_ARTIFICIAL (field)
5728 && !(cxx_dialect >= cxx17 && DECL_FIELD_IS_BASE (field)))))
5729 field = DECL_CHAIN (field);
5731 return field;
5734 /* Return true for [dcl.init.list] direct-list-initialization from
5735 single element of enumeration with a fixed underlying type. */
5737 bool
5738 is_direct_enum_init (tree type, tree init)
5740 if (cxx_dialect >= cxx17
5741 && TREE_CODE (type) == ENUMERAL_TYPE
5742 && ENUM_FIXED_UNDERLYING_TYPE_P (type)
5743 && TREE_CODE (init) == CONSTRUCTOR
5744 && CONSTRUCTOR_IS_DIRECT_INIT (init)
5745 && CONSTRUCTOR_NELTS (init) == 1)
5746 return true;
5747 return false;
5750 /* Subroutine of reshape_init_array and reshape_init_vector, which does
5751 the actual work. ELT_TYPE is the element type of the array. MAX_INDEX is an
5752 INTEGER_CST representing the size of the array minus one (the maximum index),
5753 or NULL_TREE if the array was declared without specifying the size. D is
5754 the iterator within the constructor. */
5756 static tree
5757 reshape_init_array_1 (tree elt_type, tree max_index, reshape_iter *d,
5758 tsubst_flags_t complain)
5760 tree new_init;
5761 bool sized_array_p = (max_index && TREE_CONSTANT (max_index));
5762 unsigned HOST_WIDE_INT max_index_cst = 0;
5763 unsigned HOST_WIDE_INT index;
5765 /* The initializer for an array is always a CONSTRUCTOR. */
5766 new_init = build_constructor (init_list_type_node, NULL);
5768 if (sized_array_p)
5770 /* Minus 1 is used for zero sized arrays. */
5771 if (integer_all_onesp (max_index))
5772 return new_init;
5774 if (tree_fits_uhwi_p (max_index))
5775 max_index_cst = tree_to_uhwi (max_index);
5776 /* sizetype is sign extended, not zero extended. */
5777 else
5778 max_index_cst = tree_to_uhwi (fold_convert (size_type_node, max_index));
5781 /* Loop until there are no more initializers. */
5782 for (index = 0;
5783 d->cur != d->end && (!sized_array_p || index <= max_index_cst);
5784 ++index)
5786 tree elt_init;
5787 constructor_elt *old_cur = d->cur;
5789 check_array_designated_initializer (d->cur, index);
5790 elt_init = reshape_init_r (elt_type, d, /*first_initializer_p=*/false,
5791 complain);
5792 if (elt_init == error_mark_node)
5793 return error_mark_node;
5794 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init),
5795 size_int (index), elt_init);
5796 if (!TREE_CONSTANT (elt_init))
5797 TREE_CONSTANT (new_init) = false;
5799 /* This can happen with an invalid initializer (c++/54501). */
5800 if (d->cur == old_cur && !sized_array_p)
5801 break;
5804 return new_init;
5807 /* Subroutine of reshape_init_r, processes the initializers for arrays.
5808 Parameters are the same of reshape_init_r. */
5810 static tree
5811 reshape_init_array (tree type, reshape_iter *d, tsubst_flags_t complain)
5813 tree max_index = NULL_TREE;
5815 gcc_assert (TREE_CODE (type) == ARRAY_TYPE);
5817 if (TYPE_DOMAIN (type))
5818 max_index = array_type_nelts (type);
5820 return reshape_init_array_1 (TREE_TYPE (type), max_index, d, complain);
5823 /* Subroutine of reshape_init_r, processes the initializers for vectors.
5824 Parameters are the same of reshape_init_r. */
5826 static tree
5827 reshape_init_vector (tree type, reshape_iter *d, tsubst_flags_t complain)
5829 tree max_index = NULL_TREE;
5831 gcc_assert (VECTOR_TYPE_P (type));
5833 if (COMPOUND_LITERAL_P (d->cur->value))
5835 tree value = d->cur->value;
5836 if (!same_type_p (TREE_TYPE (value), type))
5838 if (complain & tf_error)
5839 error ("invalid type %qT as initializer for a vector of type %qT",
5840 TREE_TYPE (d->cur->value), type);
5841 value = error_mark_node;
5843 ++d->cur;
5844 return value;
5847 /* For a vector, we initialize it as an array of the appropriate size. */
5848 if (VECTOR_TYPE_P (type))
5849 max_index = size_int (TYPE_VECTOR_SUBPARTS (type) - 1);
5851 return reshape_init_array_1 (TREE_TYPE (type), max_index, d, complain);
5854 /* Subroutine of reshape_init_r, processes the initializers for classes
5855 or union. Parameters are the same of reshape_init_r. */
5857 static tree
5858 reshape_init_class (tree type, reshape_iter *d, bool first_initializer_p,
5859 tsubst_flags_t complain)
5861 tree field;
5862 tree new_init;
5864 gcc_assert (CLASS_TYPE_P (type));
5866 /* The initializer for a class is always a CONSTRUCTOR. */
5867 new_init = build_constructor (init_list_type_node, NULL);
5868 field = next_initializable_field (TYPE_FIELDS (type));
5870 if (!field)
5872 /* [dcl.init.aggr]
5874 An initializer for an aggregate member that is an
5875 empty class shall have the form of an empty
5876 initializer-list {}. */
5877 if (!first_initializer_p)
5879 if (complain & tf_error)
5880 error ("initializer for %qT must be brace-enclosed", type);
5881 return error_mark_node;
5883 return new_init;
5886 /* Loop through the initializable fields, gathering initializers. */
5887 while (d->cur != d->end)
5889 tree field_init;
5890 constructor_elt *old_cur = d->cur;
5892 /* Handle designated initializers, as an extension. */
5893 if (d->cur->index)
5895 if (d->cur->index == error_mark_node)
5896 return error_mark_node;
5898 if (TREE_CODE (d->cur->index) == FIELD_DECL)
5900 /* We already reshaped this. */
5901 if (field != d->cur->index)
5903 tree id = DECL_NAME (d->cur->index);
5904 gcc_assert (id);
5905 gcc_checking_assert (d->cur->index
5906 == get_class_binding (type, id, false));
5907 field = d->cur->index;
5910 else if (TREE_CODE (d->cur->index) == IDENTIFIER_NODE)
5911 field = get_class_binding (type, d->cur->index, false);
5912 else
5914 if (complain & tf_error)
5915 error ("%<[%E] =%> used in a GNU-style designated initializer"
5916 " for class %qT", d->cur->index, type);
5917 return error_mark_node;
5920 if (!field || TREE_CODE (field) != FIELD_DECL)
5922 if (complain & tf_error)
5923 error ("%qT has no non-static data member named %qD", type,
5924 d->cur->index);
5925 return error_mark_node;
5929 /* If we processed all the member of the class, we are done. */
5930 if (!field)
5931 break;
5933 field_init = reshape_init_r (TREE_TYPE (field), d,
5934 /*first_initializer_p=*/false, complain);
5935 if (field_init == error_mark_node)
5936 return error_mark_node;
5938 if (d->cur == old_cur && d->cur->index)
5940 /* This can happen with an invalid initializer for a flexible
5941 array member (c++/54441). */
5942 if (complain & tf_error)
5943 error ("invalid initializer for %q#D", field);
5944 return error_mark_node;
5947 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init), field, field_init);
5949 /* [dcl.init.aggr]
5951 When a union is initialized with a brace-enclosed
5952 initializer, the braces shall only contain an
5953 initializer for the first member of the union. */
5954 if (TREE_CODE (type) == UNION_TYPE)
5955 break;
5957 field = next_initializable_field (DECL_CHAIN (field));
5960 return new_init;
5963 /* Subroutine of reshape_init_r. We're in a context where C99 initializer
5964 designators are not valid; either complain or return true to indicate
5965 that reshape_init_r should return error_mark_node. */
5967 static bool
5968 has_designator_problem (reshape_iter *d, tsubst_flags_t complain)
5970 if (d->cur->index)
5972 if (complain & tf_error)
5973 error ("C99 designator %qE outside aggregate initializer",
5974 d->cur->index);
5975 else
5976 return true;
5978 return false;
5981 /* Subroutine of reshape_init, which processes a single initializer (part of
5982 a CONSTRUCTOR). TYPE is the type of the variable being initialized, D is the
5983 iterator within the CONSTRUCTOR which points to the initializer to process.
5984 FIRST_INITIALIZER_P is true if this is the first initializer of the
5985 outermost CONSTRUCTOR node. */
5987 static tree
5988 reshape_init_r (tree type, reshape_iter *d, bool first_initializer_p,
5989 tsubst_flags_t complain)
5991 tree init = d->cur->value;
5993 if (error_operand_p (init))
5994 return error_mark_node;
5996 if (first_initializer_p && !CP_AGGREGATE_TYPE_P (type)
5997 && has_designator_problem (d, complain))
5998 return error_mark_node;
6000 if (TREE_CODE (type) == COMPLEX_TYPE)
6002 /* A complex type can be initialized from one or two initializers,
6003 but braces are not elided. */
6004 d->cur++;
6005 if (BRACE_ENCLOSED_INITIALIZER_P (init))
6007 if (CONSTRUCTOR_NELTS (init) > 2)
6009 if (complain & tf_error)
6010 error ("too many initializers for %qT", type);
6011 else
6012 return error_mark_node;
6015 else if (first_initializer_p && d->cur != d->end)
6017 vec<constructor_elt, va_gc> *v = 0;
6018 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, init);
6019 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, d->cur->value);
6020 if (has_designator_problem (d, complain))
6021 return error_mark_node;
6022 d->cur++;
6023 init = build_constructor (init_list_type_node, v);
6025 return init;
6028 /* A non-aggregate type is always initialized with a single
6029 initializer. */
6030 if (!CP_AGGREGATE_TYPE_P (type))
6032 /* It is invalid to initialize a non-aggregate type with a
6033 brace-enclosed initializer before C++0x.
6034 We need to check for BRACE_ENCLOSED_INITIALIZER_P here because
6035 of g++.old-deja/g++.mike/p7626.C: a pointer-to-member constant is
6036 a CONSTRUCTOR (with a record type). */
6037 if (TREE_CODE (init) == CONSTRUCTOR
6038 /* Don't complain about a capture-init. */
6039 && !CONSTRUCTOR_IS_DIRECT_INIT (init)
6040 && BRACE_ENCLOSED_INITIALIZER_P (init)) /* p7626.C */
6042 if (SCALAR_TYPE_P (type))
6044 if (cxx_dialect < cxx11
6045 /* Isn't value-initialization. */
6046 || CONSTRUCTOR_NELTS (init) > 0)
6048 if (complain & tf_error)
6049 error ("braces around scalar initializer for type %qT",
6050 type);
6051 init = error_mark_node;
6054 else
6055 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
6058 d->cur++;
6059 return init;
6062 /* "If T is a class type and the initializer list has a single element of
6063 type cv U, where U is T or a class derived from T, the object is
6064 initialized from that element." Even if T is an aggregate. */
6065 if (cxx_dialect >= cxx11 && (CLASS_TYPE_P (type) || VECTOR_TYPE_P (type))
6066 && first_initializer_p
6067 && d->end - d->cur == 1
6068 && reference_related_p (type, TREE_TYPE (init)))
6070 d->cur++;
6071 return init;
6074 /* [dcl.init.aggr]
6076 All implicit type conversions (clause _conv_) are considered when
6077 initializing the aggregate member with an initializer from an
6078 initializer-list. If the initializer can initialize a member,
6079 the member is initialized. Otherwise, if the member is itself a
6080 non-empty subaggregate, brace elision is assumed and the
6081 initializer is considered for the initialization of the first
6082 member of the subaggregate. */
6083 if (TREE_CODE (init) != CONSTRUCTOR
6084 /* But don't try this for the first initializer, since that would be
6085 looking through the outermost braces; A a2 = { a1 }; is not a
6086 valid aggregate initialization. */
6087 && !first_initializer_p
6088 && (same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (init))
6089 || can_convert_arg (type, TREE_TYPE (init), init, LOOKUP_NORMAL,
6090 complain)))
6092 d->cur++;
6093 return init;
6096 /* [dcl.init.string]
6098 A char array (whether plain char, signed char, or unsigned char)
6099 can be initialized by a string-literal (optionally enclosed in
6100 braces); a wchar_t array can be initialized by a wide
6101 string-literal (optionally enclosed in braces). */
6102 if (TREE_CODE (type) == ARRAY_TYPE
6103 && char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (type))))
6105 tree str_init = init;
6107 /* Strip one level of braces if and only if they enclose a single
6108 element (as allowed by [dcl.init.string]). */
6109 if (!first_initializer_p
6110 && TREE_CODE (str_init) == CONSTRUCTOR
6111 && CONSTRUCTOR_NELTS (str_init) == 1)
6113 str_init = (*CONSTRUCTOR_ELTS (str_init))[0].value;
6116 /* If it's a string literal, then it's the initializer for the array
6117 as a whole. Otherwise, continue with normal initialization for
6118 array types (one value per array element). */
6119 if (TREE_CODE (str_init) == STRING_CST)
6121 if (has_designator_problem (d, complain))
6122 return error_mark_node;
6123 d->cur++;
6124 return str_init;
6128 /* The following cases are about aggregates. If we are not within a full
6129 initializer already, and there is not a CONSTRUCTOR, it means that there
6130 is a missing set of braces (that is, we are processing the case for
6131 which reshape_init exists). */
6132 if (!first_initializer_p)
6134 if (TREE_CODE (init) == CONSTRUCTOR)
6136 if (TREE_TYPE (init) && TYPE_PTRMEMFUNC_P (TREE_TYPE (init)))
6137 /* There is no need to reshape pointer-to-member function
6138 initializers, as they are always constructed correctly
6139 by the front end. */
6141 else if (COMPOUND_LITERAL_P (init))
6142 /* For a nested compound literal, there is no need to reshape since
6143 brace elision is not allowed. Even if we decided to allow it,
6144 we should add a call to reshape_init in finish_compound_literal,
6145 before calling digest_init, so changing this code would still
6146 not be necessary. */
6147 gcc_assert (!BRACE_ENCLOSED_INITIALIZER_P (init));
6148 else
6150 ++d->cur;
6151 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
6152 return reshape_init (type, init, complain);
6156 if (complain & tf_warning)
6157 warning (OPT_Wmissing_braces,
6158 "missing braces around initializer for %qT",
6159 type);
6162 /* Dispatch to specialized routines. */
6163 if (CLASS_TYPE_P (type))
6164 return reshape_init_class (type, d, first_initializer_p, complain);
6165 else if (TREE_CODE (type) == ARRAY_TYPE)
6166 return reshape_init_array (type, d, complain);
6167 else if (VECTOR_TYPE_P (type))
6168 return reshape_init_vector (type, d, complain);
6169 else
6170 gcc_unreachable();
6173 /* Undo the brace-elision allowed by [dcl.init.aggr] in a
6174 brace-enclosed aggregate initializer.
6176 INIT is the CONSTRUCTOR containing the list of initializers describing
6177 a brace-enclosed initializer for an entity of the indicated aggregate TYPE.
6178 It may not presently match the shape of the TYPE; for example:
6180 struct S { int a; int b; };
6181 struct S a[] = { 1, 2, 3, 4 };
6183 Here INIT will hold a vector of four elements, rather than a
6184 vector of two elements, each itself a vector of two elements. This
6185 routine transforms INIT from the former form into the latter. The
6186 revised CONSTRUCTOR node is returned. */
6188 tree
6189 reshape_init (tree type, tree init, tsubst_flags_t complain)
6191 vec<constructor_elt, va_gc> *v;
6192 reshape_iter d;
6193 tree new_init;
6195 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
6197 v = CONSTRUCTOR_ELTS (init);
6199 /* An empty constructor does not need reshaping, and it is always a valid
6200 initializer. */
6201 if (vec_safe_is_empty (v))
6202 return init;
6204 /* Handle [dcl.init.list] direct-list-initialization from
6205 single element of enumeration with a fixed underlying type. */
6206 if (is_direct_enum_init (type, init))
6208 tree elt = CONSTRUCTOR_ELT (init, 0)->value;
6209 type = cv_unqualified (type);
6210 if (check_narrowing (ENUM_UNDERLYING_TYPE (type), elt, complain))
6212 warning_sentinel w (warn_useless_cast);
6213 warning_sentinel w2 (warn_ignored_qualifiers);
6214 return cp_build_c_cast (type, elt, tf_warning_or_error);
6216 else
6217 return error_mark_node;
6220 /* Recurse on this CONSTRUCTOR. */
6221 d.cur = &(*v)[0];
6222 d.end = d.cur + v->length ();
6224 new_init = reshape_init_r (type, &d, true, complain);
6225 if (new_init == error_mark_node)
6226 return error_mark_node;
6228 /* Make sure all the element of the constructor were used. Otherwise,
6229 issue an error about exceeding initializers. */
6230 if (d.cur != d.end)
6232 if (complain & tf_error)
6233 error ("too many initializers for %qT", type);
6234 return error_mark_node;
6237 if (CONSTRUCTOR_IS_DIRECT_INIT (init)
6238 && BRACE_ENCLOSED_INITIALIZER_P (new_init))
6239 CONSTRUCTOR_IS_DIRECT_INIT (new_init) = true;
6241 return new_init;
6244 /* Verify array initializer. Returns true if errors have been reported. */
6246 bool
6247 check_array_initializer (tree decl, tree type, tree init)
6249 tree element_type = TREE_TYPE (type);
6251 /* The array type itself need not be complete, because the
6252 initializer may tell us how many elements are in the array.
6253 But, the elements of the array must be complete. */
6254 if (!COMPLETE_TYPE_P (complete_type (element_type)))
6256 if (decl)
6257 error_at (DECL_SOURCE_LOCATION (decl),
6258 "elements of array %q#D have incomplete type", decl);
6259 else
6260 error ("elements of array %q#T have incomplete type", type);
6261 return true;
6263 /* A compound literal can't have variable size. */
6264 if (init && !decl
6265 && ((COMPLETE_TYPE_P (type) && !TREE_CONSTANT (TYPE_SIZE (type)))
6266 || !TREE_CONSTANT (TYPE_SIZE (element_type))))
6268 error ("variable-sized compound literal");
6269 return true;
6271 return false;
6274 /* Subroutine of check_initializer; args are passed down from that function.
6275 Set stmts_are_full_exprs_p to 1 across a call to build_aggr_init. */
6277 static tree
6278 build_aggr_init_full_exprs (tree decl, tree init, int flags)
6281 gcc_assert (stmts_are_full_exprs_p ());
6282 return build_aggr_init (decl, init, flags, tf_warning_or_error);
6285 /* Verify INIT (the initializer for DECL), and record the
6286 initialization in DECL_INITIAL, if appropriate. CLEANUP is as for
6287 grok_reference_init.
6289 If the return value is non-NULL, it is an expression that must be
6290 evaluated dynamically to initialize DECL. */
6292 static tree
6293 check_initializer (tree decl, tree init, int flags, vec<tree, va_gc> **cleanups)
6295 tree type = TREE_TYPE (decl);
6296 tree init_code = NULL;
6297 tree core_type;
6299 /* Things that are going to be initialized need to have complete
6300 type. */
6301 TREE_TYPE (decl) = type = complete_type (TREE_TYPE (decl));
6303 if (DECL_HAS_VALUE_EXPR_P (decl))
6305 /* A variable with DECL_HAS_VALUE_EXPR_P set is just a placeholder,
6306 it doesn't have storage to be initialized. */
6307 gcc_assert (init == NULL_TREE);
6308 return NULL_TREE;
6311 if (type == error_mark_node)
6312 /* We will have already complained. */
6313 return NULL_TREE;
6315 if (TREE_CODE (type) == ARRAY_TYPE)
6317 if (check_array_initializer (decl, type, init))
6318 return NULL_TREE;
6320 else if (!COMPLETE_TYPE_P (type))
6322 error_at (DECL_SOURCE_LOCATION (decl),
6323 "%q#D has incomplete type", decl);
6324 TREE_TYPE (decl) = error_mark_node;
6325 return NULL_TREE;
6327 else
6328 /* There is no way to make a variable-sized class type in GNU C++. */
6329 gcc_assert (TREE_CONSTANT (TYPE_SIZE (type)));
6331 if (init && BRACE_ENCLOSED_INITIALIZER_P (init))
6333 int init_len = CONSTRUCTOR_NELTS (init);
6334 if (SCALAR_TYPE_P (type))
6336 if (init_len == 0)
6338 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
6339 init = build_zero_init (type, NULL_TREE, false);
6341 else if (init_len != 1 && TREE_CODE (type) != COMPLEX_TYPE)
6343 error_at (cp_expr_loc_or_loc (init, DECL_SOURCE_LOCATION (decl)),
6344 "scalar object %qD requires one element in "
6345 "initializer", decl);
6346 TREE_TYPE (decl) = error_mark_node;
6347 return NULL_TREE;
6352 if (TREE_CODE (decl) == CONST_DECL)
6354 gcc_assert (!TYPE_REF_P (type));
6356 DECL_INITIAL (decl) = init;
6358 gcc_assert (init != NULL_TREE);
6359 init = NULL_TREE;
6361 else if (!init && DECL_REALLY_EXTERN (decl))
6363 else if (init || type_build_ctor_call (type)
6364 || TYPE_REF_P (type))
6366 if (TYPE_REF_P (type))
6368 init = grok_reference_init (decl, type, init, flags);
6369 flags |= LOOKUP_ALREADY_DIGESTED;
6371 else if (!init)
6372 check_for_uninitialized_const_var (decl, /*constexpr_context_p=*/false,
6373 tf_warning_or_error);
6374 /* Do not reshape constructors of vectors (they don't need to be
6375 reshaped. */
6376 else if (BRACE_ENCLOSED_INITIALIZER_P (init))
6378 if (is_std_init_list (type))
6380 init = perform_implicit_conversion (type, init,
6381 tf_warning_or_error);
6382 flags |= LOOKUP_ALREADY_DIGESTED;
6384 else if (TYPE_NON_AGGREGATE_CLASS (type))
6386 /* Don't reshape if the class has constructors. */
6387 if (cxx_dialect == cxx98)
6388 error_at (cp_expr_loc_or_loc (init, DECL_SOURCE_LOCATION (decl)),
6389 "in C++98 %qD must be initialized by "
6390 "constructor, not by %<{...}%>",
6391 decl);
6393 else if (VECTOR_TYPE_P (type) && TYPE_VECTOR_OPAQUE (type))
6395 error ("opaque vector types cannot be initialized");
6396 init = error_mark_node;
6398 else
6400 init = reshape_init (type, init, tf_warning_or_error);
6401 flags |= LOOKUP_NO_NARROWING;
6404 else if (TREE_CODE (init) == TREE_LIST
6405 && TREE_TYPE (init) != unknown_type_node
6406 && !MAYBE_CLASS_TYPE_P (type))
6408 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
6410 /* We get here with code like `int a (2);' */
6411 init = build_x_compound_expr_from_list (init, ELK_INIT,
6412 tf_warning_or_error);
6415 /* If DECL has an array type without a specific bound, deduce the
6416 array size from the initializer. */
6417 maybe_deduce_size_from_array_init (decl, init);
6418 type = TREE_TYPE (decl);
6419 if (type == error_mark_node)
6420 return NULL_TREE;
6422 if (((type_build_ctor_call (type) || CLASS_TYPE_P (type))
6423 && !(flags & LOOKUP_ALREADY_DIGESTED)
6424 && !(init && BRACE_ENCLOSED_INITIALIZER_P (init)
6425 && CP_AGGREGATE_TYPE_P (type)
6426 && (CLASS_TYPE_P (type)
6427 || !TYPE_NEEDS_CONSTRUCTING (type)
6428 || type_has_extended_temps (type))))
6429 || (DECL_DECOMPOSITION_P (decl) && TREE_CODE (type) == ARRAY_TYPE))
6431 init_code = build_aggr_init_full_exprs (decl, init, flags);
6433 /* A constructor call is a non-trivial initializer even if
6434 it isn't explicitly written. */
6435 if (TREE_SIDE_EFFECTS (init_code))
6436 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = true;
6438 /* If this is a constexpr initializer, expand_default_init will
6439 have returned an INIT_EXPR rather than a CALL_EXPR. In that
6440 case, pull the initializer back out and pass it down into
6441 store_init_value. */
6442 while (TREE_CODE (init_code) == EXPR_STMT
6443 || TREE_CODE (init_code) == CONVERT_EXPR)
6444 init_code = TREE_OPERAND (init_code, 0);
6445 if (TREE_CODE (init_code) == INIT_EXPR)
6447 init = TREE_OPERAND (init_code, 1);
6448 init_code = NULL_TREE;
6449 /* Don't call digest_init; it's unnecessary and will complain
6450 about aggregate initialization of non-aggregate classes. */
6451 flags |= LOOKUP_ALREADY_DIGESTED;
6453 else if (DECL_DECLARED_CONSTEXPR_P (decl))
6455 /* Declared constexpr, but no suitable initializer; massage
6456 init appropriately so we can pass it into store_init_value
6457 for the error. */
6458 if (CLASS_TYPE_P (type)
6459 && (!init || TREE_CODE (init) == TREE_LIST))
6461 init = build_functional_cast (type, init, tf_none);
6462 if (TREE_CODE (init) == TARGET_EXPR)
6463 TARGET_EXPR_DIRECT_INIT_P (init) = true;
6465 init_code = NULL_TREE;
6467 else
6468 init = NULL_TREE;
6471 if (init && TREE_CODE (init) != TREE_VEC)
6473 /* In aggregate initialization of a variable, each element
6474 initialization is a full-expression because there is no
6475 enclosing expression. */
6476 gcc_assert (stmts_are_full_exprs_p ());
6478 init_code = store_init_value (decl, init, cleanups, flags);
6480 if (pedantic && TREE_CODE (type) == ARRAY_TYPE
6481 && DECL_INITIAL (decl)
6482 && TREE_CODE (DECL_INITIAL (decl)) == STRING_CST
6483 && PAREN_STRING_LITERAL_P (DECL_INITIAL (decl)))
6484 warning_at (cp_expr_loc_or_loc (DECL_INITIAL (decl),
6485 DECL_SOURCE_LOCATION (decl)),
6486 0, "array %qD initialized by parenthesized "
6487 "string literal %qE",
6488 decl, DECL_INITIAL (decl));
6489 init = NULL;
6492 else
6494 if (CLASS_TYPE_P (core_type = strip_array_types (type))
6495 && (CLASSTYPE_READONLY_FIELDS_NEED_INIT (core_type)
6496 || CLASSTYPE_REF_FIELDS_NEED_INIT (core_type)))
6497 diagnose_uninitialized_cst_or_ref_member (core_type, /*using_new=*/false,
6498 /*complain=*/true);
6500 check_for_uninitialized_const_var (decl, /*constexpr_context_p=*/false,
6501 tf_warning_or_error);
6504 if (init && init != error_mark_node)
6505 init_code = build2 (INIT_EXPR, type, decl, init);
6507 if (init_code)
6509 /* We might have set these in cp_finish_decl. */
6510 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = false;
6511 TREE_CONSTANT (decl) = false;
6514 if (init_code
6515 && (DECL_IN_AGGR_P (decl)
6516 && DECL_INITIALIZED_IN_CLASS_P (decl)
6517 && !DECL_VAR_DECLARED_INLINE_P (decl)))
6519 static int explained = 0;
6521 if (cxx_dialect < cxx11)
6522 error ("initializer invalid for static member with constructor");
6523 else if (cxx_dialect < cxx17)
6524 error ("non-constant in-class initialization invalid for static "
6525 "member %qD", decl);
6526 else
6527 error ("non-constant in-class initialization invalid for non-inline "
6528 "static member %qD", decl);
6529 if (!explained)
6531 inform (input_location,
6532 "(an out of class initialization is required)");
6533 explained = 1;
6535 return NULL_TREE;
6538 return init_code;
6541 /* If DECL is not a local variable, give it RTL. */
6543 static void
6544 make_rtl_for_nonlocal_decl (tree decl, tree init, const char* asmspec)
6546 int toplev = toplevel_bindings_p ();
6547 int defer_p;
6549 /* Set the DECL_ASSEMBLER_NAME for the object. */
6550 if (asmspec)
6552 /* The `register' keyword, when used together with an
6553 asm-specification, indicates that the variable should be
6554 placed in a particular register. */
6555 if (VAR_P (decl) && DECL_REGISTER (decl))
6557 set_user_assembler_name (decl, asmspec);
6558 DECL_HARD_REGISTER (decl) = 1;
6560 else
6562 if (TREE_CODE (decl) == FUNCTION_DECL
6563 && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
6564 set_builtin_user_assembler_name (decl, asmspec);
6565 set_user_assembler_name (decl, asmspec);
6569 /* Handle non-variables up front. */
6570 if (!VAR_P (decl))
6572 rest_of_decl_compilation (decl, toplev, at_eof);
6573 return;
6576 /* If we see a class member here, it should be a static data
6577 member. */
6578 if (DECL_LANG_SPECIFIC (decl) && DECL_IN_AGGR_P (decl))
6580 gcc_assert (TREE_STATIC (decl));
6581 /* An in-class declaration of a static data member should be
6582 external; it is only a declaration, and not a definition. */
6583 if (init == NULL_TREE)
6584 gcc_assert (DECL_EXTERNAL (decl)
6585 || !TREE_PUBLIC (decl)
6586 || DECL_INLINE_VAR_P (decl));
6589 /* We don't create any RTL for local variables. */
6590 if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
6591 return;
6593 /* We defer emission of local statics until the corresponding
6594 DECL_EXPR is expanded. But with constexpr its function might never
6595 be expanded, so go ahead and tell cgraph about the variable now. */
6596 defer_p = ((DECL_FUNCTION_SCOPE_P (decl)
6597 && !var_in_maybe_constexpr_fn (decl))
6598 || DECL_VIRTUAL_P (decl));
6600 /* Defer template instantiations. */
6601 if (DECL_LANG_SPECIFIC (decl)
6602 && DECL_IMPLICIT_INSTANTIATION (decl))
6603 defer_p = 1;
6605 /* If we're not deferring, go ahead and assemble the variable. */
6606 if (!defer_p)
6607 rest_of_decl_compilation (decl, toplev, at_eof);
6610 /* walk_tree helper for wrap_temporary_cleanups, below. */
6612 static tree
6613 wrap_cleanups_r (tree *stmt_p, int *walk_subtrees, void *data)
6615 /* Stop at types or full-expression boundaries. */
6616 if (TYPE_P (*stmt_p)
6617 || TREE_CODE (*stmt_p) == CLEANUP_POINT_EXPR)
6619 *walk_subtrees = 0;
6620 return NULL_TREE;
6623 if (TREE_CODE (*stmt_p) == TARGET_EXPR)
6625 tree guard = (tree)data;
6626 tree tcleanup = TARGET_EXPR_CLEANUP (*stmt_p);
6628 tcleanup = build2 (TRY_CATCH_EXPR, void_type_node, tcleanup, guard);
6629 /* Tell honor_protect_cleanup_actions to handle this as a separate
6630 cleanup. */
6631 TRY_CATCH_IS_CLEANUP (tcleanup) = 1;
6633 TARGET_EXPR_CLEANUP (*stmt_p) = tcleanup;
6636 return NULL_TREE;
6639 /* We're initializing a local variable which has a cleanup GUARD. If there
6640 are any temporaries used in the initializer INIT of this variable, we
6641 need to wrap their cleanups with TRY_CATCH_EXPR (, GUARD) so that the
6642 variable will be cleaned up properly if one of them throws.
6644 Unfortunately, there's no way to express this properly in terms of
6645 nesting, as the regions for the temporaries overlap the region for the
6646 variable itself; if there are two temporaries, the variable needs to be
6647 the first thing destroyed if either of them throws. However, we only
6648 want to run the variable's cleanup if it actually got constructed. So
6649 we need to guard the temporary cleanups with the variable's cleanup if
6650 they are run on the normal path, but not if they are run on the
6651 exceptional path. We implement this by telling
6652 honor_protect_cleanup_actions to strip the variable cleanup from the
6653 exceptional path. */
6655 static void
6656 wrap_temporary_cleanups (tree init, tree guard)
6658 cp_walk_tree_without_duplicates (&init, wrap_cleanups_r, (void *)guard);
6661 /* Generate code to initialize DECL (a local variable). */
6663 static void
6664 initialize_local_var (tree decl, tree init)
6666 tree type = TREE_TYPE (decl);
6667 tree cleanup;
6668 int already_used;
6670 gcc_assert (VAR_P (decl)
6671 || TREE_CODE (decl) == RESULT_DECL);
6672 gcc_assert (!TREE_STATIC (decl));
6674 if (DECL_SIZE (decl) == NULL_TREE)
6676 /* If we used it already as memory, it must stay in memory. */
6677 DECL_INITIAL (decl) = NULL_TREE;
6678 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
6679 return;
6682 if (type == error_mark_node)
6683 return;
6685 /* Compute and store the initial value. */
6686 already_used = TREE_USED (decl) || TREE_USED (type);
6687 if (TREE_USED (type))
6688 DECL_READ_P (decl) = 1;
6690 /* Generate a cleanup, if necessary. */
6691 cleanup = cxx_maybe_build_cleanup (decl, tf_warning_or_error);
6693 /* Perform the initialization. */
6694 if (init)
6696 tree rinit = (TREE_CODE (init) == INIT_EXPR
6697 ? TREE_OPERAND (init, 1) : NULL_TREE);
6698 if (rinit && !TREE_SIDE_EFFECTS (rinit))
6700 /* Stick simple initializers in DECL_INITIAL so that
6701 -Wno-init-self works (c++/34772). */
6702 gcc_assert (TREE_OPERAND (init, 0) == decl);
6703 DECL_INITIAL (decl) = rinit;
6705 if (warn_init_self && TYPE_REF_P (type))
6707 STRIP_NOPS (rinit);
6708 if (rinit == decl)
6709 warning_at (DECL_SOURCE_LOCATION (decl),
6710 OPT_Winit_self,
6711 "reference %qD is initialized with itself", decl);
6714 else
6716 int saved_stmts_are_full_exprs_p;
6718 /* If we're only initializing a single object, guard the
6719 destructors of any temporaries used in its initializer with
6720 its destructor. This isn't right for arrays because each
6721 element initialization is a full-expression. */
6722 if (cleanup && TREE_CODE (type) != ARRAY_TYPE)
6723 wrap_temporary_cleanups (init, cleanup);
6725 gcc_assert (building_stmt_list_p ());
6726 saved_stmts_are_full_exprs_p = stmts_are_full_exprs_p ();
6727 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
6728 finish_expr_stmt (init);
6729 current_stmt_tree ()->stmts_are_full_exprs_p =
6730 saved_stmts_are_full_exprs_p;
6734 /* Set this to 0 so we can tell whether an aggregate which was
6735 initialized was ever used. Don't do this if it has a
6736 destructor, so we don't complain about the 'resource
6737 allocation is initialization' idiom. Now set
6738 attribute((unused)) on types so decls of that type will be
6739 marked used. (see TREE_USED, above.) */
6740 if (TYPE_NEEDS_CONSTRUCTING (type)
6741 && ! already_used
6742 && TYPE_HAS_TRIVIAL_DESTRUCTOR (type)
6743 && DECL_NAME (decl))
6744 TREE_USED (decl) = 0;
6745 else if (already_used)
6746 TREE_USED (decl) = 1;
6748 if (cleanup)
6749 finish_decl_cleanup (decl, cleanup);
6752 /* DECL is a VAR_DECL for a compiler-generated variable with static
6753 storage duration (like a virtual table) whose initializer is a
6754 compile-time constant. Initialize the variable and provide it to the
6755 back end. */
6757 void
6758 initialize_artificial_var (tree decl, vec<constructor_elt, va_gc> *v)
6760 tree init;
6761 gcc_assert (DECL_ARTIFICIAL (decl));
6762 init = build_constructor (TREE_TYPE (decl), v);
6763 gcc_assert (TREE_CODE (init) == CONSTRUCTOR);
6764 DECL_INITIAL (decl) = init;
6765 DECL_INITIALIZED_P (decl) = 1;
6766 determine_visibility (decl);
6767 layout_var_decl (decl);
6768 maybe_commonize_var (decl);
6769 make_rtl_for_nonlocal_decl (decl, init, /*asmspec=*/NULL);
6772 /* INIT is the initializer for a variable, as represented by the
6773 parser. Returns true iff INIT is value-dependent. */
6775 static bool
6776 value_dependent_init_p (tree init)
6778 if (TREE_CODE (init) == TREE_LIST)
6779 /* A parenthesized initializer, e.g.: int i (3, 2); ? */
6780 return any_value_dependent_elements_p (init);
6781 else if (TREE_CODE (init) == CONSTRUCTOR)
6782 /* A brace-enclosed initializer, e.g.: int i = { 3 }; ? */
6784 if (dependent_type_p (TREE_TYPE (init)))
6785 return true;
6787 vec<constructor_elt, va_gc> *elts;
6788 size_t nelts;
6789 size_t i;
6791 elts = CONSTRUCTOR_ELTS (init);
6792 nelts = vec_safe_length (elts);
6793 for (i = 0; i < nelts; ++i)
6794 if (value_dependent_init_p ((*elts)[i].value))
6795 return true;
6797 else
6798 /* It must be a simple expression, e.g., int i = 3; */
6799 return value_dependent_expression_p (init);
6801 return false;
6804 // Returns true if a DECL is VAR_DECL with the concept specifier.
6805 static inline bool
6806 is_concept_var (tree decl)
6808 return (VAR_P (decl)
6809 // Not all variables have DECL_LANG_SPECIFIC.
6810 && DECL_LANG_SPECIFIC (decl)
6811 && DECL_DECLARED_CONCEPT_P (decl));
6814 /* A helper function to be called via walk_tree. If any label exists
6815 under *TP, it is (going to be) forced. Set has_forced_label_in_static. */
6817 static tree
6818 notice_forced_label_r (tree *tp, int *walk_subtrees, void *)
6820 if (TYPE_P (*tp))
6821 *walk_subtrees = 0;
6822 if (TREE_CODE (*tp) == LABEL_DECL)
6823 cfun->has_forced_label_in_static = 1;
6824 return NULL_TREE;
6827 /* Finish processing of a declaration;
6828 install its line number and initial value.
6829 If the length of an array type is not known before,
6830 it must be determined now, from the initial value, or it is an error.
6832 INIT is the initializer (if any) for DECL. If INIT_CONST_EXPR_P is
6833 true, then INIT is an integral constant expression.
6835 FLAGS is LOOKUP_ONLYCONVERTING if the = init syntax was used, else 0
6836 if the (init) syntax was used. */
6838 void
6839 cp_finish_decl (tree decl, tree init, bool init_const_expr_p,
6840 tree asmspec_tree, int flags)
6842 tree type;
6843 vec<tree, va_gc> *cleanups = NULL;
6844 const char *asmspec = NULL;
6845 int was_readonly = 0;
6846 bool var_definition_p = false;
6847 tree auto_node;
6849 if (decl == error_mark_node)
6850 return;
6851 else if (! decl)
6853 if (init)
6854 error ("assignment (not initialization) in declaration");
6855 return;
6858 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
6859 /* Parameters are handled by store_parm_decls, not cp_finish_decl. */
6860 gcc_assert (TREE_CODE (decl) != PARM_DECL);
6862 type = TREE_TYPE (decl);
6863 if (type == error_mark_node)
6864 return;
6866 /* Warn about register storage specifiers except when in GNU global
6867 or local register variable extension. */
6868 if (VAR_P (decl) && DECL_REGISTER (decl) && asmspec_tree == NULL_TREE)
6870 if (cxx_dialect >= cxx17)
6871 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
6872 "ISO C++17 does not allow %<register%> storage "
6873 "class specifier");
6874 else
6875 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
6876 "%<register%> storage class specifier used");
6879 /* If a name was specified, get the string. */
6880 if (at_namespace_scope_p ())
6881 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
6882 if (asmspec_tree && asmspec_tree != error_mark_node)
6883 asmspec = TREE_STRING_POINTER (asmspec_tree);
6885 if (current_class_type
6886 && CP_DECL_CONTEXT (decl) == current_class_type
6887 && TYPE_BEING_DEFINED (current_class_type)
6888 && !CLASSTYPE_TEMPLATE_INSTANTIATION (current_class_type)
6889 && (DECL_INITIAL (decl) || init))
6890 DECL_INITIALIZED_IN_CLASS_P (decl) = 1;
6892 /* Do auto deduction unless decl is a function or an uninstantiated
6893 template specialization. */
6894 if (TREE_CODE (decl) != FUNCTION_DECL
6895 && !(init == NULL_TREE
6896 && DECL_LANG_SPECIFIC (decl)
6897 && DECL_TEMPLATE_INSTANTIATION (decl)
6898 && !DECL_TEMPLATE_INSTANTIATED (decl))
6899 && (auto_node = type_uses_auto (type)))
6901 tree d_init;
6902 if (init == NULL_TREE)
6903 gcc_assert (CLASS_PLACEHOLDER_TEMPLATE (auto_node));
6904 d_init = init;
6905 if (d_init)
6907 if (TREE_CODE (d_init) == TREE_LIST
6908 && !CLASS_PLACEHOLDER_TEMPLATE (auto_node))
6909 d_init = build_x_compound_expr_from_list (d_init, ELK_INIT,
6910 tf_warning_or_error);
6911 d_init = resolve_nondeduced_context (d_init, tf_warning_or_error);
6913 enum auto_deduction_context adc = adc_variable_type;
6914 if (VAR_P (decl) && DECL_DECOMPOSITION_P (decl))
6915 adc = adc_decomp_type;
6916 type = TREE_TYPE (decl) = do_auto_deduction (type, d_init, auto_node,
6917 tf_warning_or_error, adc,
6918 NULL_TREE, flags);
6919 if (type == error_mark_node)
6920 return;
6921 if (TREE_CODE (type) == FUNCTION_TYPE)
6923 error ("initializer for %<decltype(auto) %D%> has function type "
6924 "(did you forget the %<()%> ?)", decl);
6925 TREE_TYPE (decl) = error_mark_node;
6926 return;
6928 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
6931 if (ensure_literal_type_for_constexpr_object (decl) == error_mark_node)
6933 DECL_DECLARED_CONSTEXPR_P (decl) = 0;
6934 if (VAR_P (decl) && DECL_CLASS_SCOPE_P (decl))
6936 init = NULL_TREE;
6937 DECL_EXTERNAL (decl) = 1;
6941 if (VAR_P (decl)
6942 && DECL_CLASS_SCOPE_P (decl)
6943 && DECL_INITIALIZED_IN_CLASS_P (decl))
6944 check_static_variable_definition (decl, type);
6946 if (init && TREE_CODE (decl) == FUNCTION_DECL)
6948 tree clone;
6949 if (init == ridpointers[(int)RID_DELETE])
6951 /* FIXME check this is 1st decl. */
6952 DECL_DELETED_FN (decl) = 1;
6953 DECL_DECLARED_INLINE_P (decl) = 1;
6954 DECL_INITIAL (decl) = error_mark_node;
6955 FOR_EACH_CLONE (clone, decl)
6957 DECL_DELETED_FN (clone) = 1;
6958 DECL_DECLARED_INLINE_P (clone) = 1;
6959 DECL_INITIAL (clone) = error_mark_node;
6961 init = NULL_TREE;
6963 else if (init == ridpointers[(int)RID_DEFAULT])
6965 if (defaultable_fn_check (decl))
6966 DECL_DEFAULTED_FN (decl) = 1;
6967 else
6968 DECL_INITIAL (decl) = NULL_TREE;
6972 if (init && VAR_P (decl))
6974 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = 1;
6975 /* If DECL is a reference, then we want to know whether init is a
6976 reference constant; init_const_expr_p as passed tells us whether
6977 it's an rvalue constant. */
6978 if (TYPE_REF_P (type))
6979 init_const_expr_p = potential_constant_expression (init);
6980 if (init_const_expr_p)
6982 /* Set these flags now for templates. We'll update the flags in
6983 store_init_value for instantiations. */
6984 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = 1;
6985 if (decl_maybe_constant_var_p (decl)
6986 /* FIXME setting TREE_CONSTANT on refs breaks the back end. */
6987 && !TYPE_REF_P (type))
6988 TREE_CONSTANT (decl) = 1;
6992 if (processing_template_decl)
6994 bool type_dependent_p;
6996 /* Add this declaration to the statement-tree. */
6997 if (at_function_scope_p ())
6998 add_decl_expr (decl);
7000 type_dependent_p = dependent_type_p (type);
7002 if (check_for_bare_parameter_packs (init))
7004 init = NULL_TREE;
7005 DECL_INITIAL (decl) = NULL_TREE;
7008 /* Generally, initializers in templates are expanded when the
7009 template is instantiated. But, if DECL is a variable constant
7010 then it can be used in future constant expressions, so its value
7011 must be available. */
7013 bool dep_init = false;
7015 if (!VAR_P (decl) || type_dependent_p)
7016 /* We can't do anything if the decl has dependent type. */;
7017 else if (!init && is_concept_var (decl))
7019 error ("variable concept has no initializer");
7020 init = boolean_true_node;
7022 else if (init
7023 && init_const_expr_p
7024 && !TYPE_REF_P (type)
7025 && decl_maybe_constant_var_p (decl)
7026 && !(dep_init = value_dependent_init_p (init)))
7028 /* This variable seems to be a non-dependent constant, so process
7029 its initializer. If check_initializer returns non-null the
7030 initialization wasn't constant after all. */
7031 tree init_code;
7032 cleanups = make_tree_vector ();
7033 init_code = check_initializer (decl, init, flags, &cleanups);
7034 if (init_code == NULL_TREE)
7035 init = NULL_TREE;
7036 release_tree_vector (cleanups);
7038 else if (!DECL_PRETTY_FUNCTION_P (decl))
7040 /* Deduce array size even if the initializer is dependent. */
7041 maybe_deduce_size_from_array_init (decl, init);
7042 /* And complain about multiple initializers. */
7043 if (init && TREE_CODE (init) == TREE_LIST && TREE_CHAIN (init)
7044 && !MAYBE_CLASS_TYPE_P (type))
7045 init = build_x_compound_expr_from_list (init, ELK_INIT,
7046 tf_warning_or_error);
7049 if (init)
7050 DECL_INITIAL (decl) = init;
7052 if (dep_init)
7054 retrofit_lang_decl (decl);
7055 SET_DECL_DEPENDENT_INIT_P (decl, true);
7057 return;
7060 /* Just store non-static data member initializers for later. */
7061 if (init && TREE_CODE (decl) == FIELD_DECL)
7062 DECL_INITIAL (decl) = init;
7064 /* Take care of TYPE_DECLs up front. */
7065 if (TREE_CODE (decl) == TYPE_DECL)
7067 if (type != error_mark_node
7068 && MAYBE_CLASS_TYPE_P (type) && DECL_NAME (decl))
7070 if (TREE_TYPE (DECL_NAME (decl)) && TREE_TYPE (decl) != type)
7071 warning (0, "shadowing previous type declaration of %q#D", decl);
7072 set_identifier_type_value (DECL_NAME (decl), decl);
7075 /* If we have installed this as the canonical typedef for this
7076 type, and that type has not been defined yet, delay emitting
7077 the debug information for it, as we will emit it later. */
7078 if (TYPE_MAIN_DECL (TREE_TYPE (decl)) == decl
7079 && !COMPLETE_TYPE_P (TREE_TYPE (decl)))
7080 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
7082 rest_of_decl_compilation (decl, DECL_FILE_SCOPE_P (decl),
7083 at_eof);
7084 return;
7087 /* A reference will be modified here, as it is initialized. */
7088 if (! DECL_EXTERNAL (decl)
7089 && TREE_READONLY (decl)
7090 && TYPE_REF_P (type))
7092 was_readonly = 1;
7093 TREE_READONLY (decl) = 0;
7096 if (VAR_P (decl))
7098 /* If this is a local variable that will need a mangled name,
7099 register it now. We must do this before processing the
7100 initializer for the variable, since the initialization might
7101 require a guard variable, and since the mangled name of the
7102 guard variable will depend on the mangled name of this
7103 variable. */
7104 if (DECL_FUNCTION_SCOPE_P (decl)
7105 && TREE_STATIC (decl)
7106 && !DECL_ARTIFICIAL (decl))
7108 push_local_name (decl);
7109 /* Normally has_forced_label_in_static is set during GIMPLE
7110 lowering, but [cd]tors are never actually compiled directly.
7111 We need to set this early so we can deal with the label
7112 address extension. */
7113 if ((DECL_CONSTRUCTOR_P (current_function_decl)
7114 || DECL_DESTRUCTOR_P (current_function_decl))
7115 && init)
7117 walk_tree (&init, notice_forced_label_r, NULL, NULL);
7118 add_local_decl (cfun, decl);
7120 /* And make sure it's in the symbol table for
7121 c_parse_final_cleanups to find. */
7122 varpool_node::get_create (decl);
7125 /* Convert the initializer to the type of DECL, if we have not
7126 already initialized DECL. */
7127 if (!DECL_INITIALIZED_P (decl)
7128 /* If !DECL_EXTERNAL then DECL is being defined. In the
7129 case of a static data member initialized inside the
7130 class-specifier, there can be an initializer even if DECL
7131 is *not* defined. */
7132 && (!DECL_EXTERNAL (decl) || init))
7134 cleanups = make_tree_vector ();
7135 init = check_initializer (decl, init, flags, &cleanups);
7137 /* Handle:
7139 [dcl.init]
7141 The memory occupied by any object of static storage
7142 duration is zero-initialized at program startup before
7143 any other initialization takes place.
7145 We cannot create an appropriate initializer until after
7146 the type of DECL is finalized. If DECL_INITIAL is set,
7147 then the DECL is statically initialized, and any
7148 necessary zero-initialization has already been performed. */
7149 if (TREE_STATIC (decl) && !DECL_INITIAL (decl))
7150 DECL_INITIAL (decl) = build_zero_init (TREE_TYPE (decl),
7151 /*nelts=*/NULL_TREE,
7152 /*static_storage_p=*/true);
7153 /* Remember that the initialization for this variable has
7154 taken place. */
7155 DECL_INITIALIZED_P (decl) = 1;
7156 /* This declaration is the definition of this variable,
7157 unless we are initializing a static data member within
7158 the class specifier. */
7159 if (!DECL_EXTERNAL (decl))
7160 var_definition_p = true;
7162 /* If the variable has an array type, lay out the type, even if
7163 there is no initializer. It is valid to index through the
7164 array, and we must get TYPE_ALIGN set correctly on the array
7165 type. */
7166 else if (TREE_CODE (type) == ARRAY_TYPE)
7167 layout_type (type);
7169 if (TREE_STATIC (decl)
7170 && !at_function_scope_p ()
7171 && current_function_decl == NULL)
7172 /* So decl is a global variable or a static member of a
7173 non local class. Record the types it uses
7174 so that we can decide later to emit debug info for them. */
7175 record_types_used_by_current_var_decl (decl);
7178 /* Add this declaration to the statement-tree. This needs to happen
7179 after the call to check_initializer so that the DECL_EXPR for a
7180 reference temp is added before the DECL_EXPR for the reference itself. */
7181 if (DECL_FUNCTION_SCOPE_P (decl))
7183 /* If we're building a variable sized type, and we might be
7184 reachable other than via the top of the current binding
7185 level, then create a new BIND_EXPR so that we deallocate
7186 the object at the right time. */
7187 if (VAR_P (decl)
7188 && DECL_SIZE (decl)
7189 && !TREE_CONSTANT (DECL_SIZE (decl))
7190 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list))
7192 tree bind;
7193 bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
7194 TREE_SIDE_EFFECTS (bind) = 1;
7195 add_stmt (bind);
7196 BIND_EXPR_BODY (bind) = push_stmt_list ();
7198 add_decl_expr (decl);
7201 /* Let the middle end know about variables and functions -- but not
7202 static data members in uninstantiated class templates. */
7203 if (VAR_OR_FUNCTION_DECL_P (decl))
7205 if (VAR_P (decl))
7207 layout_var_decl (decl);
7208 maybe_commonize_var (decl);
7211 /* This needs to happen after the linkage is set. */
7212 determine_visibility (decl);
7214 if (var_definition_p && TREE_STATIC (decl))
7216 /* If a TREE_READONLY variable needs initialization
7217 at runtime, it is no longer readonly and we need to
7218 avoid MEM_READONLY_P being set on RTL created for it. */
7219 if (init)
7221 if (TREE_READONLY (decl))
7222 TREE_READONLY (decl) = 0;
7223 was_readonly = 0;
7225 else if (was_readonly)
7226 TREE_READONLY (decl) = 1;
7228 /* Likewise if it needs destruction. */
7229 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
7230 TREE_READONLY (decl) = 0;
7233 make_rtl_for_nonlocal_decl (decl, init, asmspec);
7235 /* Check for abstractness of the type. Notice that there is no
7236 need to strip array types here since the check for those types
7237 is already done within create_array_type_for_decl. */
7238 abstract_virtuals_error (decl, type);
7240 if (TREE_TYPE (decl) == error_mark_node)
7241 /* No initialization required. */
7243 else if (TREE_CODE (decl) == FUNCTION_DECL)
7245 if (init)
7247 if (init == ridpointers[(int)RID_DEFAULT])
7249 /* An out-of-class default definition is defined at
7250 the point where it is explicitly defaulted. */
7251 if (DECL_DELETED_FN (decl))
7252 maybe_explain_implicit_delete (decl);
7253 else if (DECL_INITIAL (decl) == error_mark_node)
7254 synthesize_method (decl);
7256 else
7257 error ("function %q#D is initialized like a variable", decl);
7259 /* else no initialization required. */
7261 else if (DECL_EXTERNAL (decl)
7262 && ! (DECL_LANG_SPECIFIC (decl)
7263 && DECL_NOT_REALLY_EXTERN (decl)))
7265 if (init)
7266 DECL_INITIAL (decl) = init;
7268 /* A variable definition. */
7269 else if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
7270 /* Initialize the local variable. */
7271 initialize_local_var (decl, init);
7273 /* If a variable is defined, and then a subsequent
7274 definition with external linkage is encountered, we will
7275 get here twice for the same variable. We want to avoid
7276 calling expand_static_init more than once. For variables
7277 that are not static data members, we can call
7278 expand_static_init only when we actually process the
7279 initializer. It is not legal to redeclare a static data
7280 member, so this issue does not arise in that case. */
7281 else if (var_definition_p && TREE_STATIC (decl))
7282 expand_static_init (decl, init);
7285 /* If a CLEANUP_STMT was created to destroy a temporary bound to a
7286 reference, insert it in the statement-tree now. */
7287 if (cleanups)
7289 unsigned i; tree t;
7290 FOR_EACH_VEC_ELT (*cleanups, i, t)
7291 push_cleanup (decl, t, false);
7292 release_tree_vector (cleanups);
7295 if (was_readonly)
7296 TREE_READONLY (decl) = 1;
7298 if (flag_openmp
7299 && VAR_P (decl)
7300 && lookup_attribute ("omp declare target implicit",
7301 DECL_ATTRIBUTES (decl)))
7303 DECL_ATTRIBUTES (decl)
7304 = remove_attribute ("omp declare target implicit",
7305 DECL_ATTRIBUTES (decl));
7306 complete_type (TREE_TYPE (decl));
7307 if (!cp_omp_mappable_type (TREE_TYPE (decl)))
7308 error ("%q+D in declare target directive does not have mappable type",
7309 decl);
7310 else if (!lookup_attribute ("omp declare target",
7311 DECL_ATTRIBUTES (decl))
7312 && !lookup_attribute ("omp declare target link",
7313 DECL_ATTRIBUTES (decl)))
7314 DECL_ATTRIBUTES (decl)
7315 = tree_cons (get_identifier ("omp declare target"),
7316 NULL_TREE, DECL_ATTRIBUTES (decl));
7319 invoke_plugin_callbacks (PLUGIN_FINISH_DECL, decl);
7322 /* For class TYPE return itself or some its bases that contain
7323 any direct non-static data members. Return error_mark_node if an
7324 error has been diagnosed. */
7326 static tree
7327 find_decomp_class_base (location_t loc, tree type, tree ret)
7329 bool member_seen = false;
7330 for (tree field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
7331 if (TREE_CODE (field) != FIELD_DECL
7332 || DECL_ARTIFICIAL (field)
7333 || DECL_UNNAMED_BIT_FIELD (field))
7334 continue;
7335 else if (ret)
7336 return type;
7337 else if (ANON_AGGR_TYPE_P (TREE_TYPE (field)))
7339 if (TREE_CODE (TREE_TYPE (field)) == RECORD_TYPE)
7340 error_at (loc, "cannot decompose class type %qT because it has an "
7341 "anonymous struct member", type);
7342 else
7343 error_at (loc, "cannot decompose class type %qT because it has an "
7344 "anonymous union member", type);
7345 inform (DECL_SOURCE_LOCATION (field), "declared here");
7346 return error_mark_node;
7348 else if (!accessible_p (type, field, true))
7350 error_at (loc, "cannot decompose inaccessible member %qD of %qT",
7351 field, type);
7352 inform (DECL_SOURCE_LOCATION (field),
7353 TREE_PRIVATE (field)
7354 ? G_("declared private here")
7355 : G_("declared protected here"));
7356 return error_mark_node;
7358 else
7359 member_seen = true;
7361 tree base_binfo, binfo;
7362 tree orig_ret = ret;
7363 int i;
7364 if (member_seen)
7365 ret = type;
7366 for (binfo = TYPE_BINFO (type), i = 0;
7367 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
7369 tree t = find_decomp_class_base (loc, TREE_TYPE (base_binfo), ret);
7370 if (t == error_mark_node)
7371 return error_mark_node;
7372 if (t != NULL_TREE && t != ret)
7374 if (ret == type)
7376 error_at (loc, "cannot decompose class type %qT: both it and "
7377 "its base class %qT have non-static data members",
7378 type, t);
7379 return error_mark_node;
7381 else if (orig_ret != NULL_TREE)
7382 return t;
7383 else if (ret != NULL_TREE)
7385 error_at (loc, "cannot decompose class type %qT: its base "
7386 "classes %qT and %qT have non-static data "
7387 "members", type, ret, t);
7388 return error_mark_node;
7390 else
7391 ret = t;
7394 return ret;
7397 /* Return std::tuple_size<TYPE>::value. */
7399 static tree
7400 get_tuple_size (tree type)
7402 tree args = make_tree_vec (1);
7403 TREE_VEC_ELT (args, 0) = type;
7404 tree inst = lookup_template_class (tuple_size_identifier, args,
7405 /*in_decl*/NULL_TREE,
7406 /*context*/std_node,
7407 /*entering_scope*/false, tf_none);
7408 inst = complete_type (inst);
7409 if (inst == error_mark_node || !COMPLETE_TYPE_P (inst))
7410 return NULL_TREE;
7411 tree val = lookup_qualified_name (inst, value_identifier,
7412 /*type*/false, /*complain*/false);
7413 if (TREE_CODE (val) == VAR_DECL || TREE_CODE (val) == CONST_DECL)
7414 val = maybe_constant_value (val);
7415 if (TREE_CODE (val) == INTEGER_CST)
7416 return val;
7417 else
7418 return error_mark_node;
7421 /* Return std::tuple_element<I,TYPE>::type. */
7423 static tree
7424 get_tuple_element_type (tree type, unsigned i)
7426 tree args = make_tree_vec (2);
7427 TREE_VEC_ELT (args, 0) = build_int_cst (integer_type_node, i);
7428 TREE_VEC_ELT (args, 1) = type;
7429 tree inst = lookup_template_class (tuple_element_identifier, args,
7430 /*in_decl*/NULL_TREE,
7431 /*context*/std_node,
7432 /*entering_scope*/false,
7433 tf_warning_or_error);
7434 return make_typename_type (inst, type_identifier,
7435 none_type, tf_warning_or_error);
7438 /* Return e.get<i>() or get<i>(e). */
7440 static tree
7441 get_tuple_decomp_init (tree decl, unsigned i)
7443 tree targs = make_tree_vec (1);
7444 TREE_VEC_ELT (targs, 0) = build_int_cst (integer_type_node, i);
7446 tree etype = TREE_TYPE (decl);
7447 tree e = convert_from_reference (decl);
7449 /* [The id-expression] e is an lvalue if the type of the entity e is an
7450 lvalue reference and an xvalue otherwise. */
7451 if (!TYPE_REF_P (etype)
7452 || TYPE_REF_IS_RVALUE (etype))
7453 e = move (e);
7455 tree fns = lookup_qualified_name (TREE_TYPE (e), get__identifier,
7456 /*type*/false, /*complain*/false);
7457 bool use_member_get = false;
7459 /* To use a member get, member lookup must find at least one
7460 declaration that is a function template
7461 whose first template parameter is a non-type parameter. */
7462 for (lkp_iterator iter (MAYBE_BASELINK_FUNCTIONS (fns)); iter; ++iter)
7464 tree fn = *iter;
7465 if (TREE_CODE (fn) == TEMPLATE_DECL)
7467 tree tparms = DECL_TEMPLATE_PARMS (fn);
7468 tree parm = TREE_VEC_ELT (INNERMOST_TEMPLATE_PARMS (tparms), 0);
7469 if (TREE_CODE (TREE_VALUE (parm)) == PARM_DECL)
7471 use_member_get = true;
7472 break;
7477 if (use_member_get)
7479 fns = lookup_template_function (fns, targs);
7480 return build_new_method_call (e, fns, /*args*/NULL,
7481 /*path*/NULL_TREE, LOOKUP_NORMAL,
7482 /*fn_p*/NULL, tf_warning_or_error);
7484 else
7486 vec<tree,va_gc> *args = make_tree_vector_single (e);
7487 fns = lookup_template_function (get__identifier, targs);
7488 fns = perform_koenig_lookup (fns, args, tf_warning_or_error);
7489 return finish_call_expr (fns, &args, /*novirt*/false,
7490 /*koenig*/true, tf_warning_or_error);
7494 /* It's impossible to recover the decltype of a tuple decomposition variable
7495 based on the actual type of the variable, so store it in a hash table. */
7497 static GTY((cache)) tree_cache_map *decomp_type_table;
7498 static void
7499 store_decomp_type (tree v, tree t)
7501 if (!decomp_type_table)
7502 decomp_type_table = tree_cache_map::create_ggc (13);
7503 decomp_type_table->put (v, t);
7506 tree
7507 lookup_decomp_type (tree v)
7509 return *decomp_type_table->get (v);
7512 /* Mangle a decomposition declaration if needed. Arguments like
7513 in cp_finish_decomp. */
7515 void
7516 cp_maybe_mangle_decomp (tree decl, tree first, unsigned int count)
7518 if (!processing_template_decl
7519 && !error_operand_p (decl)
7520 && DECL_NAMESPACE_SCOPE_P (decl))
7522 auto_vec<tree, 16> v;
7523 v.safe_grow (count);
7524 tree d = first;
7525 for (unsigned int i = 0; i < count; i++, d = DECL_CHAIN (d))
7526 v[count - i - 1] = d;
7527 SET_DECL_ASSEMBLER_NAME (decl, mangle_decomp (decl, v));
7528 maybe_apply_pragma_weak (decl);
7532 /* Finish a decomposition declaration. DECL is the underlying declaration
7533 "e", FIRST is the head of a chain of decls for the individual identifiers
7534 chained through DECL_CHAIN in reverse order and COUNT is the number of
7535 those decls. */
7537 void
7538 cp_finish_decomp (tree decl, tree first, unsigned int count)
7540 if (error_operand_p (decl))
7542 error_out:
7543 while (count--)
7545 TREE_TYPE (first) = error_mark_node;
7546 if (DECL_HAS_VALUE_EXPR_P (first))
7548 SET_DECL_VALUE_EXPR (first, NULL_TREE);
7549 DECL_HAS_VALUE_EXPR_P (first) = 0;
7551 first = DECL_CHAIN (first);
7553 if (DECL_P (decl) && DECL_NAMESPACE_SCOPE_P (decl))
7554 SET_DECL_ASSEMBLER_NAME (decl, get_identifier ("<decomp>"));
7555 return;
7558 location_t loc = DECL_SOURCE_LOCATION (decl);
7559 if (type_dependent_expression_p (decl)
7560 /* This happens for range for when not in templates.
7561 Still add the DECL_VALUE_EXPRs for later processing. */
7562 || (!processing_template_decl
7563 && type_uses_auto (TREE_TYPE (decl))))
7565 for (unsigned int i = 0; i < count; i++)
7567 if (!DECL_HAS_VALUE_EXPR_P (first))
7569 tree v = build_nt (ARRAY_REF, decl,
7570 size_int (count - i - 1),
7571 NULL_TREE, NULL_TREE);
7572 SET_DECL_VALUE_EXPR (first, v);
7573 DECL_HAS_VALUE_EXPR_P (first) = 1;
7575 if (processing_template_decl)
7576 fit_decomposition_lang_decl (first, decl);
7577 first = DECL_CHAIN (first);
7579 return;
7582 auto_vec<tree, 16> v;
7583 v.safe_grow (count);
7584 tree d = first;
7585 for (unsigned int i = 0; i < count; i++, d = DECL_CHAIN (d))
7587 v[count - i - 1] = d;
7588 fit_decomposition_lang_decl (d, decl);
7591 tree type = TREE_TYPE (decl);
7592 tree dexp = decl;
7594 if (TYPE_REF_P (type))
7596 dexp = convert_from_reference (dexp);
7597 type = complete_type (TREE_TYPE (type));
7598 if (type == error_mark_node)
7599 goto error_out;
7600 if (!COMPLETE_TYPE_P (type))
7602 error_at (loc, "structured binding refers to incomplete type %qT",
7603 type);
7604 goto error_out;
7608 tree eltype = NULL_TREE;
7609 unsigned HOST_WIDE_INT eltscnt = 0;
7610 if (TREE_CODE (type) == ARRAY_TYPE)
7612 tree nelts;
7613 nelts = array_type_nelts_top (type);
7614 if (nelts == error_mark_node)
7615 goto error_out;
7616 if (!tree_fits_uhwi_p (nelts))
7618 error_at (loc, "cannot decompose variable length array %qT", type);
7619 goto error_out;
7621 eltscnt = tree_to_uhwi (nelts);
7622 if (count != eltscnt)
7624 cnt_mismatch:
7625 if (count > eltscnt)
7626 error_n (loc, count,
7627 "%u name provided for structured binding",
7628 "%u names provided for structured binding", count);
7629 else
7630 error_n (loc, count,
7631 "only %u name provided for structured binding",
7632 "only %u names provided for structured binding", count);
7633 inform_n (loc, eltscnt,
7634 "while %qT decomposes into %wu element",
7635 "while %qT decomposes into %wu elements",
7636 type, eltscnt);
7637 goto error_out;
7639 eltype = TREE_TYPE (type);
7640 for (unsigned int i = 0; i < count; i++)
7642 TREE_TYPE (v[i]) = eltype;
7643 layout_decl (v[i], 0);
7644 if (processing_template_decl)
7645 continue;
7646 tree t = unshare_expr (dexp);
7647 t = build4_loc (DECL_SOURCE_LOCATION (v[i]), ARRAY_REF,
7648 eltype, t, size_int (i), NULL_TREE,
7649 NULL_TREE);
7650 SET_DECL_VALUE_EXPR (v[i], t);
7651 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
7654 /* 2 GNU extensions. */
7655 else if (TREE_CODE (type) == COMPLEX_TYPE)
7657 eltscnt = 2;
7658 if (count != eltscnt)
7659 goto cnt_mismatch;
7660 eltype = cp_build_qualified_type (TREE_TYPE (type), TYPE_QUALS (type));
7661 for (unsigned int i = 0; i < count; i++)
7663 TREE_TYPE (v[i]) = eltype;
7664 layout_decl (v[i], 0);
7665 if (processing_template_decl)
7666 continue;
7667 tree t = unshare_expr (dexp);
7668 t = build1_loc (DECL_SOURCE_LOCATION (v[i]),
7669 i ? IMAGPART_EXPR : REALPART_EXPR, eltype,
7671 SET_DECL_VALUE_EXPR (v[i], t);
7672 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
7675 else if (TREE_CODE (type) == VECTOR_TYPE)
7677 if (!TYPE_VECTOR_SUBPARTS (type).is_constant (&eltscnt))
7679 error_at (loc, "cannot decompose variable length vector %qT", type);
7680 goto error_out;
7682 if (count != eltscnt)
7683 goto cnt_mismatch;
7684 eltype = cp_build_qualified_type (TREE_TYPE (type), TYPE_QUALS (type));
7685 for (unsigned int i = 0; i < count; i++)
7687 TREE_TYPE (v[i]) = eltype;
7688 layout_decl (v[i], 0);
7689 if (processing_template_decl)
7690 continue;
7691 tree t = unshare_expr (dexp);
7692 convert_vector_to_array_for_subscript (DECL_SOURCE_LOCATION (v[i]),
7693 &t, size_int (i));
7694 t = build4_loc (DECL_SOURCE_LOCATION (v[i]), ARRAY_REF,
7695 eltype, t, size_int (i), NULL_TREE,
7696 NULL_TREE);
7697 SET_DECL_VALUE_EXPR (v[i], t);
7698 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
7701 else if (tree tsize = get_tuple_size (type))
7703 if (tsize == error_mark_node)
7705 error_at (loc, "%<std::tuple_size<%T>::value%> is not an integral "
7706 "constant expression", type);
7707 goto error_out;
7709 if (!tree_fits_uhwi_p (tsize))
7711 error_n (loc, count,
7712 "%u name provided for structured binding",
7713 "%u names provided for structured binding", count);
7714 inform (loc, "while %qT decomposes into %E elements",
7715 type, tsize);
7716 goto error_out;
7718 eltscnt = tree_to_uhwi (tsize);
7719 if (count != eltscnt)
7720 goto cnt_mismatch;
7721 int save_read = DECL_READ_P (decl);
7722 for (unsigned i = 0; i < count; ++i)
7724 location_t sloc = input_location;
7725 location_t dloc = DECL_SOURCE_LOCATION (v[i]);
7727 input_location = dloc;
7728 tree init = get_tuple_decomp_init (decl, i);
7729 tree eltype = (init == error_mark_node ? error_mark_node
7730 : get_tuple_element_type (type, i));
7731 input_location = sloc;
7733 if (init == error_mark_node || eltype == error_mark_node)
7735 inform (dloc, "in initialization of structured binding "
7736 "variable %qD", v[i]);
7737 goto error_out;
7739 /* Save the decltype away before reference collapse. */
7740 store_decomp_type (v[i], eltype);
7741 eltype = cp_build_reference_type (eltype, !lvalue_p (init));
7742 TREE_TYPE (v[i]) = eltype;
7743 layout_decl (v[i], 0);
7744 if (DECL_HAS_VALUE_EXPR_P (v[i]))
7746 /* In this case the names are variables, not just proxies. */
7747 SET_DECL_VALUE_EXPR (v[i], NULL_TREE);
7748 DECL_HAS_VALUE_EXPR_P (v[i]) = 0;
7750 if (!processing_template_decl)
7751 cp_finish_decl (v[i], init, /*constexpr*/false,
7752 /*asm*/NULL_TREE, LOOKUP_NORMAL);
7754 /* Ignore reads from the underlying decl performed during initialization
7755 of the individual variables. If those will be read, we'll mark
7756 the underlying decl as read at that point. */
7757 DECL_READ_P (decl) = save_read;
7759 else if (TREE_CODE (type) == UNION_TYPE)
7761 error_at (loc, "cannot decompose union type %qT", type);
7762 goto error_out;
7764 else if (!CLASS_TYPE_P (type))
7766 error_at (loc, "cannot decompose non-array non-class type %qT", type);
7767 goto error_out;
7769 else if (LAMBDA_TYPE_P (type))
7771 error_at (loc, "cannot decompose lambda closure type %qT", type);
7772 goto error_out;
7774 else if (processing_template_decl && !COMPLETE_TYPE_P (type))
7775 pedwarn (loc, 0, "structured binding refers to incomplete class type %qT",
7776 type);
7777 else
7779 tree btype = find_decomp_class_base (loc, type, NULL_TREE);
7780 if (btype == error_mark_node)
7781 goto error_out;
7782 else if (btype == NULL_TREE)
7784 error_at (loc, "cannot decompose class type %qT without non-static "
7785 "data members", type);
7786 goto error_out;
7788 for (tree field = TYPE_FIELDS (btype); field; field = TREE_CHAIN (field))
7789 if (TREE_CODE (field) != FIELD_DECL
7790 || DECL_ARTIFICIAL (field)
7791 || DECL_UNNAMED_BIT_FIELD (field))
7792 continue;
7793 else
7794 eltscnt++;
7795 if (count != eltscnt)
7796 goto cnt_mismatch;
7797 tree t = dexp;
7798 if (type != btype)
7800 t = convert_to_base (t, btype, /*check_access*/true,
7801 /*nonnull*/false, tf_warning_or_error);
7802 type = btype;
7804 unsigned int i = 0;
7805 for (tree field = TYPE_FIELDS (btype); field; field = TREE_CHAIN (field))
7806 if (TREE_CODE (field) != FIELD_DECL
7807 || DECL_ARTIFICIAL (field)
7808 || DECL_UNNAMED_BIT_FIELD (field))
7809 continue;
7810 else
7812 tree tt = finish_non_static_data_member (field, unshare_expr (t),
7813 NULL_TREE);
7814 if (REFERENCE_REF_P (tt))
7815 tt = TREE_OPERAND (tt, 0);
7816 TREE_TYPE (v[i]) = TREE_TYPE (tt);
7817 layout_decl (v[i], 0);
7818 if (!processing_template_decl)
7820 SET_DECL_VALUE_EXPR (v[i], tt);
7821 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
7823 i++;
7826 if (processing_template_decl)
7828 for (unsigned int i = 0; i < count; i++)
7829 if (!DECL_HAS_VALUE_EXPR_P (v[i]))
7831 tree a = build_nt (ARRAY_REF, decl, size_int (i),
7832 NULL_TREE, NULL_TREE);
7833 SET_DECL_VALUE_EXPR (v[i], a);
7834 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
7839 /* Returns a declaration for a VAR_DECL as if:
7841 extern "C" TYPE NAME;
7843 had been seen. Used to create compiler-generated global
7844 variables. */
7846 static tree
7847 declare_global_var (tree name, tree type)
7849 tree decl;
7851 push_to_top_level ();
7852 decl = build_decl (input_location, VAR_DECL, name, type);
7853 TREE_PUBLIC (decl) = 1;
7854 DECL_EXTERNAL (decl) = 1;
7855 DECL_ARTIFICIAL (decl) = 1;
7856 DECL_CONTEXT (decl) = FROB_CONTEXT (global_namespace);
7857 /* If the user has explicitly declared this variable (perhaps
7858 because the code we are compiling is part of a low-level runtime
7859 library), then it is possible that our declaration will be merged
7860 with theirs by pushdecl. */
7861 decl = pushdecl (decl);
7862 cp_finish_decl (decl, NULL_TREE, false, NULL_TREE, 0);
7863 pop_from_top_level ();
7865 return decl;
7868 /* Returns the type for the argument to "__cxa_atexit" (or "atexit",
7869 if "__cxa_atexit" is not being used) corresponding to the function
7870 to be called when the program exits. */
7872 static tree
7873 get_atexit_fn_ptr_type (void)
7875 tree fn_type;
7877 if (!atexit_fn_ptr_type_node)
7879 tree arg_type;
7880 if (flag_use_cxa_atexit
7881 && !targetm.cxx.use_atexit_for_cxa_atexit ())
7882 /* The parameter to "__cxa_atexit" is "void (*)(void *)". */
7883 arg_type = ptr_type_node;
7884 else
7885 /* The parameter to "atexit" is "void (*)(void)". */
7886 arg_type = NULL_TREE;
7888 fn_type = build_function_type_list (void_type_node,
7889 arg_type, NULL_TREE);
7890 atexit_fn_ptr_type_node = build_pointer_type (fn_type);
7893 return atexit_fn_ptr_type_node;
7896 /* Returns a pointer to the `atexit' function. Note that if
7897 FLAG_USE_CXA_ATEXIT is nonzero, then this will actually be the new
7898 `__cxa_atexit' function specified in the IA64 C++ ABI. */
7900 static tree
7901 get_atexit_node (void)
7903 tree atexit_fndecl;
7904 tree fn_type;
7905 tree fn_ptr_type;
7906 const char *name;
7907 bool use_aeabi_atexit;
7909 if (atexit_node)
7910 return atexit_node;
7912 if (flag_use_cxa_atexit && !targetm.cxx.use_atexit_for_cxa_atexit ())
7914 /* The declaration for `__cxa_atexit' is:
7916 int __cxa_atexit (void (*)(void *), void *, void *)
7918 We build up the argument types and then the function type
7919 itself. */
7920 tree argtype0, argtype1, argtype2;
7922 use_aeabi_atexit = targetm.cxx.use_aeabi_atexit ();
7923 /* First, build the pointer-to-function type for the first
7924 argument. */
7925 fn_ptr_type = get_atexit_fn_ptr_type ();
7926 /* Then, build the rest of the argument types. */
7927 argtype2 = ptr_type_node;
7928 if (use_aeabi_atexit)
7930 argtype1 = fn_ptr_type;
7931 argtype0 = ptr_type_node;
7933 else
7935 argtype1 = ptr_type_node;
7936 argtype0 = fn_ptr_type;
7938 /* And the final __cxa_atexit type. */
7939 fn_type = build_function_type_list (integer_type_node,
7940 argtype0, argtype1, argtype2,
7941 NULL_TREE);
7942 if (use_aeabi_atexit)
7943 name = "__aeabi_atexit";
7944 else
7945 name = "__cxa_atexit";
7947 else
7949 /* The declaration for `atexit' is:
7951 int atexit (void (*)());
7953 We build up the argument types and then the function type
7954 itself. */
7955 fn_ptr_type = get_atexit_fn_ptr_type ();
7956 /* Build the final atexit type. */
7957 fn_type = build_function_type_list (integer_type_node,
7958 fn_ptr_type, NULL_TREE);
7959 name = "atexit";
7962 /* Now, build the function declaration. */
7963 push_lang_context (lang_name_c);
7964 atexit_fndecl = build_library_fn_ptr (name, fn_type, ECF_LEAF | ECF_NOTHROW);
7965 mark_used (atexit_fndecl);
7966 pop_lang_context ();
7967 atexit_node = decay_conversion (atexit_fndecl, tf_warning_or_error);
7969 return atexit_node;
7972 /* Like get_atexit_node, but for thread-local cleanups. */
7974 static tree
7975 get_thread_atexit_node (void)
7977 /* The declaration for `__cxa_thread_atexit' is:
7979 int __cxa_thread_atexit (void (*)(void *), void *, void *) */
7980 tree fn_type = build_function_type_list (integer_type_node,
7981 get_atexit_fn_ptr_type (),
7982 ptr_type_node, ptr_type_node,
7983 NULL_TREE);
7985 /* Now, build the function declaration. */
7986 tree atexit_fndecl = build_library_fn_ptr ("__cxa_thread_atexit", fn_type,
7987 ECF_LEAF | ECF_NOTHROW);
7988 return decay_conversion (atexit_fndecl, tf_warning_or_error);
7991 /* Returns the __dso_handle VAR_DECL. */
7993 static tree
7994 get_dso_handle_node (void)
7996 if (dso_handle_node)
7997 return dso_handle_node;
7999 /* Declare the variable. */
8000 dso_handle_node = declare_global_var (get_identifier ("__dso_handle"),
8001 ptr_type_node);
8003 #ifdef HAVE_GAS_HIDDEN
8004 if (dso_handle_node != error_mark_node)
8006 DECL_VISIBILITY (dso_handle_node) = VISIBILITY_HIDDEN;
8007 DECL_VISIBILITY_SPECIFIED (dso_handle_node) = 1;
8009 #endif
8011 return dso_handle_node;
8014 /* Begin a new function with internal linkage whose job will be simply
8015 to destroy some particular variable. */
8017 static GTY(()) int start_cleanup_cnt;
8019 static tree
8020 start_cleanup_fn (void)
8022 char name[32];
8023 tree fntype;
8024 tree fndecl;
8025 bool use_cxa_atexit = flag_use_cxa_atexit
8026 && !targetm.cxx.use_atexit_for_cxa_atexit ();
8028 push_to_top_level ();
8030 /* No need to mangle this. */
8031 push_lang_context (lang_name_c);
8033 /* Build the name of the function. */
8034 sprintf (name, "__tcf_%d", start_cleanup_cnt++);
8035 /* Build the function declaration. */
8036 fntype = TREE_TYPE (get_atexit_fn_ptr_type ());
8037 fndecl = build_lang_decl (FUNCTION_DECL, get_identifier (name), fntype);
8038 /* It's a function with internal linkage, generated by the
8039 compiler. */
8040 TREE_PUBLIC (fndecl) = 0;
8041 DECL_ARTIFICIAL (fndecl) = 1;
8042 /* Make the function `inline' so that it is only emitted if it is
8043 actually needed. It is unlikely that it will be inlined, since
8044 it is only called via a function pointer, but we avoid unnecessary
8045 emissions this way. */
8046 DECL_DECLARED_INLINE_P (fndecl) = 1;
8047 DECL_INTERFACE_KNOWN (fndecl) = 1;
8048 /* Build the parameter. */
8049 if (use_cxa_atexit)
8051 tree parmdecl = cp_build_parm_decl (fndecl, NULL_TREE, ptr_type_node);
8052 TREE_USED (parmdecl) = 1;
8053 DECL_READ_P (parmdecl) = 1;
8054 DECL_ARGUMENTS (fndecl) = parmdecl;
8057 pushdecl (fndecl);
8058 start_preparsed_function (fndecl, NULL_TREE, SF_PRE_PARSED);
8060 pop_lang_context ();
8062 return current_function_decl;
8065 /* Finish the cleanup function begun by start_cleanup_fn. */
8067 static void
8068 end_cleanup_fn (void)
8070 expand_or_defer_fn (finish_function (/*inline_p=*/false));
8072 pop_from_top_level ();
8075 /* Generate code to handle the destruction of DECL, an object with
8076 static storage duration. */
8078 tree
8079 register_dtor_fn (tree decl)
8081 tree cleanup;
8082 tree addr;
8083 tree compound_stmt;
8084 tree fcall;
8085 tree type;
8086 bool ob_parm, dso_parm, use_dtor;
8087 tree arg0, arg1, arg2;
8088 tree atex_node;
8090 type = TREE_TYPE (decl);
8091 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
8092 return void_node;
8094 /* If we're using "__cxa_atexit" (or "__cxa_thread_atexit" or
8095 "__aeabi_atexit"), and DECL is a class object, we can just pass the
8096 destructor to "__cxa_atexit"; we don't have to build a temporary
8097 function to do the cleanup. */
8098 dso_parm = (flag_use_cxa_atexit
8099 && !targetm.cxx.use_atexit_for_cxa_atexit ());
8100 ob_parm = (CP_DECL_THREAD_LOCAL_P (decl) || dso_parm);
8101 use_dtor = ob_parm && CLASS_TYPE_P (type);
8102 if (use_dtor)
8104 cleanup = get_class_binding (type, complete_dtor_identifier);
8106 /* Make sure it is accessible. */
8107 perform_or_defer_access_check (TYPE_BINFO (type), cleanup, cleanup,
8108 tf_warning_or_error);
8110 else
8112 /* Call build_cleanup before we enter the anonymous function so
8113 that any access checks will be done relative to the current
8114 scope, rather than the scope of the anonymous function. */
8115 build_cleanup (decl);
8117 /* Now start the function. */
8118 cleanup = start_cleanup_fn ();
8120 /* Now, recompute the cleanup. It may contain SAVE_EXPRs that refer
8121 to the original function, rather than the anonymous one. That
8122 will make the back end think that nested functions are in use,
8123 which causes confusion. */
8124 push_deferring_access_checks (dk_no_check);
8125 fcall = build_cleanup (decl);
8126 pop_deferring_access_checks ();
8128 /* Create the body of the anonymous function. */
8129 compound_stmt = begin_compound_stmt (BCS_FN_BODY);
8130 finish_expr_stmt (fcall);
8131 finish_compound_stmt (compound_stmt);
8132 end_cleanup_fn ();
8135 /* Call atexit with the cleanup function. */
8136 mark_used (cleanup);
8137 cleanup = build_address (cleanup);
8139 if (CP_DECL_THREAD_LOCAL_P (decl))
8140 atex_node = get_thread_atexit_node ();
8141 else
8142 atex_node = get_atexit_node ();
8144 if (use_dtor)
8146 /* We must convert CLEANUP to the type that "__cxa_atexit"
8147 expects. */
8148 cleanup = build_nop (get_atexit_fn_ptr_type (), cleanup);
8149 /* "__cxa_atexit" will pass the address of DECL to the
8150 cleanup function. */
8151 mark_used (decl);
8152 addr = build_address (decl);
8153 /* The declared type of the parameter to "__cxa_atexit" is
8154 "void *". For plain "T*", we could just let the
8155 machinery in cp_build_function_call convert it -- but if the
8156 type is "cv-qualified T *", then we need to convert it
8157 before passing it in, to avoid spurious errors. */
8158 addr = build_nop (ptr_type_node, addr);
8160 else
8161 /* Since the cleanup functions we build ignore the address
8162 they're given, there's no reason to pass the actual address
8163 in, and, in general, it's cheaper to pass NULL than any
8164 other value. */
8165 addr = null_pointer_node;
8167 if (dso_parm)
8168 arg2 = cp_build_addr_expr (get_dso_handle_node (),
8169 tf_warning_or_error);
8170 else if (ob_parm)
8171 /* Just pass NULL to the dso handle parm if we don't actually
8172 have a DSO handle on this target. */
8173 arg2 = null_pointer_node;
8174 else
8175 arg2 = NULL_TREE;
8177 if (ob_parm)
8179 if (!CP_DECL_THREAD_LOCAL_P (decl)
8180 && targetm.cxx.use_aeabi_atexit ())
8182 arg1 = cleanup;
8183 arg0 = addr;
8185 else
8187 arg1 = addr;
8188 arg0 = cleanup;
8191 else
8193 arg0 = cleanup;
8194 arg1 = NULL_TREE;
8196 return cp_build_function_call_nary (atex_node, tf_warning_or_error,
8197 arg0, arg1, arg2, NULL_TREE);
8200 /* DECL is a VAR_DECL with static storage duration. INIT, if present,
8201 is its initializer. Generate code to handle the construction
8202 and destruction of DECL. */
8204 static void
8205 expand_static_init (tree decl, tree init)
8207 gcc_assert (VAR_P (decl));
8208 gcc_assert (TREE_STATIC (decl));
8210 /* Some variables require no dynamic initialization. */
8211 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
8213 /* Make sure the destructor is callable. */
8214 cxx_maybe_build_cleanup (decl, tf_warning_or_error);
8215 if (!init)
8216 return;
8219 if (CP_DECL_THREAD_LOCAL_P (decl) && DECL_GNU_TLS_P (decl)
8220 && !DECL_FUNCTION_SCOPE_P (decl))
8222 if (init)
8223 error ("non-local variable %qD declared %<__thread%> "
8224 "needs dynamic initialization", decl);
8225 else
8226 error ("non-local variable %qD declared %<__thread%> "
8227 "has a non-trivial destructor", decl);
8228 static bool informed;
8229 if (!informed)
8231 inform (DECL_SOURCE_LOCATION (decl),
8232 "C++11 %<thread_local%> allows dynamic initialization "
8233 "and destruction");
8234 informed = true;
8236 return;
8239 if (DECL_FUNCTION_SCOPE_P (decl))
8241 /* Emit code to perform this initialization but once. */
8242 tree if_stmt = NULL_TREE, inner_if_stmt = NULL_TREE;
8243 tree then_clause = NULL_TREE, inner_then_clause = NULL_TREE;
8244 tree guard, guard_addr;
8245 tree flag, begin;
8246 /* We don't need thread-safety code for thread-local vars. */
8247 bool thread_guard = (flag_threadsafe_statics
8248 && !CP_DECL_THREAD_LOCAL_P (decl));
8250 /* Emit code to perform this initialization but once. This code
8251 looks like:
8253 static <type> guard;
8254 if (!__atomic_load (guard.first_byte)) {
8255 if (__cxa_guard_acquire (&guard)) {
8256 bool flag = false;
8257 try {
8258 // Do initialization.
8259 flag = true; __cxa_guard_release (&guard);
8260 // Register variable for destruction at end of program.
8261 } catch {
8262 if (!flag) __cxa_guard_abort (&guard);
8267 Note that the `flag' variable is only set to 1 *after* the
8268 initialization is complete. This ensures that an exception,
8269 thrown during the construction, will cause the variable to
8270 reinitialized when we pass through this code again, as per:
8272 [stmt.dcl]
8274 If the initialization exits by throwing an exception, the
8275 initialization is not complete, so it will be tried again
8276 the next time control enters the declaration.
8278 This process should be thread-safe, too; multiple threads
8279 should not be able to initialize the variable more than
8280 once. */
8282 /* Create the guard variable. */
8283 guard = get_guard (decl);
8285 /* Begin the conditional initialization. */
8286 if_stmt = begin_if_stmt ();
8288 finish_if_stmt_cond (get_guard_cond (guard, thread_guard), if_stmt);
8289 then_clause = begin_compound_stmt (BCS_NO_SCOPE);
8291 if (thread_guard)
8293 tree vfntype = NULL_TREE;
8294 tree acquire_name, release_name, abort_name;
8295 tree acquire_fn, release_fn, abort_fn;
8296 guard_addr = build_address (guard);
8298 acquire_name = get_identifier ("__cxa_guard_acquire");
8299 release_name = get_identifier ("__cxa_guard_release");
8300 abort_name = get_identifier ("__cxa_guard_abort");
8301 acquire_fn = get_global_binding (acquire_name);
8302 release_fn = get_global_binding (release_name);
8303 abort_fn = get_global_binding (abort_name);
8304 if (!acquire_fn)
8305 acquire_fn = push_library_fn
8306 (acquire_name, build_function_type_list (integer_type_node,
8307 TREE_TYPE (guard_addr),
8308 NULL_TREE),
8309 NULL_TREE, ECF_NOTHROW | ECF_LEAF);
8310 if (!release_fn || !abort_fn)
8311 vfntype = build_function_type_list (void_type_node,
8312 TREE_TYPE (guard_addr),
8313 NULL_TREE);
8314 if (!release_fn)
8315 release_fn = push_library_fn (release_name, vfntype, NULL_TREE,
8316 ECF_NOTHROW | ECF_LEAF);
8317 if (!abort_fn)
8318 abort_fn = push_library_fn (abort_name, vfntype, NULL_TREE,
8319 ECF_NOTHROW | ECF_LEAF);
8321 inner_if_stmt = begin_if_stmt ();
8322 finish_if_stmt_cond (build_call_n (acquire_fn, 1, guard_addr),
8323 inner_if_stmt);
8325 inner_then_clause = begin_compound_stmt (BCS_NO_SCOPE);
8326 begin = get_target_expr (boolean_false_node);
8327 flag = TARGET_EXPR_SLOT (begin);
8329 TARGET_EXPR_CLEANUP (begin)
8330 = build3 (COND_EXPR, void_type_node, flag,
8331 void_node,
8332 build_call_n (abort_fn, 1, guard_addr));
8333 CLEANUP_EH_ONLY (begin) = 1;
8335 /* Do the initialization itself. */
8336 init = add_stmt_to_compound (begin, init);
8337 init = add_stmt_to_compound
8338 (init, build2 (MODIFY_EXPR, void_type_node, flag, boolean_true_node));
8339 init = add_stmt_to_compound
8340 (init, build_call_n (release_fn, 1, guard_addr));
8342 else
8343 init = add_stmt_to_compound (init, set_guard (guard));
8345 /* Use atexit to register a function for destroying this static
8346 variable. */
8347 init = add_stmt_to_compound (init, register_dtor_fn (decl));
8349 finish_expr_stmt (init);
8351 if (thread_guard)
8353 finish_compound_stmt (inner_then_clause);
8354 finish_then_clause (inner_if_stmt);
8355 finish_if_stmt (inner_if_stmt);
8358 finish_compound_stmt (then_clause);
8359 finish_then_clause (if_stmt);
8360 finish_if_stmt (if_stmt);
8362 else if (CP_DECL_THREAD_LOCAL_P (decl))
8363 tls_aggregates = tree_cons (init, decl, tls_aggregates);
8364 else
8365 static_aggregates = tree_cons (init, decl, static_aggregates);
8369 /* Make TYPE a complete type based on INITIAL_VALUE.
8370 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
8371 2 if there was no information (in which case assume 0 if DO_DEFAULT),
8372 3 if the initializer list is empty (in pedantic mode). */
8375 cp_complete_array_type (tree *ptype, tree initial_value, bool do_default)
8377 int failure;
8378 tree type, elt_type;
8380 /* Don't get confused by a CONSTRUCTOR for some other type. */
8381 if (initial_value && TREE_CODE (initial_value) == CONSTRUCTOR
8382 && !BRACE_ENCLOSED_INITIALIZER_P (initial_value)
8383 && TREE_CODE (TREE_TYPE (initial_value)) != ARRAY_TYPE)
8384 return 1;
8386 if (initial_value)
8388 unsigned HOST_WIDE_INT i;
8389 tree value;
8391 /* An array of character type can be initialized from a
8392 brace-enclosed string constant.
8394 FIXME: this code is duplicated from reshape_init. Probably
8395 we should just call reshape_init here? */
8396 if (char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (*ptype)))
8397 && TREE_CODE (initial_value) == CONSTRUCTOR
8398 && !vec_safe_is_empty (CONSTRUCTOR_ELTS (initial_value)))
8400 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initial_value);
8401 tree value = (*v)[0].value;
8403 if (TREE_CODE (value) == STRING_CST
8404 && v->length () == 1)
8405 initial_value = value;
8408 /* If any of the elements are parameter packs, we can't actually
8409 complete this type now because the array size is dependent. */
8410 if (TREE_CODE (initial_value) == CONSTRUCTOR)
8412 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (initial_value),
8413 i, value)
8415 if (PACK_EXPANSION_P (value))
8416 return 0;
8421 failure = complete_array_type (ptype, initial_value, do_default);
8423 /* We can create the array before the element type is complete, which
8424 means that we didn't have these two bits set in the original type
8425 either. In completing the type, we are expected to propagate these
8426 bits. See also complete_type which does the same thing for arrays
8427 of fixed size. */
8428 type = *ptype;
8429 if (type != error_mark_node && TYPE_DOMAIN (type))
8431 elt_type = TREE_TYPE (type);
8432 TYPE_NEEDS_CONSTRUCTING (type) = TYPE_NEEDS_CONSTRUCTING (elt_type);
8433 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
8434 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (elt_type);
8437 return failure;
8440 /* As above, but either give an error or reject zero-size arrays, depending
8441 on COMPLAIN. */
8444 cp_complete_array_type_or_error (tree *ptype, tree initial_value,
8445 bool do_default, tsubst_flags_t complain)
8447 int failure;
8448 bool sfinae = !(complain & tf_error);
8449 /* In SFINAE context we can't be lenient about zero-size arrays. */
8450 if (sfinae)
8451 ++pedantic;
8452 failure = cp_complete_array_type (ptype, initial_value, do_default);
8453 if (sfinae)
8454 --pedantic;
8455 if (failure)
8457 if (sfinae)
8458 /* Not an error. */;
8459 else if (failure == 1)
8460 error ("initializer fails to determine size of %qT", *ptype);
8461 else if (failure == 2)
8463 if (do_default)
8464 error ("array size missing in %qT", *ptype);
8466 else if (failure == 3)
8467 error ("zero-size array %qT", *ptype);
8468 *ptype = error_mark_node;
8470 return failure;
8473 /* Return zero if something is declared to be a member of type
8474 CTYPE when in the context of CUR_TYPE. STRING is the error
8475 message to print in that case. Otherwise, quietly return 1. */
8477 static int
8478 member_function_or_else (tree ctype, tree cur_type, enum overload_flags flags)
8480 if (ctype && ctype != cur_type)
8482 if (flags == DTOR_FLAG)
8483 error ("destructor for alien class %qT cannot be a member", ctype);
8484 else
8485 error ("constructor for alien class %qT cannot be a member", ctype);
8486 return 0;
8488 return 1;
8491 /* Subroutine of `grokdeclarator'. */
8493 /* Generate errors possibly applicable for a given set of specifiers.
8494 This is for ARM $7.1.2. */
8496 static void
8497 bad_specifiers (tree object,
8498 enum bad_spec_place type,
8499 int virtualp,
8500 int quals,
8501 int inlinep,
8502 int friendp,
8503 int raises,
8504 const location_t* locations)
8506 switch (type)
8508 case BSP_VAR:
8509 if (virtualp)
8510 error_at (locations[ds_virtual],
8511 "%qD declared as a %<virtual%> variable", object);
8512 if (quals)
8513 error ("%<const%> and %<volatile%> function specifiers on "
8514 "%qD invalid in variable declaration", object);
8515 break;
8516 case BSP_PARM:
8517 if (virtualp)
8518 error_at (locations[ds_virtual],
8519 "%qD declared as a %<virtual%> parameter", object);
8520 if (inlinep)
8521 error_at (locations[ds_inline],
8522 "%qD declared as an %<inline%> parameter", object);
8523 if (quals)
8524 error ("%<const%> and %<volatile%> function specifiers on "
8525 "%qD invalid in parameter declaration", object);
8526 break;
8527 case BSP_TYPE:
8528 if (virtualp)
8529 error_at (locations[ds_virtual],
8530 "%qD declared as a %<virtual%> type", object);
8531 if (inlinep)
8532 error_at (locations[ds_inline],
8533 "%qD declared as an %<inline%> type", object);
8534 if (quals)
8535 error ("%<const%> and %<volatile%> function specifiers on "
8536 "%qD invalid in type declaration", object);
8537 break;
8538 case BSP_FIELD:
8539 if (virtualp)
8540 error_at (locations[ds_virtual],
8541 "%qD declared as a %<virtual%> field", object);
8542 if (inlinep)
8543 error_at (locations[ds_inline],
8544 "%qD declared as an %<inline%> field", object);
8545 if (quals)
8546 error ("%<const%> and %<volatile%> function specifiers on "
8547 "%qD invalid in field declaration", object);
8548 break;
8549 default:
8550 gcc_unreachable();
8552 if (friendp)
8553 error ("%q+D declared as a friend", object);
8554 if (raises
8555 && !flag_noexcept_type
8556 && (TREE_CODE (object) == TYPE_DECL
8557 || (!TYPE_PTRFN_P (TREE_TYPE (object))
8558 && !TYPE_REFFN_P (TREE_TYPE (object))
8559 && !TYPE_PTRMEMFUNC_P (TREE_TYPE (object)))))
8560 error ("%q+D declared with an exception specification", object);
8563 /* DECL is a member function or static data member and is presently
8564 being defined. Check that the definition is taking place in a
8565 valid namespace. */
8567 static void
8568 check_class_member_definition_namespace (tree decl)
8570 /* These checks only apply to member functions and static data
8571 members. */
8572 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl));
8573 /* We check for problems with specializations in pt.c in
8574 check_specialization_namespace, where we can issue better
8575 diagnostics. */
8576 if (processing_specialization)
8577 return;
8578 /* We check this in check_explicit_instantiation_namespace. */
8579 if (processing_explicit_instantiation)
8580 return;
8581 /* [class.mfct]
8583 A member function definition that appears outside of the
8584 class definition shall appear in a namespace scope enclosing
8585 the class definition.
8587 [class.static.data]
8589 The definition for a static data member shall appear in a
8590 namespace scope enclosing the member's class definition. */
8591 if (!is_ancestor (current_namespace, DECL_CONTEXT (decl)))
8592 permerror (input_location, "definition of %qD is not in namespace enclosing %qT",
8593 decl, DECL_CONTEXT (decl));
8596 /* Build a PARM_DECL for the "this" parameter of FN. TYPE is the
8597 METHOD_TYPE for a non-static member function; QUALS are the
8598 cv-qualifiers that apply to the function. */
8600 tree
8601 build_this_parm (tree fn, tree type, cp_cv_quals quals)
8603 tree this_type;
8604 tree qual_type;
8605 tree parm;
8606 cp_cv_quals this_quals;
8608 if (CLASS_TYPE_P (type))
8610 this_type
8611 = cp_build_qualified_type (type, quals & ~TYPE_QUAL_RESTRICT);
8612 this_type = build_pointer_type (this_type);
8614 else
8615 this_type = type_of_this_parm (type);
8616 /* The `this' parameter is implicitly `const'; it cannot be
8617 assigned to. */
8618 this_quals = (quals & TYPE_QUAL_RESTRICT) | TYPE_QUAL_CONST;
8619 qual_type = cp_build_qualified_type (this_type, this_quals);
8620 parm = build_artificial_parm (fn, this_identifier, qual_type);
8621 cp_apply_type_quals_to_decl (this_quals, parm);
8622 return parm;
8625 /* DECL is a static member function. Complain if it was declared
8626 with function-cv-quals. */
8628 static void
8629 check_static_quals (tree decl, cp_cv_quals quals)
8631 if (quals != TYPE_UNQUALIFIED)
8632 error ("static member function %q#D declared with type qualifiers",
8633 decl);
8636 // Check that FN takes no arguments and returns bool.
8637 static void
8638 check_concept_fn (tree fn)
8640 // A constraint is nullary.
8641 if (DECL_ARGUMENTS (fn))
8642 error_at (DECL_SOURCE_LOCATION (fn),
8643 "concept %q#D declared with function parameters", fn);
8645 // The declared return type of the concept shall be bool, and
8646 // it shall not be deduced from it definition.
8647 tree type = TREE_TYPE (TREE_TYPE (fn));
8648 if (is_auto (type))
8649 error_at (DECL_SOURCE_LOCATION (fn),
8650 "concept %q#D declared with a deduced return type", fn);
8651 else if (type != boolean_type_node)
8652 error_at (DECL_SOURCE_LOCATION (fn),
8653 "concept %q#D with non-%<bool%> return type %qT", fn, type);
8656 /* Helper function. Replace the temporary this parameter injected
8657 during cp_finish_omp_declare_simd with the real this parameter. */
8659 static tree
8660 declare_simd_adjust_this (tree *tp, int *walk_subtrees, void *data)
8662 tree this_parm = (tree) data;
8663 if (TREE_CODE (*tp) == PARM_DECL
8664 && DECL_NAME (*tp) == this_identifier
8665 && *tp != this_parm)
8666 *tp = this_parm;
8667 else if (TYPE_P (*tp))
8668 *walk_subtrees = 0;
8669 return NULL_TREE;
8672 /* CTYPE is class type, or null if non-class.
8673 TYPE is type this FUNCTION_DECL should have, either FUNCTION_TYPE
8674 or METHOD_TYPE.
8675 DECLARATOR is the function's name.
8676 PARMS is a chain of PARM_DECLs for the function.
8677 VIRTUALP is truthvalue of whether the function is virtual or not.
8678 FLAGS are to be passed through to `grokclassfn'.
8679 QUALS are qualifiers indicating whether the function is `const'
8680 or `volatile'.
8681 RAISES is a list of exceptions that this function can raise.
8682 CHECK is 1 if we must find this method in CTYPE, 0 if we should
8683 not look, and -1 if we should not call `grokclassfn' at all.
8685 SFK is the kind of special function (if any) for the new function.
8687 Returns `NULL_TREE' if something goes wrong, after issuing
8688 applicable error messages. */
8690 static tree
8691 grokfndecl (tree ctype,
8692 tree type,
8693 tree declarator,
8694 tree parms,
8695 tree orig_declarator,
8696 const cp_decl_specifier_seq *declspecs,
8697 tree decl_reqs,
8698 int virtualp,
8699 enum overload_flags flags,
8700 cp_cv_quals quals,
8701 cp_ref_qualifier rqual,
8702 tree raises,
8703 int check,
8704 int friendp,
8705 int publicp,
8706 int inlinep,
8707 bool deletedp,
8708 special_function_kind sfk,
8709 bool funcdef_flag,
8710 bool late_return_type_p,
8711 int template_count,
8712 tree in_namespace,
8713 tree* attrlist,
8714 location_t location)
8716 tree decl;
8717 int staticp = ctype && TREE_CODE (type) == FUNCTION_TYPE;
8718 tree t;
8720 if (location == UNKNOWN_LOCATION)
8721 location = input_location;
8723 // Was the concept specifier present?
8724 bool concept_p = inlinep & 4;
8726 // Concept declarations must have a corresponding definition.
8727 if (concept_p && !funcdef_flag)
8729 error_at (location, "concept %qD has no definition", declarator);
8730 return NULL_TREE;
8733 type = build_cp_fntype_variant (type, rqual, raises, late_return_type_p);
8735 decl = build_lang_decl_loc (location, FUNCTION_DECL, declarator, type);
8737 /* Set the constraints on the declaration. */
8738 if (flag_concepts)
8740 tree tmpl_reqs = NULL_TREE;
8741 if (processing_template_decl > template_class_depth (ctype))
8742 tmpl_reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
8744 /* Adjust the required expression into a constraint. */
8745 if (decl_reqs)
8746 decl_reqs = normalize_expression (decl_reqs);
8748 tree ci = build_constraints (tmpl_reqs, decl_reqs);
8749 set_constraints (decl, ci);
8752 if (TREE_CODE (type) == METHOD_TYPE)
8754 tree parm = build_this_parm (decl, type, quals);
8755 DECL_CHAIN (parm) = parms;
8756 parms = parm;
8758 /* Allocate space to hold the vptr bit if needed. */
8759 SET_DECL_ALIGN (decl, MINIMUM_METHOD_BOUNDARY);
8762 DECL_ARGUMENTS (decl) = parms;
8763 for (t = parms; t; t = DECL_CHAIN (t))
8764 DECL_CONTEXT (t) = decl;
8766 /* Propagate volatile out from type to decl. */
8767 if (TYPE_VOLATILE (type))
8768 TREE_THIS_VOLATILE (decl) = 1;
8770 /* Setup decl according to sfk. */
8771 switch (sfk)
8773 case sfk_constructor:
8774 case sfk_copy_constructor:
8775 case sfk_move_constructor:
8776 DECL_CXX_CONSTRUCTOR_P (decl) = 1;
8777 DECL_NAME (decl) = ctor_identifier;
8778 break;
8779 case sfk_destructor:
8780 DECL_CXX_DESTRUCTOR_P (decl) = 1;
8781 DECL_NAME (decl) = dtor_identifier;
8782 break;
8783 default:
8784 break;
8787 if (friendp && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)
8789 if (funcdef_flag)
8790 error_at (location,
8791 "defining explicit specialization %qD in friend declaration",
8792 orig_declarator);
8793 else
8795 tree fns = TREE_OPERAND (orig_declarator, 0);
8796 tree args = TREE_OPERAND (orig_declarator, 1);
8798 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
8800 /* Something like `template <class T> friend void f<T>()'. */
8801 error_at (location,
8802 "invalid use of template-id %qD in declaration "
8803 "of primary template",
8804 orig_declarator);
8805 return NULL_TREE;
8809 /* A friend declaration of the form friend void f<>(). Record
8810 the information in the TEMPLATE_ID_EXPR. */
8811 SET_DECL_IMPLICIT_INSTANTIATION (decl);
8813 gcc_assert (identifier_p (fns) || TREE_CODE (fns) == OVERLOAD);
8814 DECL_TEMPLATE_INFO (decl) = build_template_info (fns, args);
8816 for (t = TYPE_ARG_TYPES (TREE_TYPE (decl)); t; t = TREE_CHAIN (t))
8817 if (TREE_PURPOSE (t)
8818 && TREE_CODE (TREE_PURPOSE (t)) == DEFAULT_ARG)
8820 error_at (defarg_location (TREE_PURPOSE (t)),
8821 "default arguments are not allowed in declaration "
8822 "of friend template specialization %qD",
8823 decl);
8824 return NULL_TREE;
8827 if (inlinep & 1)
8829 error_at (declspecs->locations[ds_inline],
8830 "%<inline%> is not allowed in declaration of friend "
8831 "template specialization %qD",
8832 decl);
8833 return NULL_TREE;
8838 /* C++17 11.3.6/4: "If a friend declaration specifies a default argument
8839 expression, that declaration shall be a definition..." */
8840 if (friendp && !funcdef_flag)
8842 for (tree t = FUNCTION_FIRST_USER_PARMTYPE (decl);
8843 t && t != void_list_node; t = TREE_CHAIN (t))
8844 if (TREE_PURPOSE (t))
8846 permerror (DECL_SOURCE_LOCATION (decl),
8847 "friend declaration of %qD specifies default "
8848 "arguments and isn't a definition", decl);
8849 break;
8853 /* If this decl has namespace scope, set that up. */
8854 if (in_namespace)
8855 set_decl_namespace (decl, in_namespace, friendp);
8856 else if (!ctype)
8857 DECL_CONTEXT (decl) = FROB_CONTEXT (current_decl_namespace ());
8859 /* `main' and builtins have implicit 'C' linkage. */
8860 if (ctype == NULL_TREE
8861 && DECL_FILE_SCOPE_P (decl)
8862 && current_lang_name == lang_name_cplusplus
8863 && (MAIN_NAME_P (declarator)
8864 || (IDENTIFIER_LENGTH (declarator) > 10
8865 && IDENTIFIER_POINTER (declarator)[0] == '_'
8866 && IDENTIFIER_POINTER (declarator)[1] == '_'
8867 && strncmp (IDENTIFIER_POINTER (declarator)+2,
8868 "builtin_", 8) == 0)
8869 || (targetcm.cxx_implicit_extern_c
8870 && (targetcm.cxx_implicit_extern_c
8871 (IDENTIFIER_POINTER (declarator))))))
8872 SET_DECL_LANGUAGE (decl, lang_c);
8874 /* Should probably propagate const out from type to decl I bet (mrs). */
8875 if (staticp)
8877 DECL_STATIC_FUNCTION_P (decl) = 1;
8878 DECL_CONTEXT (decl) = ctype;
8881 if (deletedp)
8882 DECL_DELETED_FN (decl) = 1;
8884 if (ctype)
8886 DECL_CONTEXT (decl) = ctype;
8887 if (funcdef_flag)
8888 check_class_member_definition_namespace (decl);
8891 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
8893 if (PROCESSING_REAL_TEMPLATE_DECL_P())
8894 error_at (location, "cannot declare %<::main%> to be a template");
8895 if (inlinep & 1)
8896 error_at (declspecs->locations[ds_inline],
8897 "cannot declare %<::main%> to be inline");
8898 if (inlinep & 2)
8899 error_at (declspecs->locations[ds_constexpr],
8900 "cannot declare %<::main%> to be %<constexpr%>");
8901 if (!publicp)
8902 error_at (location, "cannot declare %<::main%> to be static");
8903 inlinep = 0;
8904 publicp = 1;
8907 /* Members of anonymous types and local classes have no linkage; make
8908 them internal. If a typedef is made later, this will be changed. */
8909 if (ctype && (!TREE_PUBLIC (TYPE_MAIN_DECL (ctype))
8910 || decl_function_context (TYPE_MAIN_DECL (ctype))))
8911 publicp = 0;
8913 if (publicp && cxx_dialect == cxx98)
8915 /* [basic.link]: A name with no linkage (notably, the name of a class
8916 or enumeration declared in a local scope) shall not be used to
8917 declare an entity with linkage.
8919 DR 757 relaxes this restriction for C++0x. */
8920 no_linkage_error (decl);
8923 TREE_PUBLIC (decl) = publicp;
8924 if (! publicp)
8926 DECL_INTERFACE_KNOWN (decl) = 1;
8927 DECL_NOT_REALLY_EXTERN (decl) = 1;
8930 /* If the declaration was declared inline, mark it as such. */
8931 if (inlinep)
8933 DECL_DECLARED_INLINE_P (decl) = 1;
8934 if (publicp)
8935 DECL_COMDAT (decl) = 1;
8937 if (inlinep & 2)
8938 DECL_DECLARED_CONSTEXPR_P (decl) = true;
8940 // If the concept declaration specifier was found, check
8941 // that the declaration satisfies the necessary requirements.
8942 if (concept_p)
8944 DECL_DECLARED_CONCEPT_P (decl) = true;
8945 check_concept_fn (decl);
8948 DECL_EXTERNAL (decl) = 1;
8949 if (TREE_CODE (type) == FUNCTION_TYPE)
8951 if (quals || rqual)
8952 TREE_TYPE (decl) = apply_memfn_quals (TREE_TYPE (decl),
8953 TYPE_UNQUALIFIED,
8954 REF_QUAL_NONE);
8956 if (quals)
8958 error (ctype
8959 ? G_("static member function %qD cannot have cv-qualifier")
8960 : G_("non-member function %qD cannot have cv-qualifier"),
8961 decl);
8962 quals = TYPE_UNQUALIFIED;
8965 if (rqual)
8967 error (ctype
8968 ? G_("static member function %qD cannot have ref-qualifier")
8969 : G_("non-member function %qD cannot have ref-qualifier"),
8970 decl);
8971 rqual = REF_QUAL_NONE;
8975 if (deduction_guide_p (decl))
8977 if (!DECL_NAMESPACE_SCOPE_P (decl))
8979 error_at (location, "deduction guide %qD must be declared at "
8980 "namespace scope", decl);
8981 return NULL_TREE;
8983 if (funcdef_flag)
8984 error_at (location,
8985 "deduction guide %qD must not have a function body", decl);
8987 else if (IDENTIFIER_ANY_OP_P (DECL_NAME (decl))
8988 && !grok_op_properties (decl, /*complain=*/true))
8989 return NULL_TREE;
8990 else if (UDLIT_OPER_P (DECL_NAME (decl)))
8992 bool long_long_unsigned_p;
8993 bool long_double_p;
8994 const char *suffix = NULL;
8995 /* [over.literal]/6: Literal operators shall not have C linkage. */
8996 if (DECL_LANGUAGE (decl) == lang_c)
8998 error_at (location, "literal operator with C linkage");
8999 maybe_show_extern_c_location ();
9000 return NULL_TREE;
9003 if (DECL_NAMESPACE_SCOPE_P (decl))
9005 if (!check_literal_operator_args (decl, &long_long_unsigned_p,
9006 &long_double_p))
9008 error_at (location, "%qD has invalid argument list", decl);
9009 return NULL_TREE;
9012 suffix = UDLIT_OP_SUFFIX (DECL_NAME (decl));
9013 if (long_long_unsigned_p)
9015 if (cpp_interpret_int_suffix (parse_in, suffix, strlen (suffix)))
9016 warning_at (location, 0, "integer suffix %qs"
9017 " shadowed by implementation", suffix);
9019 else if (long_double_p)
9021 if (cpp_interpret_float_suffix (parse_in, suffix, strlen (suffix)))
9022 warning_at (location, 0, "floating point suffix %qs"
9023 " shadowed by implementation", suffix);
9025 /* 17.6.3.3.5 */
9026 if (suffix[0] != '_'
9027 && !in_system_header_at (location)
9028 && !current_function_decl && !(friendp && !funcdef_flag))
9029 warning_at (location, OPT_Wliteral_suffix,
9030 "literal operator suffixes not preceded by %<_%>"
9031 " are reserved for future standardization");
9033 else
9035 error_at (location, "%qD must be a non-member function", decl);
9036 return NULL_TREE;
9040 if (funcdef_flag)
9041 /* Make the init_value nonzero so pushdecl knows this is not
9042 tentative. error_mark_node is replaced later with the BLOCK. */
9043 DECL_INITIAL (decl) = error_mark_node;
9045 if (TYPE_NOTHROW_P (type) || nothrow_libfn_p (decl))
9046 TREE_NOTHROW (decl) = 1;
9048 if (flag_openmp || flag_openmp_simd)
9050 /* Adjust "omp declare simd" attributes. */
9051 tree ods = lookup_attribute ("omp declare simd", *attrlist);
9052 if (ods)
9054 tree attr;
9055 for (attr = ods; attr;
9056 attr = lookup_attribute ("omp declare simd", TREE_CHAIN (attr)))
9058 if (TREE_CODE (type) == METHOD_TYPE)
9059 walk_tree (&TREE_VALUE (attr), declare_simd_adjust_this,
9060 DECL_ARGUMENTS (decl), NULL);
9061 if (TREE_VALUE (attr) != NULL_TREE)
9063 tree cl = TREE_VALUE (TREE_VALUE (attr));
9064 cl = c_omp_declare_simd_clauses_to_numbers
9065 (DECL_ARGUMENTS (decl), cl);
9066 if (cl)
9067 TREE_VALUE (TREE_VALUE (attr)) = cl;
9068 else
9069 TREE_VALUE (attr) = NULL_TREE;
9075 /* Caller will do the rest of this. */
9076 if (check < 0)
9077 return decl;
9079 if (ctype != NULL_TREE)
9080 grokclassfn (ctype, decl, flags);
9082 /* 12.4/3 */
9083 if (cxx_dialect >= cxx11
9084 && DECL_DESTRUCTOR_P (decl)
9085 && !TYPE_BEING_DEFINED (DECL_CONTEXT (decl))
9086 && !processing_template_decl)
9087 deduce_noexcept_on_destructor (decl);
9089 decl = check_explicit_specialization (orig_declarator, decl,
9090 template_count,
9091 2 * funcdef_flag +
9092 4 * (friendp != 0) +
9093 8 * concept_p,
9094 *attrlist);
9095 if (decl == error_mark_node)
9096 return NULL_TREE;
9098 if (DECL_STATIC_FUNCTION_P (decl))
9099 check_static_quals (decl, quals);
9101 if (attrlist)
9103 cplus_decl_attributes (&decl, *attrlist, 0);
9104 *attrlist = NULL_TREE;
9107 /* Check main's type after attributes have been applied. */
9108 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
9110 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
9111 integer_type_node))
9113 tree oldtypeargs = TYPE_ARG_TYPES (TREE_TYPE (decl));
9114 tree newtype;
9115 error_at (declspecs->locations[ds_type_spec],
9116 "%<::main%> must return %<int%>");
9117 newtype = build_function_type (integer_type_node, oldtypeargs);
9118 TREE_TYPE (decl) = newtype;
9120 if (warn_main)
9121 check_main_parameter_types (decl);
9124 if (ctype != NULL_TREE && check)
9126 tree old_decl = check_classfn (ctype, decl,
9127 (processing_template_decl
9128 > template_class_depth (ctype))
9129 ? current_template_parms
9130 : NULL_TREE);
9132 if (old_decl == error_mark_node)
9133 return NULL_TREE;
9135 if (old_decl)
9137 tree ok;
9138 tree pushed_scope;
9140 if (TREE_CODE (old_decl) == TEMPLATE_DECL)
9141 /* Because grokfndecl is always supposed to return a
9142 FUNCTION_DECL, we pull out the DECL_TEMPLATE_RESULT
9143 here. We depend on our callers to figure out that its
9144 really a template that's being returned. */
9145 old_decl = DECL_TEMPLATE_RESULT (old_decl);
9147 if (DECL_STATIC_FUNCTION_P (old_decl)
9148 && TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE)
9150 /* Remove the `this' parm added by grokclassfn. */
9151 revert_static_member_fn (decl);
9152 check_static_quals (decl, quals);
9154 if (DECL_ARTIFICIAL (old_decl))
9156 error ("definition of implicitly-declared %qD", old_decl);
9157 return NULL_TREE;
9159 else if (DECL_DEFAULTED_FN (old_decl))
9161 error ("definition of explicitly-defaulted %q+D", decl);
9162 inform (DECL_SOURCE_LOCATION (old_decl),
9163 "%q#D explicitly defaulted here", old_decl);
9164 return NULL_TREE;
9167 /* Since we've smashed OLD_DECL to its
9168 DECL_TEMPLATE_RESULT, we must do the same to DECL. */
9169 if (TREE_CODE (decl) == TEMPLATE_DECL)
9170 decl = DECL_TEMPLATE_RESULT (decl);
9172 /* Attempt to merge the declarations. This can fail, in
9173 the case of some invalid specialization declarations. */
9174 pushed_scope = push_scope (ctype);
9175 ok = duplicate_decls (decl, old_decl, friendp);
9176 if (pushed_scope)
9177 pop_scope (pushed_scope);
9178 if (!ok)
9180 error ("no %q#D member function declared in class %qT",
9181 decl, ctype);
9182 return NULL_TREE;
9184 if (ok == error_mark_node)
9185 return NULL_TREE;
9186 return old_decl;
9190 if (DECL_CONSTRUCTOR_P (decl) && !grok_ctor_properties (ctype, decl))
9191 return NULL_TREE;
9193 if (ctype == NULL_TREE || check)
9194 return decl;
9196 if (virtualp)
9197 DECL_VIRTUAL_P (decl) = 1;
9199 return decl;
9202 /* decl is a FUNCTION_DECL.
9203 specifiers are the parsed virt-specifiers.
9205 Set flags to reflect the virt-specifiers.
9207 Returns decl. */
9209 static tree
9210 set_virt_specifiers (tree decl, cp_virt_specifiers specifiers)
9212 if (decl == NULL_TREE)
9213 return decl;
9214 if (specifiers & VIRT_SPEC_OVERRIDE)
9215 DECL_OVERRIDE_P (decl) = 1;
9216 if (specifiers & VIRT_SPEC_FINAL)
9217 DECL_FINAL_P (decl) = 1;
9218 return decl;
9221 /* DECL is a VAR_DECL for a static data member. Set flags to reflect
9222 the linkage that DECL will receive in the object file. */
9224 static void
9225 set_linkage_for_static_data_member (tree decl)
9227 /* A static data member always has static storage duration and
9228 external linkage. Note that static data members are forbidden in
9229 local classes -- the only situation in which a class has
9230 non-external linkage. */
9231 TREE_PUBLIC (decl) = 1;
9232 TREE_STATIC (decl) = 1;
9233 /* For non-template classes, static data members are always put
9234 out in exactly those files where they are defined, just as
9235 with ordinary namespace-scope variables. */
9236 if (!processing_template_decl)
9237 DECL_INTERFACE_KNOWN (decl) = 1;
9240 /* Create a VAR_DECL named NAME with the indicated TYPE.
9242 If SCOPE is non-NULL, it is the class type or namespace containing
9243 the variable. If SCOPE is NULL, the variable should is created in
9244 the innermost enclosing scope. */
9246 static tree
9247 grokvardecl (tree type,
9248 tree name,
9249 tree orig_declarator,
9250 const cp_decl_specifier_seq *declspecs,
9251 int initialized,
9252 int type_quals,
9253 int inlinep,
9254 bool conceptp,
9255 int template_count,
9256 tree scope)
9258 tree decl;
9259 tree explicit_scope;
9261 gcc_assert (!name || identifier_p (name));
9263 bool constp = (type_quals & TYPE_QUAL_CONST) != 0;
9264 bool volatilep = (type_quals & TYPE_QUAL_VOLATILE) != 0;
9266 /* Compute the scope in which to place the variable, but remember
9267 whether or not that scope was explicitly specified by the user. */
9268 explicit_scope = scope;
9269 if (!scope)
9271 /* An explicit "extern" specifier indicates a namespace-scope
9272 variable. */
9273 if (declspecs->storage_class == sc_extern)
9274 scope = current_decl_namespace ();
9275 else if (!at_function_scope_p ())
9276 scope = current_scope ();
9279 if (scope
9280 && (/* If the variable is a namespace-scope variable declared in a
9281 template, we need DECL_LANG_SPECIFIC. */
9282 (TREE_CODE (scope) == NAMESPACE_DECL && processing_template_decl)
9283 /* Similarly for namespace-scope variables with language linkage
9284 other than C++. */
9285 || (TREE_CODE (scope) == NAMESPACE_DECL
9286 && current_lang_name != lang_name_cplusplus)
9287 /* Similarly for static data members. */
9288 || TYPE_P (scope)
9289 /* Similarly for explicit specializations. */
9290 || (orig_declarator
9291 && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)))
9292 decl = build_lang_decl (VAR_DECL, name, type);
9293 else
9294 decl = build_decl (input_location, VAR_DECL, name, type);
9296 if (explicit_scope && TREE_CODE (explicit_scope) == NAMESPACE_DECL)
9297 set_decl_namespace (decl, explicit_scope, 0);
9298 else
9299 DECL_CONTEXT (decl) = FROB_CONTEXT (scope);
9301 if (declspecs->storage_class == sc_extern)
9303 DECL_THIS_EXTERN (decl) = 1;
9304 DECL_EXTERNAL (decl) = !initialized;
9307 if (DECL_CLASS_SCOPE_P (decl))
9309 set_linkage_for_static_data_member (decl);
9310 /* This function is only called with out-of-class definitions. */
9311 DECL_EXTERNAL (decl) = 0;
9312 check_class_member_definition_namespace (decl);
9314 /* At top level, either `static' or no s.c. makes a definition
9315 (perhaps tentative), and absence of `static' makes it public. */
9316 else if (toplevel_bindings_p ())
9318 TREE_PUBLIC (decl) = (declspecs->storage_class != sc_static
9319 && (DECL_THIS_EXTERN (decl)
9320 || ! constp
9321 || volatilep
9322 || inlinep));
9323 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
9325 /* Not at top level, only `static' makes a static definition. */
9326 else
9328 TREE_STATIC (decl) = declspecs->storage_class == sc_static;
9329 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
9332 if (decl_spec_seq_has_spec_p (declspecs, ds_thread))
9334 if (DECL_EXTERNAL (decl) || TREE_STATIC (decl))
9336 CP_DECL_THREAD_LOCAL_P (decl) = true;
9337 if (!processing_template_decl)
9338 set_decl_tls_model (decl, decl_default_tls_model (decl));
9340 if (declspecs->gnu_thread_keyword_p)
9341 SET_DECL_GNU_TLS_P (decl);
9344 /* If the type of the decl has no linkage, make sure that we'll
9345 notice that in mark_used. */
9346 if (cxx_dialect > cxx98
9347 && decl_linkage (decl) != lk_none
9348 && DECL_LANG_SPECIFIC (decl) == NULL
9349 && !DECL_EXTERN_C_P (decl)
9350 && no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/false))
9351 retrofit_lang_decl (decl);
9353 if (TREE_PUBLIC (decl))
9355 /* [basic.link]: A name with no linkage (notably, the name of a class
9356 or enumeration declared in a local scope) shall not be used to
9357 declare an entity with linkage.
9359 DR 757 relaxes this restriction for C++0x. */
9360 if (cxx_dialect < cxx11)
9361 no_linkage_error (decl);
9363 else
9364 DECL_INTERFACE_KNOWN (decl) = 1;
9366 if (DECL_NAME (decl)
9367 && MAIN_NAME_P (DECL_NAME (decl))
9368 && scope == global_namespace)
9369 error ("cannot declare %<::main%> to be a global variable");
9371 /* Check that the variable can be safely declared as a concept.
9372 Note that this also forbids explicit specializations. */
9373 if (conceptp)
9375 if (!processing_template_decl)
9377 error_at (declspecs->locations[ds_concept],
9378 "a non-template variable cannot be %<concept%>");
9379 return NULL_TREE;
9381 else
9382 DECL_DECLARED_CONCEPT_P (decl) = true;
9383 if (!same_type_ignoring_top_level_qualifiers_p (type, boolean_type_node))
9384 error_at (declspecs->locations[ds_type_spec],
9385 "concept must have type %<bool%>");
9387 else if (flag_concepts
9388 && processing_template_decl > template_class_depth (scope))
9390 tree reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
9391 tree ci = build_constraints (reqs, NULL_TREE);
9392 set_constraints (decl, ci);
9395 // Handle explicit specializations and instantiations of variable templates.
9396 if (orig_declarator)
9397 decl = check_explicit_specialization (orig_declarator, decl,
9398 template_count, conceptp * 8);
9400 return decl != error_mark_node ? decl : NULL_TREE;
9403 /* Create and return a canonical pointer to member function type, for
9404 TYPE, which is a POINTER_TYPE to a METHOD_TYPE. */
9406 tree
9407 build_ptrmemfunc_type (tree type)
9409 tree field, fields;
9410 tree t;
9412 if (type == error_mark_node)
9413 return type;
9415 /* Make sure that we always have the unqualified pointer-to-member
9416 type first. */
9417 if (cp_cv_quals quals = cp_type_quals (type))
9419 tree unqual = build_ptrmemfunc_type (TYPE_MAIN_VARIANT (type));
9420 return cp_build_qualified_type (unqual, quals);
9423 /* If a canonical type already exists for this type, use it. We use
9424 this method instead of type_hash_canon, because it only does a
9425 simple equality check on the list of field members. */
9427 t = TYPE_PTRMEMFUNC_TYPE (type);
9428 if (t)
9429 return t;
9431 t = make_node (RECORD_TYPE);
9433 /* Let the front end know this is a pointer to member function. */
9434 TYPE_PTRMEMFUNC_FLAG (t) = 1;
9436 field = build_decl (input_location, FIELD_DECL, pfn_identifier, type);
9437 fields = field;
9439 field = build_decl (input_location, FIELD_DECL, delta_identifier,
9440 delta_type_node);
9441 DECL_CHAIN (field) = fields;
9442 fields = field;
9444 finish_builtin_struct (t, "__ptrmemfunc_type", fields, ptr_type_node);
9446 /* Zap out the name so that the back end will give us the debugging
9447 information for this anonymous RECORD_TYPE. */
9448 TYPE_NAME (t) = NULL_TREE;
9450 /* Cache this pointer-to-member type so that we can find it again
9451 later. */
9452 TYPE_PTRMEMFUNC_TYPE (type) = t;
9454 if (TYPE_STRUCTURAL_EQUALITY_P (type))
9455 SET_TYPE_STRUCTURAL_EQUALITY (t);
9456 else if (TYPE_CANONICAL (type) != type)
9457 TYPE_CANONICAL (t) = build_ptrmemfunc_type (TYPE_CANONICAL (type));
9459 return t;
9462 /* Create and return a pointer to data member type. */
9464 tree
9465 build_ptrmem_type (tree class_type, tree member_type)
9467 if (TREE_CODE (member_type) == METHOD_TYPE)
9469 cp_cv_quals quals = type_memfn_quals (member_type);
9470 cp_ref_qualifier rqual = type_memfn_rqual (member_type);
9471 member_type = build_memfn_type (member_type, class_type, quals, rqual);
9472 return build_ptrmemfunc_type (build_pointer_type (member_type));
9474 else
9476 gcc_assert (TREE_CODE (member_type) != FUNCTION_TYPE);
9477 return build_offset_type (class_type, member_type);
9481 /* DECL is a VAR_DECL defined in-class, whose TYPE is also given.
9482 Check to see that the definition is valid. Issue appropriate error
9483 messages. Return 1 if the definition is particularly bad, or 0
9484 otherwise. */
9486 static int
9487 check_static_variable_definition (tree decl, tree type)
9489 /* Avoid redundant diagnostics on out-of-class definitions. */
9490 if (!current_class_type || !TYPE_BEING_DEFINED (current_class_type))
9491 return 0;
9492 /* Can't check yet if we don't know the type. */
9493 if (dependent_type_p (type))
9494 return 0;
9495 /* If DECL is declared constexpr, we'll do the appropriate checks
9496 in check_initializer. Similarly for inline static data members. */
9497 if (DECL_P (decl)
9498 && (DECL_DECLARED_CONSTEXPR_P (decl)
9499 || undeduced_auto_decl (decl)
9500 || DECL_VAR_DECLARED_INLINE_P (decl)))
9501 return 0;
9502 else if (cxx_dialect >= cxx11 && !INTEGRAL_OR_ENUMERATION_TYPE_P (type))
9504 if (!COMPLETE_TYPE_P (type))
9505 error_at (DECL_SOURCE_LOCATION (decl),
9506 "in-class initialization of static data member %q#D of "
9507 "incomplete type", decl);
9508 else if (literal_type_p (type))
9509 permerror (DECL_SOURCE_LOCATION (decl),
9510 "%<constexpr%> needed for in-class initialization of "
9511 "static data member %q#D of non-integral type", decl);
9512 else
9513 error_at (DECL_SOURCE_LOCATION (decl),
9514 "in-class initialization of static data member %q#D of "
9515 "non-literal type", decl);
9516 return 1;
9519 /* Motion 10 at San Diego: If a static const integral data member is
9520 initialized with an integral constant expression, the initializer
9521 may appear either in the declaration (within the class), or in
9522 the definition, but not both. If it appears in the class, the
9523 member is a member constant. The file-scope definition is always
9524 required. */
9525 if (!ARITHMETIC_TYPE_P (type) && TREE_CODE (type) != ENUMERAL_TYPE)
9527 error_at (DECL_SOURCE_LOCATION (decl),
9528 "invalid in-class initialization of static data member "
9529 "of non-integral type %qT",
9530 type);
9531 return 1;
9533 else if (!CP_TYPE_CONST_P (type))
9534 error_at (DECL_SOURCE_LOCATION (decl),
9535 "ISO C++ forbids in-class initialization of non-const "
9536 "static member %qD",
9537 decl);
9538 else if (!INTEGRAL_OR_ENUMERATION_TYPE_P (type))
9539 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wpedantic,
9540 "ISO C++ forbids initialization of member constant "
9541 "%qD of non-integral type %qT", decl, type);
9543 return 0;
9546 /* *expr_p is part of the TYPE_SIZE of a variably-sized array. If any
9547 SAVE_EXPRs in *expr_p wrap expressions with side-effects, break those
9548 expressions out into temporary variables so that walk_tree doesn't
9549 step into them (c++/15764). */
9551 static tree
9552 stabilize_save_expr_r (tree *expr_p, int *walk_subtrees, void *data)
9554 hash_set<tree> *pset = (hash_set<tree> *)data;
9555 tree expr = *expr_p;
9556 if (TREE_CODE (expr) == SAVE_EXPR)
9558 tree op = TREE_OPERAND (expr, 0);
9559 cp_walk_tree (&op, stabilize_save_expr_r, data, pset);
9560 if (TREE_SIDE_EFFECTS (op))
9561 TREE_OPERAND (expr, 0) = get_temp_regvar (TREE_TYPE (op), op);
9562 *walk_subtrees = 0;
9564 else if (!EXPR_P (expr) || !TREE_SIDE_EFFECTS (expr))
9565 *walk_subtrees = 0;
9566 return NULL;
9569 /* Entry point for the above. */
9571 static void
9572 stabilize_vla_size (tree size)
9574 hash_set<tree> pset;
9575 /* Break out any function calls into temporary variables. */
9576 cp_walk_tree (&size, stabilize_save_expr_r, &pset, &pset);
9579 /* Reduce a SIZEOF_EXPR to its value. */
9581 tree
9582 fold_sizeof_expr (tree t)
9584 tree r;
9585 if (SIZEOF_EXPR_TYPE_P (t))
9586 r = cxx_sizeof_or_alignof_type (TREE_TYPE (TREE_OPERAND (t, 0)),
9587 SIZEOF_EXPR, false, false);
9588 else if (TYPE_P (TREE_OPERAND (t, 0)))
9589 r = cxx_sizeof_or_alignof_type (TREE_OPERAND (t, 0), SIZEOF_EXPR,
9590 false, false);
9591 else
9592 r = cxx_sizeof_or_alignof_expr (TREE_OPERAND (t, 0), SIZEOF_EXPR,
9593 false);
9594 if (r == error_mark_node)
9595 r = size_one_node;
9596 return r;
9599 /* Given the SIZE (i.e., number of elements) in an array, compute
9600 an appropriate index type for the array. If non-NULL, NAME is
9601 the name of the entity being declared. */
9603 tree
9604 compute_array_index_type (tree name, tree size, tsubst_flags_t complain)
9606 tree itype;
9607 tree osize = size;
9609 if (error_operand_p (size))
9610 return error_mark_node;
9612 if (!type_dependent_expression_p (size))
9614 osize = size = mark_rvalue_use (size);
9616 if (cxx_dialect < cxx11 && TREE_CODE (size) == NOP_EXPR
9617 && TREE_SIDE_EFFECTS (size))
9618 /* In C++98, we mark a non-constant array bound with a magic
9619 NOP_EXPR with TREE_SIDE_EFFECTS; don't fold in that case. */;
9620 else
9622 size = instantiate_non_dependent_expr_sfinae (size, complain);
9623 size = build_converted_constant_expr (size_type_node, size, complain);
9624 size = maybe_constant_value (size);
9626 if (!TREE_CONSTANT (size))
9627 size = osize;
9630 if (error_operand_p (size))
9631 return error_mark_node;
9633 /* The array bound must be an integer type. */
9634 tree type = TREE_TYPE (size);
9635 if (!INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
9637 if (!(complain & tf_error))
9638 return error_mark_node;
9639 if (name)
9640 error ("size of array %qD has non-integral type %qT", name, type);
9641 else
9642 error ("size of array has non-integral type %qT", type);
9643 size = integer_one_node;
9647 /* A type is dependent if it is...an array type constructed from any
9648 dependent type or whose size is specified by a constant expression
9649 that is value-dependent. */
9650 /* We can only call value_dependent_expression_p on integral constant
9651 expressions; treat non-constant expressions as dependent, too. */
9652 if (processing_template_decl
9653 && (type_dependent_expression_p (size)
9654 || !TREE_CONSTANT (size) || value_dependent_expression_p (size)))
9656 /* We cannot do any checking for a SIZE that isn't known to be
9657 constant. Just build the index type and mark that it requires
9658 structural equality checks. */
9659 itype = build_index_type (build_min (MINUS_EXPR, sizetype,
9660 size, size_one_node));
9661 TYPE_DEPENDENT_P (itype) = 1;
9662 TYPE_DEPENDENT_P_VALID (itype) = 1;
9663 SET_TYPE_STRUCTURAL_EQUALITY (itype);
9664 return itype;
9667 if (TREE_CODE (size) != INTEGER_CST)
9669 tree folded = cp_fully_fold (size);
9670 if (TREE_CODE (folded) == INTEGER_CST)
9671 pedwarn (location_of (size), OPT_Wpedantic,
9672 "size of array is not an integral constant-expression");
9673 /* Use the folded result for VLAs, too; it will have resolved
9674 SIZEOF_EXPR. */
9675 size = folded;
9678 /* Normally, the array-bound will be a constant. */
9679 if (TREE_CODE (size) == INTEGER_CST)
9681 /* An array must have a positive number of elements. */
9682 if (!valid_constant_size_p (size))
9684 if (!(complain & tf_error))
9685 return error_mark_node;
9687 if (name)
9688 error ("size of array %qD is negative", name);
9689 else
9690 error ("size of array is negative");
9691 size = integer_one_node;
9693 /* As an extension we allow zero-sized arrays. */
9694 else if (integer_zerop (size))
9696 if (!(complain & tf_error))
9697 /* We must fail if performing argument deduction (as
9698 indicated by the state of complain), so that
9699 another substitution can be found. */
9700 return error_mark_node;
9701 else if (in_system_header_at (input_location))
9702 /* Allow them in system headers because glibc uses them. */;
9703 else if (name)
9704 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids zero-size array %qD", name);
9705 else
9706 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids zero-size array");
9709 else if (TREE_CONSTANT (size)
9710 /* We don't allow VLAs at non-function scopes, or during
9711 tentative template substitution. */
9712 || !at_function_scope_p ()
9713 || !(complain & tf_error))
9715 if (!(complain & tf_error))
9716 return error_mark_node;
9717 /* `(int) &fn' is not a valid array bound. */
9718 if (name)
9719 error ("size of array %qD is not an integral constant-expression",
9720 name);
9721 else
9722 error ("size of array is not an integral constant-expression");
9723 size = integer_one_node;
9725 else if (pedantic && warn_vla != 0)
9727 if (name)
9728 pedwarn (input_location, OPT_Wvla, "ISO C++ forbids variable length array %qD", name);
9729 else
9730 pedwarn (input_location, OPT_Wvla, "ISO C++ forbids variable length array");
9732 else if (warn_vla > 0)
9734 if (name)
9735 warning (OPT_Wvla,
9736 "variable length array %qD is used", name);
9737 else
9738 warning (OPT_Wvla,
9739 "variable length array is used");
9742 if (processing_template_decl && !TREE_CONSTANT (size))
9743 /* A variable sized array. */
9744 itype = build_min (MINUS_EXPR, sizetype, size, integer_one_node);
9745 else
9747 /* Compute the index of the largest element in the array. It is
9748 one less than the number of elements in the array. We save
9749 and restore PROCESSING_TEMPLATE_DECL so that computations in
9750 cp_build_binary_op will be appropriately folded. */
9752 processing_template_decl_sentinel s;
9753 itype = cp_build_binary_op (input_location,
9754 MINUS_EXPR,
9755 cp_convert (ssizetype, size, complain),
9756 cp_convert (ssizetype, integer_one_node,
9757 complain),
9758 complain);
9759 itype = maybe_constant_value (itype);
9762 if (!TREE_CONSTANT (itype))
9764 /* A variable sized array. */
9765 itype = variable_size (itype);
9767 stabilize_vla_size (itype);
9769 if (sanitize_flags_p (SANITIZE_VLA)
9770 && current_function_decl != NULL_TREE)
9772 /* We have to add 1 -- in the ubsan routine we generate
9773 LE_EXPR rather than LT_EXPR. */
9774 tree t = fold_build2 (PLUS_EXPR, TREE_TYPE (itype), itype,
9775 build_one_cst (TREE_TYPE (itype)));
9776 t = ubsan_instrument_vla (input_location, t);
9777 finish_expr_stmt (t);
9780 /* Make sure that there was no overflow when creating to a signed
9781 index type. (For example, on a 32-bit machine, an array with
9782 size 2^32 - 1 is too big.) */
9783 else if (TREE_CODE (itype) == INTEGER_CST
9784 && TREE_OVERFLOW (itype))
9786 if (!(complain & tf_error))
9787 return error_mark_node;
9788 error ("overflow in array dimension");
9789 TREE_OVERFLOW (itype) = 0;
9793 /* Create and return the appropriate index type. */
9794 itype = build_index_type (itype);
9796 /* If the index type were dependent, we would have returned early, so
9797 remember that it isn't. */
9798 TYPE_DEPENDENT_P (itype) = 0;
9799 TYPE_DEPENDENT_P_VALID (itype) = 1;
9800 return itype;
9803 /* Returns the scope (if any) in which the entity declared by
9804 DECLARATOR will be located. If the entity was declared with an
9805 unqualified name, NULL_TREE is returned. */
9807 tree
9808 get_scope_of_declarator (const cp_declarator *declarator)
9810 while (declarator && declarator->kind != cdk_id)
9811 declarator = declarator->declarator;
9813 /* If the declarator-id is a SCOPE_REF, the scope in which the
9814 declaration occurs is the first operand. */
9815 if (declarator
9816 && declarator->u.id.qualifying_scope)
9817 return declarator->u.id.qualifying_scope;
9819 /* Otherwise, the declarator is not a qualified name; the entity will
9820 be declared in the current scope. */
9821 return NULL_TREE;
9824 /* Returns an ARRAY_TYPE for an array with SIZE elements of the
9825 indicated TYPE. If non-NULL, NAME is the NAME of the declaration
9826 with this type. */
9828 static tree
9829 create_array_type_for_decl (tree name, tree type, tree size)
9831 tree itype = NULL_TREE;
9833 /* If things have already gone awry, bail now. */
9834 if (type == error_mark_node || size == error_mark_node)
9835 return error_mark_node;
9837 /* 8.3.4/1: If the type of the identifier of D contains the auto
9838 type-specifier, the program is ill-formed. */
9839 if (type_uses_auto (type))
9841 error ("%qD declared as array of %qT", name, type);
9842 return error_mark_node;
9845 /* If there are some types which cannot be array elements,
9846 issue an error-message and return. */
9847 switch (TREE_CODE (type))
9849 case VOID_TYPE:
9850 if (name)
9851 error ("declaration of %qD as array of void", name);
9852 else
9853 error ("creating array of void");
9854 return error_mark_node;
9856 case FUNCTION_TYPE:
9857 if (name)
9858 error ("declaration of %qD as array of functions", name);
9859 else
9860 error ("creating array of functions");
9861 return error_mark_node;
9863 case REFERENCE_TYPE:
9864 if (name)
9865 error ("declaration of %qD as array of references", name);
9866 else
9867 error ("creating array of references");
9868 return error_mark_node;
9870 case METHOD_TYPE:
9871 if (name)
9872 error ("declaration of %qD as array of function members", name);
9873 else
9874 error ("creating array of function members");
9875 return error_mark_node;
9877 default:
9878 break;
9881 /* [dcl.array]
9883 The constant expressions that specify the bounds of the arrays
9884 can be omitted only for the first member of the sequence. */
9885 if (TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type))
9887 if (name)
9888 error ("declaration of %qD as multidimensional array must "
9889 "have bounds for all dimensions except the first",
9890 name);
9891 else
9892 error ("multidimensional array must have bounds for all "
9893 "dimensions except the first");
9895 return error_mark_node;
9898 /* Figure out the index type for the array. */
9899 if (size)
9900 itype = compute_array_index_type (name, size, tf_warning_or_error);
9902 /* [dcl.array]
9903 T is called the array element type; this type shall not be [...] an
9904 abstract class type. */
9905 abstract_virtuals_error (name, type);
9907 return build_cplus_array_type (type, itype);
9910 /* Returns the smallest location that is not UNKNOWN_LOCATION. */
9912 static location_t
9913 min_location (location_t loca, location_t locb)
9915 if (loca == UNKNOWN_LOCATION
9916 || (locb != UNKNOWN_LOCATION
9917 && linemap_location_before_p (line_table, locb, loca)))
9918 return locb;
9919 return loca;
9922 /* Returns the smallest location != UNKNOWN_LOCATION among the
9923 three stored in LOCATIONS[ds_const], LOCATIONS[ds_volatile],
9924 and LOCATIONS[ds_restrict]. */
9926 static location_t
9927 smallest_type_quals_location (int type_quals, const location_t* locations)
9929 location_t loc = UNKNOWN_LOCATION;
9931 if (type_quals & TYPE_QUAL_CONST)
9932 loc = locations[ds_const];
9934 if (type_quals & TYPE_QUAL_VOLATILE)
9935 loc = min_location (loc, locations[ds_volatile]);
9937 if (type_quals & TYPE_QUAL_RESTRICT)
9938 loc = min_location (loc, locations[ds_restrict]);
9940 return loc;
9943 /* Check that it's OK to declare a function with the indicated TYPE
9944 and TYPE_QUALS. SFK indicates the kind of special function (if any)
9945 that this function is. OPTYPE is the type given in a conversion
9946 operator declaration, or the class type for a constructor/destructor.
9947 Returns the actual return type of the function; that may be different
9948 than TYPE if an error occurs, or for certain special functions. */
9950 static tree
9951 check_special_function_return_type (special_function_kind sfk,
9952 tree type,
9953 tree optype,
9954 int type_quals,
9955 const location_t* locations)
9957 switch (sfk)
9959 case sfk_constructor:
9960 if (type)
9961 error ("return type specification for constructor invalid");
9962 else if (type_quals != TYPE_UNQUALIFIED)
9963 error_at (smallest_type_quals_location (type_quals, locations),
9964 "qualifiers are not allowed on constructor declaration");
9966 if (targetm.cxx.cdtor_returns_this ())
9967 type = build_pointer_type (optype);
9968 else
9969 type = void_type_node;
9970 break;
9972 case sfk_destructor:
9973 if (type)
9974 error ("return type specification for destructor invalid");
9975 else if (type_quals != TYPE_UNQUALIFIED)
9976 error_at (smallest_type_quals_location (type_quals, locations),
9977 "qualifiers are not allowed on destructor declaration");
9979 /* We can't use the proper return type here because we run into
9980 problems with ambiguous bases and covariant returns. */
9981 if (targetm.cxx.cdtor_returns_this ())
9982 type = build_pointer_type (void_type_node);
9983 else
9984 type = void_type_node;
9985 break;
9987 case sfk_conversion:
9988 if (type)
9989 error ("return type specified for %<operator %T%>", optype);
9990 else if (type_quals != TYPE_UNQUALIFIED)
9991 error_at (smallest_type_quals_location (type_quals, locations),
9992 "qualifiers are not allowed on declaration of "
9993 "%<operator %T%>", optype);
9995 type = optype;
9996 break;
9998 case sfk_deduction_guide:
9999 if (type)
10000 error ("return type specified for deduction guide");
10001 else if (type_quals != TYPE_UNQUALIFIED)
10002 error_at (smallest_type_quals_location (type_quals, locations),
10003 "qualifiers are not allowed on declaration of "
10004 "deduction guide");
10005 if (TREE_CODE (optype) == TEMPLATE_TEMPLATE_PARM)
10007 error ("template template parameter %qT in declaration of "
10008 "deduction guide", optype);
10009 type = error_mark_node;
10011 else
10012 type = make_template_placeholder (CLASSTYPE_TI_TEMPLATE (optype));
10013 for (int i = 0; i < ds_last; ++i)
10014 if (i != ds_explicit && locations[i])
10015 error_at (locations[i],
10016 "decl-specifier in declaration of deduction guide");
10017 break;
10019 default:
10020 gcc_unreachable ();
10023 return type;
10026 /* A variable or data member (whose unqualified name is IDENTIFIER)
10027 has been declared with the indicated TYPE. If the TYPE is not
10028 acceptable, issue an error message and return a type to use for
10029 error-recovery purposes. */
10031 tree
10032 check_var_type (tree identifier, tree type)
10034 if (VOID_TYPE_P (type))
10036 if (!identifier)
10037 error ("unnamed variable or field declared void");
10038 else if (identifier_p (identifier))
10040 gcc_assert (!IDENTIFIER_ANY_OP_P (identifier));
10041 error ("variable or field %qE declared void", identifier);
10043 else
10044 error ("variable or field declared void");
10045 type = error_mark_node;
10048 return type;
10051 /* Handle declaring DECL as an inline variable. */
10053 static void
10054 mark_inline_variable (tree decl, location_t loc)
10056 bool inlinep = true;
10057 if (! toplevel_bindings_p ())
10059 error_at (loc, "%<inline%> specifier invalid for variable "
10060 "%qD declared at block scope", decl);
10061 inlinep = false;
10063 else if (cxx_dialect < cxx17)
10064 pedwarn (loc, 0, "inline variables are only available "
10065 "with -std=c++17 or -std=gnu++17");
10066 if (inlinep)
10068 retrofit_lang_decl (decl);
10069 SET_DECL_VAR_DECLARED_INLINE_P (decl);
10074 /* Assign a typedef-given name to a class or enumeration type declared
10075 as anonymous at first. This was split out of grokdeclarator
10076 because it is also used in libcc1. */
10078 void
10079 name_unnamed_type (tree type, tree decl)
10081 gcc_assert (TYPE_UNNAMED_P (type));
10083 /* Replace the anonymous name with the real name everywhere. */
10084 for (tree t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
10086 if (anon_aggrname_p (TYPE_IDENTIFIER (t)))
10087 /* We do not rename the debug info representing the
10088 unnamed tagged type because the standard says in
10089 [dcl.typedef] that the naming applies only for
10090 linkage purposes. */
10091 /*debug_hooks->set_name (t, decl);*/
10092 TYPE_NAME (t) = decl;
10095 if (TYPE_LANG_SPECIFIC (type))
10096 TYPE_WAS_UNNAMED (type) = 1;
10098 /* If this is a typedef within a template class, the nested
10099 type is a (non-primary) template. The name for the
10100 template needs updating as well. */
10101 if (TYPE_LANG_SPECIFIC (type) && CLASSTYPE_TEMPLATE_INFO (type))
10102 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type))
10103 = TYPE_IDENTIFIER (type);
10105 /* Adjust linkage now that we aren't unnamed anymore. */
10106 reset_type_linkage (type);
10108 /* FIXME remangle member functions; member functions of a
10109 type with external linkage have external linkage. */
10111 /* Check that our job is done, and that it would fail if we
10112 attempted to do it again. */
10113 gcc_assert (!TYPE_UNNAMED_P (type));
10116 /* Given declspecs and a declarator (abstract or otherwise), determine
10117 the name and type of the object declared and construct a DECL node
10118 for it.
10120 DECLSPECS points to the representation of declaration-specifier
10121 sequence that precedes declarator.
10123 DECL_CONTEXT says which syntactic context this declaration is in:
10124 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
10125 FUNCDEF for a function definition. Like NORMAL but a few different
10126 error messages in each case. Return value may be zero meaning
10127 this definition is too screwy to try to parse.
10128 MEMFUNCDEF for a function definition. Like FUNCDEF but prepares to
10129 handle member functions (which have FIELD context).
10130 Return value may be zero meaning this definition is too screwy to
10131 try to parse.
10132 PARM for a parameter declaration (either within a function prototype
10133 or before a function body). Make a PARM_DECL, or return void_type_node.
10134 TPARM for a template parameter declaration.
10135 CATCHPARM for a parameter declaration before a catch clause.
10136 TYPENAME if for a typename (in a cast or sizeof).
10137 Don't make a DECL node; just return the ..._TYPE node.
10138 FIELD for a struct or union field; make a FIELD_DECL.
10139 BITFIELD for a field with specified width.
10141 INITIALIZED is as for start_decl.
10143 ATTRLIST is a pointer to the list of attributes, which may be NULL
10144 if there are none; *ATTRLIST may be modified if attributes from inside
10145 the declarator should be applied to the declaration.
10147 When this function is called, scoping variables (such as
10148 CURRENT_CLASS_TYPE) should reflect the scope in which the
10149 declaration occurs, not the scope in which the new declaration will
10150 be placed. For example, on:
10152 void S::f() { ... }
10154 when grokdeclarator is called for `S::f', the CURRENT_CLASS_TYPE
10155 should not be `S'.
10157 Returns a DECL (if a declarator is present), a TYPE (if there is no
10158 declarator, in cases like "struct S;"), or the ERROR_MARK_NODE if an
10159 error occurs. */
10161 tree
10162 grokdeclarator (const cp_declarator *declarator,
10163 cp_decl_specifier_seq *declspecs,
10164 enum decl_context decl_context,
10165 int initialized,
10166 tree* attrlist)
10168 tree type = NULL_TREE;
10169 int longlong = 0;
10170 int explicit_intN = 0;
10171 int virtualp, explicitp, friendp, inlinep, staticp;
10172 int explicit_int = 0;
10173 int explicit_char = 0;
10174 int defaulted_int = 0;
10176 tree typedef_decl = NULL_TREE;
10177 const char *name = NULL;
10178 tree typedef_type = NULL_TREE;
10179 /* True if this declarator is a function definition. */
10180 bool funcdef_flag = false;
10181 cp_declarator_kind innermost_code = cdk_error;
10182 int bitfield = 0;
10183 #if 0
10184 /* See the code below that used this. */
10185 tree decl_attr = NULL_TREE;
10186 #endif
10188 /* Keep track of what sort of function is being processed
10189 so that we can warn about default return values, or explicit
10190 return values which do not match prescribed defaults. */
10191 special_function_kind sfk = sfk_none;
10193 tree dname = NULL_TREE;
10194 tree ctor_return_type = NULL_TREE;
10195 enum overload_flags flags = NO_SPECIAL;
10196 /* cv-qualifiers that apply to the declarator, for a declaration of
10197 a member function. */
10198 cp_cv_quals memfn_quals = TYPE_UNQUALIFIED;
10199 /* virt-specifiers that apply to the declarator, for a declaration of
10200 a member function. */
10201 cp_virt_specifiers virt_specifiers = VIRT_SPEC_UNSPECIFIED;
10202 /* ref-qualifier that applies to the declarator, for a declaration of
10203 a member function. */
10204 cp_ref_qualifier rqual = REF_QUAL_NONE;
10205 /* cv-qualifiers that apply to the type specified by the DECLSPECS. */
10206 int type_quals = TYPE_UNQUALIFIED;
10207 tree raises = NULL_TREE;
10208 int template_count = 0;
10209 tree returned_attrs = NULL_TREE;
10210 tree parms = NULL_TREE;
10211 const cp_declarator *id_declarator;
10212 /* The unqualified name of the declarator; either an
10213 IDENTIFIER_NODE, BIT_NOT_EXPR, or TEMPLATE_ID_EXPR. */
10214 tree unqualified_id;
10215 /* The class type, if any, in which this entity is located,
10216 or NULL_TREE if none. Note that this value may be different from
10217 the current class type; for example if an attempt is made to declare
10218 "A::f" inside "B", this value will be "A". */
10219 tree ctype = current_class_type;
10220 /* The NAMESPACE_DECL for the namespace in which this entity is
10221 located. If an unqualified name is used to declare the entity,
10222 this value will be NULL_TREE, even if the entity is located at
10223 namespace scope. */
10224 tree in_namespace = NULL_TREE;
10225 cp_storage_class storage_class;
10226 bool unsigned_p, signed_p, short_p, long_p, thread_p;
10227 bool type_was_error_mark_node = false;
10228 bool parameter_pack_p = declarator ? declarator->parameter_pack_p : false;
10229 bool template_type_arg = false;
10230 bool template_parm_flag = false;
10231 bool typedef_p = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
10232 bool constexpr_p = decl_spec_seq_has_spec_p (declspecs, ds_constexpr);
10233 bool late_return_type_p = false;
10234 bool array_parameter_p = false;
10235 source_location saved_loc = input_location;
10236 tree reqs = NULL_TREE;
10238 signed_p = decl_spec_seq_has_spec_p (declspecs, ds_signed);
10239 unsigned_p = decl_spec_seq_has_spec_p (declspecs, ds_unsigned);
10240 short_p = decl_spec_seq_has_spec_p (declspecs, ds_short);
10241 long_p = decl_spec_seq_has_spec_p (declspecs, ds_long);
10242 longlong = decl_spec_seq_has_spec_p (declspecs, ds_long_long);
10243 explicit_intN = declspecs->explicit_intN_p;
10244 thread_p = decl_spec_seq_has_spec_p (declspecs, ds_thread);
10246 // Was concept_p specified? Note that ds_concept
10247 // implies ds_constexpr!
10248 bool concept_p = decl_spec_seq_has_spec_p (declspecs, ds_concept);
10249 if (concept_p)
10250 constexpr_p = true;
10252 if (decl_spec_seq_has_spec_p (declspecs, ds_const))
10253 type_quals |= TYPE_QUAL_CONST;
10254 if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
10255 type_quals |= TYPE_QUAL_VOLATILE;
10256 if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
10257 type_quals |= TYPE_QUAL_RESTRICT;
10259 if (decl_context == FUNCDEF)
10260 funcdef_flag = true, decl_context = NORMAL;
10261 else if (decl_context == MEMFUNCDEF)
10262 funcdef_flag = true, decl_context = FIELD;
10263 else if (decl_context == BITFIELD)
10264 bitfield = 1, decl_context = FIELD;
10265 else if (decl_context == TEMPLATE_TYPE_ARG)
10266 template_type_arg = true, decl_context = TYPENAME;
10267 else if (decl_context == TPARM)
10268 template_parm_flag = true, decl_context = PARM;
10270 if (initialized > 1)
10271 funcdef_flag = true;
10273 location_t typespec_loc = smallest_type_quals_location (type_quals,
10274 declspecs->locations);
10275 if (typespec_loc == UNKNOWN_LOCATION)
10276 typespec_loc = declspecs->locations[ds_type_spec];
10277 if (typespec_loc == UNKNOWN_LOCATION)
10278 typespec_loc = input_location;
10280 /* Look inside a declarator for the name being declared
10281 and get it as a string, for an error message. */
10282 for (id_declarator = declarator;
10283 id_declarator;
10284 id_declarator = id_declarator->declarator)
10286 if (id_declarator->kind != cdk_id)
10287 innermost_code = id_declarator->kind;
10289 switch (id_declarator->kind)
10291 case cdk_function:
10292 if (id_declarator->declarator
10293 && id_declarator->declarator->kind == cdk_id)
10295 sfk = id_declarator->declarator->u.id.sfk;
10296 if (sfk == sfk_destructor)
10297 flags = DTOR_FLAG;
10299 break;
10301 case cdk_id:
10303 tree qualifying_scope = id_declarator->u.id.qualifying_scope;
10304 tree decl = id_declarator->u.id.unqualified_name;
10305 if (!decl)
10306 break;
10307 if (qualifying_scope)
10309 if (check_for_bare_parameter_packs (qualifying_scope,
10310 id_declarator->id_loc))
10311 return error_mark_node;
10312 if (at_function_scope_p ())
10314 /* [dcl.meaning]
10316 A declarator-id shall not be qualified except
10317 for ...
10319 None of the cases are permitted in block
10320 scope. */
10321 if (qualifying_scope == global_namespace)
10322 error ("invalid use of qualified-name %<::%D%>",
10323 decl);
10324 else if (TYPE_P (qualifying_scope))
10325 error ("invalid use of qualified-name %<%T::%D%>",
10326 qualifying_scope, decl);
10327 else
10328 error ("invalid use of qualified-name %<%D::%D%>",
10329 qualifying_scope, decl);
10330 return error_mark_node;
10332 else if (TYPE_P (qualifying_scope))
10334 ctype = qualifying_scope;
10335 if (!MAYBE_CLASS_TYPE_P (ctype))
10337 error ("%q#T is not a class or a namespace", ctype);
10338 ctype = NULL_TREE;
10340 else if (innermost_code != cdk_function
10341 && current_class_type
10342 && !uniquely_derived_from_p (ctype,
10343 current_class_type))
10345 error ("invalid use of qualified-name %<%T::%D%>",
10346 qualifying_scope, decl);
10347 return error_mark_node;
10350 else if (TREE_CODE (qualifying_scope) == NAMESPACE_DECL)
10351 in_namespace = qualifying_scope;
10353 switch (TREE_CODE (decl))
10355 case BIT_NOT_EXPR:
10357 if (innermost_code != cdk_function)
10359 error ("declaration of %qD as non-function", decl);
10360 return error_mark_node;
10362 else if (!qualifying_scope
10363 && !(current_class_type && at_class_scope_p ()))
10365 error ("declaration of %qD as non-member", decl);
10366 return error_mark_node;
10369 tree type = TREE_OPERAND (decl, 0);
10370 if (TYPE_P (type))
10371 type = constructor_name (type);
10372 name = identifier_to_locale (IDENTIFIER_POINTER (type));
10373 dname = decl;
10375 break;
10377 case TEMPLATE_ID_EXPR:
10379 tree fns = TREE_OPERAND (decl, 0);
10381 dname = fns;
10382 if (!identifier_p (dname))
10383 dname = OVL_NAME (dname);
10385 /* Fall through. */
10387 case IDENTIFIER_NODE:
10388 if (identifier_p (decl))
10389 dname = decl;
10391 if (IDENTIFIER_KEYWORD_P (dname))
10393 error ("declarator-id missing; using reserved word %qD",
10394 dname);
10395 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
10397 else if (!IDENTIFIER_CONV_OP_P (dname))
10398 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
10399 else
10401 gcc_assert (flags == NO_SPECIAL);
10402 flags = TYPENAME_FLAG;
10403 sfk = sfk_conversion;
10404 tree glob = get_global_binding (dname);
10405 if (glob && TREE_CODE (glob) == TYPE_DECL)
10406 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
10407 else
10408 name = "<invalid operator>";
10410 break;
10412 default:
10413 gcc_unreachable ();
10415 break;
10418 case cdk_array:
10419 case cdk_pointer:
10420 case cdk_reference:
10421 case cdk_ptrmem:
10422 break;
10424 case cdk_decomp:
10425 name = "structured binding";
10426 break;
10428 case cdk_error:
10429 return error_mark_node;
10431 default:
10432 gcc_unreachable ();
10434 if (id_declarator->kind == cdk_id)
10435 break;
10438 /* [dcl.fct.edf]
10440 The declarator in a function-definition shall have the form
10441 D1 ( parameter-declaration-clause) ... */
10442 if (funcdef_flag && innermost_code != cdk_function)
10444 error ("function definition does not declare parameters");
10445 return error_mark_node;
10448 if (flags == TYPENAME_FLAG
10449 && innermost_code != cdk_function
10450 && ! (ctype && !declspecs->any_specifiers_p))
10452 error ("declaration of %qD as non-function", dname);
10453 return error_mark_node;
10456 if (dname && identifier_p (dname))
10458 if (UDLIT_OPER_P (dname)
10459 && innermost_code != cdk_function)
10461 error ("declaration of %qD as non-function", dname);
10462 return error_mark_node;
10465 if (IDENTIFIER_ANY_OP_P (dname))
10467 if (typedef_p)
10469 error ("declaration of %qD as %<typedef%>", dname);
10470 return error_mark_node;
10472 else if (decl_context == PARM || decl_context == CATCHPARM)
10474 error ("declaration of %qD as parameter", dname);
10475 return error_mark_node;
10480 /* Anything declared one level down from the top level
10481 must be one of the parameters of a function
10482 (because the body is at least two levels down). */
10484 /* This heuristic cannot be applied to C++ nodes! Fixed, however,
10485 by not allowing C++ class definitions to specify their parameters
10486 with xdecls (must be spec.d in the parmlist).
10488 Since we now wait to push a class scope until we are sure that
10489 we are in a legitimate method context, we must set oldcname
10490 explicitly (since current_class_name is not yet alive).
10492 We also want to avoid calling this a PARM if it is in a namespace. */
10494 if (decl_context == NORMAL && !toplevel_bindings_p ())
10496 cp_binding_level *b = current_binding_level;
10497 current_binding_level = b->level_chain;
10498 if (current_binding_level != 0 && toplevel_bindings_p ())
10499 decl_context = PARM;
10500 current_binding_level = b;
10503 if (name == NULL)
10504 name = decl_context == PARM ? "parameter" : "type name";
10506 if (concept_p && typedef_p)
10508 error_at (declspecs->locations[ds_concept],
10509 "%<concept%> cannot appear in a typedef declaration");
10510 return error_mark_node;
10513 if (constexpr_p && typedef_p)
10515 error_at (declspecs->locations[ds_constexpr],
10516 "%<constexpr%> cannot appear in a typedef declaration");
10517 return error_mark_node;
10520 /* If there were multiple types specified in the decl-specifier-seq,
10521 issue an error message. */
10522 if (declspecs->multiple_types_p)
10524 error ("two or more data types in declaration of %qs", name);
10525 return error_mark_node;
10528 if (declspecs->conflicting_specifiers_p)
10530 error ("conflicting specifiers in declaration of %qs", name);
10531 return error_mark_node;
10534 /* Extract the basic type from the decl-specifier-seq. */
10535 type = declspecs->type;
10536 if (type == error_mark_node)
10538 type = NULL_TREE;
10539 type_was_error_mark_node = true;
10541 cp_warn_deprecated_use (type);
10542 if (type && TREE_CODE (type) == TYPE_DECL)
10544 typedef_decl = type;
10545 type = TREE_TYPE (typedef_decl);
10546 if (DECL_ARTIFICIAL (typedef_decl))
10547 cp_warn_deprecated_use (type);
10549 /* No type at all: default to `int', and set DEFAULTED_INT
10550 because it was not a user-defined typedef. */
10551 if (type == NULL_TREE)
10553 if (signed_p || unsigned_p || long_p || short_p)
10555 /* These imply 'int'. */
10556 type = integer_type_node;
10557 defaulted_int = 1;
10559 /* If we just have "complex", it is equivalent to "complex double". */
10560 else if (!longlong && !explicit_intN
10561 && decl_spec_seq_has_spec_p (declspecs, ds_complex))
10563 type = double_type_node;
10564 pedwarn (declspecs->locations[ds_complex], OPT_Wpedantic,
10565 "ISO C++ does not support plain %<complex%> meaning "
10566 "%<double complex%>");
10569 /* Gather flags. */
10570 explicit_int = declspecs->explicit_int_p;
10571 explicit_char = declspecs->explicit_char_p;
10573 #if 0
10574 /* See the code below that used this. */
10575 if (typedef_decl)
10576 decl_attr = DECL_ATTRIBUTES (typedef_decl);
10577 #endif
10578 typedef_type = type;
10580 if (sfk == sfk_conversion || sfk == sfk_deduction_guide)
10581 ctor_return_type = TREE_TYPE (dname);
10582 else
10583 ctor_return_type = ctype;
10585 if (sfk != sfk_none)
10587 type = check_special_function_return_type (sfk, type,
10588 ctor_return_type,
10589 type_quals,
10590 declspecs->locations);
10591 type_quals = TYPE_UNQUALIFIED;
10593 else if (type == NULL_TREE)
10595 int is_main;
10597 explicit_int = -1;
10599 /* We handle `main' specially here, because 'main () { }' is so
10600 common. With no options, it is allowed. With -Wreturn-type,
10601 it is a warning. It is only an error with -pedantic-errors. */
10602 is_main = (funcdef_flag
10603 && dname && identifier_p (dname)
10604 && MAIN_NAME_P (dname)
10605 && ctype == NULL_TREE
10606 && in_namespace == NULL_TREE
10607 && current_namespace == global_namespace);
10609 if (type_was_error_mark_node)
10610 /* We've already issued an error, don't complain more. */;
10611 else if (in_system_header_at (input_location) || flag_ms_extensions)
10612 /* Allow it, sigh. */;
10613 else if (! is_main)
10614 permerror (input_location, "ISO C++ forbids declaration of %qs with no type", name);
10615 else if (pedantic)
10616 pedwarn (input_location, OPT_Wpedantic,
10617 "ISO C++ forbids declaration of %qs with no type", name);
10618 else
10619 warning (OPT_Wreturn_type,
10620 "ISO C++ forbids declaration of %qs with no type", name);
10622 if (type_was_error_mark_node && template_parm_flag)
10623 /* FIXME we should be able to propagate the error_mark_node as is
10624 for other contexts too. */
10625 type = error_mark_node;
10626 else
10627 type = integer_type_node;
10630 ctype = NULL_TREE;
10632 if (explicit_intN)
10634 if (! int_n_enabled_p[declspecs->int_n_idx])
10636 error ("%<__int%d%> is not supported by this target",
10637 int_n_data[declspecs->int_n_idx].bitsize);
10638 explicit_intN = false;
10640 else if (pedantic && ! in_system_header_at (input_location))
10641 pedwarn (input_location, OPT_Wpedantic,
10642 "ISO C++ does not support %<__int%d%> for %qs",
10643 int_n_data[declspecs->int_n_idx].bitsize, name);
10646 /* Now process the modifiers that were specified
10647 and check for invalid combinations. */
10649 /* Long double is a special combination. */
10650 if (long_p && !longlong && TYPE_MAIN_VARIANT (type) == double_type_node)
10652 long_p = false;
10653 type = cp_build_qualified_type (long_double_type_node,
10654 cp_type_quals (type));
10657 /* Check all other uses of type modifiers. */
10659 if (unsigned_p || signed_p || long_p || short_p)
10661 location_t loc;
10662 const char *key;
10663 if (unsigned_p)
10665 key = "unsigned";
10666 loc = declspecs->locations[ds_unsigned];
10668 else if (signed_p)
10670 key = "signed";
10671 loc = declspecs->locations[ds_signed];
10673 else if (longlong)
10675 key = "long long";
10676 loc = declspecs->locations[ds_long_long];
10678 else if (long_p)
10680 key = "long";
10681 loc = declspecs->locations[ds_long];
10683 else /* if (short_p) */
10685 key = "short";
10686 loc = declspecs->locations[ds_short];
10689 int ok = 0;
10691 if (signed_p && unsigned_p)
10693 gcc_rich_location richloc (declspecs->locations[ds_signed]);
10694 richloc.add_range (declspecs->locations[ds_unsigned], false);
10695 error_at (&richloc,
10696 "%<signed%> and %<unsigned%> specified together");
10698 else if (long_p && short_p)
10700 gcc_rich_location richloc (declspecs->locations[ds_long]);
10701 richloc.add_range (declspecs->locations[ds_short], false);
10702 error_at (&richloc, "%<long%> and %<short%> specified together");
10704 else if (TREE_CODE (type) != INTEGER_TYPE
10705 || type == char16_type_node || type == char32_type_node
10706 || ((long_p || short_p)
10707 && (explicit_char || explicit_intN)))
10708 error_at (loc, "%qs specified with %qT", key, type);
10709 else if (!explicit_int && !defaulted_int
10710 && !explicit_char && !explicit_intN)
10712 if (typedef_decl)
10714 pedwarn (loc, OPT_Wpedantic, "%qs specified with %qT",
10715 key, type);
10716 ok = !flag_pedantic_errors;
10718 else if (declspecs->decltype_p)
10719 error_at (loc, "%qs specified with %<decltype%>", key);
10720 else
10721 error_at (loc, "%qs specified with %<typeof%>", key);
10723 else
10724 ok = 1;
10726 /* Discard the type modifiers if they are invalid. */
10727 if (! ok)
10729 unsigned_p = false;
10730 signed_p = false;
10731 long_p = false;
10732 short_p = false;
10733 longlong = 0;
10737 /* Decide whether an integer type is signed or not.
10738 Optionally treat bitfields as signed by default. */
10739 if (unsigned_p
10740 /* [class.bit]
10742 It is implementation-defined whether a plain (neither
10743 explicitly signed or unsigned) char, short, int, or long
10744 bit-field is signed or unsigned.
10746 Naturally, we extend this to long long as well. Note that
10747 this does not include wchar_t. */
10748 || (bitfield && !flag_signed_bitfields
10749 && !signed_p
10750 /* A typedef for plain `int' without `signed' can be
10751 controlled just like plain `int', but a typedef for
10752 `signed int' cannot be so controlled. */
10753 && !(typedef_decl
10754 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl))
10755 && TREE_CODE (type) == INTEGER_TYPE
10756 && !same_type_p (TYPE_MAIN_VARIANT (type), wchar_type_node)))
10758 if (explicit_intN)
10759 type = int_n_trees[declspecs->int_n_idx].unsigned_type;
10760 else if (longlong)
10761 type = long_long_unsigned_type_node;
10762 else if (long_p)
10763 type = long_unsigned_type_node;
10764 else if (short_p)
10765 type = short_unsigned_type_node;
10766 else if (type == char_type_node)
10767 type = unsigned_char_type_node;
10768 else if (typedef_decl)
10769 type = unsigned_type_for (type);
10770 else
10771 type = unsigned_type_node;
10773 else if (signed_p && type == char_type_node)
10774 type = signed_char_type_node;
10775 else if (explicit_intN)
10776 type = int_n_trees[declspecs->int_n_idx].signed_type;
10777 else if (longlong)
10778 type = long_long_integer_type_node;
10779 else if (long_p)
10780 type = long_integer_type_node;
10781 else if (short_p)
10782 type = short_integer_type_node;
10784 if (decl_spec_seq_has_spec_p (declspecs, ds_complex))
10786 if (TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
10787 error ("complex invalid for %qs", name);
10788 /* If a modifier is specified, the resulting complex is the complex
10789 form of TYPE. E.g, "complex short" is "complex short int". */
10790 else if (type == integer_type_node)
10791 type = complex_integer_type_node;
10792 else if (type == float_type_node)
10793 type = complex_float_type_node;
10794 else if (type == double_type_node)
10795 type = complex_double_type_node;
10796 else if (type == long_double_type_node)
10797 type = complex_long_double_type_node;
10798 else
10799 type = build_complex_type (type);
10802 /* If we're using the injected-class-name to form a compound type or a
10803 declaration, replace it with the underlying class so we don't get
10804 redundant typedefs in the debug output. But if we are returning the
10805 type unchanged, leave it alone so that it's available to
10806 maybe_get_template_decl_from_type_decl. */
10807 if (CLASS_TYPE_P (type)
10808 && DECL_SELF_REFERENCE_P (TYPE_NAME (type))
10809 && type == TREE_TYPE (TYPE_NAME (type))
10810 && (declarator || type_quals))
10811 type = DECL_ORIGINAL_TYPE (TYPE_NAME (type));
10813 type_quals |= cp_type_quals (type);
10814 type = cp_build_qualified_type_real
10815 (type, type_quals, ((((typedef_decl && !DECL_ARTIFICIAL (typedef_decl))
10816 || declspecs->decltype_p)
10817 ? tf_ignore_bad_quals : 0) | tf_warning_or_error));
10818 /* We might have ignored or rejected some of the qualifiers. */
10819 type_quals = cp_type_quals (type);
10821 if (cxx_dialect >= cxx17 && type && is_auto (type)
10822 && innermost_code != cdk_function
10823 && id_declarator && declarator != id_declarator)
10824 if (tree tmpl = CLASS_PLACEHOLDER_TEMPLATE (type))
10826 error_at (typespec_loc, "template placeholder type %qT must be followed "
10827 "by a simple declarator-id", type);
10828 inform (DECL_SOURCE_LOCATION (tmpl), "%qD declared here", tmpl);
10831 staticp = 0;
10832 inlinep = decl_spec_seq_has_spec_p (declspecs, ds_inline);
10833 virtualp = decl_spec_seq_has_spec_p (declspecs, ds_virtual);
10834 explicitp = decl_spec_seq_has_spec_p (declspecs, ds_explicit);
10836 storage_class = declspecs->storage_class;
10837 if (storage_class == sc_static)
10838 staticp = 1 + (decl_context == FIELD);
10840 if (virtualp)
10842 if (staticp == 2)
10844 gcc_rich_location richloc (declspecs->locations[ds_virtual]);
10845 richloc.add_range (declspecs->locations[ds_storage_class], false);
10846 error_at (&richloc, "member %qD cannot be declared both %<virtual%> "
10847 "and %<static%>", dname);
10848 storage_class = sc_none;
10849 staticp = 0;
10851 if (constexpr_p)
10853 gcc_rich_location richloc (declspecs->locations[ds_virtual]);
10854 richloc.add_range (declspecs->locations[ds_constexpr], false);
10855 error_at (&richloc, "member %qD cannot be declared both %<virtual%> "
10856 "and %<constexpr%>", dname);
10859 friendp = decl_spec_seq_has_spec_p (declspecs, ds_friend);
10861 /* Issue errors about use of storage classes for parameters. */
10862 if (decl_context == PARM)
10864 if (typedef_p)
10866 error_at (declspecs->locations[ds_typedef],
10867 "typedef declaration invalid in parameter declaration");
10868 return error_mark_node;
10870 else if (template_parm_flag && storage_class != sc_none)
10872 error_at (min_location (declspecs->locations[ds_thread],
10873 declspecs->locations[ds_storage_class]),
10874 "storage class specified for template parameter %qs",
10875 name);
10876 return error_mark_node;
10878 else if (storage_class == sc_static
10879 || storage_class == sc_extern
10880 || thread_p)
10882 error_at (min_location (declspecs->locations[ds_thread],
10883 declspecs->locations[ds_storage_class]),
10884 "storage class specified for parameter %qs", name);
10885 return error_mark_node;
10888 /* Function parameters cannot be concept. */
10889 if (concept_p)
10890 error_at (declspecs->locations[ds_concept],
10891 "a parameter cannot be declared %<concept%>");
10892 /* Function parameters cannot be constexpr. If we saw one, moan
10893 and pretend it wasn't there. */
10894 else if (constexpr_p)
10896 error_at (declspecs->locations[ds_constexpr],
10897 "a parameter cannot be declared %<constexpr%>");
10898 constexpr_p = 0;
10902 /* Give error if `virtual' is used outside of class declaration. */
10903 if (virtualp
10904 && (current_class_name == NULL_TREE || decl_context != FIELD))
10906 error_at (declspecs->locations[ds_virtual],
10907 "%<virtual%> outside class declaration");
10908 virtualp = 0;
10911 if (innermost_code == cdk_decomp)
10913 location_t loc = (declarator->kind == cdk_reference
10914 ? declarator->declarator->id_loc : declarator->id_loc);
10915 if (inlinep)
10916 error_at (declspecs->locations[ds_inline],
10917 "structured binding declaration cannot be %<inline%>");
10918 if (typedef_p)
10919 error_at (declspecs->locations[ds_typedef],
10920 "structured binding declaration cannot be %<typedef%>");
10921 if (constexpr_p)
10922 error_at (declspecs->locations[ds_constexpr], "structured "
10923 "binding declaration cannot be %<constexpr%>");
10924 if (thread_p)
10925 error_at (declspecs->locations[ds_thread],
10926 "structured binding declaration cannot be %qs",
10927 declspecs->gnu_thread_keyword_p
10928 ? "__thread" : "thread_local");
10929 if (concept_p)
10930 error_at (declspecs->locations[ds_concept],
10931 "structured binding declaration cannot be %<concept%>");
10932 switch (storage_class)
10934 case sc_none:
10935 break;
10936 case sc_register:
10937 error_at (loc, "structured binding declaration cannot be "
10938 "%<register%>");
10939 break;
10940 case sc_static:
10941 error_at (loc, "structured binding declaration cannot be "
10942 "%<static%>");
10943 break;
10944 case sc_extern:
10945 error_at (loc, "structured binding declaration cannot be "
10946 "%<extern%>");
10947 break;
10948 case sc_mutable:
10949 error_at (loc, "structured binding declaration cannot be "
10950 "%<mutable%>");
10951 break;
10952 case sc_auto:
10953 error_at (loc, "structured binding declaration cannot be "
10954 "C++98 %<auto%>");
10955 break;
10956 default:
10957 gcc_unreachable ();
10959 if (TREE_CODE (type) != TEMPLATE_TYPE_PARM
10960 || TYPE_IDENTIFIER (type) != auto_identifier)
10962 if (type != error_mark_node)
10964 error_at (loc, "structured binding declaration cannot have "
10965 "type %qT", type);
10966 inform (loc,
10967 "type must be cv-qualified %<auto%> or reference to "
10968 "cv-qualified %<auto%>");
10970 type = build_qualified_type (make_auto (), type_quals);
10971 declspecs->type = type;
10973 inlinep = 0;
10974 typedef_p = 0;
10975 constexpr_p = 0;
10976 thread_p = 0;
10977 concept_p = 0;
10978 storage_class = sc_none;
10979 staticp = 0;
10980 declspecs->storage_class = sc_none;
10981 declspecs->locations[ds_thread] = UNKNOWN_LOCATION;
10984 /* Static anonymous unions are dealt with here. */
10985 if (staticp && decl_context == TYPENAME
10986 && declspecs->type
10987 && ANON_AGGR_TYPE_P (declspecs->type))
10988 decl_context = FIELD;
10990 /* Warn about storage classes that are invalid for certain
10991 kinds of declarations (parameters, typenames, etc.). */
10992 if (thread_p
10993 && ((storage_class
10994 && storage_class != sc_extern
10995 && storage_class != sc_static)
10996 || typedef_p))
10998 error ("multiple storage classes in declaration of %qs", name);
10999 thread_p = false;
11001 if (decl_context != NORMAL
11002 && ((storage_class != sc_none
11003 && storage_class != sc_mutable)
11004 || thread_p))
11006 if ((decl_context == PARM || decl_context == CATCHPARM)
11007 && (storage_class == sc_register
11008 || storage_class == sc_auto))
11010 else if (typedef_p)
11012 else if (decl_context == FIELD
11013 /* C++ allows static class elements. */
11014 && storage_class == sc_static)
11015 /* C++ also allows inlines and signed and unsigned elements,
11016 but in those cases we don't come in here. */
11018 else
11020 location_t loc
11021 = min_location (declspecs->locations[ds_thread],
11022 declspecs->locations[ds_storage_class]);
11023 if (decl_context == FIELD)
11024 error_at (loc, "storage class specified for %qs", name);
11025 else if (decl_context == PARM || decl_context == CATCHPARM)
11026 error_at (loc, "storage class specified for parameter %qs", name);
11027 else
11028 error_at (loc, "storage class specified for typename");
11029 if (storage_class == sc_register
11030 || storage_class == sc_auto
11031 || storage_class == sc_extern
11032 || thread_p)
11033 storage_class = sc_none;
11036 else if (storage_class == sc_extern && funcdef_flag
11037 && ! toplevel_bindings_p ())
11038 error ("nested function %qs declared %<extern%>", name);
11039 else if (toplevel_bindings_p ())
11041 if (storage_class == sc_auto)
11042 error ("top-level declaration of %qs specifies %<auto%>", name);
11044 else if (thread_p
11045 && storage_class != sc_extern
11046 && storage_class != sc_static)
11048 if (declspecs->gnu_thread_keyword_p)
11049 pedwarn (declspecs->locations[ds_thread],
11050 0, "function-scope %qs implicitly auto and "
11051 "declared %<__thread%>", name);
11053 /* When thread_local is applied to a variable of block scope the
11054 storage-class-specifier static is implied if it does not appear
11055 explicitly. */
11056 storage_class = declspecs->storage_class = sc_static;
11057 staticp = 1;
11060 if (storage_class && friendp)
11062 error_at (min_location (declspecs->locations[ds_thread],
11063 declspecs->locations[ds_storage_class]),
11064 "storage class specifiers invalid in friend function "
11065 "declarations");
11066 storage_class = sc_none;
11067 staticp = 0;
11070 if (!id_declarator)
11071 unqualified_id = NULL_TREE;
11072 else
11074 unqualified_id = id_declarator->u.id.unqualified_name;
11075 switch (TREE_CODE (unqualified_id))
11077 case BIT_NOT_EXPR:
11078 unqualified_id = TREE_OPERAND (unqualified_id, 0);
11079 if (TYPE_P (unqualified_id))
11080 unqualified_id = constructor_name (unqualified_id);
11081 break;
11083 case IDENTIFIER_NODE:
11084 case TEMPLATE_ID_EXPR:
11085 break;
11087 default:
11088 gcc_unreachable ();
11092 if (declspecs->std_attributes)
11094 location_t attr_loc = declspecs->locations[ds_std_attribute];
11095 if (warning_at (attr_loc, OPT_Wattributes, "attribute ignored"))
11096 inform (attr_loc, "an attribute that appertains to a type-specifier "
11097 "is ignored");
11100 /* Determine the type of the entity declared by recurring on the
11101 declarator. */
11102 for (; declarator; declarator = declarator->declarator)
11104 const cp_declarator *inner_declarator;
11105 tree attrs;
11107 if (type == error_mark_node)
11108 return error_mark_node;
11110 attrs = declarator->attributes;
11111 if (attrs)
11113 int attr_flags;
11115 attr_flags = 0;
11116 if (declarator == NULL || declarator->kind == cdk_id)
11117 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
11118 if (declarator->kind == cdk_function)
11119 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
11120 if (declarator->kind == cdk_array)
11121 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
11122 returned_attrs = decl_attributes (&type,
11123 chainon (returned_attrs, attrs),
11124 attr_flags);
11127 inner_declarator = declarator->declarator;
11129 /* We don't want to warn in parameter context because we don't
11130 yet know if the parse will succeed, and this might turn out
11131 to be a constructor call. */
11132 if (decl_context != PARM
11133 && decl_context != TYPENAME
11134 && !typedef_p
11135 && declarator->parenthesized != UNKNOWN_LOCATION
11136 /* If the type is class-like and the inner name used a
11137 global namespace qualifier, we need the parens.
11138 Unfortunately all we can tell is whether a qualified name
11139 was used or not. */
11140 && !(inner_declarator
11141 && inner_declarator->kind == cdk_id
11142 && inner_declarator->u.id.qualifying_scope
11143 && (MAYBE_CLASS_TYPE_P (type)
11144 || TREE_CODE (type) == ENUMERAL_TYPE)))
11145 warning_at (declarator->parenthesized, OPT_Wparentheses,
11146 "unnecessary parentheses in declaration of %qs", name);
11147 if (declarator->kind == cdk_id || declarator->kind == cdk_decomp)
11148 break;
11150 switch (declarator->kind)
11152 case cdk_array:
11153 type = create_array_type_for_decl (dname, type,
11154 declarator->u.array.bounds);
11155 if (!valid_array_size_p (input_location, type, dname))
11156 type = error_mark_node;
11158 if (declarator->std_attributes)
11159 /* [dcl.array]/1:
11161 The optional attribute-specifier-seq appertains to the
11162 array. */
11163 returned_attrs = chainon (returned_attrs,
11164 declarator->std_attributes);
11165 break;
11167 case cdk_function:
11169 tree arg_types;
11170 int funcdecl_p;
11172 /* Declaring a function type. */
11174 input_location = declspecs->locations[ds_type_spec];
11175 abstract_virtuals_error (ACU_RETURN, type);
11176 input_location = saved_loc;
11178 /* Pick up type qualifiers which should be applied to `this'. */
11179 memfn_quals = declarator->u.function.qualifiers;
11180 /* Pick up virt-specifiers. */
11181 virt_specifiers = declarator->u.function.virt_specifiers;
11182 /* And ref-qualifier, too */
11183 rqual = declarator->u.function.ref_qualifier;
11184 /* And tx-qualifier. */
11185 tree tx_qual = declarator->u.function.tx_qualifier;
11186 /* Pick up the exception specifications. */
11187 raises = declarator->u.function.exception_specification;
11188 /* If the exception-specification is ill-formed, let's pretend
11189 there wasn't one. */
11190 if (raises == error_mark_node)
11191 raises = NULL_TREE;
11193 if (reqs)
11194 error_at (location_of (reqs), "requires-clause on return type");
11195 reqs = declarator->u.function.requires_clause;
11197 /* Say it's a definition only for the CALL_EXPR
11198 closest to the identifier. */
11199 funcdecl_p = inner_declarator && inner_declarator->kind == cdk_id;
11201 /* Handle a late-specified return type. */
11202 tree late_return_type = declarator->u.function.late_return_type;
11203 if (funcdecl_p)
11205 if (tree auto_node = type_uses_auto (type))
11207 if (!late_return_type)
11209 if (current_class_type
11210 && LAMBDA_TYPE_P (current_class_type))
11211 /* OK for C++11 lambdas. */;
11212 else if (cxx_dialect < cxx14)
11214 error ("%qs function uses "
11215 "%<auto%> type specifier without trailing "
11216 "return type", name);
11217 inform (input_location, "deduced return type "
11218 "only available with -std=c++14 or "
11219 "-std=gnu++14");
11221 else if (virtualp)
11223 error ("virtual function cannot "
11224 "have deduced return type");
11225 virtualp = false;
11228 else if (!is_auto (type) && sfk != sfk_conversion)
11230 error ("%qs function with trailing return type has"
11231 " %qT as its type rather than plain %<auto%>",
11232 name, type);
11233 return error_mark_node;
11235 tree tmpl = CLASS_PLACEHOLDER_TEMPLATE (auto_node);
11236 if (!tmpl)
11237 if (tree late_auto = type_uses_auto (late_return_type))
11238 tmpl = CLASS_PLACEHOLDER_TEMPLATE (late_auto);
11239 if (tmpl)
11241 if (!dguide_name_p (unqualified_id))
11243 error_at (declarator->id_loc, "deduced class "
11244 "type %qD in function return type",
11245 DECL_NAME (tmpl));
11246 inform (DECL_SOURCE_LOCATION (tmpl),
11247 "%qD declared here", tmpl);
11248 return error_mark_node;
11250 else if (!late_return_type)
11252 error_at (declarator->id_loc, "deduction guide "
11253 "for %qT must have trailing return "
11254 "type", TREE_TYPE (tmpl));
11255 inform (DECL_SOURCE_LOCATION (tmpl),
11256 "%qD declared here", tmpl);
11257 return error_mark_node;
11259 else if (CLASS_TYPE_P (late_return_type)
11260 && CLASSTYPE_TEMPLATE_INFO (late_return_type)
11261 && (CLASSTYPE_TI_TEMPLATE (late_return_type)
11262 == tmpl))
11263 /* OK */;
11264 else
11265 error ("trailing return type %qT of deduction guide "
11266 "is not a specialization of %qT",
11267 late_return_type, TREE_TYPE (tmpl));
11270 else if (late_return_type
11271 && sfk != sfk_conversion)
11273 if (cxx_dialect < cxx11)
11274 /* Not using maybe_warn_cpp0x because this should
11275 always be an error. */
11276 error ("trailing return type only available with "
11277 "-std=c++11 or -std=gnu++11");
11278 else
11279 error ("%qs function with trailing return type not "
11280 "declared with %<auto%> type specifier", name);
11281 return error_mark_node;
11284 type = splice_late_return_type (type, late_return_type);
11285 if (type == error_mark_node)
11286 return error_mark_node;
11288 if (late_return_type)
11290 late_return_type_p = true;
11291 type_quals = cp_type_quals (type);
11294 if (type_quals != TYPE_UNQUALIFIED)
11296 if (SCALAR_TYPE_P (type) || VOID_TYPE_P (type))
11297 warning_at (typespec_loc, OPT_Wignored_qualifiers, "type "
11298 "qualifiers ignored on function return type");
11299 /* We now know that the TYPE_QUALS don't apply to the
11300 decl, but to its return type. */
11301 type_quals = TYPE_UNQUALIFIED;
11304 /* Error about some types functions can't return. */
11306 if (TREE_CODE (type) == FUNCTION_TYPE)
11308 error_at (typespec_loc, "%qs declared as function returning "
11309 "a function", name);
11310 return error_mark_node;
11312 if (TREE_CODE (type) == ARRAY_TYPE)
11314 error_at (typespec_loc, "%qs declared as function returning "
11315 "an array", name);
11316 return error_mark_node;
11319 if (ctype == NULL_TREE
11320 && decl_context == FIELD
11321 && funcdecl_p
11322 && friendp == 0)
11323 ctype = current_class_type;
11325 if (ctype && (sfk == sfk_constructor
11326 || sfk == sfk_destructor))
11328 /* We are within a class's scope. If our declarator name
11329 is the same as the class name, and we are defining
11330 a function, then it is a constructor/destructor, and
11331 therefore returns a void type. */
11333 /* ISO C++ 12.4/2. A destructor may not be declared
11334 const or volatile. A destructor may not be static.
11335 A destructor may not be declared with ref-qualifier.
11337 ISO C++ 12.1. A constructor may not be declared
11338 const or volatile. A constructor may not be
11339 virtual. A constructor may not be static.
11340 A constructor may not be declared with ref-qualifier. */
11341 if (staticp == 2)
11342 error ((flags == DTOR_FLAG)
11343 ? G_("destructor cannot be static member function")
11344 : G_("constructor cannot be static member function"));
11345 if (memfn_quals)
11347 error ((flags == DTOR_FLAG)
11348 ? G_("destructors may not be cv-qualified")
11349 : G_("constructors may not be cv-qualified"));
11350 memfn_quals = TYPE_UNQUALIFIED;
11353 if (rqual)
11355 maybe_warn_cpp0x (CPP0X_REF_QUALIFIER);
11356 error ((flags == DTOR_FLAG)
11357 ? G_("destructors may not be ref-qualified")
11358 : G_("constructors may not be ref-qualified"));
11359 rqual = REF_QUAL_NONE;
11362 if (decl_context == FIELD
11363 && !member_function_or_else (ctype,
11364 current_class_type,
11365 flags))
11366 return error_mark_node;
11368 if (flags != DTOR_FLAG)
11370 /* It's a constructor. */
11371 if (explicitp == 1)
11372 explicitp = 2;
11373 if (virtualp)
11375 permerror (declspecs->locations[ds_virtual],
11376 "constructors cannot be declared %<virtual%>");
11377 virtualp = 0;
11379 if (decl_context == FIELD
11380 && sfk != sfk_constructor)
11381 return error_mark_node;
11383 if (decl_context == FIELD)
11384 staticp = 0;
11386 else if (friendp)
11388 if (virtualp)
11390 /* Cannot be both friend and virtual. */
11391 gcc_rich_location richloc (declspecs->locations[ds_virtual]);
11392 richloc.add_range (declspecs->locations[ds_friend], false);
11393 error_at (&richloc, "virtual functions cannot be friends");
11394 friendp = 0;
11396 if (decl_context == NORMAL)
11397 error ("friend declaration not in class definition");
11398 if (current_function_decl && funcdef_flag)
11400 error ("can%'t define friend function %qs in a local "
11401 "class definition", name);
11402 friendp = 0;
11405 else if (ctype && sfk == sfk_conversion)
11407 if (explicitp == 1)
11409 maybe_warn_cpp0x (CPP0X_EXPLICIT_CONVERSION);
11410 explicitp = 2;
11412 if (late_return_type_p)
11413 error ("a conversion function cannot have a trailing return type");
11415 else if (sfk == sfk_deduction_guide)
11417 if (explicitp == 1)
11418 explicitp = 2;
11421 tree pushed_scope = NULL_TREE;
11422 if (funcdecl_p
11423 && decl_context != FIELD
11424 && inner_declarator->u.id.qualifying_scope
11425 && CLASS_TYPE_P (inner_declarator->u.id.qualifying_scope))
11426 pushed_scope
11427 = push_scope (inner_declarator->u.id.qualifying_scope);
11429 arg_types = grokparms (declarator->u.function.parameters, &parms);
11431 if (pushed_scope)
11432 pop_scope (pushed_scope);
11434 if (inner_declarator
11435 && inner_declarator->kind == cdk_id
11436 && inner_declarator->u.id.sfk == sfk_destructor
11437 && arg_types != void_list_node)
11439 error ("destructors may not have parameters");
11440 arg_types = void_list_node;
11441 parms = NULL_TREE;
11444 type = build_function_type (type, arg_types);
11446 tree attrs = declarator->std_attributes;
11447 if (tx_qual)
11449 tree att = build_tree_list (tx_qual, NULL_TREE);
11450 /* transaction_safe applies to the type, but
11451 transaction_safe_dynamic applies to the function. */
11452 if (is_attribute_p ("transaction_safe", tx_qual))
11453 attrs = chainon (attrs, att);
11454 else
11455 returned_attrs = chainon (returned_attrs, att);
11457 if (attrs)
11458 /* [dcl.fct]/2:
11460 The optional attribute-specifier-seq appertains to
11461 the function type. */
11462 decl_attributes (&type, attrs, 0);
11464 if (raises)
11465 type = build_exception_variant (type, raises);
11467 break;
11469 case cdk_pointer:
11470 case cdk_reference:
11471 case cdk_ptrmem:
11472 /* Filter out pointers-to-references and references-to-references.
11473 We can get these if a TYPE_DECL is used. */
11475 if (TYPE_REF_P (type))
11477 if (declarator->kind != cdk_reference)
11479 error ("cannot declare pointer to %q#T", type);
11480 type = TREE_TYPE (type);
11483 /* In C++0x, we allow reference to reference declarations
11484 that occur indirectly through typedefs [7.1.3/8 dcl.typedef]
11485 and template type arguments [14.3.1/4 temp.arg.type]. The
11486 check for direct reference to reference declarations, which
11487 are still forbidden, occurs below. Reasoning behind the change
11488 can be found in DR106, DR540, and the rvalue reference
11489 proposals. */
11490 else if (cxx_dialect == cxx98)
11492 error ("cannot declare reference to %q#T", type);
11493 type = TREE_TYPE (type);
11496 else if (VOID_TYPE_P (type))
11498 if (declarator->kind == cdk_reference)
11499 error ("cannot declare reference to %q#T", type);
11500 else if (declarator->kind == cdk_ptrmem)
11501 error ("cannot declare pointer to %q#T member", type);
11504 /* We now know that the TYPE_QUALS don't apply to the decl,
11505 but to the target of the pointer. */
11506 type_quals = TYPE_UNQUALIFIED;
11508 /* This code used to handle METHOD_TYPE, but I don't think it's
11509 possible to get it here anymore. */
11510 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
11511 if (declarator->kind == cdk_ptrmem
11512 && TREE_CODE (type) == FUNCTION_TYPE)
11514 memfn_quals |= type_memfn_quals (type);
11515 type = build_memfn_type (type,
11516 declarator->u.pointer.class_type,
11517 memfn_quals,
11518 rqual);
11519 if (type == error_mark_node)
11520 return error_mark_node;
11522 rqual = REF_QUAL_NONE;
11523 memfn_quals = TYPE_UNQUALIFIED;
11526 if (TREE_CODE (type) == FUNCTION_TYPE
11527 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
11528 || type_memfn_rqual (type) != REF_QUAL_NONE))
11529 error (declarator->kind == cdk_reference
11530 ? G_("cannot declare reference to qualified function type %qT")
11531 : G_("cannot declare pointer to qualified function type %qT"),
11532 type);
11534 /* When the pointed-to type involves components of variable size,
11535 care must be taken to ensure that the size evaluation code is
11536 emitted early enough to dominate all the possible later uses
11537 and late enough for the variables on which it depends to have
11538 been assigned.
11540 This is expected to happen automatically when the pointed-to
11541 type has a name/declaration of it's own, but special attention
11542 is required if the type is anonymous.
11544 We handle the NORMAL and FIELD contexts here by inserting a
11545 dummy statement that just evaluates the size at a safe point
11546 and ensures it is not deferred until e.g. within a deeper
11547 conditional context (c++/43555).
11549 We expect nothing to be needed here for PARM or TYPENAME.
11550 Evaluating the size at this point for TYPENAME would
11551 actually be incorrect, as we might be in the middle of an
11552 expression with side effects on the pointed-to type size
11553 "arguments" prior to the pointer declaration point and the
11554 size evaluation could end up prior to the side effects. */
11556 if (!TYPE_NAME (type)
11557 && (decl_context == NORMAL || decl_context == FIELD)
11558 && at_function_scope_p ()
11559 && variably_modified_type_p (type, NULL_TREE))
11561 TYPE_NAME (type) = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
11562 NULL_TREE, type);
11563 add_decl_expr (TYPE_NAME (type));
11566 if (declarator->kind == cdk_reference)
11568 /* In C++0x, the type we are creating a reference to might be
11569 a typedef which is itself a reference type. In that case,
11570 we follow the reference collapsing rules in
11571 [7.1.3/8 dcl.typedef] to create the final reference type:
11573 "If a typedef TD names a type that is a reference to a type
11574 T, an attempt to create the type 'lvalue reference to cv TD'
11575 creates the type 'lvalue reference to T,' while an attempt
11576 to create the type "rvalue reference to cv TD' creates the
11577 type TD."
11579 if (VOID_TYPE_P (type))
11580 /* We already gave an error. */;
11581 else if (TYPE_REF_P (type))
11583 if (declarator->u.reference.rvalue_ref)
11584 /* Leave type alone. */;
11585 else
11586 type = cp_build_reference_type (TREE_TYPE (type), false);
11588 else
11589 type = cp_build_reference_type
11590 (type, declarator->u.reference.rvalue_ref);
11592 /* In C++0x, we need this check for direct reference to
11593 reference declarations, which are forbidden by
11594 [8.3.2/5 dcl.ref]. Reference to reference declarations
11595 are only allowed indirectly through typedefs and template
11596 type arguments. Example:
11598 void foo(int & &); // invalid ref-to-ref decl
11600 typedef int & int_ref;
11601 void foo(int_ref &); // valid ref-to-ref decl
11603 if (inner_declarator && inner_declarator->kind == cdk_reference)
11604 error ("cannot declare reference to %q#T, which is not "
11605 "a typedef or a template type argument", type);
11607 else if (TREE_CODE (type) == METHOD_TYPE)
11608 type = build_ptrmemfunc_type (build_pointer_type (type));
11609 else if (declarator->kind == cdk_ptrmem)
11611 gcc_assert (TREE_CODE (declarator->u.pointer.class_type)
11612 != NAMESPACE_DECL);
11613 if (declarator->u.pointer.class_type == error_mark_node)
11614 /* We will already have complained. */
11615 type = error_mark_node;
11616 else
11617 type = build_ptrmem_type (declarator->u.pointer.class_type,
11618 type);
11620 else
11621 type = build_pointer_type (type);
11623 /* Process a list of type modifier keywords (such as
11624 const or volatile) that were given inside the `*' or `&'. */
11626 if (declarator->u.pointer.qualifiers)
11628 type
11629 = cp_build_qualified_type (type,
11630 declarator->u.pointer.qualifiers);
11631 type_quals = cp_type_quals (type);
11634 /* Apply C++11 attributes to the pointer, and not to the
11635 type pointed to. This is unlike what is done for GNU
11636 attributes above. It is to comply with [dcl.ptr]/1:
11638 [the optional attribute-specifier-seq (7.6.1) appertains
11639 to the pointer and not to the object pointed to]. */
11640 if (declarator->std_attributes)
11641 decl_attributes (&type, declarator->std_attributes,
11644 ctype = NULL_TREE;
11645 break;
11647 case cdk_error:
11648 break;
11650 default:
11651 gcc_unreachable ();
11655 /* A `constexpr' specifier used in an object declaration declares
11656 the object as `const'. */
11657 if (constexpr_p && innermost_code != cdk_function)
11659 /* DR1688 says that a `constexpr' specifier in combination with
11660 `volatile' is valid. */
11662 if (!TYPE_REF_P (type))
11664 type_quals |= TYPE_QUAL_CONST;
11665 type = cp_build_qualified_type (type, type_quals);
11669 if (unqualified_id && TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR
11670 && TREE_CODE (type) != FUNCTION_TYPE
11671 && TREE_CODE (type) != METHOD_TYPE
11672 && !variable_template_p (TREE_OPERAND (unqualified_id, 0)))
11674 error ("template-id %qD used as a declarator",
11675 unqualified_id);
11676 unqualified_id = dname;
11679 /* If TYPE is a FUNCTION_TYPE, but the function name was explicitly
11680 qualified with a class-name, turn it into a METHOD_TYPE, unless
11681 we know that the function is static. We take advantage of this
11682 opportunity to do other processing that pertains to entities
11683 explicitly declared to be class members. Note that if DECLARATOR
11684 is non-NULL, we know it is a cdk_id declarator; otherwise, we
11685 would not have exited the loop above. */
11686 if (declarator
11687 && declarator->kind == cdk_id
11688 && declarator->u.id.qualifying_scope
11689 && MAYBE_CLASS_TYPE_P (declarator->u.id.qualifying_scope))
11691 ctype = declarator->u.id.qualifying_scope;
11692 ctype = TYPE_MAIN_VARIANT (ctype);
11693 template_count = num_template_headers_for_class (ctype);
11695 if (ctype == current_class_type)
11697 if (friendp)
11699 permerror (input_location, "member functions are implicitly "
11700 "friends of their class");
11701 friendp = 0;
11703 else
11704 permerror (declarator->id_loc,
11705 "extra qualification %<%T::%> on member %qs",
11706 ctype, name);
11708 else if (/* If the qualifying type is already complete, then we
11709 can skip the following checks. */
11710 !COMPLETE_TYPE_P (ctype)
11711 && (/* If the function is being defined, then
11712 qualifying type must certainly be complete. */
11713 funcdef_flag
11714 /* A friend declaration of "T::f" is OK, even if
11715 "T" is a template parameter. But, if this
11716 function is not a friend, the qualifying type
11717 must be a class. */
11718 || (!friendp && !CLASS_TYPE_P (ctype))
11719 /* For a declaration, the type need not be
11720 complete, if either it is dependent (since there
11721 is no meaningful definition of complete in that
11722 case) or the qualifying class is currently being
11723 defined. */
11724 || !(dependent_type_p (ctype)
11725 || currently_open_class (ctype)))
11726 /* Check that the qualifying type is complete. */
11727 && !complete_type_or_else (ctype, NULL_TREE))
11728 return error_mark_node;
11729 else if (TREE_CODE (type) == FUNCTION_TYPE)
11731 if (current_class_type
11732 && (!friendp || funcdef_flag || initialized))
11734 error (funcdef_flag || initialized
11735 ? G_("cannot define member function %<%T::%s%> "
11736 "within %qT")
11737 : G_("cannot declare member function %<%T::%s%> "
11738 "within %qT"),
11739 ctype, name, current_class_type);
11740 return error_mark_node;
11743 else if (typedef_p && current_class_type)
11745 error ("cannot declare member %<%T::%s%> within %qT",
11746 ctype, name, current_class_type);
11747 return error_mark_node;
11751 if (ctype == NULL_TREE && decl_context == FIELD && friendp == 0)
11752 ctype = current_class_type;
11754 /* Now TYPE has the actual type. */
11756 if (returned_attrs)
11758 if (attrlist)
11759 *attrlist = chainon (returned_attrs, *attrlist);
11760 else
11761 attrlist = &returned_attrs;
11764 if (declarator
11765 && declarator->kind == cdk_id
11766 && declarator->std_attributes
11767 && attrlist != NULL)
11769 /* [dcl.meaning]/1: The optional attribute-specifier-seq following
11770 a declarator-id appertains to the entity that is declared. */
11771 if (declarator->std_attributes != error_mark_node)
11772 *attrlist = chainon (*attrlist, declarator->std_attributes);
11773 else
11774 /* We should have already diagnosed the issue (c++/78344). */
11775 gcc_assert (seen_error ());
11778 /* Handle parameter packs. */
11779 if (parameter_pack_p)
11781 if (decl_context == PARM)
11782 /* Turn the type into a pack expansion.*/
11783 type = make_pack_expansion (type);
11784 else
11785 error ("non-parameter %qs cannot be a parameter pack", name);
11788 if ((decl_context == FIELD || decl_context == PARM)
11789 && !processing_template_decl
11790 && variably_modified_type_p (type, NULL_TREE))
11792 if (decl_context == FIELD)
11793 error ("data member may not have variably modified type %qT", type);
11794 else
11795 error ("parameter may not have variably modified type %qT", type);
11796 type = error_mark_node;
11799 if (explicitp == 1 || (explicitp && friendp))
11801 /* [dcl.fct.spec] (C++11) The explicit specifier shall be used only
11802 in the declaration of a constructor or conversion function within
11803 a class definition. */
11804 if (!current_class_type)
11805 error_at (declspecs->locations[ds_explicit],
11806 "%<explicit%> outside class declaration");
11807 else if (friendp)
11808 error_at (declspecs->locations[ds_explicit],
11809 "%<explicit%> in friend declaration");
11810 else
11811 error_at (declspecs->locations[ds_explicit],
11812 "only declarations of constructors and conversion operators "
11813 "can be %<explicit%>");
11814 explicitp = 0;
11817 if (storage_class == sc_mutable)
11819 if (decl_context != FIELD || friendp)
11821 error ("non-member %qs cannot be declared %<mutable%>", name);
11822 storage_class = sc_none;
11824 else if (decl_context == TYPENAME || typedef_p)
11826 error ("non-object member %qs cannot be declared %<mutable%>", name);
11827 storage_class = sc_none;
11829 else if (TREE_CODE (type) == FUNCTION_TYPE
11830 || TREE_CODE (type) == METHOD_TYPE)
11832 error ("function %qs cannot be declared %<mutable%>", name);
11833 storage_class = sc_none;
11835 else if (staticp)
11837 error ("static %qs cannot be declared %<mutable%>", name);
11838 storage_class = sc_none;
11840 else if (type_quals & TYPE_QUAL_CONST)
11842 error ("const %qs cannot be declared %<mutable%>", name);
11843 storage_class = sc_none;
11845 else if (TYPE_REF_P (type))
11847 permerror (input_location, "reference %qs cannot be declared "
11848 "%<mutable%>", name);
11849 storage_class = sc_none;
11853 /* If this is declaring a typedef name, return a TYPE_DECL. */
11854 if (typedef_p && decl_context != TYPENAME)
11856 tree decl;
11858 /* This declaration:
11860 typedef void f(int) const;
11862 declares a function type which is not a member of any
11863 particular class, but which is cv-qualified; for
11864 example "f S::*" declares a pointer to a const-qualified
11865 member function of S. We record the cv-qualification in the
11866 function type. */
11867 if ((rqual || memfn_quals) && TREE_CODE (type) == FUNCTION_TYPE)
11869 type = apply_memfn_quals (type, memfn_quals, rqual);
11871 /* We have now dealt with these qualifiers. */
11872 memfn_quals = TYPE_UNQUALIFIED;
11873 rqual = REF_QUAL_NONE;
11876 if (type_uses_auto (type))
11878 error ("typedef declared %<auto%>");
11879 type = error_mark_node;
11882 if (reqs)
11883 error_at (location_of (reqs), "requires-clause on typedef");
11885 if (id_declarator && declarator->u.id.qualifying_scope)
11887 error ("typedef name may not be a nested-name-specifier");
11888 type = error_mark_node;
11891 if (decl_context == FIELD)
11892 decl = build_lang_decl (TYPE_DECL, unqualified_id, type);
11893 else
11894 decl = build_decl (input_location, TYPE_DECL, unqualified_id, type);
11896 if (decl_context != FIELD)
11898 if (!current_function_decl)
11899 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
11900 else if (DECL_MAYBE_IN_CHARGE_CDTOR_P (current_function_decl))
11901 /* The TYPE_DECL is "abstract" because there will be
11902 clones of this constructor/destructor, and there will
11903 be copies of this TYPE_DECL generated in those
11904 clones. The decloning optimization (for space) may
11905 revert this subsequently if it determines that
11906 the clones should share a common implementation. */
11907 DECL_ABSTRACT_P (decl) = true;
11909 else if (current_class_type
11910 && constructor_name_p (unqualified_id, current_class_type))
11911 permerror (input_location, "ISO C++ forbids nested type %qD with same name "
11912 "as enclosing class",
11913 unqualified_id);
11915 /* If the user declares "typedef struct {...} foo" then the
11916 struct will have an anonymous name. Fill that name in now.
11917 Nothing can refer to it, so nothing needs know about the name
11918 change. */
11919 if (type != error_mark_node
11920 && unqualified_id
11921 && TYPE_NAME (type)
11922 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
11923 && TYPE_UNNAMED_P (type)
11924 && declspecs->type_definition_p
11925 && attributes_naming_typedef_ok (*attrlist)
11926 && cp_type_quals (type) == TYPE_UNQUALIFIED)
11927 name_unnamed_type (type, decl);
11929 if (signed_p
11930 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
11931 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
11933 bad_specifiers (decl, BSP_TYPE, virtualp,
11934 memfn_quals != TYPE_UNQUALIFIED,
11935 inlinep, friendp, raises != NULL_TREE,
11936 declspecs->locations);
11938 if (decl_spec_seq_has_spec_p (declspecs, ds_alias))
11939 /* Acknowledge that this was written:
11940 `using analias = atype;'. */
11941 TYPE_DECL_ALIAS_P (decl) = 1;
11943 return decl;
11946 /* Detect the case of an array type of unspecified size
11947 which came, as such, direct from a typedef name.
11948 We must copy the type, so that the array's domain can be
11949 individually set by the object's initializer. */
11951 if (type && typedef_type
11952 && TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type)
11953 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type))
11954 type = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
11956 /* Detect where we're using a typedef of function type to declare a
11957 function. PARMS will not be set, so we must create it now. */
11959 if (type == typedef_type && TREE_CODE (type) == FUNCTION_TYPE)
11961 tree decls = NULL_TREE;
11962 tree args;
11964 for (args = TYPE_ARG_TYPES (type);
11965 args && args != void_list_node;
11966 args = TREE_CHAIN (args))
11968 tree decl = cp_build_parm_decl (NULL_TREE, NULL_TREE,
11969 TREE_VALUE (args));
11971 DECL_CHAIN (decl) = decls;
11972 decls = decl;
11975 parms = nreverse (decls);
11977 if (decl_context != TYPENAME)
11979 /* The qualifiers on the function type become the qualifiers on
11980 the non-static member function. */
11981 memfn_quals |= type_memfn_quals (type);
11982 rqual = type_memfn_rqual (type);
11983 type_quals = TYPE_UNQUALIFIED;
11987 /* If this is a type name (such as, in a cast or sizeof),
11988 compute the type and return it now. */
11990 if (decl_context == TYPENAME)
11992 /* Note that here we don't care about type_quals. */
11994 /* Special case: "friend class foo" looks like a TYPENAME context. */
11995 if (friendp)
11997 if (inlinep)
11999 error ("%<inline%> specified for friend class declaration");
12000 inlinep = 0;
12003 if (!current_aggr)
12005 /* Don't allow friend declaration without a class-key. */
12006 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
12007 permerror (input_location, "template parameters cannot be friends");
12008 else if (TREE_CODE (type) == TYPENAME_TYPE)
12009 permerror (input_location, "friend declaration requires class-key, "
12010 "i.e. %<friend class %T::%D%>",
12011 TYPE_CONTEXT (type), TYPENAME_TYPE_FULLNAME (type));
12012 else
12013 permerror (input_location, "friend declaration requires class-key, "
12014 "i.e. %<friend %#T%>",
12015 type);
12018 /* Only try to do this stuff if we didn't already give up. */
12019 if (type != integer_type_node)
12021 /* A friendly class? */
12022 if (current_class_type)
12023 make_friend_class (current_class_type, TYPE_MAIN_VARIANT (type),
12024 /*complain=*/true);
12025 else
12026 error ("trying to make class %qT a friend of global scope",
12027 type);
12029 type = void_type_node;
12032 else if (memfn_quals || rqual)
12034 if (ctype == NULL_TREE
12035 && TREE_CODE (type) == METHOD_TYPE)
12036 ctype = TYPE_METHOD_BASETYPE (type);
12038 if (ctype)
12039 type = build_memfn_type (type, ctype, memfn_quals, rqual);
12040 /* Core issue #547: need to allow this in template type args.
12041 Allow it in general in C++11 for alias-declarations. */
12042 else if ((template_type_arg || cxx_dialect >= cxx11)
12043 && TREE_CODE (type) == FUNCTION_TYPE)
12044 type = apply_memfn_quals (type, memfn_quals, rqual);
12045 else
12046 error ("invalid qualifiers on non-member function type");
12049 if (reqs)
12050 error_at (location_of (reqs), "requires-clause on type-id");
12052 return type;
12054 else if (unqualified_id == NULL_TREE && decl_context != PARM
12055 && decl_context != CATCHPARM
12056 && TREE_CODE (type) != UNION_TYPE
12057 && ! bitfield
12058 && innermost_code != cdk_decomp)
12060 error ("abstract declarator %qT used as declaration", type);
12061 return error_mark_node;
12064 if (!FUNC_OR_METHOD_TYPE_P (type))
12066 /* Only functions may be declared using an operator-function-id. */
12067 if (dname && IDENTIFIER_ANY_OP_P (dname))
12069 error ("declaration of %qD as non-function", dname);
12070 return error_mark_node;
12073 if (reqs)
12074 error_at (location_of (reqs),
12075 "requires-clause on declaration of non-function type %qT",
12076 type);
12079 /* We don't check parameter types here because we can emit a better
12080 error message later. */
12081 if (decl_context != PARM)
12083 type = check_var_type (unqualified_id, type);
12084 if (type == error_mark_node)
12085 return error_mark_node;
12088 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
12089 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
12091 if (decl_context == PARM || decl_context == CATCHPARM)
12093 if (ctype || in_namespace)
12094 error ("cannot use %<::%> in parameter declaration");
12096 if (type_uses_auto (type)
12097 && !(cxx_dialect >= cxx17 && template_parm_flag))
12099 if (cxx_dialect >= cxx14)
12100 error ("%<auto%> parameter not permitted in this context");
12101 else
12102 error ("parameter declared %<auto%>");
12103 type = error_mark_node;
12106 /* A parameter declared as an array of T is really a pointer to T.
12107 One declared as a function is really a pointer to a function.
12108 One declared as a member is really a pointer to member. */
12110 if (TREE_CODE (type) == ARRAY_TYPE)
12112 /* Transfer const-ness of array into that of type pointed to. */
12113 type = build_pointer_type (TREE_TYPE (type));
12114 type_quals = TYPE_UNQUALIFIED;
12115 array_parameter_p = true;
12117 else if (TREE_CODE (type) == FUNCTION_TYPE)
12118 type = build_pointer_type (type);
12121 if (ctype && TREE_CODE (type) == FUNCTION_TYPE && staticp < 2
12122 && !(identifier_p (unqualified_id)
12123 && IDENTIFIER_NEWDEL_OP_P (unqualified_id)))
12125 cp_cv_quals real_quals = memfn_quals;
12126 if (cxx_dialect < cxx14 && constexpr_p
12127 && sfk != sfk_constructor && sfk != sfk_destructor)
12128 real_quals |= TYPE_QUAL_CONST;
12129 type = build_memfn_type (type, ctype, real_quals, rqual);
12133 tree decl = NULL_TREE;
12135 if (decl_context == PARM)
12137 decl = cp_build_parm_decl (NULL_TREE, unqualified_id, type);
12138 DECL_ARRAY_PARAMETER_P (decl) = array_parameter_p;
12140 bad_specifiers (decl, BSP_PARM, virtualp,
12141 memfn_quals != TYPE_UNQUALIFIED,
12142 inlinep, friendp, raises != NULL_TREE,
12143 declspecs->locations);
12145 else if (decl_context == FIELD)
12147 if (!staticp && !friendp && TREE_CODE (type) != METHOD_TYPE)
12148 if (tree auto_node = type_uses_auto (type))
12150 location_t loc = declspecs->locations[ds_type_spec];
12151 if (CLASS_PLACEHOLDER_TEMPLATE (auto_node))
12152 error_at (loc, "invalid use of template-name %qE without an "
12153 "argument list",
12154 CLASS_PLACEHOLDER_TEMPLATE (auto_node));
12155 else
12156 error_at (loc, "non-static data member declared with "
12157 "placeholder %qT", auto_node);
12158 type = error_mark_node;
12161 /* The C99 flexible array extension. */
12162 if (!staticp && TREE_CODE (type) == ARRAY_TYPE
12163 && TYPE_DOMAIN (type) == NULL_TREE)
12165 if (ctype
12166 && (TREE_CODE (ctype) == UNION_TYPE
12167 || TREE_CODE (ctype) == QUAL_UNION_TYPE))
12169 error ("flexible array member in union");
12170 type = error_mark_node;
12172 else
12174 /* Array is a flexible member. */
12175 if (in_system_header_at (input_location))
12176 /* Do not warn on flexible array members in system
12177 headers because glibc uses them. */;
12178 else if (name)
12179 pedwarn (input_location, OPT_Wpedantic,
12180 "ISO C++ forbids flexible array member %qs", name);
12181 else
12182 pedwarn (input_location, OPT_Wpedantic,
12183 "ISO C++ forbids flexible array members");
12185 /* Flexible array member has a null domain. */
12186 type = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
12190 if (type == error_mark_node)
12192 /* Happens when declaring arrays of sizes which
12193 are error_mark_node, for example. */
12194 decl = NULL_TREE;
12196 else if (in_namespace && !friendp)
12198 /* Something like struct S { int N::j; }; */
12199 error ("invalid use of %<::%>");
12200 return error_mark_node;
12202 else if (TREE_CODE (type) == FUNCTION_TYPE
12203 || TREE_CODE (type) == METHOD_TYPE)
12205 int publicp = 0;
12206 tree function_context;
12208 if (friendp == 0)
12210 /* This should never happen in pure C++ (the check
12211 could be an assert). It could happen in
12212 Objective-C++ if someone writes invalid code that
12213 uses a function declaration for an instance
12214 variable or property (instance variables and
12215 properties are parsed as FIELD_DECLs, but they are
12216 part of an Objective-C class, not a C++ class).
12217 That code is invalid and is caught by this
12218 check. */
12219 if (!ctype)
12221 error ("declaration of function %qD in invalid context",
12222 unqualified_id);
12223 return error_mark_node;
12226 /* ``A union may [ ... ] not [ have ] virtual functions.''
12227 ARM 9.5 */
12228 if (virtualp && TREE_CODE (ctype) == UNION_TYPE)
12230 error_at (declspecs->locations[ds_virtual],
12231 "function %qD declared %<virtual%> inside a union",
12232 unqualified_id);
12233 return error_mark_node;
12236 if (virtualp
12237 && identifier_p (unqualified_id)
12238 && IDENTIFIER_NEWDEL_OP_P (unqualified_id))
12240 error_at (declspecs->locations[ds_virtual],
12241 "%qD cannot be declared %<virtual%>, since it "
12242 "is always static", unqualified_id);
12243 virtualp = 0;
12247 /* Check that the name used for a destructor makes sense. */
12248 if (sfk == sfk_destructor)
12250 tree uqname = id_declarator->u.id.unqualified_name;
12252 if (!ctype)
12254 gcc_assert (friendp);
12255 error ("expected qualified name in friend declaration "
12256 "for destructor %qD", uqname);
12257 return error_mark_node;
12260 if (!check_dtor_name (ctype, TREE_OPERAND (uqname, 0)))
12262 error ("declaration of %qD as member of %qT",
12263 uqname, ctype);
12264 return error_mark_node;
12266 if (concept_p)
12268 error_at (declspecs->locations[ds_concept],
12269 "a destructor cannot be %<concept%>");
12270 return error_mark_node;
12272 if (constexpr_p)
12274 error_at (declspecs->locations[ds_constexpr],
12275 "a destructor cannot be %<constexpr%>");
12276 return error_mark_node;
12279 else if (sfk == sfk_constructor && friendp && !ctype)
12281 error ("expected qualified name in friend declaration "
12282 "for constructor %qD",
12283 id_declarator->u.id.unqualified_name);
12284 return error_mark_node;
12286 if (sfk == sfk_constructor)
12287 if (concept_p)
12289 error_at (declspecs->locations[ds_concept],
12290 "a constructor cannot be %<concept%>");
12291 return error_mark_node;
12293 if (concept_p)
12295 error_at (declspecs->locations[ds_concept],
12296 "a concept cannot be a member function");
12297 concept_p = false;
12300 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
12302 tree tmpl = TREE_OPERAND (unqualified_id, 0);
12303 if (variable_template_p (tmpl))
12305 error ("specialization of variable template %qD "
12306 "declared as function", tmpl);
12307 inform (DECL_SOURCE_LOCATION (tmpl),
12308 "variable template declared here");
12309 return error_mark_node;
12313 /* Tell grokfndecl if it needs to set TREE_PUBLIC on the node. */
12314 function_context = (ctype != NULL_TREE) ?
12315 decl_function_context (TYPE_MAIN_DECL (ctype)) : NULL_TREE;
12316 publicp = (! friendp || ! staticp)
12317 && function_context == NULL_TREE;
12319 decl = grokfndecl (ctype, type,
12320 TREE_CODE (unqualified_id) != TEMPLATE_ID_EXPR
12321 ? unqualified_id : dname,
12322 parms,
12323 unqualified_id,
12324 declspecs,
12325 reqs,
12326 virtualp, flags, memfn_quals, rqual, raises,
12327 friendp ? -1 : 0, friendp, publicp,
12328 inlinep | (2 * constexpr_p) | (4 * concept_p),
12329 initialized == SD_DELETED, sfk,
12330 funcdef_flag, late_return_type_p,
12331 template_count, in_namespace,
12332 attrlist, declarator->id_loc);
12333 decl = set_virt_specifiers (decl, virt_specifiers);
12334 if (decl == NULL_TREE)
12335 return error_mark_node;
12336 #if 0
12337 /* This clobbers the attrs stored in `decl' from `attrlist'. */
12338 /* The decl and setting of decl_attr is also turned off. */
12339 decl = build_decl_attribute_variant (decl, decl_attr);
12340 #endif
12342 /* [class.conv.ctor]
12344 A constructor declared without the function-specifier
12345 explicit that can be called with a single parameter
12346 specifies a conversion from the type of its first
12347 parameter to the type of its class. Such a constructor
12348 is called a converting constructor. */
12349 if (explicitp == 2)
12350 DECL_NONCONVERTING_P (decl) = 1;
12352 else if (!staticp && !dependent_type_p (type)
12353 && !COMPLETE_TYPE_P (complete_type (type))
12354 && (!complete_or_array_type_p (type)
12355 || initialized == 0))
12357 if (TREE_CODE (type) != ARRAY_TYPE
12358 || !COMPLETE_TYPE_P (TREE_TYPE (type)))
12360 if (unqualified_id)
12362 error ("field %qD has incomplete type %qT",
12363 unqualified_id, type);
12364 cxx_incomplete_type_inform (strip_array_types (type));
12366 else
12367 error ("name %qT has incomplete type", type);
12369 type = error_mark_node;
12370 decl = NULL_TREE;
12373 else
12375 if (friendp)
12377 error ("%qE is neither function nor member function; "
12378 "cannot be declared friend", unqualified_id);
12379 return error_mark_node;
12381 decl = NULL_TREE;
12384 if (friendp)
12386 /* Friends are treated specially. */
12387 if (ctype == current_class_type)
12388 ; /* We already issued a permerror. */
12389 else if (decl && DECL_NAME (decl))
12391 if (template_class_depth (current_class_type) == 0)
12393 decl = check_explicit_specialization
12394 (unqualified_id, decl, template_count,
12395 2 * funcdef_flag + 4);
12396 if (decl == error_mark_node)
12397 return error_mark_node;
12400 decl = do_friend (ctype, unqualified_id, decl,
12401 *attrlist, flags,
12402 funcdef_flag);
12403 return decl;
12405 else
12406 return error_mark_node;
12409 /* Structure field. It may not be a function, except for C++. */
12411 if (decl == NULL_TREE)
12413 if (staticp)
12415 /* C++ allows static class members. All other work
12416 for this is done by grokfield. */
12417 decl = build_lang_decl_loc (declarator
12418 ? declarator->id_loc
12419 : input_location,
12420 VAR_DECL, unqualified_id, type);
12421 set_linkage_for_static_data_member (decl);
12422 if (concept_p)
12423 error_at (declspecs->locations[ds_concept],
12424 "static data member %qE declared %<concept%>",
12425 unqualified_id);
12426 else if (constexpr_p && !initialized)
12428 error ("%<constexpr%> static data member %qD must have an "
12429 "initializer", decl);
12430 constexpr_p = false;
12433 if (inlinep)
12434 mark_inline_variable (decl, declspecs->locations[ds_inline]);
12436 if (!DECL_VAR_DECLARED_INLINE_P (decl)
12437 && !(cxx_dialect >= cxx17 && constexpr_p))
12438 /* Even if there is an in-class initialization, DECL
12439 is considered undefined until an out-of-class
12440 definition is provided, unless this is an inline
12441 variable. */
12442 DECL_EXTERNAL (decl) = 1;
12444 if (thread_p)
12446 CP_DECL_THREAD_LOCAL_P (decl) = true;
12447 if (!processing_template_decl)
12448 set_decl_tls_model (decl, decl_default_tls_model (decl));
12449 if (declspecs->gnu_thread_keyword_p)
12450 SET_DECL_GNU_TLS_P (decl);
12453 else
12455 if (concept_p)
12456 error_at (declspecs->locations[ds_concept],
12457 "non-static data member %qE declared %<concept%>",
12458 unqualified_id);
12459 else if (constexpr_p)
12461 error_at (declspecs->locations[ds_constexpr],
12462 "non-static data member %qE declared %<constexpr%>",
12463 unqualified_id);
12464 constexpr_p = false;
12466 decl = build_decl (input_location,
12467 FIELD_DECL, unqualified_id, type);
12468 DECL_NONADDRESSABLE_P (decl) = bitfield;
12469 if (bitfield && !unqualified_id)
12471 TREE_NO_WARNING (decl) = 1;
12472 DECL_PADDING_P (decl) = 1;
12475 if (storage_class == sc_mutable)
12477 DECL_MUTABLE_P (decl) = 1;
12478 storage_class = sc_none;
12481 if (initialized)
12483 /* An attempt is being made to initialize a non-static
12484 member. This is new in C++11. */
12485 maybe_warn_cpp0x (CPP0X_NSDMI);
12487 /* If this has been parsed with static storage class, but
12488 errors forced staticp to be cleared, ensure NSDMI is
12489 not present. */
12490 if (declspecs->storage_class == sc_static)
12491 DECL_INITIAL (decl) = error_mark_node;
12495 bad_specifiers (decl, BSP_FIELD, virtualp,
12496 memfn_quals != TYPE_UNQUALIFIED,
12497 staticp ? false : inlinep, friendp,
12498 raises != NULL_TREE,
12499 declspecs->locations);
12502 else if (TREE_CODE (type) == FUNCTION_TYPE
12503 || TREE_CODE (type) == METHOD_TYPE)
12505 tree original_name;
12506 int publicp = 0;
12508 if (!unqualified_id)
12509 return error_mark_node;
12511 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
12512 original_name = dname;
12513 else
12514 original_name = unqualified_id;
12515 // FIXME:gcc_assert (original_name == dname);
12517 if (storage_class == sc_auto)
12518 error ("storage class %<auto%> invalid for function %qs", name);
12519 else if (storage_class == sc_register)
12520 error ("storage class %<register%> invalid for function %qs", name);
12521 else if (thread_p)
12523 if (declspecs->gnu_thread_keyword_p)
12524 error_at (declspecs->locations[ds_thread],
12525 "storage class %<__thread%> invalid for function %qs",
12526 name);
12527 else
12528 error_at (declspecs->locations[ds_thread],
12529 "storage class %<thread_local%> invalid for "
12530 "function %qs", name);
12533 if (virt_specifiers)
12534 error ("virt-specifiers in %qs not allowed outside a class "
12535 "definition", name);
12536 /* Function declaration not at top level.
12537 Storage classes other than `extern' are not allowed
12538 and `extern' makes no difference. */
12539 if (! toplevel_bindings_p ()
12540 && (storage_class == sc_static
12541 || decl_spec_seq_has_spec_p (declspecs, ds_inline))
12542 && pedantic)
12544 if (storage_class == sc_static)
12545 pedwarn (declspecs->locations[ds_storage_class], OPT_Wpedantic,
12546 "%<static%> specifier invalid for function %qs "
12547 "declared out of global scope", name);
12548 else
12549 pedwarn (declspecs->locations[ds_inline], OPT_Wpedantic,
12550 "%<inline%> specifier invalid for function %qs "
12551 "declared out of global scope", name);
12554 if (ctype == NULL_TREE)
12556 if (virtualp)
12558 error ("virtual non-class function %qs", name);
12559 virtualp = 0;
12561 else if (sfk == sfk_constructor
12562 || sfk == sfk_destructor)
12564 error (funcdef_flag
12565 ? G_("%qs defined in a non-class scope")
12566 : G_("%qs declared in a non-class scope"), name);
12567 sfk = sfk_none;
12571 /* Record whether the function is public. */
12572 publicp = (ctype != NULL_TREE
12573 || storage_class != sc_static);
12575 decl = grokfndecl (ctype, type, original_name, parms, unqualified_id,
12576 declspecs,
12577 reqs, virtualp, flags, memfn_quals, rqual, raises,
12578 1, friendp,
12579 publicp,
12580 inlinep | (2 * constexpr_p) | (4 * concept_p),
12581 initialized == SD_DELETED,
12582 sfk,
12583 funcdef_flag,
12584 late_return_type_p,
12585 template_count, in_namespace, attrlist,
12586 declarator->id_loc);
12587 if (decl == NULL_TREE)
12588 return error_mark_node;
12590 if (explicitp == 2)
12591 DECL_NONCONVERTING_P (decl) = 1;
12592 if (staticp == 1)
12594 int invalid_static = 0;
12596 /* Don't allow a static member function in a class, and forbid
12597 declaring main to be static. */
12598 if (TREE_CODE (type) == METHOD_TYPE)
12600 permerror (input_location, "cannot declare member function %qD to have "
12601 "static linkage", decl);
12602 invalid_static = 1;
12604 else if (current_function_decl)
12606 /* 7.1.1: There can be no static function declarations within a
12607 block. */
12608 error_at (declspecs->locations[ds_storage_class],
12609 "cannot declare static function inside another function");
12610 invalid_static = 1;
12613 if (invalid_static)
12615 staticp = 0;
12616 storage_class = sc_none;
12620 else
12622 /* It's a variable. */
12624 /* An uninitialized decl with `extern' is a reference. */
12625 decl = grokvardecl (type, dname, unqualified_id,
12626 declspecs,
12627 initialized,
12628 type_quals,
12629 inlinep,
12630 concept_p,
12631 template_count,
12632 ctype ? ctype : in_namespace);
12633 if (decl == NULL_TREE)
12634 return error_mark_node;
12636 bad_specifiers (decl, BSP_VAR, virtualp,
12637 memfn_quals != TYPE_UNQUALIFIED,
12638 inlinep, friendp, raises != NULL_TREE,
12639 declspecs->locations);
12641 if (ctype)
12643 DECL_CONTEXT (decl) = ctype;
12644 if (staticp == 1)
12646 permerror (input_location, "%<static%> may not be used when defining "
12647 "(as opposed to declaring) a static data member");
12648 staticp = 0;
12649 storage_class = sc_none;
12651 if (storage_class == sc_register && TREE_STATIC (decl))
12653 error ("static member %qD declared %<register%>", decl);
12654 storage_class = sc_none;
12656 if (storage_class == sc_extern && pedantic)
12658 pedwarn (input_location, OPT_Wpedantic,
12659 "cannot explicitly declare member %q#D to have "
12660 "extern linkage", decl);
12661 storage_class = sc_none;
12664 else if (constexpr_p && DECL_EXTERNAL (decl))
12666 error ("declaration of %<constexpr%> variable %qD "
12667 "is not a definition", decl);
12668 constexpr_p = false;
12671 if (inlinep)
12672 mark_inline_variable (decl, declspecs->locations[ds_inline]);
12673 if (innermost_code == cdk_decomp)
12675 gcc_assert (declarator && declarator->kind == cdk_decomp);
12676 DECL_SOURCE_LOCATION (decl) = declarator->id_loc;
12677 DECL_ARTIFICIAL (decl) = 1;
12678 fit_decomposition_lang_decl (decl, NULL_TREE);
12682 if (VAR_P (decl) && !initialized)
12683 if (tree auto_node = type_uses_auto (type))
12684 if (!CLASS_PLACEHOLDER_TEMPLATE (auto_node))
12686 location_t loc = declspecs->locations[ds_type_spec];
12687 error_at (loc, "declaration of %q#D has no initializer", decl);
12688 TREE_TYPE (decl) = error_mark_node;
12691 if (storage_class == sc_extern && initialized && !funcdef_flag)
12693 if (toplevel_bindings_p ())
12695 /* It's common practice (and completely valid) to have a const
12696 be initialized and declared extern. */
12697 if (!(type_quals & TYPE_QUAL_CONST))
12698 warning (0, "%qs initialized and declared %<extern%>", name);
12700 else
12702 error ("%qs has both %<extern%> and initializer", name);
12703 return error_mark_node;
12707 /* Record `register' declaration for warnings on &
12708 and in case doing stupid register allocation. */
12710 if (storage_class == sc_register)
12712 DECL_REGISTER (decl) = 1;
12713 /* Warn about register storage specifiers on PARM_DECLs. */
12714 if (TREE_CODE (decl) == PARM_DECL)
12716 if (cxx_dialect >= cxx17)
12717 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
12718 "ISO C++17 does not allow %<register%> storage "
12719 "class specifier");
12720 else
12721 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
12722 "%<register%> storage class specifier used");
12725 else if (storage_class == sc_extern)
12726 DECL_THIS_EXTERN (decl) = 1;
12727 else if (storage_class == sc_static)
12728 DECL_THIS_STATIC (decl) = 1;
12730 /* Set constexpr flag on vars (functions got it in grokfndecl). */
12731 if (constexpr_p && VAR_P (decl))
12732 DECL_DECLARED_CONSTEXPR_P (decl) = true;
12734 /* Record constancy and volatility on the DECL itself . There's
12735 no need to do this when processing a template; we'll do this
12736 for the instantiated declaration based on the type of DECL. */
12737 if (!processing_template_decl)
12738 cp_apply_type_quals_to_decl (type_quals, decl);
12740 return decl;
12744 /* Subroutine of start_function. Ensure that each of the parameter
12745 types (as listed in PARMS) is complete, as is required for a
12746 function definition. */
12748 static void
12749 require_complete_types_for_parms (tree parms)
12751 for (; parms; parms = DECL_CHAIN (parms))
12753 if (dependent_type_p (TREE_TYPE (parms)))
12754 continue;
12755 if (!VOID_TYPE_P (TREE_TYPE (parms))
12756 && complete_type_or_else (TREE_TYPE (parms), parms))
12758 relayout_decl (parms);
12759 DECL_ARG_TYPE (parms) = type_passed_as (TREE_TYPE (parms));
12761 maybe_warn_parm_abi (TREE_TYPE (parms),
12762 DECL_SOURCE_LOCATION (parms));
12764 else
12765 /* grokparms or complete_type_or_else will have already issued
12766 an error. */
12767 TREE_TYPE (parms) = error_mark_node;
12771 /* Returns nonzero if T is a local variable. */
12774 local_variable_p (const_tree t)
12776 if ((VAR_P (t)
12777 /* A VAR_DECL with a context that is a _TYPE is a static data
12778 member. */
12779 && !TYPE_P (CP_DECL_CONTEXT (t))
12780 /* Any other non-local variable must be at namespace scope. */
12781 && !DECL_NAMESPACE_SCOPE_P (t))
12782 || (TREE_CODE (t) == PARM_DECL))
12783 return 1;
12785 return 0;
12788 /* Like local_variable_p, but suitable for use as a tree-walking
12789 function. */
12791 static tree
12792 local_variable_p_walkfn (tree *tp, int *walk_subtrees,
12793 void * /*data*/)
12795 if (local_variable_p (*tp)
12796 && (!DECL_ARTIFICIAL (*tp) || DECL_NAME (*tp) == this_identifier))
12797 return *tp;
12798 else if (TYPE_P (*tp))
12799 *walk_subtrees = 0;
12801 return NULL_TREE;
12804 /* Check that ARG, which is a default-argument expression for a
12805 parameter DECL, is valid. Returns ARG, or ERROR_MARK_NODE, if
12806 something goes wrong. DECL may also be a _TYPE node, rather than a
12807 DECL, if there is no DECL available. */
12809 tree
12810 check_default_argument (tree decl, tree arg, tsubst_flags_t complain)
12812 tree var;
12813 tree decl_type;
12815 if (TREE_CODE (arg) == DEFAULT_ARG)
12816 /* We get a DEFAULT_ARG when looking at an in-class declaration
12817 with a default argument. Ignore the argument for now; we'll
12818 deal with it after the class is complete. */
12819 return arg;
12821 if (TYPE_P (decl))
12823 decl_type = decl;
12824 decl = NULL_TREE;
12826 else
12827 decl_type = TREE_TYPE (decl);
12829 if (arg == error_mark_node
12830 || decl == error_mark_node
12831 || TREE_TYPE (arg) == error_mark_node
12832 || decl_type == error_mark_node)
12833 /* Something already went wrong. There's no need to check
12834 further. */
12835 return error_mark_node;
12837 /* [dcl.fct.default]
12839 A default argument expression is implicitly converted to the
12840 parameter type. */
12841 ++cp_unevaluated_operand;
12842 /* Avoid digest_init clobbering the initializer. */
12843 tree carg = BRACE_ENCLOSED_INITIALIZER_P (arg) ? unshare_expr (arg): arg;
12844 perform_implicit_conversion_flags (decl_type, carg, complain,
12845 LOOKUP_IMPLICIT);
12846 --cp_unevaluated_operand;
12848 /* Avoid redundant -Wzero-as-null-pointer-constant warnings at
12849 the call sites. */
12850 if (TYPE_PTR_OR_PTRMEM_P (decl_type)
12851 && null_ptr_cst_p (arg))
12852 return nullptr_node;
12854 /* [dcl.fct.default]
12856 Local variables shall not be used in default argument
12857 expressions.
12859 The keyword `this' shall not be used in a default argument of a
12860 member function. */
12861 var = cp_walk_tree_without_duplicates (&arg, local_variable_p_walkfn, NULL);
12862 if (var)
12864 if (complain & tf_warning_or_error)
12866 if (DECL_NAME (var) == this_identifier)
12867 permerror (input_location, "default argument %qE uses %qD",
12868 arg, var);
12869 else
12870 error ("default argument %qE uses local variable %qD", arg, var);
12872 return error_mark_node;
12875 /* All is well. */
12876 return arg;
12879 /* Returns a deprecated type used within TYPE, or NULL_TREE if none. */
12881 static tree
12882 type_is_deprecated (tree type)
12884 enum tree_code code;
12885 if (TREE_DEPRECATED (type))
12886 return type;
12887 if (TYPE_NAME (type))
12889 if (TREE_DEPRECATED (TYPE_NAME (type)))
12890 return type;
12891 else
12892 return NULL_TREE;
12895 /* Do warn about using typedefs to a deprecated class. */
12896 if (OVERLOAD_TYPE_P (type) && type != TYPE_MAIN_VARIANT (type))
12897 return type_is_deprecated (TYPE_MAIN_VARIANT (type));
12899 code = TREE_CODE (type);
12901 if (code == POINTER_TYPE || code == REFERENCE_TYPE
12902 || code == OFFSET_TYPE || code == FUNCTION_TYPE
12903 || code == METHOD_TYPE || code == ARRAY_TYPE)
12904 return type_is_deprecated (TREE_TYPE (type));
12906 if (TYPE_PTRMEMFUNC_P (type))
12907 return type_is_deprecated
12908 (TREE_TYPE (TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (type))));
12910 return NULL_TREE;
12913 /* Decode the list of parameter types for a function type.
12914 Given the list of things declared inside the parens,
12915 return a list of types.
12917 If this parameter does not end with an ellipsis, we append
12918 void_list_node.
12920 *PARMS is set to the chain of PARM_DECLs created. */
12922 tree
12923 grokparms (tree parmlist, tree *parms)
12925 tree result = NULL_TREE;
12926 tree decls = NULL_TREE;
12927 tree parm;
12928 int any_error = 0;
12930 for (parm = parmlist; parm != NULL_TREE; parm = TREE_CHAIN (parm))
12932 tree type = NULL_TREE;
12933 tree init = TREE_PURPOSE (parm);
12934 tree decl = TREE_VALUE (parm);
12936 if (parm == void_list_node)
12937 break;
12939 if (! decl || TREE_TYPE (decl) == error_mark_node)
12940 continue;
12942 type = TREE_TYPE (decl);
12943 if (VOID_TYPE_P (type))
12945 if (same_type_p (type, void_type_node)
12946 && !init
12947 && !DECL_NAME (decl) && !result
12948 && TREE_CHAIN (parm) == void_list_node)
12949 /* DR 577: A parameter list consisting of a single
12950 unnamed parameter of non-dependent type 'void'. */
12951 break;
12952 else if (cv_qualified_p (type))
12953 error_at (DECL_SOURCE_LOCATION (decl),
12954 "invalid use of cv-qualified type %qT in "
12955 "parameter declaration", type);
12956 else
12957 error_at (DECL_SOURCE_LOCATION (decl),
12958 "invalid use of type %<void%> in parameter "
12959 "declaration");
12960 /* It's not a good idea to actually create parameters of
12961 type `void'; other parts of the compiler assume that a
12962 void type terminates the parameter list. */
12963 type = error_mark_node;
12964 TREE_TYPE (decl) = error_mark_node;
12967 if (type != error_mark_node)
12969 if (deprecated_state != DEPRECATED_SUPPRESS)
12971 tree deptype = type_is_deprecated (type);
12972 if (deptype)
12973 cp_warn_deprecated_use (deptype);
12976 /* Top-level qualifiers on the parameters are
12977 ignored for function types. */
12978 type = cp_build_qualified_type (type, 0);
12979 if (TREE_CODE (type) == METHOD_TYPE)
12981 error ("parameter %qD invalidly declared method type", decl);
12982 type = build_pointer_type (type);
12983 TREE_TYPE (decl) = type;
12985 else if (abstract_virtuals_error (decl, type))
12986 any_error = 1; /* Seems like a good idea. */
12987 else if (cxx_dialect < cxx17 && INDIRECT_TYPE_P (type))
12989 /* Before C++17 DR 393:
12990 [dcl.fct]/6, parameter types cannot contain pointers
12991 (references) to arrays of unknown bound. */
12992 tree t = TREE_TYPE (type);
12993 int ptr = TYPE_PTR_P (type);
12995 while (1)
12997 if (TYPE_PTR_P (t))
12998 ptr = 1;
12999 else if (TREE_CODE (t) != ARRAY_TYPE)
13000 break;
13001 else if (!TYPE_DOMAIN (t))
13002 break;
13003 t = TREE_TYPE (t);
13005 if (TREE_CODE (t) == ARRAY_TYPE)
13006 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wpedantic,
13008 ? G_("parameter %qD includes pointer to array of "
13009 "unknown bound %qT")
13010 : G_("parameter %qD includes reference to array of "
13011 "unknown bound %qT"),
13012 decl, t);
13015 if (any_error)
13016 init = NULL_TREE;
13017 else if (init && !processing_template_decl)
13018 init = check_default_argument (decl, init, tf_warning_or_error);
13021 DECL_CHAIN (decl) = decls;
13022 decls = decl;
13023 result = tree_cons (init, type, result);
13025 decls = nreverse (decls);
13026 result = nreverse (result);
13027 if (parm)
13028 result = chainon (result, void_list_node);
13029 *parms = decls;
13031 return result;
13035 /* D is a constructor or overloaded `operator='.
13037 Let T be the class in which D is declared. Then, this function
13038 returns:
13040 -1 if D's is an ill-formed constructor or copy assignment operator
13041 whose first parameter is of type `T'.
13042 0 if D is not a copy constructor or copy assignment
13043 operator.
13044 1 if D is a copy constructor or copy assignment operator whose
13045 first parameter is a reference to non-const qualified T.
13046 2 if D is a copy constructor or copy assignment operator whose
13047 first parameter is a reference to const qualified T.
13049 This function can be used as a predicate. Positive values indicate
13050 a copy constructor and nonzero values indicate a copy assignment
13051 operator. */
13054 copy_fn_p (const_tree d)
13056 tree args;
13057 tree arg_type;
13058 int result = 1;
13060 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
13062 if (TREE_CODE (d) == TEMPLATE_DECL
13063 || (DECL_TEMPLATE_INFO (d)
13064 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
13065 /* Instantiations of template member functions are never copy
13066 functions. Note that member functions of templated classes are
13067 represented as template functions internally, and we must
13068 accept those as copy functions. */
13069 return 0;
13071 args = FUNCTION_FIRST_USER_PARMTYPE (d);
13072 if (!args)
13073 return 0;
13075 arg_type = TREE_VALUE (args);
13076 if (arg_type == error_mark_node)
13077 return 0;
13079 if (TYPE_MAIN_VARIANT (arg_type) == DECL_CONTEXT (d))
13081 /* Pass by value copy assignment operator. */
13082 result = -1;
13084 else if (TYPE_REF_P (arg_type)
13085 && !TYPE_REF_IS_RVALUE (arg_type)
13086 && TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)) == DECL_CONTEXT (d))
13088 if (CP_TYPE_CONST_P (TREE_TYPE (arg_type)))
13089 result = 2;
13091 else
13092 return 0;
13094 args = TREE_CHAIN (args);
13096 if (args && args != void_list_node && !TREE_PURPOSE (args))
13097 /* There are more non-optional args. */
13098 return 0;
13100 return result;
13103 /* D is a constructor or overloaded `operator='.
13105 Let T be the class in which D is declared. Then, this function
13106 returns true when D is a move constructor or move assignment
13107 operator, false otherwise. */
13109 bool
13110 move_fn_p (const_tree d)
13112 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
13114 if (cxx_dialect == cxx98)
13115 /* There are no move constructors if we are in C++98 mode. */
13116 return false;
13118 if (TREE_CODE (d) == TEMPLATE_DECL
13119 || (DECL_TEMPLATE_INFO (d)
13120 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
13121 /* Instantiations of template member functions are never move
13122 functions. Note that member functions of templated classes are
13123 represented as template functions internally, and we must
13124 accept those as move functions. */
13125 return 0;
13127 return move_signature_fn_p (d);
13130 /* D is a constructor or overloaded `operator='.
13132 Then, this function returns true when D has the same signature as a move
13133 constructor or move assignment operator (because either it is such a
13134 ctor/op= or it is a template specialization with the same signature),
13135 false otherwise. */
13137 bool
13138 move_signature_fn_p (const_tree d)
13140 tree args;
13141 tree arg_type;
13142 bool result = false;
13144 args = FUNCTION_FIRST_USER_PARMTYPE (d);
13145 if (!args)
13146 return 0;
13148 arg_type = TREE_VALUE (args);
13149 if (arg_type == error_mark_node)
13150 return 0;
13152 if (TYPE_REF_P (arg_type)
13153 && TYPE_REF_IS_RVALUE (arg_type)
13154 && same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)),
13155 DECL_CONTEXT (d)))
13156 result = true;
13158 args = TREE_CHAIN (args);
13160 if (args && args != void_list_node && !TREE_PURPOSE (args))
13161 /* There are more non-optional args. */
13162 return false;
13164 return result;
13167 /* Remember any special properties of member function DECL. */
13169 void
13170 grok_special_member_properties (tree decl)
13172 tree class_type;
13174 if (!DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
13175 return;
13177 class_type = DECL_CONTEXT (decl);
13178 if (IDENTIFIER_CTOR_P (DECL_NAME (decl)))
13180 int ctor = copy_fn_p (decl);
13182 if (!DECL_ARTIFICIAL (decl))
13183 TYPE_HAS_USER_CONSTRUCTOR (class_type) = 1;
13185 if (ctor > 0)
13187 /* [class.copy]
13189 A non-template constructor for class X is a copy
13190 constructor if its first parameter is of type X&, const
13191 X&, volatile X& or const volatile X&, and either there
13192 are no other parameters or else all other parameters have
13193 default arguments. */
13194 TYPE_HAS_COPY_CTOR (class_type) = 1;
13195 if (user_provided_p (decl))
13196 TYPE_HAS_COMPLEX_COPY_CTOR (class_type) = 1;
13197 if (ctor > 1)
13198 TYPE_HAS_CONST_COPY_CTOR (class_type) = 1;
13200 else if (sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (decl)))
13201 TYPE_HAS_DEFAULT_CONSTRUCTOR (class_type) = 1;
13202 else if (move_fn_p (decl) && user_provided_p (decl))
13203 TYPE_HAS_COMPLEX_MOVE_CTOR (class_type) = 1;
13204 else if (is_list_ctor (decl))
13205 TYPE_HAS_LIST_CTOR (class_type) = 1;
13207 if (DECL_DECLARED_CONSTEXPR_P (decl)
13208 && !ctor && !move_fn_p (decl))
13209 TYPE_HAS_CONSTEXPR_CTOR (class_type) = 1;
13211 else if (DECL_NAME (decl) == assign_op_identifier)
13213 /* [class.copy]
13215 A non-template assignment operator for class X is a copy
13216 assignment operator if its parameter is of type X, X&, const
13217 X&, volatile X& or const volatile X&. */
13219 int assop = copy_fn_p (decl);
13221 if (assop)
13223 TYPE_HAS_COPY_ASSIGN (class_type) = 1;
13224 if (user_provided_p (decl))
13225 TYPE_HAS_COMPLEX_COPY_ASSIGN (class_type) = 1;
13226 if (assop != 1)
13227 TYPE_HAS_CONST_COPY_ASSIGN (class_type) = 1;
13229 else if (move_fn_p (decl) && user_provided_p (decl))
13230 TYPE_HAS_COMPLEX_MOVE_ASSIGN (class_type) = 1;
13232 else if (IDENTIFIER_CONV_OP_P (DECL_NAME (decl)))
13233 TYPE_HAS_CONVERSION (class_type) = true;
13235 /* Destructors are handled in check_methods. */
13238 /* Check a constructor DECL has the correct form. Complains
13239 if the class has a constructor of the form X(X). */
13241 bool
13242 grok_ctor_properties (const_tree ctype, const_tree decl)
13244 int ctor_parm = copy_fn_p (decl);
13246 if (ctor_parm < 0)
13248 /* [class.copy]
13250 A declaration of a constructor for a class X is ill-formed if
13251 its first parameter is of type (optionally cv-qualified) X
13252 and either there are no other parameters or else all other
13253 parameters have default arguments.
13255 We *don't* complain about member template instantiations that
13256 have this form, though; they can occur as we try to decide
13257 what constructor to use during overload resolution. Since
13258 overload resolution will never prefer such a constructor to
13259 the non-template copy constructor (which is either explicitly
13260 or implicitly defined), there's no need to worry about their
13261 existence. Theoretically, they should never even be
13262 instantiated, but that's hard to forestall. */
13263 error ("invalid constructor; you probably meant %<%T (const %T&)%>",
13264 ctype, ctype);
13265 return false;
13268 return true;
13271 /* DECL is a declaration for an overloaded or conversion operator. If
13272 COMPLAIN is true, errors are issued for invalid declarations. */
13274 bool
13275 grok_op_properties (tree decl, bool complain)
13277 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
13278 bool methodp = TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE;
13279 tree name = DECL_NAME (decl);
13280 location_t loc = DECL_SOURCE_LOCATION (decl);
13282 tree class_type = DECL_CONTEXT (decl);
13283 if (class_type && !CLASS_TYPE_P (class_type))
13284 class_type = NULL_TREE;
13286 tree_code operator_code;
13287 unsigned op_flags;
13288 if (IDENTIFIER_CONV_OP_P (name))
13290 /* Conversion operators are TYPE_EXPR for the purposes of this
13291 function. */
13292 operator_code = TYPE_EXPR;
13293 op_flags = OVL_OP_FLAG_UNARY;
13295 else
13297 const ovl_op_info_t *ovl_op = IDENTIFIER_OVL_OP_INFO (name);
13299 operator_code = ovl_op->tree_code;
13300 op_flags = ovl_op->flags;
13301 gcc_checking_assert (operator_code != ERROR_MARK);
13302 DECL_OVERLOADED_OPERATOR_CODE_RAW (decl) = ovl_op->ovl_op_code;
13305 if (op_flags & OVL_OP_FLAG_ALLOC)
13307 /* operator new and operator delete are quite special. */
13308 if (class_type)
13309 switch (op_flags)
13311 case OVL_OP_FLAG_ALLOC:
13312 TYPE_HAS_NEW_OPERATOR (class_type) = 1;
13313 break;
13315 case OVL_OP_FLAG_ALLOC | OVL_OP_FLAG_DELETE:
13316 TYPE_GETS_DELETE (class_type) |= 1;
13317 break;
13319 case OVL_OP_FLAG_ALLOC | OVL_OP_FLAG_VEC:
13320 TYPE_HAS_ARRAY_NEW_OPERATOR (class_type) = 1;
13321 break;
13323 case OVL_OP_FLAG_ALLOC | OVL_OP_FLAG_DELETE | OVL_OP_FLAG_VEC:
13324 TYPE_GETS_DELETE (class_type) |= 2;
13325 break;
13327 default:
13328 gcc_unreachable ();
13331 /* [basic.std.dynamic.allocation]/1:
13333 A program is ill-formed if an allocation function is declared
13334 in a namespace scope other than global scope or declared
13335 static in global scope.
13337 The same also holds true for deallocation functions. */
13338 if (DECL_NAMESPACE_SCOPE_P (decl))
13340 if (CP_DECL_CONTEXT (decl) != global_namespace)
13342 error_at (loc, "%qD may not be declared within a namespace",
13343 decl);
13344 return false;
13347 if (!TREE_PUBLIC (decl))
13349 error_at (loc, "%qD may not be declared as static", decl);
13350 return false;
13354 if (op_flags & OVL_OP_FLAG_DELETE)
13355 TREE_TYPE (decl) = coerce_delete_type (TREE_TYPE (decl), loc);
13356 else
13358 DECL_IS_OPERATOR_NEW (decl) = 1;
13359 TREE_TYPE (decl) = coerce_new_type (TREE_TYPE (decl), loc);
13362 return true;
13365 /* An operator function must either be a non-static member function
13366 or have at least one parameter of a class, a reference to a class,
13367 an enumeration, or a reference to an enumeration. 13.4.0.6 */
13368 if (! methodp || DECL_STATIC_FUNCTION_P (decl))
13370 if (operator_code == TYPE_EXPR
13371 || operator_code == CALL_EXPR
13372 || operator_code == COMPONENT_REF
13373 || operator_code == ARRAY_REF
13374 || operator_code == NOP_EXPR)
13376 error_at (loc, "%qD must be a nonstatic member function", decl);
13377 return false;
13380 if (DECL_STATIC_FUNCTION_P (decl))
13382 error_at (loc, "%qD must be either a non-static member "
13383 "function or a non-member function", decl);
13384 return false;
13387 for (tree arg = argtypes; ; arg = TREE_CHAIN (arg))
13389 if (!arg || arg == void_list_node)
13391 if (complain)
13392 error_at(loc, "%qD must have an argument of class or "
13393 "enumerated type", decl);
13394 return false;
13397 tree type = non_reference (TREE_VALUE (arg));
13398 if (type == error_mark_node)
13399 return false;
13401 /* MAYBE_CLASS_TYPE_P, rather than CLASS_TYPE_P, is used
13402 because these checks are performed even on template
13403 functions. */
13404 if (MAYBE_CLASS_TYPE_P (type)
13405 || TREE_CODE (type) == ENUMERAL_TYPE)
13406 break;
13410 if (operator_code == CALL_EXPR)
13411 /* There are no further restrictions on the arguments to an overloaded
13412 "operator ()". */
13413 return true;
13415 if (operator_code == COND_EXPR)
13417 /* 13.4.0.3 */
13418 error_at (loc, "ISO C++ prohibits overloading operator ?:");
13419 return false;
13422 /* Count the number of arguments and check for ellipsis. */
13423 int arity = 0;
13424 for (tree arg = argtypes; arg != void_list_node; arg = TREE_CHAIN (arg))
13426 if (!arg)
13428 /* Variadic. */
13429 error_at (loc, "%qD must not have variable number of arguments",
13430 decl);
13431 return false;
13433 ++arity;
13436 /* Verify correct number of arguments. */
13437 switch (op_flags)
13439 case OVL_OP_FLAG_AMBIARY:
13440 if (arity == 1)
13442 /* We have a unary instance of an ambi-ary op. Remap to the
13443 unary one. */
13444 unsigned alt = ovl_op_alternate[ovl_op_mapping [operator_code]];
13445 const ovl_op_info_t *ovl_op = &ovl_op_info[false][alt];
13446 gcc_checking_assert (ovl_op->flags == OVL_OP_FLAG_UNARY);
13447 operator_code = ovl_op->tree_code;
13448 DECL_OVERLOADED_OPERATOR_CODE_RAW (decl) = ovl_op->ovl_op_code;
13450 else if (arity != 2)
13452 /* This was an ambiguous operator but is invalid. */
13453 error_at (loc,
13454 methodp
13455 ? G_("%qD must have either zero or one argument")
13456 : G_("%qD must have either one or two arguments"), decl);
13457 return false;
13459 else if ((operator_code == POSTINCREMENT_EXPR
13460 || operator_code == POSTDECREMENT_EXPR)
13461 && ! processing_template_decl
13462 /* x++ and x--'s second argument must be an int. */
13463 && ! same_type_p (TREE_VALUE (TREE_CHAIN (argtypes)),
13464 integer_type_node))
13466 error_at (loc,
13467 methodp
13468 ? G_("postfix %qD must have %<int%> as its argument")
13469 : G_("postfix %qD must have %<int%> as its second argument"),
13470 decl);
13471 return false;
13473 break;
13475 case OVL_OP_FLAG_UNARY:
13476 if (arity != 1)
13478 error_at (loc,
13479 methodp
13480 ? G_("%qD must have no arguments")
13481 : G_("%qD must have exactly one argument"), decl);
13482 return false;
13484 break;
13486 case OVL_OP_FLAG_BINARY:
13487 if (arity != 2)
13489 error_at (loc,
13490 methodp
13491 ? G_("%qD must have exactly one argument")
13492 : G_("%qD must have exactly two arguments"), decl);
13493 return false;
13495 break;
13497 default:
13498 gcc_unreachable ();
13501 /* There can be no default arguments. */
13502 for (tree arg = argtypes; arg != void_list_node; arg = TREE_CHAIN (arg))
13503 if (TREE_PURPOSE (arg))
13505 TREE_PURPOSE (arg) = NULL_TREE;
13506 error_at (loc, "%qD cannot have default arguments", decl);
13507 return false;
13510 /* At this point the declaration is well-formed. It may not be
13511 sensible though. */
13513 /* Check member function warnings only on the in-class declaration.
13514 There's no point warning on an out-of-class definition. */
13515 if (class_type && class_type != current_class_type)
13516 return true;
13518 /* Warn about conversion operators that will never be used. */
13519 if (IDENTIFIER_CONV_OP_P (name)
13520 && ! DECL_TEMPLATE_INFO (decl)
13521 && warn_conversion)
13523 tree t = TREE_TYPE (name);
13524 int ref = TYPE_REF_P (t);
13526 if (ref)
13527 t = TYPE_MAIN_VARIANT (TREE_TYPE (t));
13529 if (VOID_TYPE_P (t))
13530 warning_at (loc, OPT_Wconversion,
13532 ? G_("conversion to a reference to void "
13533 "will never use a type conversion operator")
13534 : G_("conversion to void "
13535 "will never use a type conversion operator"));
13536 else if (class_type)
13538 if (t == class_type)
13539 warning_at (loc, OPT_Wconversion,
13541 ? G_("conversion to a reference to the same type "
13542 "will never use a type conversion operator")
13543 : G_("conversion to the same type "
13544 "will never use a type conversion operator"));
13545 /* Don't force t to be complete here. */
13546 else if (MAYBE_CLASS_TYPE_P (t)
13547 && COMPLETE_TYPE_P (t)
13548 && DERIVED_FROM_P (t, class_type))
13549 warning_at (loc, OPT_Wconversion,
13551 ? G_("conversion to a reference to a base class "
13552 "will never use a type conversion operator")
13553 : G_("conversion to a base class "
13554 "will never use a type conversion operator"));
13558 if (!warn_ecpp)
13559 return true;
13561 /* Effective C++ rules below. */
13563 /* More Effective C++ rule 7. */
13564 if (operator_code == TRUTH_ANDIF_EXPR
13565 || operator_code == TRUTH_ORIF_EXPR
13566 || operator_code == COMPOUND_EXPR)
13567 warning_at (loc, OPT_Weffc__,
13568 "user-defined %qD always evaluates both arguments", decl);
13570 /* More Effective C++ rule 6. */
13571 if (operator_code == POSTINCREMENT_EXPR
13572 || operator_code == POSTDECREMENT_EXPR
13573 || operator_code == PREINCREMENT_EXPR
13574 || operator_code == PREDECREMENT_EXPR)
13576 tree arg = TREE_VALUE (argtypes);
13577 tree ret = TREE_TYPE (TREE_TYPE (decl));
13578 if (methodp || TYPE_REF_P (arg))
13579 arg = TREE_TYPE (arg);
13580 arg = TYPE_MAIN_VARIANT (arg);
13582 if (operator_code == PREINCREMENT_EXPR
13583 || operator_code == PREDECREMENT_EXPR)
13585 if (!TYPE_REF_P (ret)
13586 || !same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (ret)), arg))
13587 warning_at (loc, OPT_Weffc__, "prefix %qD should return %qT", decl,
13588 build_reference_type (arg));
13590 else
13592 if (!same_type_p (TYPE_MAIN_VARIANT (ret), arg))
13593 warning_at (loc, OPT_Weffc__,
13594 "postfix %qD should return %qT", decl, arg);
13598 /* Effective C++ rule 23. */
13599 if (!DECL_ASSIGNMENT_OPERATOR_P (decl)
13600 && (operator_code == PLUS_EXPR
13601 || operator_code == MINUS_EXPR
13602 || operator_code == TRUNC_DIV_EXPR
13603 || operator_code == MULT_EXPR
13604 || operator_code == TRUNC_MOD_EXPR)
13605 && TYPE_REF_P (TREE_TYPE (TREE_TYPE (decl))))
13606 warning_at (loc, OPT_Weffc__, "%qD should return by value", decl);
13608 return true;
13611 /* Return a string giving the keyword associate with CODE. */
13613 static const char *
13614 tag_name (enum tag_types code)
13616 switch (code)
13618 case record_type:
13619 return "struct";
13620 case class_type:
13621 return "class";
13622 case union_type:
13623 return "union";
13624 case enum_type:
13625 return "enum";
13626 case typename_type:
13627 return "typename";
13628 default:
13629 gcc_unreachable ();
13633 /* Name lookup in an elaborated-type-specifier (after the keyword
13634 indicated by TAG_CODE) has found the TYPE_DECL DECL. If the
13635 elaborated-type-specifier is invalid, issue a diagnostic and return
13636 error_mark_node; otherwise, return the *_TYPE to which it referred.
13637 If ALLOW_TEMPLATE_P is true, TYPE may be a class template. */
13639 tree
13640 check_elaborated_type_specifier (enum tag_types tag_code,
13641 tree decl,
13642 bool allow_template_p)
13644 tree type;
13646 /* In the case of:
13648 struct S { struct S *p; };
13650 name lookup will find the TYPE_DECL for the implicit "S::S"
13651 typedef. Adjust for that here. */
13652 if (DECL_SELF_REFERENCE_P (decl))
13653 decl = TYPE_NAME (TREE_TYPE (decl));
13655 type = TREE_TYPE (decl);
13657 /* Check TEMPLATE_TYPE_PARM first because DECL_IMPLICIT_TYPEDEF_P
13658 is false for this case as well. */
13659 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
13661 error ("using template type parameter %qT after %qs",
13662 type, tag_name (tag_code));
13663 return error_mark_node;
13665 /* Accept template template parameters. */
13666 else if (allow_template_p
13667 && (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM
13668 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM))
13670 /* [dcl.type.elab]
13672 If the identifier resolves to a typedef-name or the
13673 simple-template-id resolves to an alias template
13674 specialization, the elaborated-type-specifier is ill-formed.
13676 In other words, the only legitimate declaration to use in the
13677 elaborated type specifier is the implicit typedef created when
13678 the type is declared. */
13679 else if (!DECL_IMPLICIT_TYPEDEF_P (decl)
13680 && !DECL_SELF_REFERENCE_P (decl)
13681 && tag_code != typename_type)
13683 if (alias_template_specialization_p (type))
13684 error ("using alias template specialization %qT after %qs",
13685 type, tag_name (tag_code));
13686 else
13687 error ("using typedef-name %qD after %qs", decl, tag_name (tag_code));
13688 inform (DECL_SOURCE_LOCATION (decl),
13689 "%qD has a previous declaration here", decl);
13690 return error_mark_node;
13692 else if (TREE_CODE (type) != RECORD_TYPE
13693 && TREE_CODE (type) != UNION_TYPE
13694 && tag_code != enum_type
13695 && tag_code != typename_type)
13697 error ("%qT referred to as %qs", type, tag_name (tag_code));
13698 inform (location_of (type), "%qT has a previous declaration here", type);
13699 return error_mark_node;
13701 else if (TREE_CODE (type) != ENUMERAL_TYPE
13702 && tag_code == enum_type)
13704 error ("%qT referred to as enum", type);
13705 inform (location_of (type), "%qT has a previous declaration here", type);
13706 return error_mark_node;
13708 else if (!allow_template_p
13709 && TREE_CODE (type) == RECORD_TYPE
13710 && CLASSTYPE_IS_TEMPLATE (type))
13712 /* If a class template appears as elaborated type specifier
13713 without a template header such as:
13715 template <class T> class C {};
13716 void f(class C); // No template header here
13718 then the required template argument is missing. */
13719 error ("template argument required for %<%s %T%>",
13720 tag_name (tag_code),
13721 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type)));
13722 return error_mark_node;
13725 return type;
13728 /* Lookup NAME in elaborate type specifier in scope according to
13729 SCOPE and issue diagnostics if necessary.
13730 Return *_TYPE node upon success, NULL_TREE when the NAME is not
13731 found, and ERROR_MARK_NODE for type error. */
13733 static tree
13734 lookup_and_check_tag (enum tag_types tag_code, tree name,
13735 tag_scope scope, bool template_header_p)
13737 tree t;
13738 tree decl;
13739 if (scope == ts_global)
13741 /* First try ordinary name lookup, ignoring hidden class name
13742 injected via friend declaration. */
13743 decl = lookup_name_prefer_type (name, 2);
13744 decl = strip_using_decl (decl);
13745 /* If that fails, the name will be placed in the smallest
13746 non-class, non-function-prototype scope according to 3.3.1/5.
13747 We may already have a hidden name declared as friend in this
13748 scope. So lookup again but not ignoring hidden names.
13749 If we find one, that name will be made visible rather than
13750 creating a new tag. */
13751 if (!decl)
13752 decl = lookup_type_scope (name, ts_within_enclosing_non_class);
13754 else
13755 decl = lookup_type_scope (name, scope);
13757 if (decl
13758 && (DECL_CLASS_TEMPLATE_P (decl)
13759 /* If scope is ts_current we're defining a class, so ignore a
13760 template template parameter. */
13761 || (scope != ts_current
13762 && DECL_TEMPLATE_TEMPLATE_PARM_P (decl))))
13763 decl = DECL_TEMPLATE_RESULT (decl);
13765 if (decl && TREE_CODE (decl) == TYPE_DECL)
13767 /* Look for invalid nested type:
13768 class C {
13769 class C {};
13770 }; */
13771 if (scope == ts_current && DECL_SELF_REFERENCE_P (decl))
13773 error ("%qD has the same name as the class in which it is "
13774 "declared",
13775 decl);
13776 return error_mark_node;
13779 /* Two cases we need to consider when deciding if a class
13780 template is allowed as an elaborated type specifier:
13781 1. It is a self reference to its own class.
13782 2. It comes with a template header.
13784 For example:
13786 template <class T> class C {
13787 class C *c1; // DECL_SELF_REFERENCE_P is true
13788 class D;
13790 template <class U> class C; // template_header_p is true
13791 template <class T> class C<T>::D {
13792 class C *c2; // DECL_SELF_REFERENCE_P is true
13793 }; */
13795 t = check_elaborated_type_specifier (tag_code,
13796 decl,
13797 template_header_p
13798 | DECL_SELF_REFERENCE_P (decl));
13799 if (template_header_p && t && CLASS_TYPE_P (t)
13800 && (!CLASSTYPE_TEMPLATE_INFO (t)
13801 || (!PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t)))))
13803 error ("%qT is not a template", t);
13804 inform (location_of (t), "previous declaration here");
13805 if (TYPE_CLASS_SCOPE_P (t)
13806 && CLASSTYPE_TEMPLATE_INFO (TYPE_CONTEXT (t)))
13807 inform (input_location,
13808 "perhaps you want to explicitly add %<%T::%>",
13809 TYPE_CONTEXT (t));
13810 t = error_mark_node;
13813 return t;
13815 else if (decl && TREE_CODE (decl) == TREE_LIST)
13817 error ("reference to %qD is ambiguous", name);
13818 print_candidates (decl);
13819 return error_mark_node;
13821 else
13822 return NULL_TREE;
13825 /* Get the struct, enum or union (TAG_CODE says which) with tag NAME.
13826 Define the tag as a forward-reference if it is not defined.
13828 If a declaration is given, process it here, and report an error if
13829 multiple declarations are not identical.
13831 SCOPE is TS_CURRENT when this is also a definition. Only look in
13832 the current frame for the name (since C++ allows new names in any
13833 scope.) It is TS_WITHIN_ENCLOSING_NON_CLASS if this is a friend
13834 declaration. Only look beginning from the current scope outward up
13835 till the nearest non-class scope. Otherwise it is TS_GLOBAL.
13837 TEMPLATE_HEADER_P is true when this declaration is preceded by
13838 a set of template parameters. */
13840 static tree
13841 xref_tag_1 (enum tag_types tag_code, tree name,
13842 tag_scope scope, bool template_header_p)
13844 enum tree_code code;
13845 tree context = NULL_TREE;
13847 gcc_assert (identifier_p (name));
13849 switch (tag_code)
13851 case record_type:
13852 case class_type:
13853 code = RECORD_TYPE;
13854 break;
13855 case union_type:
13856 code = UNION_TYPE;
13857 break;
13858 case enum_type:
13859 code = ENUMERAL_TYPE;
13860 break;
13861 default:
13862 gcc_unreachable ();
13865 /* In case of anonymous name, xref_tag is only called to
13866 make type node and push name. Name lookup is not required. */
13867 tree t = NULL_TREE;
13868 if (scope != ts_lambda && !anon_aggrname_p (name))
13869 t = lookup_and_check_tag (tag_code, name, scope, template_header_p);
13871 if (t == error_mark_node)
13872 return error_mark_node;
13874 if (scope != ts_current && t && current_class_type
13875 && template_class_depth (current_class_type)
13876 && template_header_p)
13878 if (TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM)
13879 return t;
13881 /* Since SCOPE is not TS_CURRENT, we are not looking at a
13882 definition of this tag. Since, in addition, we are currently
13883 processing a (member) template declaration of a template
13884 class, we must be very careful; consider:
13886 template <class X> struct S1
13888 template <class U> struct S2
13890 template <class V> friend struct S1;
13893 Here, the S2::S1 declaration should not be confused with the
13894 outer declaration. In particular, the inner version should
13895 have a template parameter of level 2, not level 1.
13897 On the other hand, when presented with:
13899 template <class T> struct S1
13901 template <class U> struct S2 {};
13902 template <class U> friend struct S2;
13905 the friend must find S1::S2 eventually. We accomplish this
13906 by making sure that the new type we create to represent this
13907 declaration has the right TYPE_CONTEXT. */
13908 context = TYPE_CONTEXT (t);
13909 t = NULL_TREE;
13912 if (! t)
13914 /* If no such tag is yet defined, create a forward-reference node
13915 and record it as the "definition".
13916 When a real declaration of this type is found,
13917 the forward-reference will be altered into a real type. */
13918 if (code == ENUMERAL_TYPE)
13920 error ("use of enum %q#D without previous declaration", name);
13921 return error_mark_node;
13923 else
13925 t = make_class_type (code);
13926 TYPE_CONTEXT (t) = context;
13927 if (scope == ts_lambda)
13929 /* Mark it as a lambda type. */
13930 CLASSTYPE_LAMBDA_EXPR (t) = error_mark_node;
13931 /* And push it into current scope. */
13932 scope = ts_current;
13934 t = pushtag (name, t, scope);
13937 else
13939 if (template_header_p && MAYBE_CLASS_TYPE_P (t))
13941 /* Check that we aren't trying to overload a class with different
13942 constraints. */
13943 tree constr = NULL_TREE;
13944 if (current_template_parms)
13946 tree reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
13947 constr = build_constraints (reqs, NULL_TREE);
13949 if (!redeclare_class_template (t, current_template_parms, constr))
13950 return error_mark_node;
13952 else if (!processing_template_decl
13953 && CLASS_TYPE_P (t)
13954 && CLASSTYPE_IS_TEMPLATE (t))
13956 error ("redeclaration of %qT as a non-template", t);
13957 inform (location_of (t), "previous declaration %qD", t);
13958 return error_mark_node;
13961 if (scope != ts_within_enclosing_non_class && TYPE_HIDDEN_P (t))
13963 /* This is no longer an invisible friend. Make it
13964 visible. */
13965 tree decl = TYPE_NAME (t);
13967 DECL_ANTICIPATED (decl) = false;
13968 DECL_FRIEND_P (decl) = false;
13970 if (TYPE_TEMPLATE_INFO (t))
13972 tree tmpl = TYPE_TI_TEMPLATE (t);
13973 DECL_ANTICIPATED (tmpl) = false;
13974 DECL_FRIEND_P (tmpl) = false;
13979 return t;
13982 /* Wrapper for xref_tag_1. */
13984 tree
13985 xref_tag (enum tag_types tag_code, tree name,
13986 tag_scope scope, bool template_header_p)
13988 tree ret;
13989 bool subtime;
13990 subtime = timevar_cond_start (TV_NAME_LOOKUP);
13991 ret = xref_tag_1 (tag_code, name, scope, template_header_p);
13992 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
13993 return ret;
13997 tree
13998 xref_tag_from_type (tree old, tree id, tag_scope scope)
14000 enum tag_types tag_kind;
14002 if (TREE_CODE (old) == RECORD_TYPE)
14003 tag_kind = (CLASSTYPE_DECLARED_CLASS (old) ? class_type : record_type);
14004 else
14005 tag_kind = union_type;
14007 if (id == NULL_TREE)
14008 id = TYPE_IDENTIFIER (old);
14010 return xref_tag (tag_kind, id, scope, false);
14013 /* Create the binfo hierarchy for REF with (possibly NULL) base list
14014 BASE_LIST. For each element on BASE_LIST the TREE_PURPOSE is an
14015 access_* node, and the TREE_VALUE is the type of the base-class.
14016 Non-NULL TREE_TYPE indicates virtual inheritance. */
14018 void
14019 xref_basetypes (tree ref, tree base_list)
14021 tree *basep;
14022 tree binfo, base_binfo;
14023 unsigned max_vbases = 0; /* Maximum direct & indirect virtual bases. */
14024 unsigned max_bases = 0; /* Maximum direct bases. */
14025 unsigned max_dvbases = 0; /* Maximum direct virtual bases. */
14026 int i;
14027 tree default_access;
14028 tree igo_prev; /* Track Inheritance Graph Order. */
14030 if (ref == error_mark_node)
14031 return;
14033 /* The base of a derived class is private by default, all others are
14034 public. */
14035 default_access = (TREE_CODE (ref) == RECORD_TYPE
14036 && CLASSTYPE_DECLARED_CLASS (ref)
14037 ? access_private_node : access_public_node);
14039 /* First, make sure that any templates in base-classes are
14040 instantiated. This ensures that if we call ourselves recursively
14041 we do not get confused about which classes are marked and which
14042 are not. */
14043 basep = &base_list;
14044 while (*basep)
14046 tree basetype = TREE_VALUE (*basep);
14048 /* The dependent_type_p call below should really be dependent_scope_p
14049 so that we give a hard error about using an incomplete type as a
14050 base, but we allow it with a pedwarn for backward
14051 compatibility. */
14052 if (processing_template_decl
14053 && CLASS_TYPE_P (basetype) && TYPE_BEING_DEFINED (basetype))
14054 cxx_incomplete_type_diagnostic (NULL_TREE, basetype, DK_PEDWARN);
14055 if (!dependent_type_p (basetype)
14056 && !complete_type_or_else (basetype, NULL))
14057 /* An incomplete type. Remove it from the list. */
14058 *basep = TREE_CHAIN (*basep);
14059 else
14061 max_bases++;
14062 if (TREE_TYPE (*basep))
14063 max_dvbases++;
14064 if (CLASS_TYPE_P (basetype))
14065 max_vbases += vec_safe_length (CLASSTYPE_VBASECLASSES (basetype));
14066 basep = &TREE_CHAIN (*basep);
14069 max_vbases += max_dvbases;
14071 TYPE_MARKED_P (ref) = 1;
14073 /* The binfo slot should be empty, unless this is an (ill-formed)
14074 redefinition. */
14075 gcc_assert (!TYPE_BINFO (ref) || TYPE_SIZE (ref));
14077 gcc_assert (TYPE_MAIN_VARIANT (ref) == ref);
14079 binfo = make_tree_binfo (max_bases);
14081 TYPE_BINFO (ref) = binfo;
14082 BINFO_OFFSET (binfo) = size_zero_node;
14083 BINFO_TYPE (binfo) = ref;
14085 /* Apply base-class info set up to the variants of this type. */
14086 fixup_type_variants (ref);
14088 if (max_bases)
14090 vec_alloc (BINFO_BASE_ACCESSES (binfo), max_bases);
14091 /* A C++98 POD cannot have base classes. */
14092 CLASSTYPE_NON_LAYOUT_POD_P (ref) = true;
14094 if (TREE_CODE (ref) == UNION_TYPE)
14096 error ("derived union %qT invalid", ref);
14097 return;
14101 if (max_bases > 1)
14102 warning (OPT_Wmultiple_inheritance,
14103 "%qT defined with multiple direct bases", ref);
14105 if (max_vbases)
14107 /* An aggregate can't have virtual base classes. */
14108 CLASSTYPE_NON_AGGREGATE (ref) = true;
14110 vec_alloc (CLASSTYPE_VBASECLASSES (ref), max_vbases);
14112 if (max_dvbases)
14113 warning (OPT_Wvirtual_inheritance,
14114 "%qT defined with direct virtual base", ref);
14117 for (igo_prev = binfo; base_list; base_list = TREE_CHAIN (base_list))
14119 tree access = TREE_PURPOSE (base_list);
14120 int via_virtual = TREE_TYPE (base_list) != NULL_TREE;
14121 tree basetype = TREE_VALUE (base_list);
14123 if (access == access_default_node)
14124 access = default_access;
14126 /* Before C++17, an aggregate cannot have base classes. In C++17, an
14127 aggregate can't have virtual, private, or protected base classes. */
14128 if (cxx_dialect < cxx17
14129 || access != access_public_node
14130 || via_virtual)
14131 CLASSTYPE_NON_AGGREGATE (ref) = true;
14133 if (PACK_EXPANSION_P (basetype))
14134 basetype = PACK_EXPANSION_PATTERN (basetype);
14135 if (TREE_CODE (basetype) == TYPE_DECL)
14136 basetype = TREE_TYPE (basetype);
14137 if (!MAYBE_CLASS_TYPE_P (basetype) || TREE_CODE (basetype) == UNION_TYPE)
14139 error ("base type %qT fails to be a struct or class type",
14140 basetype);
14141 goto dropped_base;
14144 base_binfo = NULL_TREE;
14145 if (CLASS_TYPE_P (basetype) && !dependent_scope_p (basetype))
14147 base_binfo = TYPE_BINFO (basetype);
14148 /* The original basetype could have been a typedef'd type. */
14149 basetype = BINFO_TYPE (base_binfo);
14151 /* Inherit flags from the base. */
14152 TYPE_HAS_NEW_OPERATOR (ref)
14153 |= TYPE_HAS_NEW_OPERATOR (basetype);
14154 TYPE_HAS_ARRAY_NEW_OPERATOR (ref)
14155 |= TYPE_HAS_ARRAY_NEW_OPERATOR (basetype);
14156 TYPE_GETS_DELETE (ref) |= TYPE_GETS_DELETE (basetype);
14157 TYPE_HAS_CONVERSION (ref) |= TYPE_HAS_CONVERSION (basetype);
14158 CLASSTYPE_DIAMOND_SHAPED_P (ref)
14159 |= CLASSTYPE_DIAMOND_SHAPED_P (basetype);
14160 CLASSTYPE_REPEATED_BASE_P (ref)
14161 |= CLASSTYPE_REPEATED_BASE_P (basetype);
14164 /* We must do this test after we've seen through a typedef
14165 type. */
14166 if (TYPE_MARKED_P (basetype))
14168 if (basetype == ref)
14169 error ("recursive type %qT undefined", basetype);
14170 else
14171 error ("duplicate base type %qT invalid", basetype);
14172 goto dropped_base;
14175 if (PACK_EXPANSION_P (TREE_VALUE (base_list)))
14176 /* Regenerate the pack expansion for the bases. */
14177 basetype = make_pack_expansion (basetype);
14179 TYPE_MARKED_P (basetype) = 1;
14181 base_binfo = copy_binfo (base_binfo, basetype, ref,
14182 &igo_prev, via_virtual);
14183 if (!BINFO_INHERITANCE_CHAIN (base_binfo))
14184 BINFO_INHERITANCE_CHAIN (base_binfo) = binfo;
14186 BINFO_BASE_APPEND (binfo, base_binfo);
14187 BINFO_BASE_ACCESS_APPEND (binfo, access);
14188 continue;
14190 dropped_base:
14191 /* Update max_vbases to reflect the reality that we are dropping
14192 this base: if it reaches zero we want to undo the vec_alloc
14193 above to avoid inconsistencies during error-recovery: eg, in
14194 build_special_member_call, CLASSTYPE_VBASECLASSES non null
14195 and vtt null (c++/27952). */
14196 if (via_virtual)
14197 max_vbases--;
14198 if (CLASS_TYPE_P (basetype))
14199 max_vbases
14200 -= vec_safe_length (CLASSTYPE_VBASECLASSES (basetype));
14203 if (CLASSTYPE_VBASECLASSES (ref)
14204 && max_vbases == 0)
14205 vec_free (CLASSTYPE_VBASECLASSES (ref));
14207 if (vec_safe_length (CLASSTYPE_VBASECLASSES (ref)) < max_vbases)
14208 /* If we didn't get max_vbases vbases, we must have shared at
14209 least one of them, and are therefore diamond shaped. */
14210 CLASSTYPE_DIAMOND_SHAPED_P (ref) = 1;
14212 /* Unmark all the types. */
14213 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
14214 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
14215 TYPE_MARKED_P (ref) = 0;
14217 /* Now see if we have a repeated base type. */
14218 if (!CLASSTYPE_REPEATED_BASE_P (ref))
14220 for (base_binfo = binfo; base_binfo;
14221 base_binfo = TREE_CHAIN (base_binfo))
14223 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
14225 CLASSTYPE_REPEATED_BASE_P (ref) = 1;
14226 break;
14228 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 1;
14230 for (base_binfo = binfo; base_binfo;
14231 base_binfo = TREE_CHAIN (base_binfo))
14232 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
14233 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
14234 else
14235 break;
14240 /* Copies the enum-related properties from type SRC to type DST.
14241 Used with the underlying type of an enum and the enum itself. */
14242 static void
14243 copy_type_enum (tree dst, tree src)
14245 tree t;
14246 for (t = dst; t; t = TYPE_NEXT_VARIANT (t))
14248 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (src);
14249 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (src);
14250 TYPE_SIZE (t) = TYPE_SIZE (src);
14251 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (src);
14252 SET_TYPE_MODE (dst, TYPE_MODE (src));
14253 TYPE_PRECISION (t) = TYPE_PRECISION (src);
14254 unsigned valign = TYPE_ALIGN (src);
14255 if (TYPE_USER_ALIGN (t))
14256 valign = MAX (valign, TYPE_ALIGN (t));
14257 else
14258 TYPE_USER_ALIGN (t) = TYPE_USER_ALIGN (src);
14259 SET_TYPE_ALIGN (t, valign);
14260 TYPE_UNSIGNED (t) = TYPE_UNSIGNED (src);
14264 /* Begin compiling the definition of an enumeration type.
14265 NAME is its name,
14267 if ENUMTYPE is not NULL_TREE then the type has alredy been found.
14269 UNDERLYING_TYPE is the type that will be used as the storage for
14270 the enumeration type. This should be NULL_TREE if no storage type
14271 was specified.
14273 ATTRIBUTES are any attributes specified after the enum-key.
14275 SCOPED_ENUM_P is true if this is a scoped enumeration type.
14277 if IS_NEW is not NULL, gets TRUE iff a new type is created.
14279 Returns the type object, as yet incomplete.
14280 Also records info about it so that build_enumerator
14281 may be used to declare the individual values as they are read. */
14283 tree
14284 start_enum (tree name, tree enumtype, tree underlying_type,
14285 tree attributes, bool scoped_enum_p, bool *is_new)
14287 tree prevtype = NULL_TREE;
14288 gcc_assert (identifier_p (name));
14290 if (is_new)
14291 *is_new = false;
14292 /* [C++0x dcl.enum]p5:
14294 If not explicitly specified, the underlying type of a scoped
14295 enumeration type is int. */
14296 if (!underlying_type && scoped_enum_p)
14297 underlying_type = integer_type_node;
14299 if (underlying_type)
14300 underlying_type = cv_unqualified (underlying_type);
14302 /* If this is the real definition for a previous forward reference,
14303 fill in the contents in the same object that used to be the
14304 forward reference. */
14305 if (!enumtype)
14306 enumtype = lookup_and_check_tag (enum_type, name,
14307 /*tag_scope=*/ts_current,
14308 /*template_header_p=*/false);
14310 /* In case of a template_decl, the only check that should be deferred
14311 to instantiation time is the comparison of underlying types. */
14312 if (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE)
14314 if (scoped_enum_p != SCOPED_ENUM_P (enumtype))
14316 error_at (input_location, "scoped/unscoped mismatch "
14317 "in enum %q#T", enumtype);
14318 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
14319 "previous definition here");
14320 enumtype = error_mark_node;
14322 else if (ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) != !! underlying_type)
14324 error_at (input_location, "underlying type mismatch "
14325 "in enum %q#T", enumtype);
14326 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
14327 "previous definition here");
14328 enumtype = error_mark_node;
14330 else if (underlying_type && ENUM_UNDERLYING_TYPE (enumtype)
14331 && !same_type_p (underlying_type,
14332 ENUM_UNDERLYING_TYPE (enumtype)))
14334 error_at (input_location, "different underlying type "
14335 "in enum %q#T", enumtype);
14336 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
14337 "previous definition here");
14338 underlying_type = NULL_TREE;
14342 if (!enumtype || TREE_CODE (enumtype) != ENUMERAL_TYPE
14343 || processing_template_decl)
14345 /* In case of error, make a dummy enum to allow parsing to
14346 continue. */
14347 if (enumtype == error_mark_node)
14349 name = make_anon_name ();
14350 enumtype = NULL_TREE;
14353 /* enumtype may be an ENUMERAL_TYPE if this is a redefinition
14354 of an opaque enum, or an opaque enum of an already defined
14355 enumeration (C++11).
14356 In any other case, it'll be NULL_TREE. */
14357 if (!enumtype)
14359 if (is_new)
14360 *is_new = true;
14362 prevtype = enumtype;
14364 /* Do not push the decl more than once. */
14365 if (!enumtype
14366 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
14368 enumtype = cxx_make_type (ENUMERAL_TYPE);
14369 enumtype = pushtag (name, enumtype, /*tag_scope=*/ts_current);
14371 /* std::byte aliases anything. */
14372 if (enumtype != error_mark_node
14373 && TYPE_CONTEXT (enumtype) == std_node
14374 && !strcmp ("byte", TYPE_NAME_STRING (enumtype)))
14375 TYPE_ALIAS_SET (enumtype) = 0;
14377 else
14378 enumtype = xref_tag (enum_type, name, /*tag_scope=*/ts_current,
14379 false);
14381 if (enumtype == error_mark_node)
14382 return error_mark_node;
14384 /* The enum is considered opaque until the opening '{' of the
14385 enumerator list. */
14386 SET_OPAQUE_ENUM_P (enumtype, true);
14387 ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) = !! underlying_type;
14390 SET_SCOPED_ENUM_P (enumtype, scoped_enum_p);
14392 cplus_decl_attributes (&enumtype, attributes, (int)ATTR_FLAG_TYPE_IN_PLACE);
14394 if (underlying_type)
14396 if (ENUM_UNDERLYING_TYPE (enumtype))
14397 /* We already checked that it matches, don't change it to a different
14398 typedef variant. */;
14399 else if (CP_INTEGRAL_TYPE_P (underlying_type))
14401 copy_type_enum (enumtype, underlying_type);
14402 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
14404 else if (dependent_type_p (underlying_type))
14405 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
14406 else
14407 error ("underlying type %qT of %qT must be an integral type",
14408 underlying_type, enumtype);
14411 /* If into a template class, the returned enum is always the first
14412 declaration (opaque or not) seen. This way all the references to
14413 this type will be to the same declaration. The following ones are used
14414 only to check for definition errors. */
14415 if (prevtype && processing_template_decl)
14416 return prevtype;
14417 else
14418 return enumtype;
14421 /* After processing and defining all the values of an enumeration type,
14422 install their decls in the enumeration type.
14423 ENUMTYPE is the type object. */
14425 void
14426 finish_enum_value_list (tree enumtype)
14428 tree values;
14429 tree underlying_type;
14430 tree decl;
14431 tree value;
14432 tree minnode, maxnode;
14433 tree t;
14435 bool fixed_underlying_type_p
14436 = ENUM_UNDERLYING_TYPE (enumtype) != NULL_TREE;
14438 /* We built up the VALUES in reverse order. */
14439 TYPE_VALUES (enumtype) = nreverse (TYPE_VALUES (enumtype));
14441 /* For an enum defined in a template, just set the type of the values;
14442 all further processing is postponed until the template is
14443 instantiated. We need to set the type so that tsubst of a CONST_DECL
14444 works. */
14445 if (processing_template_decl)
14447 for (values = TYPE_VALUES (enumtype);
14448 values;
14449 values = TREE_CHAIN (values))
14450 TREE_TYPE (TREE_VALUE (values)) = enumtype;
14451 return;
14454 /* Determine the minimum and maximum values of the enumerators. */
14455 if (TYPE_VALUES (enumtype))
14457 minnode = maxnode = NULL_TREE;
14459 for (values = TYPE_VALUES (enumtype);
14460 values;
14461 values = TREE_CHAIN (values))
14463 decl = TREE_VALUE (values);
14465 /* [dcl.enum]: Following the closing brace of an enum-specifier,
14466 each enumerator has the type of its enumeration. Prior to the
14467 closing brace, the type of each enumerator is the type of its
14468 initializing value. */
14469 TREE_TYPE (decl) = enumtype;
14471 /* Update the minimum and maximum values, if appropriate. */
14472 value = DECL_INITIAL (decl);
14473 if (value == error_mark_node)
14474 value = integer_zero_node;
14475 /* Figure out what the minimum and maximum values of the
14476 enumerators are. */
14477 if (!minnode)
14478 minnode = maxnode = value;
14479 else if (tree_int_cst_lt (maxnode, value))
14480 maxnode = value;
14481 else if (tree_int_cst_lt (value, minnode))
14482 minnode = value;
14485 else
14486 /* [dcl.enum]
14488 If the enumerator-list is empty, the underlying type is as if
14489 the enumeration had a single enumerator with value 0. */
14490 minnode = maxnode = integer_zero_node;
14492 if (!fixed_underlying_type_p)
14494 /* Compute the number of bits require to represent all values of the
14495 enumeration. We must do this before the type of MINNODE and
14496 MAXNODE are transformed, since tree_int_cst_min_precision relies
14497 on the TREE_TYPE of the value it is passed. */
14498 signop sgn = tree_int_cst_sgn (minnode) >= 0 ? UNSIGNED : SIGNED;
14499 int lowprec = tree_int_cst_min_precision (minnode, sgn);
14500 int highprec = tree_int_cst_min_precision (maxnode, sgn);
14501 int precision = MAX (lowprec, highprec);
14502 unsigned int itk;
14503 bool use_short_enum;
14505 /* Determine the underlying type of the enumeration.
14507 [dcl.enum]
14509 The underlying type of an enumeration is an integral type that
14510 can represent all the enumerator values defined in the
14511 enumeration. It is implementation-defined which integral type is
14512 used as the underlying type for an enumeration except that the
14513 underlying type shall not be larger than int unless the value of
14514 an enumerator cannot fit in an int or unsigned int.
14516 We use "int" or an "unsigned int" as the underlying type, even if
14517 a smaller integral type would work, unless the user has
14518 explicitly requested that we use the smallest possible type. The
14519 user can request that for all enumerations with a command line
14520 flag, or for just one enumeration with an attribute. */
14522 use_short_enum = flag_short_enums
14523 || lookup_attribute ("packed", TYPE_ATTRIBUTES (enumtype));
14525 /* If the precision of the type was specified with an attribute and it
14526 was too small, give an error. Otherwise, use it. */
14527 if (TYPE_PRECISION (enumtype))
14529 if (precision > TYPE_PRECISION (enumtype))
14530 error ("specified mode too small for enumeral values");
14531 else
14533 use_short_enum = true;
14534 precision = TYPE_PRECISION (enumtype);
14538 for (itk = (use_short_enum ? itk_char : itk_int);
14539 itk != itk_none;
14540 itk++)
14542 underlying_type = integer_types[itk];
14543 if (underlying_type != NULL_TREE
14544 && TYPE_PRECISION (underlying_type) >= precision
14545 && TYPE_SIGN (underlying_type) == sgn)
14546 break;
14548 if (itk == itk_none)
14550 /* DR 377
14552 IF no integral type can represent all the enumerator values, the
14553 enumeration is ill-formed. */
14554 error ("no integral type can represent all of the enumerator values "
14555 "for %qT", enumtype);
14556 precision = TYPE_PRECISION (long_long_integer_type_node);
14557 underlying_type = integer_types[itk_unsigned_long_long];
14560 /* [dcl.enum]
14562 The value of sizeof() applied to an enumeration type, an object
14563 of an enumeration type, or an enumerator, is the value of sizeof()
14564 applied to the underlying type. */
14565 copy_type_enum (enumtype, underlying_type);
14567 /* Compute the minimum and maximum values for the type.
14569 [dcl.enum]
14571 For an enumeration where emin is the smallest enumerator and emax
14572 is the largest, the values of the enumeration are the values of the
14573 underlying type in the range bmin to bmax, where bmin and bmax are,
14574 respectively, the smallest and largest values of the smallest bit-
14575 field that can store emin and emax. */
14577 /* The middle-end currently assumes that types with TYPE_PRECISION
14578 narrower than their underlying type are suitably zero or sign
14579 extended to fill their mode. Similarly, it assumes that the front
14580 end assures that a value of a particular type must be within
14581 TYPE_MIN_VALUE and TYPE_MAX_VALUE.
14583 We used to set these fields based on bmin and bmax, but that led
14584 to invalid assumptions like optimizing away bounds checking. So
14585 now we just set the TYPE_PRECISION, TYPE_MIN_VALUE, and
14586 TYPE_MAX_VALUE to the values for the mode above and only restrict
14587 the ENUM_UNDERLYING_TYPE for the benefit of diagnostics. */
14588 ENUM_UNDERLYING_TYPE (enumtype)
14589 = build_distinct_type_copy (underlying_type);
14590 TYPE_PRECISION (ENUM_UNDERLYING_TYPE (enumtype)) = precision;
14591 set_min_and_max_values_for_integral_type
14592 (ENUM_UNDERLYING_TYPE (enumtype), precision, sgn);
14594 /* If -fstrict-enums, still constrain TYPE_MIN/MAX_VALUE. */
14595 if (flag_strict_enums)
14596 set_min_and_max_values_for_integral_type (enumtype, precision, sgn);
14598 else
14599 underlying_type = ENUM_UNDERLYING_TYPE (enumtype);
14601 /* Convert each of the enumerators to the type of the underlying
14602 type of the enumeration. */
14603 for (values = TYPE_VALUES (enumtype); values; values = TREE_CHAIN (values))
14605 location_t saved_location;
14607 decl = TREE_VALUE (values);
14608 saved_location = input_location;
14609 input_location = DECL_SOURCE_LOCATION (decl);
14610 if (fixed_underlying_type_p)
14611 /* If the enumeration type has a fixed underlying type, we
14612 already checked all of the enumerator values. */
14613 value = DECL_INITIAL (decl);
14614 else
14615 value = perform_implicit_conversion (underlying_type,
14616 DECL_INITIAL (decl),
14617 tf_warning_or_error);
14618 input_location = saved_location;
14620 /* Do not clobber shared ints. */
14621 if (value != error_mark_node)
14623 value = copy_node (value);
14625 TREE_TYPE (value) = enumtype;
14627 DECL_INITIAL (decl) = value;
14630 /* Fix up all variant types of this enum type. */
14631 for (t = TYPE_MAIN_VARIANT (enumtype); t; t = TYPE_NEXT_VARIANT (t))
14632 TYPE_VALUES (t) = TYPE_VALUES (enumtype);
14634 if (at_class_scope_p ()
14635 && COMPLETE_TYPE_P (current_class_type)
14636 && UNSCOPED_ENUM_P (enumtype))
14638 insert_late_enum_def_bindings (current_class_type, enumtype);
14639 /* TYPE_FIELDS needs fixup. */
14640 fixup_type_variants (current_class_type);
14643 /* Finish debugging output for this type. */
14644 rest_of_type_compilation (enumtype, namespace_bindings_p ());
14646 /* Each enumerator now has the type of its enumeration. Clear the cache
14647 so that this change in types doesn't confuse us later on. */
14648 clear_cv_and_fold_caches ();
14651 /* Finishes the enum type. This is called only the first time an
14652 enumeration is seen, be it opaque or odinary.
14653 ENUMTYPE is the type object. */
14655 void
14656 finish_enum (tree enumtype)
14658 if (processing_template_decl)
14660 if (at_function_scope_p ())
14661 add_stmt (build_min (TAG_DEFN, enumtype));
14662 return;
14665 /* If this is a forward declaration, there should not be any variants,
14666 though we can get a variant in the middle of an enum-specifier with
14667 wacky code like 'enum E { e = sizeof(const E*) };' */
14668 gcc_assert (enumtype == TYPE_MAIN_VARIANT (enumtype)
14669 && (TYPE_VALUES (enumtype)
14670 || !TYPE_NEXT_VARIANT (enumtype)));
14673 /* Build and install a CONST_DECL for an enumeration constant of the
14674 enumeration type ENUMTYPE whose NAME and VALUE (if any) are provided.
14675 Apply ATTRIBUTES if available. LOC is the location of NAME.
14676 Assignment of sequential values by default is handled here. */
14678 void
14679 build_enumerator (tree name, tree value, tree enumtype, tree attributes,
14680 location_t loc)
14682 tree decl;
14683 tree context;
14684 tree type;
14686 /* scalar_constant_value will pull out this expression, so make sure
14687 it's folded as appropriate. */
14688 if (processing_template_decl)
14689 value = fold_non_dependent_expr (value);
14691 /* If the VALUE was erroneous, pretend it wasn't there; that will
14692 result in the enum being assigned the next value in sequence. */
14693 if (value == error_mark_node)
14694 value = NULL_TREE;
14696 /* Remove no-op casts from the value. */
14697 if (value)
14698 STRIP_TYPE_NOPS (value);
14700 if (! processing_template_decl)
14702 /* Validate and default VALUE. */
14703 if (value != NULL_TREE)
14705 if (!ENUM_UNDERLYING_TYPE (enumtype))
14707 tree tmp_value = build_expr_type_conversion (WANT_INT | WANT_ENUM,
14708 value, true);
14709 if (tmp_value)
14710 value = tmp_value;
14712 else if (! INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P
14713 (TREE_TYPE (value)))
14714 value = perform_implicit_conversion_flags
14715 (ENUM_UNDERLYING_TYPE (enumtype), value, tf_warning_or_error,
14716 LOOKUP_IMPLICIT | LOOKUP_NO_NARROWING);
14718 if (value == error_mark_node)
14719 value = NULL_TREE;
14721 if (value != NULL_TREE)
14723 if (! INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P
14724 (TREE_TYPE (value)))
14726 error ("enumerator value for %qD must have integral or "
14727 "unscoped enumeration type", name);
14728 value = NULL_TREE;
14730 else
14732 value = cxx_constant_value (value);
14734 if (TREE_CODE (value) != INTEGER_CST)
14736 error ("enumerator value for %qD is not an integer "
14737 "constant", name);
14738 value = NULL_TREE;
14744 /* Default based on previous value. */
14745 if (value == NULL_TREE)
14747 if (TYPE_VALUES (enumtype))
14749 tree prev_value;
14751 /* C++03 7.2/4: If no initializer is specified for the first
14752 enumerator, the type is an unspecified integral
14753 type. Otherwise the type is the same as the type of the
14754 initializing value of the preceding enumerator unless the
14755 incremented value is not representable in that type, in
14756 which case the type is an unspecified integral type
14757 sufficient to contain the incremented value. */
14758 prev_value = DECL_INITIAL (TREE_VALUE (TYPE_VALUES (enumtype)));
14759 if (error_operand_p (prev_value))
14760 value = error_mark_node;
14761 else
14763 wi::overflow_type overflowed;
14764 tree type = TREE_TYPE (prev_value);
14765 signop sgn = TYPE_SIGN (type);
14766 widest_int wi = wi::add (wi::to_widest (prev_value), 1, sgn,
14767 &overflowed);
14768 if (!overflowed)
14770 bool pos = !wi::neg_p (wi, sgn);
14771 if (!wi::fits_to_tree_p (wi, type))
14773 unsigned int itk;
14774 for (itk = itk_int; itk != itk_none; itk++)
14776 type = integer_types[itk];
14777 if (type != NULL_TREE
14778 && (pos || !TYPE_UNSIGNED (type))
14779 && wi::fits_to_tree_p (wi, type))
14780 break;
14782 if (type && cxx_dialect < cxx11
14783 && itk > itk_unsigned_long)
14784 pedwarn (input_location, OPT_Wlong_long,
14785 pos ? G_("\
14786 incremented enumerator value is too large for %<unsigned long%>") : G_("\
14787 incremented enumerator value is too large for %<long%>"));
14789 if (type == NULL_TREE)
14790 overflowed = wi::OVF_UNKNOWN;
14791 else
14792 value = wide_int_to_tree (type, wi);
14795 if (overflowed)
14797 error ("overflow in enumeration values at %qD", name);
14798 value = error_mark_node;
14802 else
14803 value = integer_zero_node;
14806 /* Remove no-op casts from the value. */
14807 STRIP_TYPE_NOPS (value);
14809 /* If the underlying type of the enum is fixed, check whether
14810 the enumerator values fits in the underlying type. If it
14811 does not fit, the program is ill-formed [C++0x dcl.enum]. */
14812 if (ENUM_UNDERLYING_TYPE (enumtype)
14813 && value
14814 && TREE_CODE (value) == INTEGER_CST)
14816 if (!int_fits_type_p (value, ENUM_UNDERLYING_TYPE (enumtype)))
14817 error ("enumerator value %qE is outside the range of underlying "
14818 "type %qT", value, ENUM_UNDERLYING_TYPE (enumtype));
14820 /* Convert the value to the appropriate type. */
14821 value = fold_convert (ENUM_UNDERLYING_TYPE (enumtype), value);
14825 /* C++ associates enums with global, function, or class declarations. */
14826 context = current_scope ();
14828 /* Build the actual enumeration constant. Note that the enumeration
14829 constants have the underlying type of the enum (if it is fixed)
14830 or the type of their initializer (if the underlying type of the
14831 enum is not fixed):
14833 [ C++0x dcl.enum ]
14835 If the underlying type is fixed, the type of each enumerator
14836 prior to the closing brace is the underlying type; if the
14837 initializing value of an enumerator cannot be represented by
14838 the underlying type, the program is ill-formed. If the
14839 underlying type is not fixed, the type of each enumerator is
14840 the type of its initializing value.
14842 If the underlying type is not fixed, it will be computed by
14843 finish_enum and we will reset the type of this enumerator. Of
14844 course, if we're processing a template, there may be no value. */
14845 type = value ? TREE_TYPE (value) : NULL_TREE;
14847 decl = build_decl (loc, CONST_DECL, name, type);
14849 DECL_CONTEXT (decl) = enumtype;
14850 TREE_CONSTANT (decl) = 1;
14851 TREE_READONLY (decl) = 1;
14852 DECL_INITIAL (decl) = value;
14854 if (attributes)
14855 cplus_decl_attributes (&decl, attributes, 0);
14857 if (context && context == current_class_type && !SCOPED_ENUM_P (enumtype))
14859 /* In something like `struct S { enum E { i = 7 }; };' we put `i'
14860 on the TYPE_FIELDS list for `S'. (That's so that you can say
14861 things like `S::i' later.) */
14863 /* The enumerator may be getting declared outside of its enclosing
14864 class, like so:
14866 class S { public: enum E : int; }; enum S::E : int { i = 7; };
14868 For which case we need to make sure that the access of `S::i'
14869 matches the access of `S::E'. */
14870 tree saved_cas = current_access_specifier;
14871 if (TREE_PRIVATE (TYPE_NAME (enumtype)))
14872 current_access_specifier = access_private_node;
14873 else if (TREE_PROTECTED (TYPE_NAME (enumtype)))
14874 current_access_specifier = access_protected_node;
14875 else
14876 current_access_specifier = access_public_node;
14878 finish_member_declaration (decl);
14880 current_access_specifier = saved_cas;
14882 else
14883 pushdecl (decl);
14885 /* Add this enumeration constant to the list for this type. */
14886 TYPE_VALUES (enumtype) = tree_cons (name, decl, TYPE_VALUES (enumtype));
14889 /* Look for an enumerator with the given NAME within the enumeration
14890 type ENUMTYPE. This routine is used primarily for qualified name
14891 lookup into an enumerator in C++0x, e.g.,
14893 enum class Color { Red, Green, Blue };
14895 Color color = Color::Red;
14897 Returns the value corresponding to the enumerator, or
14898 NULL_TREE if no such enumerator was found. */
14899 tree
14900 lookup_enumerator (tree enumtype, tree name)
14902 tree e;
14903 gcc_assert (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE);
14905 e = purpose_member (name, TYPE_VALUES (enumtype));
14906 return e? TREE_VALUE (e) : NULL_TREE;
14910 /* We're defining DECL. Make sure that its type is OK. */
14912 static void
14913 check_function_type (tree decl, tree current_function_parms)
14915 tree fntype = TREE_TYPE (decl);
14916 tree return_type = complete_type (TREE_TYPE (fntype));
14918 /* In a function definition, arg types must be complete. */
14919 require_complete_types_for_parms (current_function_parms);
14921 if (dependent_type_p (return_type)
14922 || type_uses_auto (return_type))
14923 return;
14924 if (!COMPLETE_OR_VOID_TYPE_P (return_type))
14926 tree args = TYPE_ARG_TYPES (fntype);
14928 error ("return type %q#T is incomplete", return_type);
14930 /* Make it return void instead. */
14931 if (TREE_CODE (fntype) == METHOD_TYPE)
14932 fntype = build_method_type_directly (TREE_TYPE (TREE_VALUE (args)),
14933 void_type_node,
14934 TREE_CHAIN (args));
14935 else
14936 fntype = build_function_type (void_type_node, args);
14937 fntype = (cp_build_type_attribute_variant
14938 (fntype, TYPE_ATTRIBUTES (TREE_TYPE (decl))));
14939 fntype = cxx_copy_lang_qualifiers (fntype, TREE_TYPE (decl));
14940 TREE_TYPE (decl) = fntype;
14942 else
14944 abstract_virtuals_error (decl, TREE_TYPE (fntype));
14945 maybe_warn_parm_abi (TREE_TYPE (fntype),
14946 DECL_SOURCE_LOCATION (decl));
14950 /* True iff FN is an implicitly-defined default constructor. */
14952 static bool
14953 implicit_default_ctor_p (tree fn)
14955 return (DECL_CONSTRUCTOR_P (fn)
14956 && !user_provided_p (fn)
14957 && sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (fn)));
14960 /* Clobber the contents of *this to let the back end know that the object
14961 storage is dead when we enter the constructor or leave the destructor. */
14963 static tree
14964 build_clobber_this ()
14966 /* Clobbering an empty base is pointless, and harmful if its one byte
14967 TYPE_SIZE overlays real data. */
14968 if (is_empty_class (current_class_type))
14969 return void_node;
14971 /* If we have virtual bases, clobber the whole object, but only if we're in
14972 charge. If we don't have virtual bases, clobber the as-base type so we
14973 don't mess with tail padding. */
14974 bool vbases = CLASSTYPE_VBASECLASSES (current_class_type);
14976 tree ctype = current_class_type;
14977 if (!vbases)
14978 ctype = CLASSTYPE_AS_BASE (ctype);
14980 tree clobber = build_clobber (ctype);
14982 tree thisref = current_class_ref;
14983 if (ctype != current_class_type)
14985 thisref = build_nop (build_reference_type (ctype), current_class_ptr);
14986 thisref = convert_from_reference (thisref);
14989 tree exprstmt = build2 (MODIFY_EXPR, void_type_node, thisref, clobber);
14990 if (vbases)
14991 exprstmt = build_if_in_charge (exprstmt);
14993 return exprstmt;
14996 /* Create the FUNCTION_DECL for a function definition.
14997 DECLSPECS and DECLARATOR are the parts of the declaration;
14998 they describe the function's name and the type it returns,
14999 but twisted together in a fashion that parallels the syntax of C.
15001 FLAGS is a bitwise or of SF_PRE_PARSED (indicating that the
15002 DECLARATOR is really the DECL for the function we are about to
15003 process and that DECLSPECS should be ignored), SF_INCLASS_INLINE
15004 indicating that the function is an inline defined in-class.
15006 This function creates a binding context for the function body
15007 as well as setting up the FUNCTION_DECL in current_function_decl.
15009 For C++, we must first check whether that datum makes any sense.
15010 For example, "class A local_a(1,2);" means that variable local_a
15011 is an aggregate of type A, which should have a constructor
15012 applied to it with the argument list [1, 2].
15014 On entry, DECL_INITIAL (decl1) should be NULL_TREE or error_mark_node,
15015 or may be a BLOCK if the function has been defined previously
15016 in this translation unit. On exit, DECL_INITIAL (decl1) will be
15017 error_mark_node if the function has never been defined, or
15018 a BLOCK if the function has been defined somewhere. */
15020 bool
15021 start_preparsed_function (tree decl1, tree attrs, int flags)
15023 tree ctype = NULL_TREE;
15024 tree fntype;
15025 tree restype;
15026 int doing_friend = 0;
15027 cp_binding_level *bl;
15028 tree current_function_parms;
15029 struct c_fileinfo *finfo
15030 = get_fileinfo (LOCATION_FILE (DECL_SOURCE_LOCATION (decl1)));
15031 bool honor_interface;
15033 /* Sanity check. */
15034 gcc_assert (VOID_TYPE_P (TREE_VALUE (void_list_node)));
15035 gcc_assert (TREE_CHAIN (void_list_node) == NULL_TREE);
15037 fntype = TREE_TYPE (decl1);
15038 if (TREE_CODE (fntype) == METHOD_TYPE)
15039 ctype = TYPE_METHOD_BASETYPE (fntype);
15041 /* ISO C++ 11.4/5. A friend function defined in a class is in
15042 the (lexical) scope of the class in which it is defined. */
15043 if (!ctype && DECL_FRIEND_P (decl1))
15045 ctype = DECL_FRIEND_CONTEXT (decl1);
15047 /* CTYPE could be null here if we're dealing with a template;
15048 for example, `inline friend float foo()' inside a template
15049 will have no CTYPE set. */
15050 if (ctype && TREE_CODE (ctype) != RECORD_TYPE)
15051 ctype = NULL_TREE;
15052 else
15053 doing_friend = 1;
15056 if (DECL_DECLARED_INLINE_P (decl1)
15057 && lookup_attribute ("noinline", attrs))
15058 warning_at (DECL_SOURCE_LOCATION (decl1), 0,
15059 "inline function %qD given attribute noinline", decl1);
15061 /* Handle gnu_inline attribute. */
15062 if (GNU_INLINE_P (decl1))
15064 DECL_EXTERNAL (decl1) = 1;
15065 DECL_NOT_REALLY_EXTERN (decl1) = 0;
15066 DECL_INTERFACE_KNOWN (decl1) = 1;
15067 DECL_DISREGARD_INLINE_LIMITS (decl1) = 1;
15070 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl1))
15071 /* This is a constructor, we must ensure that any default args
15072 introduced by this definition are propagated to the clones
15073 now. The clones are used directly in overload resolution. */
15074 adjust_clone_args (decl1);
15076 /* Sometimes we don't notice that a function is a static member, and
15077 build a METHOD_TYPE for it. Fix that up now. */
15078 gcc_assert (!(ctype != NULL_TREE && DECL_STATIC_FUNCTION_P (decl1)
15079 && TREE_CODE (TREE_TYPE (decl1)) == METHOD_TYPE));
15081 /* Set up current_class_type, and enter the scope of the class, if
15082 appropriate. */
15083 if (ctype)
15084 push_nested_class (ctype);
15085 else if (DECL_STATIC_FUNCTION_P (decl1))
15086 push_nested_class (DECL_CONTEXT (decl1));
15088 /* Now that we have entered the scope of the class, we must restore
15089 the bindings for any template parameters surrounding DECL1, if it
15090 is an inline member template. (Order is important; consider the
15091 case where a template parameter has the same name as a field of
15092 the class.) It is not until after this point that
15093 PROCESSING_TEMPLATE_DECL is guaranteed to be set up correctly. */
15094 if (flags & SF_INCLASS_INLINE)
15095 maybe_begin_member_template_processing (decl1);
15097 /* Effective C++ rule 15. */
15098 if (warn_ecpp
15099 && DECL_ASSIGNMENT_OPERATOR_P (decl1)
15100 && DECL_OVERLOADED_OPERATOR_IS (decl1, NOP_EXPR)
15101 && VOID_TYPE_P (TREE_TYPE (fntype)))
15102 warning (OPT_Weffc__,
15103 "%<operator=%> should return a reference to %<*this%>");
15105 /* Make the init_value nonzero so pushdecl knows this is not tentative.
15106 error_mark_node is replaced below (in poplevel) with the BLOCK. */
15107 if (!DECL_INITIAL (decl1))
15108 DECL_INITIAL (decl1) = error_mark_node;
15110 /* This function exists in static storage.
15111 (This does not mean `static' in the C sense!) */
15112 TREE_STATIC (decl1) = 1;
15114 /* We must call push_template_decl after current_class_type is set
15115 up. (If we are processing inline definitions after exiting a
15116 class scope, current_class_type will be NULL_TREE until set above
15117 by push_nested_class.) */
15118 if (processing_template_decl)
15120 tree newdecl1 = push_template_decl (decl1);
15121 if (newdecl1 == error_mark_node)
15123 if (ctype || DECL_STATIC_FUNCTION_P (decl1))
15124 pop_nested_class ();
15125 return false;
15127 decl1 = newdecl1;
15130 /* Make sure the parameter and return types are reasonable. When
15131 you declare a function, these types can be incomplete, but they
15132 must be complete when you define the function. */
15133 check_function_type (decl1, DECL_ARGUMENTS (decl1));
15135 /* Build the return declaration for the function. */
15136 restype = TREE_TYPE (fntype);
15138 if (DECL_RESULT (decl1) == NULL_TREE)
15140 tree resdecl;
15142 resdecl = build_decl (input_location, RESULT_DECL, 0, restype);
15143 DECL_ARTIFICIAL (resdecl) = 1;
15144 DECL_IGNORED_P (resdecl) = 1;
15145 DECL_RESULT (decl1) = resdecl;
15147 cp_apply_type_quals_to_decl (cp_type_quals (restype), resdecl);
15150 /* Record the decl so that the function name is defined.
15151 If we already have a decl for this name, and it is a FUNCTION_DECL,
15152 use the old decl. */
15153 if (!processing_template_decl && !(flags & SF_PRE_PARSED))
15155 /* A specialization is not used to guide overload resolution. */
15156 if (!DECL_FUNCTION_MEMBER_P (decl1)
15157 && !(DECL_USE_TEMPLATE (decl1) &&
15158 PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl1))))
15160 tree olddecl = pushdecl (decl1);
15162 if (olddecl == error_mark_node)
15163 /* If something went wrong when registering the declaration,
15164 use DECL1; we have to have a FUNCTION_DECL to use when
15165 parsing the body of the function. */
15167 else
15169 /* Otherwise, OLDDECL is either a previous declaration
15170 of the same function or DECL1 itself. */
15172 if (warn_missing_declarations
15173 && olddecl == decl1
15174 && !DECL_MAIN_P (decl1)
15175 && TREE_PUBLIC (decl1)
15176 && !DECL_DECLARED_INLINE_P (decl1))
15178 tree context;
15180 /* Check whether DECL1 is in an anonymous
15181 namespace. */
15182 for (context = DECL_CONTEXT (decl1);
15183 context;
15184 context = DECL_CONTEXT (context))
15186 if (TREE_CODE (context) == NAMESPACE_DECL
15187 && DECL_NAME (context) == NULL_TREE)
15188 break;
15191 if (context == NULL)
15192 warning_at (DECL_SOURCE_LOCATION (decl1),
15193 OPT_Wmissing_declarations,
15194 "no previous declaration for %qD", decl1);
15197 decl1 = olddecl;
15200 else
15202 /* We need to set the DECL_CONTEXT. */
15203 if (!DECL_CONTEXT (decl1) && DECL_TEMPLATE_INFO (decl1))
15204 DECL_CONTEXT (decl1) = DECL_CONTEXT (DECL_TI_TEMPLATE (decl1));
15206 fntype = TREE_TYPE (decl1);
15207 restype = TREE_TYPE (fntype);
15209 /* If #pragma weak applies, mark the decl appropriately now.
15210 The pragma only applies to global functions. Because
15211 determining whether or not the #pragma applies involves
15212 computing the mangled name for the declaration, we cannot
15213 apply the pragma until after we have merged this declaration
15214 with any previous declarations; if the original declaration
15215 has a linkage specification, that specification applies to
15216 the definition as well, and may affect the mangled name. */
15217 if (DECL_FILE_SCOPE_P (decl1))
15218 maybe_apply_pragma_weak (decl1);
15221 /* We are now in the scope of the function being defined. */
15222 current_function_decl = decl1;
15224 /* Save the parm names or decls from this function's declarator
15225 where store_parm_decls will find them. */
15226 current_function_parms = DECL_ARGUMENTS (decl1);
15228 /* Let the user know we're compiling this function. */
15229 announce_function (decl1);
15231 gcc_assert (DECL_INITIAL (decl1));
15233 /* This function may already have been parsed, in which case just
15234 return; our caller will skip over the body without parsing. */
15235 if (DECL_INITIAL (decl1) != error_mark_node)
15236 return true;
15238 /* Initialize RTL machinery. We cannot do this until
15239 CURRENT_FUNCTION_DECL and DECL_RESULT are set up. We do this
15240 even when processing a template; this is how we get
15241 CFUN set up, and our per-function variables initialized.
15242 FIXME factor out the non-RTL stuff. */
15243 bl = current_binding_level;
15244 allocate_struct_function (decl1, processing_template_decl);
15246 /* Initialize the language data structures. Whenever we start
15247 a new function, we destroy temporaries in the usual way. */
15248 cfun->language = ggc_cleared_alloc<language_function> ();
15249 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
15250 current_binding_level = bl;
15252 if (!processing_template_decl && type_uses_auto (restype))
15254 FNDECL_USED_AUTO (decl1) = true;
15255 current_function_auto_return_pattern = restype;
15258 /* Start the statement-tree, start the tree now. */
15259 DECL_SAVED_TREE (decl1) = push_stmt_list ();
15261 /* If we are (erroneously) defining a function that we have already
15262 defined before, wipe out what we knew before. */
15263 if (!DECL_PENDING_INLINE_P (decl1))
15264 DECL_SAVED_FUNCTION_DATA (decl1) = NULL;
15266 if (ctype && !doing_friend && !DECL_STATIC_FUNCTION_P (decl1))
15268 /* We know that this was set up by `grokclassfn'. We do not
15269 wait until `store_parm_decls', since evil parse errors may
15270 never get us to that point. Here we keep the consistency
15271 between `current_class_type' and `current_class_ptr'. */
15272 tree t = DECL_ARGUMENTS (decl1);
15274 gcc_assert (t != NULL_TREE && TREE_CODE (t) == PARM_DECL);
15275 gcc_assert (TYPE_PTR_P (TREE_TYPE (t)));
15277 cp_function_chain->x_current_class_ref
15278 = cp_build_fold_indirect_ref (t);
15279 /* Set this second to avoid shortcut in cp_build_indirect_ref. */
15280 cp_function_chain->x_current_class_ptr = t;
15282 /* Constructors and destructors need to know whether they're "in
15283 charge" of initializing virtual base classes. */
15284 t = DECL_CHAIN (t);
15285 if (DECL_HAS_IN_CHARGE_PARM_P (decl1))
15287 current_in_charge_parm = t;
15288 t = DECL_CHAIN (t);
15290 if (DECL_HAS_VTT_PARM_P (decl1))
15292 gcc_assert (DECL_NAME (t) == vtt_parm_identifier);
15293 current_vtt_parm = t;
15297 honor_interface = (!DECL_TEMPLATE_INSTANTIATION (decl1)
15298 /* Implicitly-defined methods (like the
15299 destructor for a class in which no destructor
15300 is explicitly declared) must not be defined
15301 until their definition is needed. So, we
15302 ignore interface specifications for
15303 compiler-generated functions. */
15304 && !DECL_ARTIFICIAL (decl1));
15306 if (processing_template_decl)
15307 /* Don't mess with interface flags. */;
15308 else if (DECL_INTERFACE_KNOWN (decl1))
15310 tree ctx = decl_function_context (decl1);
15312 if (DECL_NOT_REALLY_EXTERN (decl1))
15313 DECL_EXTERNAL (decl1) = 0;
15315 if (ctx != NULL_TREE && vague_linkage_p (ctx))
15316 /* This is a function in a local class in an extern inline
15317 or template function. */
15318 comdat_linkage (decl1);
15320 /* If this function belongs to an interface, it is public.
15321 If it belongs to someone else's interface, it is also external.
15322 This only affects inlines and template instantiations. */
15323 else if (!finfo->interface_unknown && honor_interface)
15325 if (DECL_DECLARED_INLINE_P (decl1)
15326 || DECL_TEMPLATE_INSTANTIATION (decl1))
15328 DECL_EXTERNAL (decl1)
15329 = (finfo->interface_only
15330 || (DECL_DECLARED_INLINE_P (decl1)
15331 && ! flag_implement_inlines
15332 && !DECL_VINDEX (decl1)));
15334 /* For WIN32 we also want to put these in linkonce sections. */
15335 maybe_make_one_only (decl1);
15337 else
15338 DECL_EXTERNAL (decl1) = 0;
15339 DECL_INTERFACE_KNOWN (decl1) = 1;
15340 /* If this function is in an interface implemented in this file,
15341 make sure that the back end knows to emit this function
15342 here. */
15343 if (!DECL_EXTERNAL (decl1))
15344 mark_needed (decl1);
15346 else if (finfo->interface_unknown && finfo->interface_only
15347 && honor_interface)
15349 /* If MULTIPLE_SYMBOL_SPACES is defined and we saw a #pragma
15350 interface, we will have both finfo->interface_unknown and
15351 finfo->interface_only set. In that case, we don't want to
15352 use the normal heuristics because someone will supply a
15353 #pragma implementation elsewhere, and deducing it here would
15354 produce a conflict. */
15355 comdat_linkage (decl1);
15356 DECL_EXTERNAL (decl1) = 0;
15357 DECL_INTERFACE_KNOWN (decl1) = 1;
15358 DECL_DEFER_OUTPUT (decl1) = 1;
15360 else
15362 /* This is a definition, not a reference.
15363 So clear DECL_EXTERNAL, unless this is a GNU extern inline. */
15364 if (!GNU_INLINE_P (decl1))
15365 DECL_EXTERNAL (decl1) = 0;
15367 if ((DECL_DECLARED_INLINE_P (decl1)
15368 || DECL_TEMPLATE_INSTANTIATION (decl1))
15369 && ! DECL_INTERFACE_KNOWN (decl1))
15370 DECL_DEFER_OUTPUT (decl1) = 1;
15371 else
15372 DECL_INTERFACE_KNOWN (decl1) = 1;
15375 /* Determine the ELF visibility attribute for the function. We must not
15376 do this before calling "pushdecl", as we must allow "duplicate_decls"
15377 to merge any attributes appropriately. We also need to wait until
15378 linkage is set. */
15379 if (!DECL_CLONED_FUNCTION_P (decl1))
15380 determine_visibility (decl1);
15382 if (!processing_template_decl)
15383 maybe_instantiate_noexcept (decl1);
15385 begin_scope (sk_function_parms, decl1);
15387 ++function_depth;
15389 if (DECL_DESTRUCTOR_P (decl1)
15390 || (DECL_CONSTRUCTOR_P (decl1)
15391 && targetm.cxx.cdtor_returns_this ()))
15393 cdtor_label = create_artificial_label (input_location);
15394 LABEL_DECL_CDTOR (cdtor_label) = true;
15397 start_fname_decls ();
15399 store_parm_decls (current_function_parms);
15401 if (!processing_template_decl
15402 && (flag_lifetime_dse > 1)
15403 && DECL_CONSTRUCTOR_P (decl1)
15404 && !DECL_CLONED_FUNCTION_P (decl1)
15405 /* Clobbering an empty base is harmful if it overlays real data. */
15406 && !is_empty_class (current_class_type)
15407 /* We can't clobber safely for an implicitly-defined default constructor
15408 because part of the initialization might happen before we enter the
15409 constructor, via AGGR_INIT_ZERO_FIRST (c++/68006). */
15410 && !implicit_default_ctor_p (decl1))
15411 finish_expr_stmt (build_clobber_this ());
15413 if (!processing_template_decl
15414 && DECL_CONSTRUCTOR_P (decl1)
15415 && sanitize_flags_p (SANITIZE_VPTR)
15416 && !DECL_CLONED_FUNCTION_P (decl1)
15417 && !implicit_default_ctor_p (decl1))
15418 cp_ubsan_maybe_initialize_vtbl_ptrs (current_class_ptr);
15420 start_lambda_scope (decl1);
15422 return true;
15426 /* Like start_preparsed_function, except that instead of a
15427 FUNCTION_DECL, this function takes DECLSPECS and DECLARATOR.
15429 Returns true on success. If the DECLARATOR is not suitable
15430 for a function, we return false, which tells the parser to
15431 skip the entire function. */
15433 bool
15434 start_function (cp_decl_specifier_seq *declspecs,
15435 const cp_declarator *declarator,
15436 tree attrs)
15438 tree decl1;
15440 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1, &attrs);
15441 invoke_plugin_callbacks (PLUGIN_START_PARSE_FUNCTION, decl1);
15442 if (decl1 == error_mark_node)
15443 return false;
15444 /* If the declarator is not suitable for a function definition,
15445 cause a syntax error. */
15446 if (decl1 == NULL_TREE || TREE_CODE (decl1) != FUNCTION_DECL)
15448 error ("invalid function declaration");
15449 return false;
15452 if (DECL_MAIN_P (decl1))
15453 /* main must return int. grokfndecl should have corrected it
15454 (and issued a diagnostic) if the user got it wrong. */
15455 gcc_assert (same_type_p (TREE_TYPE (TREE_TYPE (decl1)),
15456 integer_type_node));
15458 return start_preparsed_function (decl1, attrs, /*flags=*/SF_DEFAULT);
15461 /* Returns true iff an EH_SPEC_BLOCK should be created in the body of
15462 FN. */
15464 static bool
15465 use_eh_spec_block (tree fn)
15467 return (flag_exceptions && flag_enforce_eh_specs
15468 && !processing_template_decl
15469 && !type_throw_all_p (TREE_TYPE (fn))
15470 /* We insert the EH_SPEC_BLOCK only in the original
15471 function; then, it is copied automatically to the
15472 clones. */
15473 && !DECL_CLONED_FUNCTION_P (fn)
15474 /* Implicitly-generated constructors and destructors have
15475 exception specifications. However, those specifications
15476 are the union of the possible exceptions specified by the
15477 constructors/destructors for bases and members, so no
15478 unallowed exception will ever reach this function. By
15479 not creating the EH_SPEC_BLOCK we save a little memory,
15480 and we avoid spurious warnings about unreachable
15481 code. */
15482 && !DECL_DEFAULTED_FN (fn));
15485 /* Store the parameter declarations into the current function declaration.
15486 This is called after parsing the parameter declarations, before
15487 digesting the body of the function.
15489 Also install to binding contour return value identifier, if any. */
15491 static void
15492 store_parm_decls (tree current_function_parms)
15494 tree fndecl = current_function_decl;
15495 tree parm;
15497 /* This is a chain of any other decls that came in among the parm
15498 declarations. If a parm is declared with enum {foo, bar} x;
15499 then CONST_DECLs for foo and bar are put here. */
15500 tree nonparms = NULL_TREE;
15502 if (current_function_parms)
15504 /* This case is when the function was defined with an ANSI prototype.
15505 The parms already have decls, so we need not do anything here
15506 except record them as in effect
15507 and complain if any redundant old-style parm decls were written. */
15509 tree specparms = current_function_parms;
15510 tree next;
15512 /* Must clear this because it might contain TYPE_DECLs declared
15513 at class level. */
15514 current_binding_level->names = NULL;
15516 /* If we're doing semantic analysis, then we'll call pushdecl
15517 for each of these. We must do them in reverse order so that
15518 they end in the correct forward order. */
15519 specparms = nreverse (specparms);
15521 for (parm = specparms; parm; parm = next)
15523 next = DECL_CHAIN (parm);
15524 if (TREE_CODE (parm) == PARM_DECL)
15525 pushdecl (parm);
15526 else
15528 /* If we find an enum constant or a type tag,
15529 put it aside for the moment. */
15530 TREE_CHAIN (parm) = NULL_TREE;
15531 nonparms = chainon (nonparms, parm);
15535 /* Get the decls in their original chain order and record in the
15536 function. This is all and only the PARM_DECLs that were
15537 pushed into scope by the loop above. */
15538 DECL_ARGUMENTS (fndecl) = get_local_decls ();
15540 else
15541 DECL_ARGUMENTS (fndecl) = NULL_TREE;
15543 /* Now store the final chain of decls for the arguments
15544 as the decl-chain of the current lexical scope.
15545 Put the enumerators in as well, at the front so that
15546 DECL_ARGUMENTS is not modified. */
15547 current_binding_level->names = chainon (nonparms, DECL_ARGUMENTS (fndecl));
15549 if (use_eh_spec_block (current_function_decl))
15550 current_eh_spec_block = begin_eh_spec_block ();
15554 /* We have finished doing semantic analysis on DECL, but have not yet
15555 generated RTL for its body. Save away our current state, so that
15556 when we want to generate RTL later we know what to do. */
15558 static void
15559 save_function_data (tree decl)
15561 struct language_function *f;
15563 /* Save the language-specific per-function data so that we can
15564 get it back when we really expand this function. */
15565 gcc_assert (!DECL_PENDING_INLINE_P (decl));
15567 /* Make a copy. */
15568 f = ggc_alloc<language_function> ();
15569 memcpy (f, cp_function_chain, sizeof (struct language_function));
15570 DECL_SAVED_FUNCTION_DATA (decl) = f;
15572 /* Clear out the bits we don't need. */
15573 f->base.x_stmt_tree.x_cur_stmt_list = NULL;
15574 f->bindings = NULL;
15575 f->x_local_names = NULL;
15576 f->base.local_typedefs = NULL;
15580 /* Set the return value of the constructor (if present). */
15582 static void
15583 finish_constructor_body (void)
15585 tree val;
15586 tree exprstmt;
15588 if (targetm.cxx.cdtor_returns_this ())
15590 /* Any return from a constructor will end up here. */
15591 add_stmt (build_stmt (input_location, LABEL_EXPR, cdtor_label));
15593 val = DECL_ARGUMENTS (current_function_decl);
15594 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
15595 DECL_RESULT (current_function_decl), val);
15596 /* Return the address of the object. */
15597 exprstmt = build_stmt (input_location, RETURN_EXPR, val);
15598 add_stmt (exprstmt);
15602 /* Do all the processing for the beginning of a destructor; set up the
15603 vtable pointers and cleanups for bases and members. */
15605 static void
15606 begin_destructor_body (void)
15608 tree compound_stmt;
15610 /* If the CURRENT_CLASS_TYPE is incomplete, we will have already
15611 issued an error message. We still want to try to process the
15612 body of the function, but initialize_vtbl_ptrs will crash if
15613 TYPE_BINFO is NULL. */
15614 if (COMPLETE_TYPE_P (current_class_type))
15616 compound_stmt = begin_compound_stmt (0);
15617 /* Make all virtual function table pointers in non-virtual base
15618 classes point to CURRENT_CLASS_TYPE's virtual function
15619 tables. */
15620 initialize_vtbl_ptrs (current_class_ptr);
15621 finish_compound_stmt (compound_stmt);
15623 if (flag_lifetime_dse
15624 /* Clobbering an empty base is harmful if it overlays real data. */
15625 && !is_empty_class (current_class_type))
15627 if (sanitize_flags_p (SANITIZE_VPTR)
15628 && (flag_sanitize_recover & SANITIZE_VPTR) == 0
15629 && TYPE_CONTAINS_VPTR_P (current_class_type))
15631 tree binfo = TYPE_BINFO (current_class_type);
15632 tree ref
15633 = cp_build_fold_indirect_ref (current_class_ptr);
15635 tree vtbl_ptr = build_vfield_ref (ref, TREE_TYPE (binfo));
15636 tree vtbl = build_zero_cst (TREE_TYPE (vtbl_ptr));
15637 tree stmt = cp_build_modify_expr (input_location, vtbl_ptr,
15638 NOP_EXPR, vtbl,
15639 tf_warning_or_error);
15640 finish_decl_cleanup (NULL_TREE, stmt);
15642 else
15643 finish_decl_cleanup (NULL_TREE, build_clobber_this ());
15646 /* And insert cleanups for our bases and members so that they
15647 will be properly destroyed if we throw. */
15648 push_base_cleanups ();
15652 /* At the end of every destructor we generate code to delete the object if
15653 necessary. Do that now. */
15655 static void
15656 finish_destructor_body (void)
15658 tree exprstmt;
15660 /* Any return from a destructor will end up here; that way all base
15661 and member cleanups will be run when the function returns. */
15662 add_stmt (build_stmt (input_location, LABEL_EXPR, cdtor_label));
15664 if (targetm.cxx.cdtor_returns_this ())
15666 tree val;
15668 val = DECL_ARGUMENTS (current_function_decl);
15669 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
15670 DECL_RESULT (current_function_decl), val);
15671 /* Return the address of the object. */
15672 exprstmt = build_stmt (input_location, RETURN_EXPR, val);
15673 add_stmt (exprstmt);
15677 /* Do the necessary processing for the beginning of a function body, which
15678 in this case includes member-initializers, but not the catch clauses of
15679 a function-try-block. Currently, this means opening a binding level
15680 for the member-initializers (in a ctor), member cleanups (in a dtor),
15681 and capture proxies (in a lambda operator()). */
15683 tree
15684 begin_function_body (void)
15686 tree stmt;
15688 if (! FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
15689 return NULL_TREE;
15691 if (processing_template_decl)
15692 /* Do nothing now. */;
15693 else
15694 /* Always keep the BLOCK node associated with the outermost pair of
15695 curly braces of a function. These are needed for correct
15696 operation of dwarfout.c. */
15697 keep_next_level (true);
15699 stmt = begin_compound_stmt (BCS_FN_BODY);
15701 if (processing_template_decl)
15702 /* Do nothing now. */;
15703 else if (DECL_DESTRUCTOR_P (current_function_decl))
15704 begin_destructor_body ();
15706 return stmt;
15709 /* Do the processing for the end of a function body. Currently, this means
15710 closing out the cleanups for fully-constructed bases and members, and in
15711 the case of the destructor, deleting the object if desired. Again, this
15712 is only meaningful for [cd]tors, since they are the only functions where
15713 there is a significant distinction between the main body and any
15714 function catch clauses. Handling, say, main() return semantics here
15715 would be wrong, as flowing off the end of a function catch clause for
15716 main() would also need to return 0. */
15718 void
15719 finish_function_body (tree compstmt)
15721 if (compstmt == NULL_TREE)
15722 return;
15724 /* Close the block. */
15725 finish_compound_stmt (compstmt);
15727 if (processing_template_decl)
15728 /* Do nothing now. */;
15729 else if (DECL_CONSTRUCTOR_P (current_function_decl))
15730 finish_constructor_body ();
15731 else if (DECL_DESTRUCTOR_P (current_function_decl))
15732 finish_destructor_body ();
15735 /* Given a function, returns the BLOCK corresponding to the outermost level
15736 of curly braces, skipping the artificial block created for constructor
15737 initializers. */
15739 tree
15740 outer_curly_brace_block (tree fndecl)
15742 tree block = DECL_INITIAL (fndecl);
15743 if (BLOCK_OUTER_CURLY_BRACE_P (block))
15744 return block;
15745 block = BLOCK_SUBBLOCKS (block);
15746 if (BLOCK_OUTER_CURLY_BRACE_P (block))
15747 return block;
15748 block = BLOCK_SUBBLOCKS (block);
15749 gcc_assert (BLOCK_OUTER_CURLY_BRACE_P (block));
15750 return block;
15753 /* If FNDECL is a class's key method, add the class to the list of
15754 keyed classes that should be emitted. */
15756 static void
15757 record_key_method_defined (tree fndecl)
15759 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fndecl)
15760 && DECL_VIRTUAL_P (fndecl)
15761 && !processing_template_decl)
15763 tree fnclass = DECL_CONTEXT (fndecl);
15764 if (fndecl == CLASSTYPE_KEY_METHOD (fnclass))
15765 vec_safe_push (keyed_classes, fnclass);
15769 /* Subroutine of finish_function.
15770 Save the body of constexpr functions for possible
15771 future compile time evaluation. */
15773 static void
15774 maybe_save_function_definition (tree fun)
15776 if (!processing_template_decl
15777 && DECL_DECLARED_CONSTEXPR_P (fun)
15778 && !cp_function_chain->invalid_constexpr
15779 && !DECL_CLONED_FUNCTION_P (fun))
15780 register_constexpr_fundef (fun, DECL_SAVED_TREE (fun));
15783 /* Attempt to add a fix-it hint to RICHLOC suggesting the insertion
15784 of "return *this;" immediately before its location, using FNDECL's
15785 first statement (if any) to give the indentation, if appropriate. */
15787 static void
15788 add_return_star_this_fixit (gcc_rich_location *richloc, tree fndecl)
15790 location_t indent = UNKNOWN_LOCATION;
15791 tree stmts = expr_first (DECL_SAVED_TREE (fndecl));
15792 if (stmts)
15793 indent = EXPR_LOCATION (stmts);
15794 richloc->add_fixit_insert_formatted ("return *this;",
15795 richloc->get_loc (),
15796 indent);
15799 /* Finish up a function declaration and compile that function
15800 all the way to assembler language output. The free the storage
15801 for the function definition. INLINE_P is TRUE if we just
15802 finished processing the body of an in-class inline function
15803 definition. (This processing will have taken place after the
15804 class definition is complete.) */
15806 tree
15807 finish_function (bool inline_p)
15809 tree fndecl = current_function_decl;
15810 tree fntype, ctype = NULL_TREE;
15812 /* When we get some parse errors, we can end up without a
15813 current_function_decl, so cope. */
15814 if (fndecl == NULL_TREE)
15815 return error_mark_node;
15817 finish_lambda_scope ();
15819 if (c_dialect_objc ())
15820 objc_finish_function ();
15822 record_key_method_defined (fndecl);
15824 fntype = TREE_TYPE (fndecl);
15826 /* TREE_READONLY (fndecl) = 1;
15827 This caused &foo to be of type ptr-to-const-function
15828 which then got a warning when stored in a ptr-to-function variable. */
15830 gcc_assert (building_stmt_list_p ());
15831 /* The current function is being defined, so its DECL_INITIAL should
15832 be set, and unless there's a multiple definition, it should be
15833 error_mark_node. */
15834 gcc_assert (DECL_INITIAL (fndecl) == error_mark_node);
15836 /* For a cloned function, we've already got all the code we need;
15837 there's no need to add any extra bits. */
15838 if (!DECL_CLONED_FUNCTION_P (fndecl))
15840 /* Make it so that `main' always returns 0 by default. */
15841 if (DECL_MAIN_P (current_function_decl))
15842 finish_return_stmt (integer_zero_node);
15844 if (use_eh_spec_block (current_function_decl))
15845 finish_eh_spec_block (TYPE_RAISES_EXCEPTIONS
15846 (TREE_TYPE (current_function_decl)),
15847 current_eh_spec_block);
15850 /* If we're saving up tree structure, tie off the function now. */
15851 DECL_SAVED_TREE (fndecl) = pop_stmt_list (DECL_SAVED_TREE (fndecl));
15853 finish_fname_decls ();
15855 /* If this function can't throw any exceptions, remember that. */
15856 if (!processing_template_decl
15857 && !cp_function_chain->can_throw
15858 && !flag_non_call_exceptions
15859 && !decl_replaceable_p (fndecl))
15860 TREE_NOTHROW (fndecl) = 1;
15862 /* This must come after expand_function_end because cleanups might
15863 have declarations (from inline functions) that need to go into
15864 this function's blocks. */
15866 /* If the current binding level isn't the outermost binding level
15867 for this function, either there is a bug, or we have experienced
15868 syntax errors and the statement tree is malformed. */
15869 if (current_binding_level->kind != sk_function_parms)
15871 /* Make sure we have already experienced errors. */
15872 gcc_assert (errorcount);
15874 /* Throw away the broken statement tree and extra binding
15875 levels. */
15876 DECL_SAVED_TREE (fndecl) = alloc_stmt_list ();
15878 while (current_binding_level->kind != sk_function_parms)
15880 if (current_binding_level->kind == sk_class)
15881 pop_nested_class ();
15882 else
15883 poplevel (0, 0, 0);
15886 poplevel (1, 0, 1);
15888 /* Statements should always be full-expressions at the outermost set
15889 of curly braces for a function. */
15890 gcc_assert (stmts_are_full_exprs_p ());
15892 /* If there are no return statements in a function with auto return type,
15893 the return type is void. But if the declared type is something like
15894 auto*, this is an error. */
15895 if (!processing_template_decl && FNDECL_USED_AUTO (fndecl)
15896 && TREE_TYPE (fntype) == current_function_auto_return_pattern)
15898 if (is_auto (current_function_auto_return_pattern))
15900 apply_deduced_return_type (fndecl, void_type_node);
15901 fntype = TREE_TYPE (fndecl);
15903 else if (!current_function_returns_value
15904 && !current_function_returns_null)
15906 error ("no return statements in function returning %qT",
15907 current_function_auto_return_pattern);
15908 inform (input_location, "only plain %<auto%> return type can be "
15909 "deduced to %<void%>");
15913 // If this is a concept, check that the definition is reasonable.
15914 if (DECL_DECLARED_CONCEPT_P (fndecl))
15915 check_function_concept (fndecl);
15917 /* Lambda closure members are implicitly constexpr if possible. */
15918 if (cxx_dialect >= cxx17
15919 && LAMBDA_TYPE_P (CP_DECL_CONTEXT (fndecl)))
15920 DECL_DECLARED_CONSTEXPR_P (fndecl)
15921 = ((processing_template_decl
15922 || is_valid_constexpr_fn (fndecl, /*complain*/false))
15923 && potential_constant_expression (DECL_SAVED_TREE (fndecl)));
15925 /* Save constexpr function body before it gets munged by
15926 the NRV transformation. */
15927 maybe_save_function_definition (fndecl);
15929 /* Invoke the pre-genericize plugin before we start munging things. */
15930 if (!processing_template_decl)
15931 invoke_plugin_callbacks (PLUGIN_PRE_GENERICIZE, fndecl);
15933 /* Perform delayed folding before NRV transformation. */
15934 if (!processing_template_decl)
15935 cp_fold_function (fndecl);
15937 /* Set up the named return value optimization, if we can. Candidate
15938 variables are selected in check_return_expr. */
15939 if (current_function_return_value)
15941 tree r = current_function_return_value;
15942 tree outer;
15944 if (r != error_mark_node
15945 /* This is only worth doing for fns that return in memory--and
15946 simpler, since we don't have to worry about promoted modes. */
15947 && aggregate_value_p (TREE_TYPE (TREE_TYPE (fndecl)), fndecl)
15948 /* Only allow this for variables declared in the outer scope of
15949 the function so we know that their lifetime always ends with a
15950 return; see g++.dg/opt/nrv6.C. We could be more flexible if
15951 we were to do this optimization in tree-ssa. */
15952 && (outer = outer_curly_brace_block (fndecl))
15953 && chain_member (r, BLOCK_VARS (outer)))
15954 finalize_nrv (&DECL_SAVED_TREE (fndecl), r, DECL_RESULT (fndecl));
15956 current_function_return_value = NULL_TREE;
15959 /* Remember that we were in class scope. */
15960 if (current_class_name)
15961 ctype = current_class_type;
15963 /* Must mark the RESULT_DECL as being in this function. */
15964 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
15966 /* Set the BLOCK_SUPERCONTEXT of the outermost function scope to point
15967 to the FUNCTION_DECL node itself. */
15968 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
15970 /* Save away current state, if appropriate. */
15971 if (!processing_template_decl)
15972 save_function_data (fndecl);
15974 /* Complain if there's just no return statement. */
15975 if (warn_return_type
15976 && !VOID_TYPE_P (TREE_TYPE (fntype))
15977 && !dependent_type_p (TREE_TYPE (fntype))
15978 && !current_function_returns_value && !current_function_returns_null
15979 /* Don't complain if we abort or throw. */
15980 && !current_function_returns_abnormally
15981 /* Don't complain if there's an infinite loop. */
15982 && !current_function_infinite_loop
15983 /* Don't complain if we are declared noreturn. */
15984 && !TREE_THIS_VOLATILE (fndecl)
15985 && !DECL_NAME (DECL_RESULT (fndecl))
15986 && !TREE_NO_WARNING (fndecl)
15987 /* Structor return values (if any) are set by the compiler. */
15988 && !DECL_CONSTRUCTOR_P (fndecl)
15989 && !DECL_DESTRUCTOR_P (fndecl)
15990 && targetm.warn_func_return (fndecl))
15992 gcc_rich_location richloc (input_location);
15993 /* Potentially add a "return *this;" fix-it hint for
15994 assignment operators. */
15995 if (IDENTIFIER_ASSIGN_OP_P (DECL_NAME (fndecl)))
15997 tree valtype = TREE_TYPE (DECL_RESULT (fndecl));
15998 if (TREE_CODE (valtype) == REFERENCE_TYPE
15999 && same_type_ignoring_top_level_qualifiers_p
16000 (TREE_TYPE (valtype), TREE_TYPE (current_class_ref)))
16001 if (global_dc->option_enabled (OPT_Wreturn_type,
16002 global_dc->option_state))
16003 add_return_star_this_fixit (&richloc, fndecl);
16005 warning_at (&richloc, OPT_Wreturn_type,
16006 "no return statement in function returning non-void");
16007 TREE_NO_WARNING (fndecl) = 1;
16010 /* Store the end of the function, so that we get good line number
16011 info for the epilogue. */
16012 cfun->function_end_locus = input_location;
16014 /* Complain about parameters that are only set, but never otherwise used. */
16015 if (warn_unused_but_set_parameter
16016 && !processing_template_decl
16017 && errorcount == unused_but_set_errorcount
16018 && !DECL_CLONED_FUNCTION_P (fndecl))
16020 tree decl;
16022 for (decl = DECL_ARGUMENTS (fndecl);
16023 decl;
16024 decl = DECL_CHAIN (decl))
16025 if (TREE_USED (decl)
16026 && TREE_CODE (decl) == PARM_DECL
16027 && !DECL_READ_P (decl)
16028 && DECL_NAME (decl)
16029 && !DECL_ARTIFICIAL (decl)
16030 && !TREE_NO_WARNING (decl)
16031 && !DECL_IN_SYSTEM_HEADER (decl)
16032 && TREE_TYPE (decl) != error_mark_node
16033 && !TYPE_REF_P (TREE_TYPE (decl))
16034 && (!CLASS_TYPE_P (TREE_TYPE (decl))
16035 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (decl))))
16036 warning_at (DECL_SOURCE_LOCATION (decl),
16037 OPT_Wunused_but_set_parameter,
16038 "parameter %qD set but not used", decl);
16039 unused_but_set_errorcount = errorcount;
16042 /* Complain about locally defined typedefs that are not used in this
16043 function. */
16044 maybe_warn_unused_local_typedefs ();
16046 /* Possibly warn about unused parameters. */
16047 if (warn_unused_parameter
16048 && !processing_template_decl
16049 && !DECL_CLONED_FUNCTION_P (fndecl))
16050 do_warn_unused_parameter (fndecl);
16052 /* Genericize before inlining. */
16053 if (!processing_template_decl)
16055 struct language_function *f = DECL_SAVED_FUNCTION_DATA (fndecl);
16056 cp_genericize (fndecl);
16057 /* Clear out the bits we don't need. */
16058 f->x_current_class_ptr = NULL;
16059 f->x_current_class_ref = NULL;
16060 f->x_eh_spec_block = NULL;
16061 f->x_in_charge_parm = NULL;
16062 f->x_vtt_parm = NULL;
16063 f->x_return_value = NULL;
16064 f->bindings = NULL;
16065 f->extern_decl_map = NULL;
16066 f->infinite_loops = NULL;
16068 /* Clear out the bits we don't need. */
16069 local_names = NULL;
16071 /* We're leaving the context of this function, so zap cfun. It's still in
16072 DECL_STRUCT_FUNCTION, and we'll restore it in tree_rest_of_compilation. */
16073 set_cfun (NULL);
16074 current_function_decl = NULL;
16076 /* If this is an in-class inline definition, we may have to pop the
16077 bindings for the template parameters that we added in
16078 maybe_begin_member_template_processing when start_function was
16079 called. */
16080 if (inline_p)
16081 maybe_end_member_template_processing ();
16083 /* Leave the scope of the class. */
16084 if (ctype)
16085 pop_nested_class ();
16087 --function_depth;
16089 /* Clean up. */
16090 current_function_decl = NULL_TREE;
16092 invoke_plugin_callbacks (PLUGIN_FINISH_PARSE_FUNCTION, fndecl);
16093 return fndecl;
16096 /* Create the FUNCTION_DECL for a function definition.
16097 DECLSPECS and DECLARATOR are the parts of the declaration;
16098 they describe the return type and the name of the function,
16099 but twisted together in a fashion that parallels the syntax of C.
16101 This function creates a binding context for the function body
16102 as well as setting up the FUNCTION_DECL in current_function_decl.
16104 Returns a FUNCTION_DECL on success.
16106 If the DECLARATOR is not suitable for a function (it defines a datum
16107 instead), we return 0, which tells yyparse to report a parse error.
16109 May return void_type_node indicating that this method is actually
16110 a friend. See grokfield for more details.
16112 Came here with a `.pushlevel' .
16114 DO NOT MAKE ANY CHANGES TO THIS CODE WITHOUT MAKING CORRESPONDING
16115 CHANGES TO CODE IN `grokfield'. */
16117 tree
16118 grokmethod (cp_decl_specifier_seq *declspecs,
16119 const cp_declarator *declarator, tree attrlist)
16121 tree fndecl = grokdeclarator (declarator, declspecs, MEMFUNCDEF, 0,
16122 &attrlist);
16124 if (fndecl == error_mark_node)
16125 return error_mark_node;
16127 if (fndecl == NULL || TREE_CODE (fndecl) != FUNCTION_DECL)
16129 error ("invalid member function declaration");
16130 return error_mark_node;
16133 if (attrlist)
16134 cplus_decl_attributes (&fndecl, attrlist, 0);
16136 /* Pass friends other than inline friend functions back. */
16137 if (fndecl == void_type_node)
16138 return fndecl;
16140 if (DECL_IN_AGGR_P (fndecl))
16142 if (DECL_CLASS_SCOPE_P (fndecl))
16143 error ("%qD is already defined in class %qT", fndecl,
16144 DECL_CONTEXT (fndecl));
16145 return error_mark_node;
16148 check_template_shadow (fndecl);
16150 if (TREE_PUBLIC (fndecl))
16151 DECL_COMDAT (fndecl) = 1;
16152 DECL_DECLARED_INLINE_P (fndecl) = 1;
16153 DECL_NO_INLINE_WARNING_P (fndecl) = 1;
16155 /* We process method specializations in finish_struct_1. */
16156 if (processing_template_decl && !DECL_TEMPLATE_SPECIALIZATION (fndecl))
16158 fndecl = push_template_decl (fndecl);
16159 if (fndecl == error_mark_node)
16160 return fndecl;
16163 if (! DECL_FRIEND_P (fndecl))
16165 if (DECL_CHAIN (fndecl))
16167 fndecl = copy_node (fndecl);
16168 TREE_CHAIN (fndecl) = NULL_TREE;
16172 cp_finish_decl (fndecl, NULL_TREE, false, NULL_TREE, 0);
16174 DECL_IN_AGGR_P (fndecl) = 1;
16175 return fndecl;
16179 /* VAR is a VAR_DECL. If its type is incomplete, remember VAR so that
16180 we can lay it out later, when and if its type becomes complete.
16182 Also handle constexpr variables where the initializer involves
16183 an unlowered PTRMEM_CST because the class isn't complete yet. */
16185 void
16186 maybe_register_incomplete_var (tree var)
16188 gcc_assert (VAR_P (var));
16190 /* Keep track of variables with incomplete types. */
16191 if (!processing_template_decl && TREE_TYPE (var) != error_mark_node
16192 && DECL_EXTERNAL (var))
16194 tree inner_type = TREE_TYPE (var);
16196 while (TREE_CODE (inner_type) == ARRAY_TYPE)
16197 inner_type = TREE_TYPE (inner_type);
16198 inner_type = TYPE_MAIN_VARIANT (inner_type);
16200 if ((!COMPLETE_TYPE_P (inner_type) && CLASS_TYPE_P (inner_type))
16201 /* RTTI TD entries are created while defining the type_info. */
16202 || (TYPE_LANG_SPECIFIC (inner_type)
16203 && TYPE_BEING_DEFINED (inner_type)))
16205 incomplete_var iv = {var, inner_type};
16206 vec_safe_push (incomplete_vars, iv);
16208 else if (!(DECL_LANG_SPECIFIC (var) && DECL_TEMPLATE_INFO (var))
16209 && decl_constant_var_p (var)
16210 && (TYPE_PTRMEM_P (inner_type) || CLASS_TYPE_P (inner_type)))
16212 /* When the outermost open class is complete we can resolve any
16213 pointers-to-members. */
16214 tree context = outermost_open_class ();
16215 incomplete_var iv = {var, context};
16216 vec_safe_push (incomplete_vars, iv);
16221 /* Called when a class type (given by TYPE) is defined. If there are
16222 any existing VAR_DECLs whose type has been completed by this
16223 declaration, update them now. */
16225 void
16226 complete_vars (tree type)
16228 unsigned ix;
16229 incomplete_var *iv;
16231 for (ix = 0; vec_safe_iterate (incomplete_vars, ix, &iv); )
16233 if (same_type_p (type, iv->incomplete_type))
16235 tree var = iv->decl;
16236 tree type = TREE_TYPE (var);
16238 if (type != error_mark_node
16239 && (TYPE_MAIN_VARIANT (strip_array_types (type))
16240 == iv->incomplete_type))
16242 /* Complete the type of the variable. The VAR_DECL itself
16243 will be laid out in expand_expr. */
16244 complete_type (type);
16245 cp_apply_type_quals_to_decl (cp_type_quals (type), var);
16248 /* Remove this entry from the list. */
16249 incomplete_vars->unordered_remove (ix);
16251 else
16252 ix++;
16255 /* Check for pending declarations which may have abstract type. */
16256 complete_type_check_abstract (type);
16259 /* If DECL is of a type which needs a cleanup, build and return an
16260 expression to perform that cleanup here. Return NULL_TREE if no
16261 cleanup need be done. DECL can also be a _REF when called from
16262 split_nonconstant_init_1. */
16264 tree
16265 cxx_maybe_build_cleanup (tree decl, tsubst_flags_t complain)
16267 tree type;
16268 tree attr;
16269 tree cleanup;
16271 /* Assume no cleanup is required. */
16272 cleanup = NULL_TREE;
16274 if (error_operand_p (decl))
16275 return cleanup;
16277 /* Handle "__attribute__((cleanup))". We run the cleanup function
16278 before the destructor since the destructor is what actually
16279 terminates the lifetime of the object. */
16280 if (DECL_P (decl))
16281 attr = lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl));
16282 else
16283 attr = NULL_TREE;
16284 if (attr)
16286 tree id;
16287 tree fn;
16288 tree arg;
16290 /* Get the name specified by the user for the cleanup function. */
16291 id = TREE_VALUE (TREE_VALUE (attr));
16292 /* Look up the name to find the cleanup function to call. It is
16293 important to use lookup_name here because that is what is
16294 used in c-common.c:handle_cleanup_attribute when performing
16295 initial checks on the attribute. Note that those checks
16296 include ensuring that the function found is not an overloaded
16297 function, or an object with an overloaded call operator,
16298 etc.; we can rely on the fact that the function found is an
16299 ordinary FUNCTION_DECL. */
16300 fn = lookup_name (id);
16301 arg = build_address (decl);
16302 if (!mark_used (decl, complain) && !(complain & tf_error))
16303 return error_mark_node;
16304 cleanup = cp_build_function_call_nary (fn, complain, arg, NULL_TREE);
16305 if (cleanup == error_mark_node)
16306 return error_mark_node;
16308 /* Handle ordinary C++ destructors. */
16309 type = TREE_TYPE (decl);
16310 if (type_build_dtor_call (type))
16312 int flags = LOOKUP_NORMAL|LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR;
16313 tree addr;
16314 tree call;
16316 if (TREE_CODE (type) == ARRAY_TYPE)
16317 addr = decl;
16318 else
16319 addr = build_address (decl);
16321 call = build_delete (TREE_TYPE (addr), addr,
16322 sfk_complete_destructor, flags, 0, complain);
16323 if (call == error_mark_node)
16324 cleanup = error_mark_node;
16325 else if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
16326 /* Discard the call. */;
16327 else if (cleanup)
16328 cleanup = cp_build_compound_expr (cleanup, call, complain);
16329 else
16330 cleanup = call;
16333 /* build_delete sets the location of the destructor call to the
16334 current location, even though the destructor is going to be
16335 called later, at the end of the current scope. This can lead to
16336 a "jumpy" behavior for users of debuggers when they step around
16337 the end of the block. So let's unset the location of the
16338 destructor call instead. */
16339 protected_set_expr_location (cleanup, UNKNOWN_LOCATION);
16341 if (cleanup
16342 && DECL_P (decl)
16343 && !lookup_attribute ("warn_unused", TYPE_ATTRIBUTES (TREE_TYPE (decl)))
16344 /* Treat objects with destructors as used; the destructor may do
16345 something substantive. */
16346 && !mark_used (decl, complain) && !(complain & tf_error))
16347 return error_mark_node;
16349 return cleanup;
16353 /* Return the FUNCTION_TYPE that corresponds to MEMFNTYPE, which can be a
16354 FUNCTION_DECL, METHOD_TYPE, FUNCTION_TYPE, pointer or reference to
16355 METHOD_TYPE or FUNCTION_TYPE, or pointer to member function. */
16357 tree
16358 static_fn_type (tree memfntype)
16360 tree fntype;
16361 tree args;
16363 if (TYPE_PTRMEMFUNC_P (memfntype))
16364 memfntype = TYPE_PTRMEMFUNC_FN_TYPE (memfntype);
16365 if (INDIRECT_TYPE_P (memfntype)
16366 || TREE_CODE (memfntype) == FUNCTION_DECL)
16367 memfntype = TREE_TYPE (memfntype);
16368 if (TREE_CODE (memfntype) == FUNCTION_TYPE)
16369 return memfntype;
16370 gcc_assert (TREE_CODE (memfntype) == METHOD_TYPE);
16371 args = TYPE_ARG_TYPES (memfntype);
16372 fntype = build_function_type (TREE_TYPE (memfntype), TREE_CHAIN (args));
16373 fntype = apply_memfn_quals (fntype, type_memfn_quals (memfntype));
16374 fntype = (cp_build_type_attribute_variant
16375 (fntype, TYPE_ATTRIBUTES (memfntype)));
16376 fntype = cxx_copy_lang_qualifiers (fntype, memfntype);
16377 return fntype;
16380 /* DECL was originally constructed as a non-static member function,
16381 but turned out to be static. Update it accordingly. */
16383 void
16384 revert_static_member_fn (tree decl)
16386 tree stype = static_fn_type (decl);
16387 cp_cv_quals quals = type_memfn_quals (stype);
16388 cp_ref_qualifier rqual = type_memfn_rqual (stype);
16390 if (quals != TYPE_UNQUALIFIED || rqual != REF_QUAL_NONE)
16391 stype = apply_memfn_quals (stype, TYPE_UNQUALIFIED, REF_QUAL_NONE);
16393 TREE_TYPE (decl) = stype;
16395 if (DECL_ARGUMENTS (decl))
16396 DECL_ARGUMENTS (decl) = DECL_CHAIN (DECL_ARGUMENTS (decl));
16397 DECL_STATIC_FUNCTION_P (decl) = 1;
16400 /* Return which tree structure is used by T, or TS_CP_GENERIC if T is
16401 one of the language-independent trees. */
16403 enum cp_tree_node_structure_enum
16404 cp_tree_node_structure (union lang_tree_node * t)
16406 switch (TREE_CODE (&t->generic))
16408 case DEFAULT_ARG: return TS_CP_DEFAULT_ARG;
16409 case DEFERRED_NOEXCEPT: return TS_CP_DEFERRED_NOEXCEPT;
16410 case IDENTIFIER_NODE: return TS_CP_IDENTIFIER;
16411 case OVERLOAD: return TS_CP_OVERLOAD;
16412 case TEMPLATE_PARM_INDEX: return TS_CP_TPI;
16413 case PTRMEM_CST: return TS_CP_PTRMEM;
16414 case BASELINK: return TS_CP_BASELINK;
16415 case TEMPLATE_DECL: return TS_CP_TEMPLATE_DECL;
16416 case STATIC_ASSERT: return TS_CP_STATIC_ASSERT;
16417 case ARGUMENT_PACK_SELECT: return TS_CP_ARGUMENT_PACK_SELECT;
16418 case TRAIT_EXPR: return TS_CP_TRAIT_EXPR;
16419 case LAMBDA_EXPR: return TS_CP_LAMBDA_EXPR;
16420 case TEMPLATE_INFO: return TS_CP_TEMPLATE_INFO;
16421 case CONSTRAINT_INFO: return TS_CP_CONSTRAINT_INFO;
16422 case USERDEF_LITERAL: return TS_CP_USERDEF_LITERAL;
16423 default: return TS_CP_GENERIC;
16427 /* Build the void_list_node (void_type_node having been created). */
16428 tree
16429 build_void_list_node (void)
16431 tree t = build_tree_list (NULL_TREE, void_type_node);
16432 return t;
16435 bool
16436 cp_missing_noreturn_ok_p (tree decl)
16438 /* A missing noreturn is ok for the `main' function. */
16439 return DECL_MAIN_P (decl);
16442 /* Return the decl used to identify the COMDAT group into which DECL should
16443 be placed. */
16445 tree
16446 cxx_comdat_group (tree decl)
16448 /* Virtual tables, construction virtual tables, and virtual table
16449 tables all go in a single COMDAT group, named after the primary
16450 virtual table. */
16451 if (VAR_P (decl) && DECL_VTABLE_OR_VTT_P (decl))
16452 decl = CLASSTYPE_VTABLES (DECL_CONTEXT (decl));
16453 /* For all other DECLs, the COMDAT group is the mangled name of the
16454 declaration itself. */
16455 else
16457 while (DECL_THUNK_P (decl))
16459 /* If TARGET_USE_LOCAL_THUNK_ALIAS_P, use_thunk puts the thunk
16460 into the same section as the target function. In that case
16461 we must return target's name. */
16462 tree target = THUNK_TARGET (decl);
16463 if (TARGET_USE_LOCAL_THUNK_ALIAS_P (target)
16464 && DECL_SECTION_NAME (target) != NULL
16465 && DECL_ONE_ONLY (target))
16466 decl = target;
16467 else
16468 break;
16472 return decl;
16475 /* Returns the return type for FN as written by the user, which may include
16476 a placeholder for a deduced return type. */
16478 tree
16479 fndecl_declared_return_type (tree fn)
16481 fn = STRIP_TEMPLATE (fn);
16482 if (FNDECL_USED_AUTO (fn))
16484 struct language_function *f = NULL;
16485 if (DECL_STRUCT_FUNCTION (fn))
16486 f = DECL_STRUCT_FUNCTION (fn)->language;
16487 if (f == NULL)
16488 f = DECL_SAVED_FUNCTION_DATA (fn);
16489 return f->x_auto_return_pattern;
16491 return TREE_TYPE (TREE_TYPE (fn));
16494 /* Returns true iff DECL is a variable or function declared with an auto type
16495 that has not yet been deduced to a real type. */
16497 bool
16498 undeduced_auto_decl (tree decl)
16500 if (cxx_dialect < cxx11)
16501 return false;
16502 return ((VAR_OR_FUNCTION_DECL_P (decl)
16503 || TREE_CODE (decl) == TEMPLATE_DECL)
16504 && type_uses_auto (TREE_TYPE (decl)));
16507 /* Complain if DECL has an undeduced return type. */
16509 bool
16510 require_deduced_type (tree decl, tsubst_flags_t complain)
16512 if (undeduced_auto_decl (decl))
16514 if (complain & tf_error)
16515 error ("use of %qD before deduction of %<auto%>", decl);
16516 return false;
16518 return true;
16521 #include "gt-cp-decl.h"