[PR c++/82710] false positive paren warning
[official-gcc.git] / gcc / cp / decl.c
blob62bd3daef74148cd21f5141250e57ef1f3e09d62
1 /* Process declarations and variables for C++ compiler.
2 Copyright (C) 1988-2017 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 "cilk.h"
52 #include "builtins.h"
53 #include "gimplify.h"
54 #include "asan.h"
56 /* Possible cases of bad specifiers type used by bad_specifiers. */
57 enum bad_spec_place {
58 BSP_VAR, /* variable */
59 BSP_PARM, /* parameter */
60 BSP_TYPE, /* type */
61 BSP_FIELD /* field */
64 static const char *redeclaration_error_message (tree, tree);
66 static int decl_jump_unsafe (tree);
67 static void require_complete_types_for_parms (tree);
68 static void push_local_name (tree);
69 static tree grok_reference_init (tree, tree, tree, int);
70 static tree grokvardecl (tree, tree, tree, const cp_decl_specifier_seq *,
71 int, int, int, bool, int, tree);
72 static int check_static_variable_definition (tree, tree);
73 static void record_unknown_type (tree, const char *);
74 static tree builtin_function_1 (tree, tree, bool);
75 static int member_function_or_else (tree, tree, enum overload_flags);
76 static void check_for_uninitialized_const_var (tree);
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 int leaving_for_scope;
582 scope_kind kind;
583 unsigned ix;
585 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
586 restart:
588 block = NULL_TREE;
590 gcc_assert (current_binding_level->kind != sk_class
591 && current_binding_level->kind != sk_namespace);
593 if (current_binding_level->kind == sk_cleanup)
594 functionbody = 0;
595 subblocks = functionbody >= 0 ? current_binding_level->blocks : 0;
597 gcc_assert (!vec_safe_length (current_binding_level->class_shadowed));
599 /* We used to use KEEP == 2 to indicate that the new block should go
600 at the beginning of the list of blocks at this binding level,
601 rather than the end. This hack is no longer used. */
602 gcc_assert (keep == 0 || keep == 1);
604 if (current_binding_level->keep)
605 keep = 1;
607 /* Any uses of undefined labels, and any defined labels, now operate
608 under constraints of next binding contour. */
609 if (cfun && !functionbody && named_labels)
610 named_labels->traverse<cp_binding_level *, poplevel_named_label_1>
611 (current_binding_level);
613 /* Get the decls in the order they were written.
614 Usually current_binding_level->names is in reverse order.
615 But parameter decls were previously put in forward order. */
617 decls = current_binding_level->names;
618 if (reverse)
620 decls = nreverse (decls);
621 current_binding_level->names = decls;
624 /* If there were any declarations or structure tags in that level,
625 or if this level is a function body,
626 create a BLOCK to record them for the life of this function. */
627 block = NULL_TREE;
628 /* Avoid function body block if possible. */
629 if (functionbody && subblocks && BLOCK_CHAIN (subblocks) == NULL_TREE)
630 keep = 0;
631 else if (keep == 1 || functionbody)
632 block = make_node (BLOCK);
633 if (block != NULL_TREE)
635 BLOCK_VARS (block) = decls;
636 BLOCK_SUBBLOCKS (block) = subblocks;
639 /* In each subblock, record that this is its superior. */
640 if (keep >= 0)
641 for (link = subblocks; link; link = BLOCK_CHAIN (link))
642 BLOCK_SUPERCONTEXT (link) = block;
644 /* We still support the old for-scope rules, whereby the variables
645 in a init statement were in scope after the for-statement ended.
646 We only use the new rules if flag_new_for_scope is nonzero. */
647 leaving_for_scope
648 = current_binding_level->kind == sk_for && flag_new_for_scope == 1;
650 /* Before we remove the declarations first check for unused variables. */
651 if ((warn_unused_variable || warn_unused_but_set_variable)
652 && current_binding_level->kind != sk_template_parms
653 && !processing_template_decl)
654 for (tree d = get_local_decls (); d; d = TREE_CHAIN (d))
656 /* There are cases where D itself is a TREE_LIST. See in
657 push_local_binding where the list of decls returned by
658 getdecls is built. */
659 decl = TREE_CODE (d) == TREE_LIST ? TREE_VALUE (d) : d;
661 tree type = TREE_TYPE (decl);
662 if (VAR_P (decl)
663 && (! TREE_USED (decl) || !DECL_READ_P (decl))
664 && ! DECL_IN_SYSTEM_HEADER (decl)
665 /* For structured bindings, consider only real variables, not
666 subobjects. */
667 && (DECL_DECOMPOSITION_P (decl) ? !DECL_DECOMP_BASE (decl)
668 : (DECL_NAME (decl) && !DECL_ARTIFICIAL (decl)))
669 && type != error_mark_node
670 && (!CLASS_TYPE_P (type)
671 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
672 || lookup_attribute ("warn_unused",
673 TYPE_ATTRIBUTES (TREE_TYPE (decl)))))
675 if (! TREE_USED (decl))
677 if (!DECL_NAME (decl) && DECL_DECOMPOSITION_P (decl))
678 warning_at (DECL_SOURCE_LOCATION (decl),
679 OPT_Wunused_variable,
680 "unused structured binding declaration");
681 else
682 warning_at (DECL_SOURCE_LOCATION (decl),
683 OPT_Wunused_variable, "unused variable %qD", decl);
685 else if (DECL_CONTEXT (decl) == current_function_decl
686 // For -Wunused-but-set-variable leave references alone.
687 && TREE_CODE (TREE_TYPE (decl)) != REFERENCE_TYPE
688 && errorcount == unused_but_set_errorcount)
690 if (!DECL_NAME (decl) && DECL_DECOMPOSITION_P (decl))
691 warning_at (DECL_SOURCE_LOCATION (decl),
692 OPT_Wunused_but_set_variable, "structured "
693 "binding declaration set but not used");
694 else
695 warning_at (DECL_SOURCE_LOCATION (decl),
696 OPT_Wunused_but_set_variable,
697 "variable %qD set but not used", decl);
698 unused_but_set_errorcount = errorcount;
703 /* Remove declarations for all the DECLs in this level. */
704 for (link = decls; link; link = TREE_CHAIN (link))
706 decl = TREE_CODE (link) == TREE_LIST ? TREE_VALUE (link) : link;
707 tree name = OVL_NAME (decl);
709 if (leaving_for_scope && VAR_P (decl)
710 /* It's hard to make this ARM compatibility hack play nicely with
711 lambdas, and it really isn't necessary in C++11 mode. */
712 && cxx_dialect < cxx11
713 && name)
715 cxx_binding *ob = outer_binding (name,
716 IDENTIFIER_BINDING (name),
717 /*class_p=*/true);
718 tree ns_binding = NULL_TREE;
719 if (!ob)
720 ns_binding = get_namespace_binding (current_namespace, name);
722 if (ob && ob->scope == current_binding_level->level_chain)
723 /* We have something like:
725 int i;
726 for (int i; ;);
728 and we are leaving the `for' scope. There's no reason to
729 keep the binding of the inner `i' in this case. */
731 else if ((ob && (TREE_CODE (ob->value) == TYPE_DECL))
732 || (ns_binding && TREE_CODE (ns_binding) == TYPE_DECL))
733 /* Here, we have something like:
735 typedef int I;
737 void f () {
738 for (int I; ;);
741 We must pop the for-scope binding so we know what's a
742 type and what isn't. */
744 else
746 /* Mark this VAR_DECL as dead so that we can tell we left it
747 there only for backward compatibility. */
748 DECL_DEAD_FOR_LOCAL (link) = 1;
750 /* Keep track of what should have happened when we
751 popped the binding. */
752 if (ob && ob->value)
754 SET_DECL_SHADOWED_FOR_VAR (link, ob->value);
755 DECL_HAS_SHADOWED_FOR_VAR_P (link) = 1;
758 /* Add it to the list of dead variables in the next
759 outermost binding to that we can remove these when we
760 leave that binding. */
761 vec_safe_push (
762 current_binding_level->level_chain->dead_vars_from_for,
763 link);
765 /* Although we don't pop the cxx_binding, we do clear
766 its SCOPE since the scope is going away now. */
767 IDENTIFIER_BINDING (name)->scope
768 = current_binding_level->level_chain;
770 /* Don't remove the binding. */
771 name = NULL_TREE;
774 /* Remove the binding. */
775 if (TREE_CODE (decl) == LABEL_DECL)
776 pop_local_label (name, decl);
777 else
778 pop_local_binding (name, decl);
781 /* Remove declarations for any `for' variables from inner scopes
782 that we kept around. */
783 FOR_EACH_VEC_SAFE_ELT_REVERSE (current_binding_level->dead_vars_from_for,
784 ix, decl)
785 pop_local_binding (DECL_NAME (decl), decl);
787 /* Restore the IDENTIFIER_TYPE_VALUEs. */
788 for (link = current_binding_level->type_shadowed;
789 link; link = TREE_CHAIN (link))
790 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (link), TREE_VALUE (link));
792 /* There may be OVERLOADs (wrapped in TREE_LISTs) on the BLOCK_VARs
793 list if a `using' declaration put them there. The debugging
794 back ends won't understand OVERLOAD, so we remove them here.
795 Because the BLOCK_VARS are (temporarily) shared with
796 CURRENT_BINDING_LEVEL->NAMES we must do this fixup after we have
797 popped all the bindings. Also remove undeduced 'auto' decls,
798 which LTO doesn't understand, and can't have been used by anything. */
799 if (block)
801 tree* d;
803 for (d = &BLOCK_VARS (block); *d; )
805 if (TREE_CODE (*d) == TREE_LIST
806 || (!processing_template_decl
807 && undeduced_auto_decl (*d)))
808 *d = TREE_CHAIN (*d);
809 else
810 d = &DECL_CHAIN (*d);
814 /* If the level being exited is the top level of a function,
815 check over all the labels. */
816 if (functionbody)
818 if (block)
820 /* Since this is the top level block of a function, the vars are
821 the function's parameters. Don't leave them in the BLOCK
822 because they are found in the FUNCTION_DECL instead. */
823 BLOCK_VARS (block) = 0;
824 pop_labels (block);
826 else
827 pop_labels (subblocks);
830 kind = current_binding_level->kind;
831 if (kind == sk_cleanup)
833 tree stmt;
835 /* If this is a temporary binding created for a cleanup, then we'll
836 have pushed a statement list level. Pop that, create a new
837 BIND_EXPR for the block, and insert it into the stream. */
838 stmt = pop_stmt_list (current_binding_level->statement_list);
839 stmt = c_build_bind_expr (input_location, block, stmt);
840 add_stmt (stmt);
843 leave_scope ();
844 if (functionbody)
846 /* The current function is being defined, so its DECL_INITIAL
847 should be error_mark_node. */
848 gcc_assert (DECL_INITIAL (current_function_decl) == error_mark_node);
849 DECL_INITIAL (current_function_decl) = block ? block : subblocks;
850 if (subblocks)
852 if (FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
854 if (BLOCK_SUBBLOCKS (subblocks))
855 BLOCK_OUTER_CURLY_BRACE_P (BLOCK_SUBBLOCKS (subblocks)) = 1;
857 else
858 BLOCK_OUTER_CURLY_BRACE_P (subblocks) = 1;
861 else if (block)
862 current_binding_level->blocks
863 = block_chainon (current_binding_level->blocks, block);
865 /* If we did not make a block for the level just exited,
866 any blocks made for inner levels
867 (since they cannot be recorded as subblocks in that level)
868 must be carried forward so they will later become subblocks
869 of something else. */
870 else if (subblocks)
871 current_binding_level->blocks
872 = block_chainon (current_binding_level->blocks, subblocks);
874 /* Each and every BLOCK node created here in `poplevel' is important
875 (e.g. for proper debugging information) so if we created one
876 earlier, mark it as "used". */
877 if (block)
878 TREE_USED (block) = 1;
880 /* All temporary bindings created for cleanups are popped silently. */
881 if (kind == sk_cleanup)
882 goto restart;
884 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
885 return block;
888 /* Call wrapup_globals_declarations for the globals in NAMESPACE. */
889 /* Diagnose odr-used extern inline variables without definitions
890 in the current TU. */
893 wrapup_namespace_globals ()
895 if (vec<tree, va_gc> *statics = static_decls)
897 tree decl;
898 unsigned int i;
899 FOR_EACH_VEC_ELT (*statics, i, decl)
901 if (warn_unused_function
902 && TREE_CODE (decl) == FUNCTION_DECL
903 && DECL_INITIAL (decl) == 0
904 && DECL_EXTERNAL (decl)
905 && !TREE_PUBLIC (decl)
906 && !DECL_ARTIFICIAL (decl)
907 && !DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl)
908 && !TREE_NO_WARNING (decl))
909 warning_at (DECL_SOURCE_LOCATION (decl),
910 OPT_Wunused_function,
911 "%qF declared %<static%> but never defined", decl);
913 if (VAR_P (decl)
914 && DECL_EXTERNAL (decl)
915 && DECL_INLINE_VAR_P (decl)
916 && DECL_ODR_USED (decl))
917 error_at (DECL_SOURCE_LOCATION (decl),
918 "odr-used inline variable %qD is not defined", decl);
921 /* Clear out the list, so we don't rescan next time. */
922 static_decls = NULL;
924 /* Write out any globals that need to be output. */
925 return wrapup_global_declarations (statics->address (),
926 statics->length ());
928 return 0;
931 /* In C++, you don't have to write `struct S' to refer to `S'; you
932 can just use `S'. We accomplish this by creating a TYPE_DECL as
933 if the user had written `typedef struct S S'. Create and return
934 the TYPE_DECL for TYPE. */
936 tree
937 create_implicit_typedef (tree name, tree type)
939 tree decl;
941 decl = build_decl (input_location, TYPE_DECL, name, type);
942 DECL_ARTIFICIAL (decl) = 1;
943 /* There are other implicit type declarations, like the one *within*
944 a class that allows you to write `S::S'. We must distinguish
945 amongst these. */
946 SET_DECL_IMPLICIT_TYPEDEF_P (decl);
947 TYPE_NAME (type) = decl;
948 TYPE_STUB_DECL (type) = decl;
950 return decl;
953 /* Remember a local name for name-mangling purposes. */
955 static void
956 push_local_name (tree decl)
958 size_t i, nelts;
959 tree t, name;
961 timevar_start (TV_NAME_LOOKUP);
963 name = DECL_NAME (decl);
965 nelts = vec_safe_length (local_names);
966 for (i = 0; i < nelts; i++)
968 t = (*local_names)[i];
969 if (DECL_NAME (t) == name)
971 retrofit_lang_decl (decl);
972 DECL_LANG_SPECIFIC (decl)->u.base.u2sel = 1;
973 if (DECL_DISCRIMINATOR_SET_P (t))
974 DECL_DISCRIMINATOR (decl) = DECL_DISCRIMINATOR (t) + 1;
975 else
976 DECL_DISCRIMINATOR (decl) = 1;
978 (*local_names)[i] = decl;
979 timevar_stop (TV_NAME_LOOKUP);
980 return;
984 vec_safe_push (local_names, decl);
985 timevar_stop (TV_NAME_LOOKUP);
988 /* Subroutine of duplicate_decls: return truthvalue of whether
989 or not types of these decls match.
991 For C++, we must compare the parameter list so that `int' can match
992 `int&' in a parameter position, but `int&' is not confused with
993 `const int&'. */
996 decls_match (tree newdecl, tree olddecl)
998 int types_match;
1000 if (newdecl == olddecl)
1001 return 1;
1003 if (TREE_CODE (newdecl) != TREE_CODE (olddecl))
1004 /* If the two DECLs are not even the same kind of thing, we're not
1005 interested in their types. */
1006 return 0;
1008 gcc_assert (DECL_P (newdecl));
1010 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1012 tree f1 = TREE_TYPE (newdecl);
1013 tree f2 = TREE_TYPE (olddecl);
1014 tree p1 = TYPE_ARG_TYPES (f1);
1015 tree p2 = TYPE_ARG_TYPES (f2);
1016 tree r2;
1018 /* Specializations of different templates are different functions
1019 even if they have the same type. */
1020 tree t1 = (DECL_USE_TEMPLATE (newdecl)
1021 ? DECL_TI_TEMPLATE (newdecl)
1022 : NULL_TREE);
1023 tree t2 = (DECL_USE_TEMPLATE (olddecl)
1024 ? DECL_TI_TEMPLATE (olddecl)
1025 : NULL_TREE);
1026 if (t1 != t2)
1027 return 0;
1029 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
1030 && ! (DECL_EXTERN_C_P (newdecl)
1031 && DECL_EXTERN_C_P (olddecl)))
1032 return 0;
1034 /* A new declaration doesn't match a built-in one unless it
1035 is also extern "C". */
1036 if (DECL_IS_BUILTIN (olddecl)
1037 && DECL_EXTERN_C_P (olddecl) && !DECL_EXTERN_C_P (newdecl))
1038 return 0;
1040 if (TREE_CODE (f1) != TREE_CODE (f2))
1041 return 0;
1043 /* A declaration with deduced return type should use its pre-deduction
1044 type for declaration matching. */
1045 r2 = fndecl_declared_return_type (olddecl);
1047 if (same_type_p (TREE_TYPE (f1), r2))
1049 if (!prototype_p (f2) && DECL_EXTERN_C_P (olddecl)
1050 && (DECL_BUILT_IN (olddecl)
1051 #ifndef NO_IMPLICIT_EXTERN_C
1052 || (DECL_IN_SYSTEM_HEADER (newdecl) && !DECL_CLASS_SCOPE_P (newdecl))
1053 || (DECL_IN_SYSTEM_HEADER (olddecl) && !DECL_CLASS_SCOPE_P (olddecl))
1054 #endif
1057 types_match = self_promoting_args_p (p1);
1058 if (p1 == void_list_node)
1059 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
1061 #ifndef NO_IMPLICIT_EXTERN_C
1062 else if (!prototype_p (f1)
1063 && (DECL_EXTERN_C_P (olddecl)
1064 && DECL_IN_SYSTEM_HEADER (olddecl)
1065 && !DECL_CLASS_SCOPE_P (olddecl))
1066 && (DECL_EXTERN_C_P (newdecl)
1067 && DECL_IN_SYSTEM_HEADER (newdecl)
1068 && !DECL_CLASS_SCOPE_P (newdecl)))
1070 types_match = self_promoting_args_p (p2);
1071 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
1073 #endif
1074 else
1075 types_match =
1076 compparms (p1, p2)
1077 && type_memfn_rqual (f1) == type_memfn_rqual (f2)
1078 && (TYPE_ATTRIBUTES (TREE_TYPE (newdecl)) == NULL_TREE
1079 || comp_type_attributes (TREE_TYPE (newdecl),
1080 TREE_TYPE (olddecl)) != 0);
1082 else
1083 types_match = 0;
1085 /* The decls dont match if they correspond to two different versions
1086 of the same function. Disallow extern "C" functions to be
1087 versions for now. */
1088 if (types_match
1089 && !DECL_EXTERN_C_P (newdecl)
1090 && !DECL_EXTERN_C_P (olddecl)
1091 && maybe_version_functions (newdecl, olddecl))
1092 return 0;
1094 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1096 tree oldres = DECL_TEMPLATE_RESULT (olddecl);
1097 tree newres = DECL_TEMPLATE_RESULT (newdecl);
1099 if (TREE_CODE (newres) != TREE_CODE (oldres))
1100 return 0;
1102 if (!comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1103 DECL_TEMPLATE_PARMS (olddecl)))
1104 return 0;
1106 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1107 types_match = (same_type_p (TREE_TYPE (oldres), TREE_TYPE (newres))
1108 && equivalently_constrained (olddecl, newdecl));
1109 else
1110 // We don't need to check equivalently_constrained for variable and
1111 // function templates because we check it on the results.
1112 types_match = decls_match (oldres, newres);
1114 else
1116 /* Need to check scope for variable declaration (VAR_DECL).
1117 For typedef (TYPE_DECL), scope is ignored. */
1118 if (VAR_P (newdecl)
1119 && CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
1120 /* [dcl.link]
1121 Two declarations for an object with C language linkage
1122 with the same name (ignoring the namespace that qualify
1123 it) that appear in different namespace scopes refer to
1124 the same object. */
1125 && !(DECL_EXTERN_C_P (olddecl) && DECL_EXTERN_C_P (newdecl)))
1126 return 0;
1128 if (TREE_TYPE (newdecl) == error_mark_node)
1129 types_match = TREE_TYPE (olddecl) == error_mark_node;
1130 else if (TREE_TYPE (olddecl) == NULL_TREE)
1131 types_match = TREE_TYPE (newdecl) == NULL_TREE;
1132 else if (TREE_TYPE (newdecl) == NULL_TREE)
1133 types_match = 0;
1134 else
1135 types_match = comptypes (TREE_TYPE (newdecl),
1136 TREE_TYPE (olddecl),
1137 COMPARE_REDECLARATION);
1140 // Normal functions can be constrained, as can variable partial
1141 // specializations.
1142 if (types_match && VAR_OR_FUNCTION_DECL_P (newdecl))
1143 types_match = equivalently_constrained (newdecl, olddecl);
1145 return types_match;
1148 /* NEWDECL and OLDDECL have identical signatures. If they are
1149 different versions adjust them and return true. */
1151 bool
1152 maybe_version_functions (tree newdecl, tree olddecl)
1154 if (!targetm.target_option.function_versions (newdecl, olddecl))
1155 return false;
1157 bool record = false;
1159 if (!DECL_FUNCTION_VERSIONED (olddecl))
1161 record = true;
1162 DECL_FUNCTION_VERSIONED (olddecl) = 1;
1163 if (DECL_ASSEMBLER_NAME_SET_P (olddecl))
1164 mangle_decl (olddecl);
1167 if (!DECL_FUNCTION_VERSIONED (newdecl))
1169 record = true;
1170 DECL_FUNCTION_VERSIONED (newdecl) = 1;
1171 if (DECL_ASSEMBLER_NAME_SET_P (newdecl))
1172 mangle_decl (newdecl);
1175 /* Only record if at least one was not already versions. */
1176 if (record)
1177 cgraph_node::record_function_versions (olddecl, newdecl);
1179 return true;
1182 /* If NEWDECL is `static' and an `extern' was seen previously,
1183 warn about it. OLDDECL is the previous declaration.
1185 Note that this does not apply to the C++ case of declaring
1186 a variable `extern const' and then later `const'.
1188 Don't complain about built-in functions, since they are beyond
1189 the user's control. */
1191 void
1192 warn_extern_redeclared_static (tree newdecl, tree olddecl)
1194 if (TREE_CODE (newdecl) == TYPE_DECL
1195 || TREE_CODE (newdecl) == TEMPLATE_DECL
1196 || TREE_CODE (newdecl) == CONST_DECL
1197 || TREE_CODE (newdecl) == NAMESPACE_DECL)
1198 return;
1200 /* Don't get confused by static member functions; that's a different
1201 use of `static'. */
1202 if (TREE_CODE (newdecl) == FUNCTION_DECL
1203 && DECL_STATIC_FUNCTION_P (newdecl))
1204 return;
1206 /* If the old declaration was `static', or the new one isn't, then
1207 everything is OK. */
1208 if (DECL_THIS_STATIC (olddecl) || !DECL_THIS_STATIC (newdecl))
1209 return;
1211 /* It's OK to declare a builtin function as `static'. */
1212 if (TREE_CODE (olddecl) == FUNCTION_DECL
1213 && DECL_ARTIFICIAL (olddecl))
1214 return;
1216 if (permerror (DECL_SOURCE_LOCATION (newdecl),
1217 "%qD was declared %<extern%> and later %<static%>", newdecl))
1218 inform (DECL_SOURCE_LOCATION (olddecl),
1219 "previous declaration of %qD", olddecl);
1222 /* NEW_DECL is a redeclaration of OLD_DECL; both are functions or
1223 function templates. If their exception specifications do not
1224 match, issue a diagnostic. */
1226 static void
1227 check_redeclaration_exception_specification (tree new_decl,
1228 tree old_decl)
1230 tree new_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl));
1231 tree old_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl));
1233 /* Two default specs are equivalent, don't force evaluation. */
1234 if (UNEVALUATED_NOEXCEPT_SPEC_P (new_exceptions)
1235 && UNEVALUATED_NOEXCEPT_SPEC_P (old_exceptions))
1236 return;
1238 maybe_instantiate_noexcept (new_decl);
1239 maybe_instantiate_noexcept (old_decl);
1240 new_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl));
1241 old_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl));
1243 /* [except.spec]
1245 If any declaration of a function has an exception-specification,
1246 all declarations, including the definition and an explicit
1247 specialization, of that function shall have an
1248 exception-specification with the same set of type-ids. */
1249 if (! DECL_IS_BUILTIN (old_decl)
1250 && !comp_except_specs (new_exceptions, old_exceptions, ce_normal))
1252 const char *const msg
1253 = G_("declaration of %qF has a different exception specifier");
1254 bool complained = true;
1255 location_t new_loc = DECL_SOURCE_LOCATION (new_decl);
1256 if (DECL_IN_SYSTEM_HEADER (old_decl))
1257 complained = pedwarn (new_loc, OPT_Wsystem_headers, msg, new_decl);
1258 else if (!flag_exceptions)
1259 /* We used to silently permit mismatched eh specs with
1260 -fno-exceptions, so make them a pedwarn now. */
1261 complained = pedwarn (new_loc, OPT_Wpedantic, msg, new_decl);
1262 else
1263 error_at (new_loc, msg, new_decl);
1264 if (complained)
1265 inform (DECL_SOURCE_LOCATION (old_decl),
1266 "from previous declaration %qF", old_decl);
1270 /* Return true if OLD_DECL and NEW_DECL agree on constexprness.
1271 Otherwise issue diagnostics. */
1273 static bool
1274 validate_constexpr_redeclaration (tree old_decl, tree new_decl)
1276 old_decl = STRIP_TEMPLATE (old_decl);
1277 new_decl = STRIP_TEMPLATE (new_decl);
1278 if (!VAR_OR_FUNCTION_DECL_P (old_decl)
1279 || !VAR_OR_FUNCTION_DECL_P (new_decl))
1280 return true;
1281 if (DECL_DECLARED_CONSTEXPR_P (old_decl)
1282 == DECL_DECLARED_CONSTEXPR_P (new_decl))
1283 return true;
1284 if (TREE_CODE (old_decl) == FUNCTION_DECL)
1286 if (DECL_BUILT_IN (old_decl))
1288 /* Hide a built-in declaration. */
1289 DECL_DECLARED_CONSTEXPR_P (old_decl)
1290 = DECL_DECLARED_CONSTEXPR_P (new_decl);
1291 return true;
1293 /* 7.1.5 [dcl.constexpr]
1294 Note: An explicit specialization can differ from the template
1295 declaration with respect to the constexpr specifier. */
1296 if (! DECL_TEMPLATE_SPECIALIZATION (old_decl)
1297 && DECL_TEMPLATE_SPECIALIZATION (new_decl))
1298 return true;
1300 error_at (DECL_SOURCE_LOCATION (new_decl),
1301 "redeclaration %qD differs in %<constexpr%> "
1302 "from previous declaration", new_decl);
1303 inform (DECL_SOURCE_LOCATION (old_decl),
1304 "previous declaration %qD", old_decl);
1305 return false;
1307 return true;
1310 // If OLDDECL and NEWDECL are concept declarations with the same type
1311 // (i.e., and template parameters), but different requirements,
1312 // emit diagnostics and return true. Otherwise, return false.
1313 static inline bool
1314 check_concept_refinement (tree olddecl, tree newdecl)
1316 if (!DECL_DECLARED_CONCEPT_P (olddecl) || !DECL_DECLARED_CONCEPT_P (newdecl))
1317 return false;
1319 tree d1 = DECL_TEMPLATE_RESULT (olddecl);
1320 tree d2 = DECL_TEMPLATE_RESULT (newdecl);
1321 if (TREE_CODE (d1) != TREE_CODE (d2))
1322 return false;
1324 tree t1 = TREE_TYPE (d1);
1325 tree t2 = TREE_TYPE (d2);
1326 if (TREE_CODE (d1) == FUNCTION_DECL)
1328 if (compparms (TYPE_ARG_TYPES (t1), TYPE_ARG_TYPES (t2))
1329 && comp_template_parms (DECL_TEMPLATE_PARMS (olddecl),
1330 DECL_TEMPLATE_PARMS (newdecl))
1331 && !equivalently_constrained (olddecl, newdecl))
1333 error ("cannot specialize concept %q#D", olddecl);
1334 return true;
1337 return false;
1340 /* DECL is a redeclaration of a function or function template. If
1341 it does have default arguments issue a diagnostic. Note: this
1342 function is used to enforce the requirements in C++11 8.3.6 about
1343 no default arguments in redeclarations. */
1345 static void
1346 check_redeclaration_no_default_args (tree decl)
1348 gcc_assert (DECL_DECLARES_FUNCTION_P (decl));
1350 for (tree t = FUNCTION_FIRST_USER_PARMTYPE (decl);
1351 t && t != void_list_node; t = TREE_CHAIN (t))
1352 if (TREE_PURPOSE (t))
1354 permerror (DECL_SOURCE_LOCATION (decl),
1355 "redeclaration of %q#D may not have default "
1356 "arguments", decl);
1357 return;
1361 #define GNU_INLINE_P(fn) (DECL_DECLARED_INLINE_P (fn) \
1362 && lookup_attribute ("gnu_inline", \
1363 DECL_ATTRIBUTES (fn)))
1365 /* If NEWDECL is a redeclaration of OLDDECL, merge the declarations.
1366 If the redeclaration is invalid, a diagnostic is issued, and the
1367 error_mark_node is returned. Otherwise, OLDDECL is returned.
1369 If NEWDECL is not a redeclaration of OLDDECL, NULL_TREE is
1370 returned.
1372 NEWDECL_IS_FRIEND is true if NEWDECL was declared as a friend. */
1374 tree
1375 duplicate_decls (tree newdecl, tree olddecl, bool newdecl_is_friend)
1377 unsigned olddecl_uid = DECL_UID (olddecl);
1378 int olddecl_friend = 0, types_match = 0, hidden_friend = 0;
1379 int new_defines_function = 0;
1380 tree new_template_info;
1382 if (newdecl == olddecl)
1383 return olddecl;
1385 types_match = decls_match (newdecl, olddecl);
1387 /* If either the type of the new decl or the type of the old decl is an
1388 error_mark_node, then that implies that we have already issued an
1389 error (earlier) for some bogus type specification, and in that case,
1390 it is rather pointless to harass the user with yet more error message
1391 about the same declaration, so just pretend the types match here. */
1392 if (TREE_TYPE (newdecl) == error_mark_node
1393 || TREE_TYPE (olddecl) == error_mark_node)
1394 return error_mark_node;
1396 if (UDLIT_OPER_P (DECL_NAME (newdecl))
1397 && UDLIT_OPER_P (DECL_NAME (olddecl)))
1399 if (TREE_CODE (newdecl) == TEMPLATE_DECL
1400 && TREE_CODE (olddecl) != TEMPLATE_DECL
1401 && check_raw_literal_operator (olddecl))
1402 error ("literal operator template %q+D conflicts with"
1403 " raw literal operator %qD", newdecl, olddecl);
1404 else if (TREE_CODE (newdecl) != TEMPLATE_DECL
1405 && TREE_CODE (olddecl) == TEMPLATE_DECL
1406 && check_raw_literal_operator (newdecl))
1407 error ("raw literal operator %q+D conflicts with"
1408 " literal operator template %qD", newdecl, olddecl);
1411 if (DECL_P (olddecl)
1412 && TREE_CODE (newdecl) == FUNCTION_DECL
1413 && TREE_CODE (olddecl) == FUNCTION_DECL
1414 && diagnose_mismatched_attributes (olddecl, newdecl))
1416 if (DECL_INITIAL (olddecl))
1417 inform (DECL_SOURCE_LOCATION (olddecl),
1418 "previous definition of %qD was here", olddecl);
1419 else
1420 inform (DECL_SOURCE_LOCATION (olddecl),
1421 "previous declaration of %qD was here", olddecl);
1424 /* Check for redeclaration and other discrepancies. */
1425 if (TREE_CODE (olddecl) == FUNCTION_DECL
1426 && DECL_ARTIFICIAL (olddecl))
1428 gcc_assert (!DECL_HIDDEN_FRIEND_P (olddecl));
1429 if (TREE_CODE (newdecl) != FUNCTION_DECL)
1431 /* Avoid warnings redeclaring built-ins which have not been
1432 explicitly declared. */
1433 if (DECL_ANTICIPATED (olddecl))
1435 if (TREE_PUBLIC (newdecl)
1436 && CP_DECL_CONTEXT (newdecl) == global_namespace)
1437 warning_at (DECL_SOURCE_LOCATION (newdecl),
1438 OPT_Wbuiltin_declaration_mismatch,
1439 "built-in function %qD declared as non-function",
1440 newdecl);
1441 return NULL_TREE;
1444 /* If you declare a built-in or predefined function name as static,
1445 the old definition is overridden, but optionally warn this was a
1446 bad choice of name. */
1447 if (! TREE_PUBLIC (newdecl))
1449 warning (OPT_Wshadow,
1450 DECL_BUILT_IN (olddecl)
1451 ? G_("shadowing built-in function %q#D")
1452 : G_("shadowing library function %q#D"), olddecl);
1453 /* Discard the old built-in function. */
1454 return NULL_TREE;
1456 /* If the built-in is not ansi, then programs can override
1457 it even globally without an error. */
1458 else if (! DECL_BUILT_IN (olddecl))
1459 warning_at (DECL_SOURCE_LOCATION (newdecl), 0,
1460 "library function %q#D redeclared as non-function %q#D",
1461 olddecl, newdecl);
1462 else
1463 error ("declaration of %q+#D conflicts with built-in "
1464 "declaration %q#D", newdecl, olddecl);
1465 return NULL_TREE;
1467 else if (DECL_OMP_DECLARE_REDUCTION_P (olddecl))
1469 gcc_assert (DECL_OMP_DECLARE_REDUCTION_P (newdecl));
1470 error_at (DECL_SOURCE_LOCATION (newdecl),
1471 "redeclaration of %<pragma omp declare reduction%>");
1472 inform (DECL_SOURCE_LOCATION (olddecl),
1473 "previous %<pragma omp declare reduction%> declaration");
1474 return error_mark_node;
1476 else if (!types_match)
1478 /* Avoid warnings redeclaring built-ins which have not been
1479 explicitly declared. */
1480 if (DECL_ANTICIPATED (olddecl))
1482 tree t1, t2;
1484 /* A new declaration doesn't match a built-in one unless it
1485 is also extern "C". */
1486 gcc_assert (DECL_IS_BUILTIN (olddecl));
1487 gcc_assert (DECL_EXTERN_C_P (olddecl));
1488 if (!DECL_EXTERN_C_P (newdecl))
1489 return NULL_TREE;
1491 for (t1 = TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1492 t2 = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1493 t1 || t2;
1494 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
1496 if (!t1 || !t2)
1497 break;
1498 /* FILE, tm types are not known at the time
1499 we create the builtins. */
1500 for (unsigned i = 0;
1501 i < sizeof (builtin_structptr_types)
1502 / sizeof (builtin_structptr_type);
1503 ++i)
1504 if (TREE_VALUE (t2) == builtin_structptr_types[i].node)
1506 tree t = TREE_VALUE (t1);
1508 if (TYPE_PTR_P (t)
1509 && TYPE_IDENTIFIER (TREE_TYPE (t))
1510 == get_identifier (builtin_structptr_types[i].str)
1511 && compparms (TREE_CHAIN (t1), TREE_CHAIN (t2)))
1513 tree oldargs = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1515 TYPE_ARG_TYPES (TREE_TYPE (olddecl))
1516 = TYPE_ARG_TYPES (TREE_TYPE (newdecl));
1517 types_match = decls_match (newdecl, olddecl);
1518 if (types_match)
1519 return duplicate_decls (newdecl, olddecl,
1520 newdecl_is_friend);
1521 TYPE_ARG_TYPES (TREE_TYPE (olddecl)) = oldargs;
1523 goto next_arg;
1526 if (! same_type_p (TREE_VALUE (t1), TREE_VALUE (t2)))
1527 break;
1528 next_arg:;
1531 warning_at (DECL_SOURCE_LOCATION (newdecl),
1532 OPT_Wbuiltin_declaration_mismatch,
1533 "declaration of %q#D conflicts with built-in "
1534 "declaration %q#D", newdecl, olddecl);
1536 else if ((DECL_EXTERN_C_P (newdecl)
1537 && DECL_EXTERN_C_P (olddecl))
1538 || compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1539 TYPE_ARG_TYPES (TREE_TYPE (olddecl))))
1541 /* A near match; override the builtin. */
1543 if (TREE_PUBLIC (newdecl))
1544 warning_at (DECL_SOURCE_LOCATION (newdecl),
1545 OPT_Wbuiltin_declaration_mismatch,
1546 "new declaration %q#D ambiguates built-in "
1547 "declaration %q#D", newdecl, olddecl);
1548 else
1549 warning (OPT_Wshadow,
1550 DECL_BUILT_IN (olddecl)
1551 ? G_("shadowing built-in function %q#D")
1552 : G_("shadowing library function %q#D"), olddecl);
1554 else
1555 /* Discard the old built-in function. */
1556 return NULL_TREE;
1558 /* Replace the old RTL to avoid problems with inlining. */
1559 COPY_DECL_RTL (newdecl, olddecl);
1561 /* Even if the types match, prefer the new declarations type for
1562 built-ins which have not been explicitly declared, for
1563 exception lists, etc... */
1564 else if (DECL_IS_BUILTIN (olddecl))
1566 tree type = TREE_TYPE (newdecl);
1567 tree attribs = (*targetm.merge_type_attributes)
1568 (TREE_TYPE (olddecl), type);
1570 type = cp_build_type_attribute_variant (type, attribs);
1571 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = type;
1574 /* If a function is explicitly declared "throw ()", propagate that to
1575 the corresponding builtin. */
1576 if (DECL_BUILT_IN_CLASS (olddecl) == BUILT_IN_NORMAL
1577 && DECL_ANTICIPATED (olddecl)
1578 && TREE_NOTHROW (newdecl)
1579 && !TREE_NOTHROW (olddecl))
1581 enum built_in_function fncode = DECL_FUNCTION_CODE (olddecl);
1582 tree tmpdecl = builtin_decl_explicit (fncode);
1583 if (tmpdecl && tmpdecl != olddecl && types_match)
1584 TREE_NOTHROW (tmpdecl) = 1;
1587 /* Whether or not the builtin can throw exceptions has no
1588 bearing on this declarator. */
1589 TREE_NOTHROW (olddecl) = 0;
1591 if (DECL_THIS_STATIC (newdecl) && !DECL_THIS_STATIC (olddecl))
1593 /* If a builtin function is redeclared as `static', merge
1594 the declarations, but make the original one static. */
1595 DECL_THIS_STATIC (olddecl) = 1;
1596 TREE_PUBLIC (olddecl) = 0;
1598 /* Make the old declaration consistent with the new one so
1599 that all remnants of the builtin-ness of this function
1600 will be banished. */
1601 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
1602 COPY_DECL_RTL (newdecl, olddecl);
1605 else if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1607 /* C++ Standard, 3.3, clause 4:
1608 "[Note: a namespace name or a class template name must be unique
1609 in its declarative region (7.3.2, clause 14). ]" */
1610 if (TREE_CODE (olddecl) != NAMESPACE_DECL
1611 && TREE_CODE (newdecl) != NAMESPACE_DECL
1612 && (TREE_CODE (olddecl) != TEMPLATE_DECL
1613 || TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) != TYPE_DECL)
1614 && (TREE_CODE (newdecl) != TEMPLATE_DECL
1615 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != TYPE_DECL))
1617 if ((TREE_CODE (olddecl) == TYPE_DECL && DECL_ARTIFICIAL (olddecl)
1618 && TREE_CODE (newdecl) != TYPE_DECL)
1619 || (TREE_CODE (newdecl) == TYPE_DECL && DECL_ARTIFICIAL (newdecl)
1620 && TREE_CODE (olddecl) != TYPE_DECL))
1622 /* We do nothing special here, because C++ does such nasty
1623 things with TYPE_DECLs. Instead, just let the TYPE_DECL
1624 get shadowed, and know that if we need to find a TYPE_DECL
1625 for a given name, we can look in the IDENTIFIER_TYPE_VALUE
1626 slot of the identifier. */
1627 return NULL_TREE;
1630 if ((TREE_CODE (newdecl) == FUNCTION_DECL
1631 && DECL_FUNCTION_TEMPLATE_P (olddecl))
1632 || (TREE_CODE (olddecl) == FUNCTION_DECL
1633 && DECL_FUNCTION_TEMPLATE_P (newdecl)))
1634 return NULL_TREE;
1637 error ("%q#D redeclared as different kind of symbol", newdecl);
1638 if (TREE_CODE (olddecl) == TREE_LIST)
1639 olddecl = TREE_VALUE (olddecl);
1640 inform (DECL_SOURCE_LOCATION (olddecl),
1641 "previous declaration %q#D", olddecl);
1643 return error_mark_node;
1645 else if (!types_match)
1647 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl))
1648 /* These are certainly not duplicate declarations; they're
1649 from different scopes. */
1650 return NULL_TREE;
1652 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1654 /* The name of a class template may not be declared to refer to
1655 any other template, class, function, object, namespace, value,
1656 or type in the same scope. */
1657 if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == TYPE_DECL
1658 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1660 error ("conflicting declaration of template %q+#D", newdecl);
1661 inform (DECL_SOURCE_LOCATION (olddecl),
1662 "previous declaration %q#D", olddecl);
1663 return error_mark_node;
1665 else if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == FUNCTION_DECL
1666 && TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == FUNCTION_DECL
1667 && compparms (TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl))),
1668 TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (newdecl))))
1669 && comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1670 DECL_TEMPLATE_PARMS (olddecl))
1671 /* Template functions can be disambiguated by
1672 return type. */
1673 && same_type_p (TREE_TYPE (TREE_TYPE (newdecl)),
1674 TREE_TYPE (TREE_TYPE (olddecl)))
1675 // Template functions can also be disambiguated by
1676 // constraints.
1677 && equivalently_constrained (olddecl, newdecl))
1679 error ("ambiguating new declaration %q+#D", newdecl);
1680 inform (DECL_SOURCE_LOCATION (olddecl),
1681 "old declaration %q#D", olddecl);
1683 else if (check_concept_refinement (olddecl, newdecl))
1684 return error_mark_node;
1685 return NULL_TREE;
1687 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1689 if (DECL_EXTERN_C_P (newdecl) && DECL_EXTERN_C_P (olddecl))
1691 error ("conflicting declaration of C function %q+#D",
1692 newdecl);
1693 inform (DECL_SOURCE_LOCATION (olddecl),
1694 "previous declaration %q#D", olddecl);
1695 return NULL_TREE;
1697 /* For function versions, params and types match, but they
1698 are not ambiguous. */
1699 else if ((!DECL_FUNCTION_VERSIONED (newdecl)
1700 && !DECL_FUNCTION_VERSIONED (olddecl))
1701 // The functions have the same parameter types.
1702 && compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1703 TYPE_ARG_TYPES (TREE_TYPE (olddecl)))
1704 // And the same constraints.
1705 && equivalently_constrained (newdecl, olddecl))
1707 error ("ambiguating new declaration of %q+#D", newdecl);
1708 inform (DECL_SOURCE_LOCATION (olddecl),
1709 "old declaration %q#D", olddecl);
1710 return error_mark_node;
1712 else
1713 return NULL_TREE;
1715 else
1717 error ("conflicting declaration %q+#D", newdecl);
1718 inform (DECL_SOURCE_LOCATION (olddecl),
1719 "previous declaration as %q#D", olddecl);
1720 return error_mark_node;
1723 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1724 && ((DECL_TEMPLATE_SPECIALIZATION (olddecl)
1725 && (!DECL_TEMPLATE_INFO (newdecl)
1726 || (DECL_TI_TEMPLATE (newdecl)
1727 != DECL_TI_TEMPLATE (olddecl))))
1728 || (DECL_TEMPLATE_SPECIALIZATION (newdecl)
1729 && (!DECL_TEMPLATE_INFO (olddecl)
1730 || (DECL_TI_TEMPLATE (olddecl)
1731 != DECL_TI_TEMPLATE (newdecl))))))
1732 /* It's OK to have a template specialization and a non-template
1733 with the same type, or to have specializations of two
1734 different templates with the same type. Note that if one is a
1735 specialization, and the other is an instantiation of the same
1736 template, that we do not exit at this point. That situation
1737 can occur if we instantiate a template class, and then
1738 specialize one of its methods. This situation is valid, but
1739 the declarations must be merged in the usual way. */
1740 return NULL_TREE;
1741 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1742 && ((DECL_TEMPLATE_INSTANTIATION (olddecl)
1743 && !DECL_USE_TEMPLATE (newdecl))
1744 || (DECL_TEMPLATE_INSTANTIATION (newdecl)
1745 && !DECL_USE_TEMPLATE (olddecl))))
1746 /* One of the declarations is a template instantiation, and the
1747 other is not a template at all. That's OK. */
1748 return NULL_TREE;
1749 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
1751 /* In [namespace.alias] we have:
1753 In a declarative region, a namespace-alias-definition can be
1754 used to redefine a namespace-alias declared in that declarative
1755 region to refer only to the namespace to which it already
1756 refers.
1758 Therefore, if we encounter a second alias directive for the same
1759 alias, we can just ignore the second directive. */
1760 if (DECL_NAMESPACE_ALIAS (newdecl)
1761 && (DECL_NAMESPACE_ALIAS (newdecl)
1762 == DECL_NAMESPACE_ALIAS (olddecl)))
1763 return olddecl;
1765 /* Leave it to update_binding to merge or report error. */
1766 return NULL_TREE;
1768 else
1770 const char *errmsg = redeclaration_error_message (newdecl, olddecl);
1771 if (errmsg)
1773 error_at (DECL_SOURCE_LOCATION (newdecl), errmsg, newdecl);
1774 if (DECL_NAME (olddecl) != NULL_TREE)
1775 inform (DECL_SOURCE_LOCATION (olddecl),
1776 (DECL_INITIAL (olddecl) && namespace_bindings_p ())
1777 ? G_("%q#D previously defined here")
1778 : G_("%q#D previously declared here"), olddecl);
1779 return error_mark_node;
1781 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1782 && DECL_INITIAL (olddecl) != NULL_TREE
1783 && !prototype_p (TREE_TYPE (olddecl))
1784 && prototype_p (TREE_TYPE (newdecl)))
1786 /* Prototype decl follows defn w/o prototype. */
1787 if (warning_at (DECL_SOURCE_LOCATION (newdecl), 0,
1788 "prototype specified for %q#D", newdecl))
1789 inform (DECL_SOURCE_LOCATION (olddecl),
1790 "previous non-prototype definition here");
1792 else if (VAR_OR_FUNCTION_DECL_P (olddecl)
1793 && DECL_LANGUAGE (newdecl) != DECL_LANGUAGE (olddecl))
1795 /* [dcl.link]
1796 If two declarations of the same function or object
1797 specify different linkage-specifications ..., the program
1798 is ill-formed.... Except for functions with C++ linkage,
1799 a function declaration without a linkage specification
1800 shall not precede the first linkage specification for
1801 that function. A function can be declared without a
1802 linkage specification after an explicit linkage
1803 specification has been seen; the linkage explicitly
1804 specified in the earlier declaration is not affected by
1805 such a function declaration.
1807 DR 563 raises the question why the restrictions on
1808 functions should not also apply to objects. Older
1809 versions of G++ silently ignore the linkage-specification
1810 for this example:
1812 namespace N {
1813 extern int i;
1814 extern "C" int i;
1817 which is clearly wrong. Therefore, we now treat objects
1818 like functions. */
1819 if (current_lang_depth () == 0)
1821 /* There is no explicit linkage-specification, so we use
1822 the linkage from the previous declaration. */
1823 retrofit_lang_decl (newdecl);
1824 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
1826 else
1828 error ("conflicting declaration of %q+#D with %qL linkage",
1829 newdecl, DECL_LANGUAGE (newdecl));
1830 inform (DECL_SOURCE_LOCATION (olddecl),
1831 "previous declaration with %qL linkage",
1832 DECL_LANGUAGE (olddecl));
1836 if (DECL_LANG_SPECIFIC (olddecl) && DECL_USE_TEMPLATE (olddecl))
1838 else if (TREE_CODE (olddecl) == FUNCTION_DECL)
1840 /* Note: free functions, as TEMPLATE_DECLs, are handled below. */
1841 if (DECL_FUNCTION_MEMBER_P (olddecl)
1842 && (/* grokfndecl passes member function templates too
1843 as FUNCTION_DECLs. */
1844 DECL_TEMPLATE_INFO (olddecl)
1845 /* C++11 8.3.6/6.
1846 Default arguments for a member function of a class
1847 template shall be specified on the initial declaration
1848 of the member function within the class template. */
1849 || CLASSTYPE_TEMPLATE_INFO (CP_DECL_CONTEXT (olddecl))))
1850 check_redeclaration_no_default_args (newdecl);
1851 else
1853 tree t1 = FUNCTION_FIRST_USER_PARMTYPE (olddecl);
1854 tree t2 = FUNCTION_FIRST_USER_PARMTYPE (newdecl);
1855 int i = 1;
1857 for (; t1 && t1 != void_list_node;
1858 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2), i++)
1859 if (TREE_PURPOSE (t1) && TREE_PURPOSE (t2))
1861 if (1 == simple_cst_equal (TREE_PURPOSE (t1),
1862 TREE_PURPOSE (t2)))
1864 if (permerror (input_location,
1865 "default argument given for parameter "
1866 "%d of %q#D", i, newdecl))
1867 inform (DECL_SOURCE_LOCATION (olddecl),
1868 "previous specification in %q#D here",
1869 olddecl);
1871 else
1873 error ("default argument given for parameter %d "
1874 "of %q#D", i, newdecl);
1875 inform (DECL_SOURCE_LOCATION (olddecl),
1876 "previous specification in %q#D here",
1877 olddecl);
1884 /* Do not merge an implicit typedef with an explicit one. In:
1886 class A;
1888 typedef class A A __attribute__ ((foo));
1890 the attribute should apply only to the typedef. */
1891 if (TREE_CODE (olddecl) == TYPE_DECL
1892 && (DECL_IMPLICIT_TYPEDEF_P (olddecl)
1893 || DECL_IMPLICIT_TYPEDEF_P (newdecl)))
1894 return NULL_TREE;
1896 /* If new decl is `static' and an `extern' was seen previously,
1897 warn about it. */
1898 warn_extern_redeclared_static (newdecl, olddecl);
1900 if (!validate_constexpr_redeclaration (olddecl, newdecl))
1901 return error_mark_node;
1903 /* We have committed to returning 1 at this point. */
1904 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1906 /* Now that functions must hold information normally held
1907 by field decls, there is extra work to do so that
1908 declaration information does not get destroyed during
1909 definition. */
1910 if (DECL_VINDEX (olddecl))
1911 DECL_VINDEX (newdecl) = DECL_VINDEX (olddecl);
1912 if (DECL_CONTEXT (olddecl))
1913 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1914 DECL_STATIC_CONSTRUCTOR (newdecl) |= DECL_STATIC_CONSTRUCTOR (olddecl);
1915 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1916 DECL_PURE_VIRTUAL_P (newdecl) |= DECL_PURE_VIRTUAL_P (olddecl);
1917 DECL_VIRTUAL_P (newdecl) |= DECL_VIRTUAL_P (olddecl);
1918 DECL_INVALID_OVERRIDER_P (newdecl) |= DECL_INVALID_OVERRIDER_P (olddecl);
1919 DECL_FINAL_P (newdecl) |= DECL_FINAL_P (olddecl);
1920 DECL_OVERRIDE_P (newdecl) |= DECL_OVERRIDE_P (olddecl);
1921 DECL_THIS_STATIC (newdecl) |= DECL_THIS_STATIC (olddecl);
1922 if (DECL_OVERLOADED_OPERATOR_P (olddecl))
1923 DECL_OVERLOADED_OPERATOR_CODE_RAW (newdecl)
1924 = DECL_OVERLOADED_OPERATOR_CODE_RAW (olddecl);
1925 new_defines_function = DECL_INITIAL (newdecl) != NULL_TREE;
1927 /* Optionally warn about more than one declaration for the same
1928 name, but don't warn about a function declaration followed by a
1929 definition. */
1930 if (warn_redundant_decls && ! DECL_ARTIFICIAL (olddecl)
1931 && !(new_defines_function && DECL_INITIAL (olddecl) == NULL_TREE)
1932 /* Don't warn about extern decl followed by definition. */
1933 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl))
1934 /* Don't warn about friends, let add_friend take care of it. */
1935 && ! (newdecl_is_friend || DECL_FRIEND_P (olddecl))
1936 /* Don't warn about declaration followed by specialization. */
1937 && (! DECL_TEMPLATE_SPECIALIZATION (newdecl)
1938 || DECL_TEMPLATE_SPECIALIZATION (olddecl)))
1940 if (warning_at (DECL_SOURCE_LOCATION (newdecl),
1941 OPT_Wredundant_decls,
1942 "redundant redeclaration of %qD in same scope",
1943 newdecl))
1944 inform (DECL_SOURCE_LOCATION (olddecl),
1945 "previous declaration of %qD", olddecl);
1948 if (!(DECL_TEMPLATE_INSTANTIATION (olddecl)
1949 && DECL_TEMPLATE_SPECIALIZATION (newdecl)))
1951 if (DECL_DELETED_FN (newdecl))
1953 error ("deleted definition of %q+D", newdecl);
1954 inform (DECL_SOURCE_LOCATION (olddecl),
1955 "previous declaration of %qD", olddecl);
1957 DECL_DELETED_FN (newdecl) |= DECL_DELETED_FN (olddecl);
1961 /* Deal with C++: must preserve virtual function table size. */
1962 if (TREE_CODE (olddecl) == TYPE_DECL)
1964 tree newtype = TREE_TYPE (newdecl);
1965 tree oldtype = TREE_TYPE (olddecl);
1967 if (newtype != error_mark_node && oldtype != error_mark_node
1968 && TYPE_LANG_SPECIFIC (newtype) && TYPE_LANG_SPECIFIC (oldtype))
1969 CLASSTYPE_FRIEND_CLASSES (newtype)
1970 = CLASSTYPE_FRIEND_CLASSES (oldtype);
1972 DECL_ORIGINAL_TYPE (newdecl) = DECL_ORIGINAL_TYPE (olddecl);
1975 /* Copy all the DECL_... slots specified in the new decl
1976 except for any that we copy here from the old type. */
1977 DECL_ATTRIBUTES (newdecl)
1978 = (*targetm.merge_decl_attributes) (olddecl, newdecl);
1980 if (DECL_DECLARES_FUNCTION_P (olddecl) && DECL_DECLARES_FUNCTION_P (newdecl))
1982 olddecl_friend = DECL_FRIEND_P (olddecl);
1983 hidden_friend = (DECL_ANTICIPATED (olddecl)
1984 && DECL_HIDDEN_FRIEND_P (olddecl)
1985 && newdecl_is_friend);
1986 if (!hidden_friend)
1988 DECL_ANTICIPATED (olddecl) = 0;
1989 DECL_HIDDEN_FRIEND_P (olddecl) = 0;
1993 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1995 tree old_result;
1996 tree new_result;
1997 old_result = DECL_TEMPLATE_RESULT (olddecl);
1998 new_result = DECL_TEMPLATE_RESULT (newdecl);
1999 TREE_TYPE (olddecl) = TREE_TYPE (old_result);
2000 DECL_TEMPLATE_SPECIALIZATIONS (olddecl)
2001 = chainon (DECL_TEMPLATE_SPECIALIZATIONS (olddecl),
2002 DECL_TEMPLATE_SPECIALIZATIONS (newdecl));
2004 DECL_ATTRIBUTES (old_result)
2005 = (*targetm.merge_decl_attributes) (old_result, new_result);
2007 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
2009 /* Per C++11 8.3.6/4, default arguments cannot be added in later
2010 declarations of a function template. */
2011 if (DECL_SOURCE_LOCATION (newdecl)
2012 != DECL_SOURCE_LOCATION (olddecl))
2013 check_redeclaration_no_default_args (newdecl);
2015 check_default_args (newdecl);
2017 if (GNU_INLINE_P (old_result) != GNU_INLINE_P (new_result)
2018 && DECL_INITIAL (new_result))
2020 if (DECL_INITIAL (old_result))
2021 DECL_UNINLINABLE (old_result) = 1;
2022 else
2023 DECL_UNINLINABLE (old_result) = DECL_UNINLINABLE (new_result);
2024 DECL_EXTERNAL (old_result) = DECL_EXTERNAL (new_result);
2025 DECL_NOT_REALLY_EXTERN (old_result)
2026 = DECL_NOT_REALLY_EXTERN (new_result);
2027 DECL_INTERFACE_KNOWN (old_result)
2028 = DECL_INTERFACE_KNOWN (new_result);
2029 DECL_DECLARED_INLINE_P (old_result)
2030 = DECL_DECLARED_INLINE_P (new_result);
2031 DECL_DISREGARD_INLINE_LIMITS (old_result)
2032 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
2035 else
2037 DECL_DECLARED_INLINE_P (old_result)
2038 |= DECL_DECLARED_INLINE_P (new_result);
2039 DECL_DISREGARD_INLINE_LIMITS (old_result)
2040 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
2041 check_redeclaration_exception_specification (newdecl, olddecl);
2045 /* If the new declaration is a definition, update the file and
2046 line information on the declaration, and also make
2047 the old declaration the same definition. */
2048 if (DECL_INITIAL (new_result) != NULL_TREE)
2050 DECL_SOURCE_LOCATION (olddecl)
2051 = DECL_SOURCE_LOCATION (old_result)
2052 = DECL_SOURCE_LOCATION (newdecl);
2053 DECL_INITIAL (old_result) = DECL_INITIAL (new_result);
2054 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
2056 tree parm;
2057 DECL_ARGUMENTS (old_result)
2058 = DECL_ARGUMENTS (new_result);
2059 for (parm = DECL_ARGUMENTS (old_result); parm;
2060 parm = DECL_CHAIN (parm))
2061 DECL_CONTEXT (parm) = old_result;
2065 return olddecl;
2068 if (types_match)
2070 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2071 check_redeclaration_exception_specification (newdecl, olddecl);
2073 /* Automatically handles default parameters. */
2074 tree oldtype = TREE_TYPE (olddecl);
2075 tree newtype;
2077 /* For typedefs use the old type, as the new type's DECL_NAME points
2078 at newdecl, which will be ggc_freed. */
2079 if (TREE_CODE (newdecl) == TYPE_DECL)
2081 /* But NEWTYPE might have an attribute, honor that. */
2082 tree tem = TREE_TYPE (newdecl);
2083 newtype = oldtype;
2085 if (TYPE_USER_ALIGN (tem))
2087 if (TYPE_ALIGN (tem) > TYPE_ALIGN (newtype))
2088 SET_TYPE_ALIGN (newtype, TYPE_ALIGN (tem));
2089 TYPE_USER_ALIGN (newtype) = true;
2092 /* And remove the new type from the variants list. */
2093 if (TYPE_NAME (TREE_TYPE (newdecl)) == newdecl)
2095 tree remove = TREE_TYPE (newdecl);
2096 for (tree t = TYPE_MAIN_VARIANT (remove); ;
2097 t = TYPE_NEXT_VARIANT (t))
2098 if (TYPE_NEXT_VARIANT (t) == remove)
2100 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (remove);
2101 break;
2105 else
2106 /* Merge the data types specified in the two decls. */
2107 newtype = merge_types (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
2109 if (VAR_P (newdecl))
2111 DECL_THIS_EXTERN (newdecl) |= DECL_THIS_EXTERN (olddecl);
2112 /* For already initialized vars, TREE_READONLY could have been
2113 cleared in cp_finish_decl, because the var needs runtime
2114 initialization or destruction. Make sure not to set
2115 TREE_READONLY on it again. */
2116 if (DECL_INITIALIZED_P (olddecl)
2117 && !DECL_EXTERNAL (olddecl)
2118 && !TREE_READONLY (olddecl))
2119 TREE_READONLY (newdecl) = 0;
2120 DECL_INITIALIZED_P (newdecl) |= DECL_INITIALIZED_P (olddecl);
2121 DECL_NONTRIVIALLY_INITIALIZED_P (newdecl)
2122 |= DECL_NONTRIVIALLY_INITIALIZED_P (olddecl);
2123 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (newdecl)
2124 |= DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (olddecl);
2125 if (DECL_CLASS_SCOPE_P (olddecl))
2126 DECL_DECLARED_CONSTEXPR_P (newdecl)
2127 |= DECL_DECLARED_CONSTEXPR_P (olddecl);
2129 /* Merge the threadprivate attribute from OLDDECL into NEWDECL. */
2130 if (DECL_LANG_SPECIFIC (olddecl)
2131 && CP_DECL_THREADPRIVATE_P (olddecl))
2133 /* Allocate a LANG_SPECIFIC structure for NEWDECL, if needed. */
2134 retrofit_lang_decl (newdecl);
2135 CP_DECL_THREADPRIVATE_P (newdecl) = 1;
2139 /* An explicit specialization of a function template or of a member
2140 function of a class template can be declared transaction_safe
2141 independently of whether the corresponding template entity is declared
2142 transaction_safe. */
2143 if (flag_tm && TREE_CODE (newdecl) == FUNCTION_DECL
2144 && DECL_TEMPLATE_INSTANTIATION (olddecl)
2145 && DECL_TEMPLATE_SPECIALIZATION (newdecl)
2146 && tx_safe_fn_type_p (newtype)
2147 && !tx_safe_fn_type_p (TREE_TYPE (newdecl)))
2148 newtype = tx_unsafe_fn_variant (newtype);
2150 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = newtype;
2152 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2153 check_default_args (newdecl);
2155 /* Lay the type out, unless already done. */
2156 if (! same_type_p (newtype, oldtype)
2157 && TREE_TYPE (newdecl) != error_mark_node
2158 && !(processing_template_decl && uses_template_parms (newdecl)))
2159 layout_type (TREE_TYPE (newdecl));
2161 if ((VAR_P (newdecl)
2162 || TREE_CODE (newdecl) == PARM_DECL
2163 || TREE_CODE (newdecl) == RESULT_DECL
2164 || TREE_CODE (newdecl) == FIELD_DECL
2165 || TREE_CODE (newdecl) == TYPE_DECL)
2166 && !(processing_template_decl && uses_template_parms (newdecl)))
2167 layout_decl (newdecl, 0);
2169 /* Merge the type qualifiers. */
2170 if (TREE_READONLY (newdecl))
2171 TREE_READONLY (olddecl) = 1;
2172 if (TREE_THIS_VOLATILE (newdecl))
2173 TREE_THIS_VOLATILE (olddecl) = 1;
2174 if (TREE_NOTHROW (newdecl))
2175 TREE_NOTHROW (olddecl) = 1;
2177 /* Merge deprecatedness. */
2178 if (TREE_DEPRECATED (newdecl))
2179 TREE_DEPRECATED (olddecl) = 1;
2181 /* Preserve function specific target and optimization options */
2182 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2184 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl)
2185 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl))
2186 DECL_FUNCTION_SPECIFIC_TARGET (newdecl)
2187 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl);
2189 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl)
2190 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl))
2191 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl)
2192 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl);
2195 /* Merge the initialization information. */
2196 if (DECL_INITIAL (newdecl) == NULL_TREE
2197 && DECL_INITIAL (olddecl) != NULL_TREE)
2199 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2200 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2201 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2203 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
2204 DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl);
2208 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2210 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
2211 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
2212 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
2213 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
2214 TREE_NOTHROW (newdecl) |= TREE_NOTHROW (olddecl);
2215 DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
2216 DECL_IS_OPERATOR_NEW (newdecl) |= DECL_IS_OPERATOR_NEW (olddecl);
2217 DECL_PURE_P (newdecl) |= DECL_PURE_P (olddecl);
2218 TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
2219 DECL_LOOPING_CONST_OR_PURE_P (newdecl)
2220 |= DECL_LOOPING_CONST_OR_PURE_P (olddecl);
2221 /* Keep the old RTL. */
2222 COPY_DECL_RTL (olddecl, newdecl);
2224 else if (VAR_P (newdecl)
2225 && (DECL_SIZE (olddecl) || !DECL_SIZE (newdecl)))
2227 /* Keep the old RTL. We cannot keep the old RTL if the old
2228 declaration was for an incomplete object and the new
2229 declaration is not since many attributes of the RTL will
2230 change. */
2231 COPY_DECL_RTL (olddecl, newdecl);
2234 /* If cannot merge, then use the new type and qualifiers,
2235 and don't preserve the old rtl. */
2236 else
2238 /* Clean out any memory we had of the old declaration. */
2239 tree oldstatic = value_member (olddecl, static_aggregates);
2240 if (oldstatic)
2241 TREE_VALUE (oldstatic) = error_mark_node;
2243 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
2244 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
2245 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
2246 TREE_NOTHROW (olddecl) = TREE_NOTHROW (newdecl);
2247 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
2250 /* Merge the storage class information. */
2251 merge_weak (newdecl, olddecl);
2253 DECL_DEFER_OUTPUT (newdecl) |= DECL_DEFER_OUTPUT (olddecl);
2254 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
2255 TREE_STATIC (olddecl) = TREE_STATIC (newdecl) |= TREE_STATIC (olddecl);
2256 if (! DECL_EXTERNAL (olddecl))
2257 DECL_EXTERNAL (newdecl) = 0;
2258 if (! DECL_COMDAT (olddecl))
2259 DECL_COMDAT (newdecl) = 0;
2261 new_template_info = NULL_TREE;
2262 if (DECL_LANG_SPECIFIC (newdecl) && DECL_LANG_SPECIFIC (olddecl))
2264 bool new_redefines_gnu_inline = false;
2266 if (new_defines_function
2267 && ((DECL_INTERFACE_KNOWN (olddecl)
2268 && TREE_CODE (olddecl) == FUNCTION_DECL)
2269 || (TREE_CODE (olddecl) == TEMPLATE_DECL
2270 && (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl))
2271 == FUNCTION_DECL))))
2273 tree fn = olddecl;
2275 if (TREE_CODE (fn) == TEMPLATE_DECL)
2276 fn = DECL_TEMPLATE_RESULT (olddecl);
2278 new_redefines_gnu_inline = GNU_INLINE_P (fn) && DECL_INITIAL (fn);
2281 if (!new_redefines_gnu_inline)
2283 DECL_INTERFACE_KNOWN (newdecl) |= DECL_INTERFACE_KNOWN (olddecl);
2284 DECL_NOT_REALLY_EXTERN (newdecl) |= DECL_NOT_REALLY_EXTERN (olddecl);
2285 DECL_COMDAT (newdecl) |= DECL_COMDAT (olddecl);
2287 DECL_TEMPLATE_INSTANTIATED (newdecl)
2288 |= DECL_TEMPLATE_INSTANTIATED (olddecl);
2289 DECL_ODR_USED (newdecl) |= DECL_ODR_USED (olddecl);
2291 /* If the OLDDECL is an instantiation and/or specialization,
2292 then the NEWDECL must be too. But, it may not yet be marked
2293 as such if the caller has created NEWDECL, but has not yet
2294 figured out that it is a redeclaration. */
2295 if (!DECL_USE_TEMPLATE (newdecl))
2296 DECL_USE_TEMPLATE (newdecl) = DECL_USE_TEMPLATE (olddecl);
2298 /* Don't really know how much of the language-specific
2299 values we should copy from old to new. */
2300 DECL_IN_AGGR_P (newdecl) = DECL_IN_AGGR_P (olddecl);
2301 DECL_REPO_AVAILABLE_P (newdecl) = DECL_REPO_AVAILABLE_P (olddecl);
2302 DECL_INITIALIZED_IN_CLASS_P (newdecl)
2303 |= DECL_INITIALIZED_IN_CLASS_P (olddecl);
2305 if (LANG_DECL_HAS_MIN (newdecl))
2307 DECL_LANG_SPECIFIC (newdecl)->u.min.u2 =
2308 DECL_LANG_SPECIFIC (olddecl)->u.min.u2;
2309 if (DECL_TEMPLATE_INFO (newdecl))
2311 new_template_info = DECL_TEMPLATE_INFO (newdecl);
2312 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
2313 && DECL_TEMPLATE_SPECIALIZATION (newdecl))
2314 /* Remember the presence of explicit specialization args. */
2315 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (olddecl))
2316 = TINFO_USED_TEMPLATE_ID (new_template_info);
2318 DECL_TEMPLATE_INFO (newdecl) = DECL_TEMPLATE_INFO (olddecl);
2320 /* Only functions have these fields. */
2321 if (DECL_DECLARES_FUNCTION_P (newdecl))
2323 DECL_NONCONVERTING_P (newdecl) = DECL_NONCONVERTING_P (olddecl);
2324 DECL_BEFRIENDING_CLASSES (newdecl)
2325 = chainon (DECL_BEFRIENDING_CLASSES (newdecl),
2326 DECL_BEFRIENDING_CLASSES (olddecl));
2327 /* DECL_THUNKS is only valid for virtual functions,
2328 otherwise it is a DECL_FRIEND_CONTEXT. */
2329 if (DECL_VIRTUAL_P (newdecl))
2330 SET_DECL_THUNKS (newdecl, DECL_THUNKS (olddecl));
2332 /* Only variables have this field. */
2333 else if (VAR_P (newdecl)
2334 && VAR_HAD_UNKNOWN_BOUND (olddecl))
2335 SET_VAR_HAD_UNKNOWN_BOUND (newdecl);
2338 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2340 tree parm;
2342 /* Merge parameter attributes. */
2343 tree oldarg, newarg;
2344 for (oldarg = DECL_ARGUMENTS(olddecl),
2345 newarg = DECL_ARGUMENTS(newdecl);
2346 oldarg && newarg;
2347 oldarg = DECL_CHAIN(oldarg), newarg = DECL_CHAIN(newarg)) {
2348 DECL_ATTRIBUTES (newarg)
2349 = (*targetm.merge_decl_attributes) (oldarg, newarg);
2350 DECL_ATTRIBUTES (oldarg) = DECL_ATTRIBUTES (newarg);
2353 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
2354 && !DECL_TEMPLATE_INSTANTIATION (newdecl))
2356 /* If newdecl is not a specialization, then it is not a
2357 template-related function at all. And that means that we
2358 should have exited above, returning 0. */
2359 gcc_assert (DECL_TEMPLATE_SPECIALIZATION (newdecl));
2361 if (DECL_ODR_USED (olddecl))
2362 /* From [temp.expl.spec]:
2364 If a template, a member template or the member of a class
2365 template is explicitly specialized then that
2366 specialization shall be declared before the first use of
2367 that specialization that would cause an implicit
2368 instantiation to take place, in every translation unit in
2369 which such a use occurs. */
2370 error ("explicit specialization of %qD after first use",
2371 olddecl);
2373 SET_DECL_TEMPLATE_SPECIALIZATION (olddecl);
2374 DECL_COMDAT (newdecl) = (TREE_PUBLIC (newdecl)
2375 && DECL_DECLARED_INLINE_P (newdecl));
2377 /* Don't propagate visibility from the template to the
2378 specialization here. We'll do that in determine_visibility if
2379 appropriate. */
2380 DECL_VISIBILITY_SPECIFIED (olddecl) = 0;
2382 /* [temp.expl.spec/14] We don't inline explicit specialization
2383 just because the primary template says so. */
2385 /* But still keep DECL_DISREGARD_INLINE_LIMITS in sync with
2386 the always_inline attribute. */
2387 if (DECL_DISREGARD_INLINE_LIMITS (olddecl)
2388 && !DECL_DISREGARD_INLINE_LIMITS (newdecl))
2390 if (DECL_DECLARED_INLINE_P (newdecl))
2391 DECL_DISREGARD_INLINE_LIMITS (newdecl) = true;
2392 else
2393 DECL_ATTRIBUTES (newdecl)
2394 = remove_attribute ("always_inline",
2395 DECL_ATTRIBUTES (newdecl));
2398 else if (new_defines_function && DECL_INITIAL (olddecl))
2400 /* Never inline re-defined extern inline functions.
2401 FIXME: this could be better handled by keeping both
2402 function as separate declarations. */
2403 DECL_UNINLINABLE (newdecl) = 1;
2405 else
2407 if (DECL_PENDING_INLINE_P (olddecl))
2409 DECL_PENDING_INLINE_P (newdecl) = 1;
2410 DECL_PENDING_INLINE_INFO (newdecl)
2411 = DECL_PENDING_INLINE_INFO (olddecl);
2413 else if (DECL_PENDING_INLINE_P (newdecl))
2415 else if (DECL_SAVED_FUNCTION_DATA (newdecl) == NULL)
2416 DECL_SAVED_FUNCTION_DATA (newdecl)
2417 = DECL_SAVED_FUNCTION_DATA (olddecl);
2419 DECL_DECLARED_INLINE_P (newdecl) |= DECL_DECLARED_INLINE_P (olddecl);
2421 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
2422 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
2424 DECL_DISREGARD_INLINE_LIMITS (newdecl)
2425 = DECL_DISREGARD_INLINE_LIMITS (olddecl)
2426 = (DECL_DISREGARD_INLINE_LIMITS (newdecl)
2427 || DECL_DISREGARD_INLINE_LIMITS (olddecl));
2430 /* Preserve abstractness on cloned [cd]tors. */
2431 DECL_ABSTRACT_P (newdecl) = DECL_ABSTRACT_P (olddecl);
2433 /* Update newdecl's parms to point at olddecl. */
2434 for (parm = DECL_ARGUMENTS (newdecl); parm;
2435 parm = DECL_CHAIN (parm))
2436 DECL_CONTEXT (parm) = olddecl;
2438 if (! types_match)
2440 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
2441 COPY_DECL_ASSEMBLER_NAME (newdecl, olddecl);
2442 COPY_DECL_RTL (newdecl, olddecl);
2444 if (! types_match || new_defines_function)
2446 /* These need to be copied so that the names are available.
2447 Note that if the types do match, we'll preserve inline
2448 info and other bits, but if not, we won't. */
2449 DECL_ARGUMENTS (olddecl) = DECL_ARGUMENTS (newdecl);
2450 DECL_RESULT (olddecl) = DECL_RESULT (newdecl);
2452 /* If redeclaring a builtin function, it stays built in
2453 if newdecl is a gnu_inline definition, or if newdecl is just
2454 a declaration. */
2455 if (DECL_BUILT_IN (olddecl)
2456 && (new_defines_function ? GNU_INLINE_P (newdecl) : types_match))
2458 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
2459 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2460 /* If we're keeping the built-in definition, keep the rtl,
2461 regardless of declaration matches. */
2462 COPY_DECL_RTL (olddecl, newdecl);
2463 if (DECL_BUILT_IN_CLASS (newdecl) == BUILT_IN_NORMAL)
2465 enum built_in_function fncode = DECL_FUNCTION_CODE (newdecl);
2466 switch (fncode)
2468 /* If a compatible prototype of these builtin functions
2469 is seen, assume the runtime implements it with the
2470 expected semantics. */
2471 case BUILT_IN_STPCPY:
2472 if (builtin_decl_explicit_p (fncode))
2473 set_builtin_decl_implicit_p (fncode, true);
2474 break;
2475 default:
2476 if (builtin_decl_explicit_p (fncode))
2477 set_builtin_decl_declared_p (fncode, true);
2478 break;
2482 copy_attributes_to_builtin (newdecl);
2484 if (new_defines_function)
2485 /* If defining a function declared with other language
2486 linkage, use the previously declared language linkage. */
2487 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
2488 else if (types_match)
2490 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2491 /* Don't clear out the arguments if we're just redeclaring a
2492 function. */
2493 if (DECL_ARGUMENTS (olddecl))
2494 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
2497 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
2498 NAMESPACE_LEVEL (newdecl) = NAMESPACE_LEVEL (olddecl);
2500 /* Now preserve various other info from the definition. */
2501 TREE_ADDRESSABLE (newdecl) = TREE_ADDRESSABLE (olddecl);
2502 TREE_ASM_WRITTEN (newdecl) = TREE_ASM_WRITTEN (olddecl);
2503 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
2504 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
2506 /* Warn about conflicting visibility specifications. */
2507 if (DECL_VISIBILITY_SPECIFIED (olddecl)
2508 && DECL_VISIBILITY_SPECIFIED (newdecl)
2509 && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
2511 if (warning_at (DECL_SOURCE_LOCATION (newdecl), OPT_Wattributes,
2512 "%qD: visibility attribute ignored because it "
2513 "conflicts with previous declaration", newdecl))
2514 inform (DECL_SOURCE_LOCATION (olddecl),
2515 "previous declaration of %qD", olddecl);
2517 /* Choose the declaration which specified visibility. */
2518 if (DECL_VISIBILITY_SPECIFIED (olddecl))
2520 DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
2521 DECL_VISIBILITY_SPECIFIED (newdecl) = 1;
2523 /* Init priority used to be merged from newdecl to olddecl by the memcpy,
2524 so keep this behavior. */
2525 if (VAR_P (newdecl) && DECL_HAS_INIT_PRIORITY_P (newdecl))
2527 SET_DECL_INIT_PRIORITY (olddecl, DECL_INIT_PRIORITY (newdecl));
2528 DECL_HAS_INIT_PRIORITY_P (olddecl) = 1;
2530 /* Likewise for DECL_ALIGN, DECL_USER_ALIGN and DECL_PACKED. */
2531 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
2533 SET_DECL_ALIGN (newdecl, DECL_ALIGN (olddecl));
2534 DECL_USER_ALIGN (newdecl) |= DECL_USER_ALIGN (olddecl);
2536 DECL_USER_ALIGN (olddecl) = DECL_USER_ALIGN (newdecl);
2537 if (DECL_WARN_IF_NOT_ALIGN (olddecl)
2538 > DECL_WARN_IF_NOT_ALIGN (newdecl))
2539 SET_DECL_WARN_IF_NOT_ALIGN (newdecl,
2540 DECL_WARN_IF_NOT_ALIGN (olddecl));
2541 if (TREE_CODE (newdecl) == FIELD_DECL)
2542 DECL_PACKED (olddecl) = DECL_PACKED (newdecl);
2544 /* The DECL_LANG_SPECIFIC information in OLDDECL will be replaced
2545 with that from NEWDECL below. */
2546 if (DECL_LANG_SPECIFIC (olddecl))
2548 gcc_assert (DECL_LANG_SPECIFIC (olddecl)
2549 != DECL_LANG_SPECIFIC (newdecl));
2550 ggc_free (DECL_LANG_SPECIFIC (olddecl));
2553 /* Merge the USED information. */
2554 if (TREE_USED (olddecl))
2555 TREE_USED (newdecl) = 1;
2556 else if (TREE_USED (newdecl))
2557 TREE_USED (olddecl) = 1;
2558 if (VAR_P (newdecl))
2560 if (DECL_READ_P (olddecl))
2561 DECL_READ_P (newdecl) = 1;
2562 else if (DECL_READ_P (newdecl))
2563 DECL_READ_P (olddecl) = 1;
2565 if (DECL_PRESERVE_P (olddecl))
2566 DECL_PRESERVE_P (newdecl) = 1;
2567 else if (DECL_PRESERVE_P (newdecl))
2568 DECL_PRESERVE_P (olddecl) = 1;
2570 /* Merge the DECL_FUNCTION_VERSIONED information. newdecl will be copied
2571 to olddecl and deleted. */
2572 if (TREE_CODE (newdecl) == FUNCTION_DECL
2573 && DECL_FUNCTION_VERSIONED (olddecl))
2575 /* Set the flag for newdecl so that it gets copied to olddecl. */
2576 DECL_FUNCTION_VERSIONED (newdecl) = 1;
2577 /* newdecl will be purged after copying to olddecl and is no longer
2578 a version. */
2579 cgraph_node::delete_function_version_by_decl (newdecl);
2582 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2584 int function_size;
2585 struct symtab_node *snode = symtab_node::get (olddecl);
2587 function_size = sizeof (struct tree_decl_common);
2589 memcpy ((char *) olddecl + sizeof (struct tree_common),
2590 (char *) newdecl + sizeof (struct tree_common),
2591 function_size - sizeof (struct tree_common));
2593 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2594 (char *) newdecl + sizeof (struct tree_decl_common),
2595 sizeof (struct tree_function_decl) - sizeof (struct tree_decl_common));
2597 /* Preserve symtab node mapping. */
2598 olddecl->decl_with_vis.symtab_node = snode;
2600 if (new_template_info)
2601 /* If newdecl is a template instantiation, it is possible that
2602 the following sequence of events has occurred:
2604 o A friend function was declared in a class template. The
2605 class template was instantiated.
2607 o The instantiation of the friend declaration was
2608 recorded on the instantiation list, and is newdecl.
2610 o Later, however, instantiate_class_template called pushdecl
2611 on the newdecl to perform name injection. But, pushdecl in
2612 turn called duplicate_decls when it discovered that another
2613 declaration of a global function with the same name already
2614 existed.
2616 o Here, in duplicate_decls, we decided to clobber newdecl.
2618 If we're going to do that, we'd better make sure that
2619 olddecl, and not newdecl, is on the list of
2620 instantiations so that if we try to do the instantiation
2621 again we won't get the clobbered declaration. */
2622 reregister_specialization (newdecl,
2623 new_template_info,
2624 olddecl);
2626 else
2628 size_t size = tree_code_size (TREE_CODE (newdecl));
2630 memcpy ((char *) olddecl + sizeof (struct tree_common),
2631 (char *) newdecl + sizeof (struct tree_common),
2632 sizeof (struct tree_decl_common) - sizeof (struct tree_common));
2633 switch (TREE_CODE (newdecl))
2635 case LABEL_DECL:
2636 case VAR_DECL:
2637 case RESULT_DECL:
2638 case PARM_DECL:
2639 case FIELD_DECL:
2640 case TYPE_DECL:
2641 case CONST_DECL:
2643 struct symtab_node *snode = NULL;
2645 if (VAR_P (newdecl)
2646 && (TREE_STATIC (olddecl) || TREE_PUBLIC (olddecl)
2647 || DECL_EXTERNAL (olddecl)))
2648 snode = symtab_node::get (olddecl);
2649 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2650 (char *) newdecl + sizeof (struct tree_decl_common),
2651 size - sizeof (struct tree_decl_common)
2652 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
2653 if (VAR_P (newdecl))
2654 olddecl->decl_with_vis.symtab_node = snode;
2656 break;
2657 default:
2658 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2659 (char *) newdecl + sizeof (struct tree_decl_common),
2660 sizeof (struct tree_decl_non_common) - sizeof (struct tree_decl_common)
2661 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
2662 break;
2666 if (VAR_OR_FUNCTION_DECL_P (newdecl))
2668 if (DECL_EXTERNAL (olddecl)
2669 || TREE_PUBLIC (olddecl)
2670 || TREE_STATIC (olddecl))
2672 /* Merge the section attribute.
2673 We want to issue an error if the sections conflict but that must be
2674 done later in decl_attributes since we are called before attributes
2675 are assigned. */
2676 if (DECL_SECTION_NAME (newdecl) != NULL)
2677 set_decl_section_name (olddecl, DECL_SECTION_NAME (newdecl));
2679 if (DECL_ONE_ONLY (newdecl))
2681 struct symtab_node *oldsym, *newsym;
2682 if (TREE_CODE (olddecl) == FUNCTION_DECL)
2683 oldsym = cgraph_node::get_create (olddecl);
2684 else
2685 oldsym = varpool_node::get_create (olddecl);
2686 newsym = symtab_node::get (newdecl);
2687 oldsym->set_comdat_group (newsym->get_comdat_group ());
2691 if (VAR_P (newdecl)
2692 && CP_DECL_THREAD_LOCAL_P (newdecl))
2694 CP_DECL_THREAD_LOCAL_P (olddecl) = true;
2695 if (!processing_template_decl)
2696 set_decl_tls_model (olddecl, DECL_TLS_MODEL (newdecl));
2700 DECL_UID (olddecl) = olddecl_uid;
2701 if (olddecl_friend)
2702 DECL_FRIEND_P (olddecl) = 1;
2703 if (hidden_friend)
2705 DECL_ANTICIPATED (olddecl) = 1;
2706 DECL_HIDDEN_FRIEND_P (olddecl) = 1;
2709 /* NEWDECL contains the merged attribute lists.
2710 Update OLDDECL to be the same. */
2711 DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
2713 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
2714 so that encode_section_info has a chance to look at the new decl
2715 flags and attributes. */
2716 if (DECL_RTL_SET_P (olddecl)
2717 && (TREE_CODE (olddecl) == FUNCTION_DECL
2718 || (VAR_P (olddecl)
2719 && TREE_STATIC (olddecl))))
2720 make_decl_rtl (olddecl);
2722 /* The NEWDECL will no longer be needed. Because every out-of-class
2723 declaration of a member results in a call to duplicate_decls,
2724 freeing these nodes represents in a significant savings.
2726 Before releasing the node, be sore to remove function from symbol
2727 table that might have been inserted there to record comdat group.
2728 Be sure to however do not free DECL_STRUCT_FUNCTION because this
2729 structure is shared in between newdecl and oldecl. */
2730 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2731 DECL_STRUCT_FUNCTION (newdecl) = NULL;
2732 if (VAR_OR_FUNCTION_DECL_P (newdecl))
2734 struct symtab_node *snode = symtab_node::get (newdecl);
2735 if (snode)
2736 snode->remove ();
2739 /* Remove the associated constraints for newdecl, if any, before
2740 reclaiming memory. */
2741 if (flag_concepts)
2742 remove_constraints (newdecl);
2744 ggc_free (newdecl);
2746 return olddecl;
2749 /* Return zero if the declaration NEWDECL is valid
2750 when the declaration OLDDECL (assumed to be for the same name)
2751 has already been seen.
2752 Otherwise return an error message format string with a %s
2753 where the identifier should go. */
2755 static const char *
2756 redeclaration_error_message (tree newdecl, tree olddecl)
2758 if (TREE_CODE (newdecl) == TYPE_DECL)
2760 /* Because C++ can put things into name space for free,
2761 constructs like "typedef struct foo { ... } foo"
2762 would look like an erroneous redeclaration. */
2763 if (same_type_p (TREE_TYPE (newdecl), TREE_TYPE (olddecl)))
2764 return NULL;
2765 else
2766 return G_("redefinition of %q#D");
2768 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2770 /* If this is a pure function, its olddecl will actually be
2771 the original initialization to `0' (which we force to call
2772 abort()). Don't complain about redefinition in this case. */
2773 if (DECL_LANG_SPECIFIC (olddecl) && DECL_PURE_VIRTUAL_P (olddecl)
2774 && DECL_INITIAL (olddecl) == NULL_TREE)
2775 return NULL;
2777 /* If both functions come from different namespaces, this is not
2778 a redeclaration - this is a conflict with a used function. */
2779 if (DECL_NAMESPACE_SCOPE_P (olddecl)
2780 && DECL_CONTEXT (olddecl) != DECL_CONTEXT (newdecl)
2781 && ! decls_match (olddecl, newdecl))
2782 return G_("%qD conflicts with used function");
2784 /* We'll complain about linkage mismatches in
2785 warn_extern_redeclared_static. */
2787 /* Defining the same name twice is no good. */
2788 if (decl_defined_p (olddecl)
2789 && decl_defined_p (newdecl))
2791 if (DECL_NAME (olddecl) == NULL_TREE)
2792 return G_("%q#D not declared in class");
2793 else if (!GNU_INLINE_P (olddecl)
2794 || GNU_INLINE_P (newdecl))
2795 return G_("redefinition of %q#D");
2798 if (DECL_DECLARED_INLINE_P (olddecl) && DECL_DECLARED_INLINE_P (newdecl))
2800 bool olda = GNU_INLINE_P (olddecl);
2801 bool newa = GNU_INLINE_P (newdecl);
2803 if (olda != newa)
2805 if (newa)
2806 return G_("%q+D redeclared inline with "
2807 "%<gnu_inline%> attribute");
2808 else
2809 return G_("%q+D redeclared inline without "
2810 "%<gnu_inline%> attribute");
2814 check_abi_tag_redeclaration
2815 (olddecl, lookup_attribute ("abi_tag", DECL_ATTRIBUTES (olddecl)),
2816 lookup_attribute ("abi_tag", DECL_ATTRIBUTES (newdecl)));
2818 return NULL;
2820 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
2822 tree nt, ot;
2824 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
2826 if (COMPLETE_TYPE_P (TREE_TYPE (newdecl))
2827 && COMPLETE_TYPE_P (TREE_TYPE (olddecl)))
2828 return G_("redefinition of %q#D");
2829 return NULL;
2832 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != FUNCTION_DECL
2833 || (DECL_TEMPLATE_RESULT (newdecl)
2834 == DECL_TEMPLATE_RESULT (olddecl)))
2835 return NULL;
2837 nt = DECL_TEMPLATE_RESULT (newdecl);
2838 if (DECL_TEMPLATE_INFO (nt))
2839 nt = DECL_TEMPLATE_RESULT (template_for_substitution (nt));
2840 ot = DECL_TEMPLATE_RESULT (olddecl);
2841 if (DECL_TEMPLATE_INFO (ot))
2842 ot = DECL_TEMPLATE_RESULT (template_for_substitution (ot));
2843 if (DECL_INITIAL (nt) && DECL_INITIAL (ot)
2844 && (!GNU_INLINE_P (ot) || GNU_INLINE_P (nt)))
2845 return G_("redefinition of %q#D");
2847 if (DECL_DECLARED_INLINE_P (ot) && DECL_DECLARED_INLINE_P (nt))
2849 bool olda = GNU_INLINE_P (ot);
2850 bool newa = GNU_INLINE_P (nt);
2852 if (olda != newa)
2854 if (newa)
2855 return G_("%q+D redeclared inline with "
2856 "%<gnu_inline%> attribute");
2857 else
2858 return G_("%q+D redeclared inline without "
2859 "%<gnu_inline%> attribute");
2863 /* Core issue #226 (C++0x):
2865 If a friend function template declaration specifies a
2866 default template-argument, that declaration shall be a
2867 definition and shall be the only declaration of the
2868 function template in the translation unit. */
2869 if ((cxx_dialect != cxx98)
2870 && TREE_CODE (ot) == FUNCTION_DECL && DECL_FRIEND_P (ot)
2871 && !check_default_tmpl_args (nt, DECL_TEMPLATE_PARMS (newdecl),
2872 /*is_primary=*/true,
2873 /*is_partial=*/false,
2874 /*is_friend_decl=*/2))
2875 return G_("redeclaration of friend %q#D "
2876 "may not have default template arguments");
2878 return NULL;
2880 else if (VAR_P (newdecl)
2881 && CP_DECL_THREAD_LOCAL_P (newdecl) != CP_DECL_THREAD_LOCAL_P (olddecl)
2882 && (! DECL_LANG_SPECIFIC (olddecl)
2883 || ! CP_DECL_THREADPRIVATE_P (olddecl)
2884 || CP_DECL_THREAD_LOCAL_P (newdecl)))
2886 /* Only variables can be thread-local, and all declarations must
2887 agree on this property. */
2888 if (CP_DECL_THREAD_LOCAL_P (newdecl))
2889 return G_("thread-local declaration of %q#D follows "
2890 "non-thread-local declaration");
2891 else
2892 return G_("non-thread-local declaration of %q#D follows "
2893 "thread-local declaration");
2895 else if (toplevel_bindings_p () || DECL_NAMESPACE_SCOPE_P (newdecl))
2897 /* The objects have been declared at namespace scope. If either
2898 is a member of an anonymous union, then this is an invalid
2899 redeclaration. For example:
2901 int i;
2902 union { int i; };
2904 is invalid. */
2905 if ((VAR_P (newdecl) && DECL_ANON_UNION_VAR_P (newdecl))
2906 || (VAR_P (olddecl) && DECL_ANON_UNION_VAR_P (olddecl)))
2907 return G_("redeclaration of %q#D");
2908 /* If at least one declaration is a reference, there is no
2909 conflict. For example:
2911 int i = 3;
2912 extern int i;
2914 is valid. */
2915 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2916 return NULL;
2918 /* Static data member declared outside a class definition
2919 if the variable is defined within the class with constexpr
2920 specifier is declaration rather than definition (and
2921 deprecated). */
2922 if (cxx_dialect >= cxx17
2923 && DECL_CLASS_SCOPE_P (olddecl)
2924 && DECL_DECLARED_CONSTEXPR_P (olddecl)
2925 && !DECL_INITIAL (newdecl))
2927 DECL_EXTERNAL (newdecl) = 1;
2928 /* For now, only warn with explicit -Wdeprecated. */
2929 if (global_options_set.x_warn_deprecated
2930 && warning_at (DECL_SOURCE_LOCATION (newdecl), OPT_Wdeprecated,
2931 "redundant redeclaration of %<constexpr%> static "
2932 "data member %qD", newdecl))
2933 inform (DECL_SOURCE_LOCATION (olddecl),
2934 "previous declaration of %qD", olddecl);
2935 return NULL;
2938 /* Reject two definitions. */
2939 return G_("redefinition of %q#D");
2941 else
2943 /* Objects declared with block scope: */
2944 /* Reject two definitions, and reject a definition
2945 together with an external reference. */
2946 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl)))
2947 return G_("redeclaration of %q#D");
2948 return NULL;
2953 /* Hash and equality functions for the named_label table. */
2955 hashval_t
2956 named_label_hash::hash (const value_type entry)
2958 return IDENTIFIER_HASH_VALUE (entry->name);
2961 bool
2962 named_label_hash::equal (const value_type entry, compare_type name)
2964 return name == entry->name;
2967 /* Look for a label named ID in the current function. If one cannot
2968 be found, create one. Return the named_label_entry, or NULL on
2969 failure. */
2971 static named_label_entry *
2972 lookup_label_1 (tree id, bool making_local_p)
2974 /* You can't use labels at global scope. */
2975 if (current_function_decl == NULL_TREE)
2977 error ("label %qE referenced outside of any function", id);
2978 return NULL;
2981 if (!named_labels)
2982 named_labels = hash_table<named_label_hash>::create_ggc (13);
2984 hashval_t hash = IDENTIFIER_HASH_VALUE (id);
2985 named_label_entry **slot
2986 = named_labels->find_slot_with_hash (id, hash, INSERT);
2987 named_label_entry *old = *slot;
2989 if (old && old->label_decl)
2991 if (!making_local_p)
2992 return old;
2994 if (old->binding_level == current_binding_level)
2996 error ("local label %qE conflicts with existing label", id);
2997 inform (DECL_SOURCE_LOCATION (old->label_decl), "previous label");
2998 return NULL;
3002 /* We are making a new decl, create or reuse the named_label_entry */
3003 named_label_entry *ent = NULL;
3004 if (old && !old->label_decl)
3005 ent = old;
3006 else
3008 ent = ggc_cleared_alloc<named_label_entry> ();
3009 ent->name = id;
3010 ent->outer = old;
3011 *slot = ent;
3014 /* Now create the LABEL_DECL. */
3015 tree decl = build_decl (input_location, LABEL_DECL, id, void_type_node);
3017 DECL_CONTEXT (decl) = current_function_decl;
3018 SET_DECL_MODE (decl, VOIDmode);
3019 if (making_local_p)
3021 C_DECLARED_LABEL_FLAG (decl) = true;
3022 DECL_CHAIN (decl) = current_binding_level->names;
3023 current_binding_level->names = decl;
3026 ent->label_decl = decl;
3028 return ent;
3031 /* Wrapper for lookup_label_1. */
3033 tree
3034 lookup_label (tree id)
3036 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
3037 named_label_entry *ent = lookup_label_1 (id, false);
3038 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
3039 return ent ? ent->label_decl : NULL_TREE;
3042 tree
3043 declare_local_label (tree id)
3045 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
3046 named_label_entry *ent = lookup_label_1 (id, true);
3047 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
3048 return ent ? ent->label_decl : NULL_TREE;
3051 /* Returns nonzero if it is ill-formed to jump past the declaration of
3052 DECL. Returns 2 if it's also a real problem. */
3054 static int
3055 decl_jump_unsafe (tree decl)
3057 /* [stmt.dcl]/3: A program that jumps from a point where a local variable
3058 with automatic storage duration is not in scope to a point where it is
3059 in scope is ill-formed unless the variable has scalar type, class type
3060 with a trivial default constructor and a trivial destructor, a
3061 cv-qualified version of one of these types, or an array of one of the
3062 preceding types and is declared without an initializer (8.5). */
3063 tree type = TREE_TYPE (decl);
3065 if (!VAR_P (decl) || TREE_STATIC (decl)
3066 || type == error_mark_node)
3067 return 0;
3069 if (DECL_NONTRIVIALLY_INITIALIZED_P (decl)
3070 || variably_modified_type_p (type, NULL_TREE))
3071 return 2;
3073 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
3074 return 1;
3076 return 0;
3079 /* A subroutine of check_previous_goto_1 and check_goto to identify a branch
3080 to the user. */
3082 static bool
3083 identify_goto (tree decl, location_t loc, const location_t *locus,
3084 diagnostic_t diag_kind)
3086 bool complained
3087 = emit_diagnostic (diag_kind, loc, 0,
3088 decl ? N_("jump to label %qD")
3089 : N_("jump to case label"), decl);
3090 if (complained && locus)
3091 inform (*locus, " from here");
3092 return complained;
3095 /* Check that a single previously seen jump to a newly defined label
3096 is OK. DECL is the LABEL_DECL or 0; LEVEL is the binding_level for
3097 the jump context; NAMES are the names in scope in LEVEL at the jump
3098 context; LOCUS is the source position of the jump or 0. Returns
3099 true if all is well. */
3101 static bool
3102 check_previous_goto_1 (tree decl, cp_binding_level* level, tree names,
3103 bool exited_omp, const location_t *locus)
3105 cp_binding_level *b;
3106 bool complained = false;
3107 int identified = 0;
3108 bool saw_eh = false, saw_omp = false, saw_tm = false, saw_cxif = false;
3110 if (exited_omp)
3112 complained = identify_goto (decl, input_location, locus, DK_ERROR);
3113 if (complained)
3114 inform (input_location, " exits OpenMP structured block");
3115 saw_omp = true;
3116 identified = 2;
3119 for (b = current_binding_level; b ; b = b->level_chain)
3121 tree new_decls, old_decls = (b == level ? names : NULL_TREE);
3123 for (new_decls = b->names; new_decls != old_decls;
3124 new_decls = (DECL_P (new_decls) ? DECL_CHAIN (new_decls)
3125 : TREE_CHAIN (new_decls)))
3127 int problem = decl_jump_unsafe (new_decls);
3128 if (! problem)
3129 continue;
3131 if (!identified)
3133 complained = identify_goto (decl, input_location, locus,
3134 DK_PERMERROR);
3135 identified = 1;
3137 if (complained)
3139 if (problem > 1)
3140 inform (DECL_SOURCE_LOCATION (new_decls),
3141 " crosses initialization of %q#D", new_decls);
3142 else
3143 inform (DECL_SOURCE_LOCATION (new_decls),
3144 " enters scope of %q#D, which has "
3145 "non-trivial destructor", new_decls);
3149 if (b == level)
3150 break;
3152 const char *inf = NULL;
3153 location_t loc = input_location;
3154 switch (b->kind)
3156 case sk_try:
3157 if (!saw_eh)
3158 inf = N_("enters try block");
3159 saw_eh = true;
3160 break;
3162 case sk_catch:
3163 if (!saw_eh)
3164 inf = N_("enters catch block");
3165 saw_eh = true;
3166 break;
3168 case sk_omp:
3169 if (!saw_omp)
3170 inf = N_("enters OpenMP structured block");
3171 saw_omp = true;
3172 break;
3174 case sk_transaction:
3175 if (!saw_tm)
3176 inf = N_("enters synchronized or atomic statement");
3177 saw_tm = true;
3178 break;
3180 case sk_block:
3181 if (!saw_cxif && level_for_constexpr_if (b->level_chain))
3183 inf = N_("enters constexpr if statement");
3184 loc = EXPR_LOCATION (b->level_chain->this_entity);
3185 saw_cxif = true;
3187 break;
3189 default:
3190 break;
3193 if (inf)
3195 if (identified < 2)
3196 complained = identify_goto (decl, input_location, locus, DK_ERROR);
3197 identified = 2;
3198 if (complained)
3199 inform (loc, " %s", inf);
3203 return !identified;
3206 static void
3207 check_previous_goto (tree decl, struct named_label_use_entry *use)
3209 check_previous_goto_1 (decl, use->binding_level,
3210 use->names_in_scope, use->in_omp_scope,
3211 &use->o_goto_locus);
3214 static bool
3215 check_switch_goto (cp_binding_level* level)
3217 return check_previous_goto_1 (NULL_TREE, level, level->names, false, NULL);
3220 /* Check that a new jump to a label DECL is OK. Called by
3221 finish_goto_stmt. */
3223 void
3224 check_goto (tree decl)
3226 /* We can't know where a computed goto is jumping.
3227 So we assume that it's OK. */
3228 if (TREE_CODE (decl) != LABEL_DECL)
3229 return;
3231 /* We didn't record any information about this label when we created it,
3232 and there's not much point since it's trivial to analyze as a return. */
3233 if (decl == cdtor_label)
3234 return;
3236 hashval_t hash = IDENTIFIER_HASH_VALUE (DECL_NAME (decl));
3237 named_label_entry **slot
3238 = named_labels->find_slot_with_hash (DECL_NAME (decl), hash, NO_INSERT);
3239 named_label_entry *ent = *slot;
3241 /* If the label hasn't been defined yet, defer checking. */
3242 if (! DECL_INITIAL (decl))
3244 /* Don't bother creating another use if the last goto had the
3245 same data, and will therefore create the same set of errors. */
3246 if (ent->uses
3247 && ent->uses->names_in_scope == current_binding_level->names)
3248 return;
3250 named_label_use_entry *new_use
3251 = ggc_alloc<named_label_use_entry> ();
3252 new_use->binding_level = current_binding_level;
3253 new_use->names_in_scope = current_binding_level->names;
3254 new_use->o_goto_locus = input_location;
3255 new_use->in_omp_scope = false;
3257 new_use->next = ent->uses;
3258 ent->uses = new_use;
3259 return;
3262 bool saw_catch = false, complained = false;
3263 int identified = 0;
3264 tree bad;
3265 unsigned ix;
3267 if (ent->in_try_scope || ent->in_catch_scope || ent->in_transaction_scope
3268 || ent->in_constexpr_if
3269 || ent->in_omp_scope || !vec_safe_is_empty (ent->bad_decls))
3271 diagnostic_t diag_kind = DK_PERMERROR;
3272 if (ent->in_try_scope || ent->in_catch_scope || ent->in_constexpr_if
3273 || ent->in_transaction_scope || ent->in_omp_scope)
3274 diag_kind = DK_ERROR;
3275 complained = identify_goto (decl, DECL_SOURCE_LOCATION (decl),
3276 &input_location, diag_kind);
3277 identified = 1 + (diag_kind == DK_ERROR);
3280 FOR_EACH_VEC_SAFE_ELT (ent->bad_decls, ix, bad)
3282 int u = decl_jump_unsafe (bad);
3284 if (u > 1 && DECL_ARTIFICIAL (bad))
3286 /* Can't skip init of __exception_info. */
3287 if (identified == 1)
3289 complained = identify_goto (decl, DECL_SOURCE_LOCATION (decl),
3290 &input_location, DK_ERROR);
3291 identified = 2;
3293 if (complained)
3294 inform (DECL_SOURCE_LOCATION (bad), " enters catch block");
3295 saw_catch = true;
3297 else if (complained)
3299 if (u > 1)
3300 inform (DECL_SOURCE_LOCATION (bad),
3301 " skips initialization of %q#D", bad);
3302 else
3303 inform (DECL_SOURCE_LOCATION (bad),
3304 " enters scope of %q#D which has "
3305 "non-trivial destructor", bad);
3309 if (complained)
3311 if (ent->in_try_scope)
3312 inform (input_location, " enters try block");
3313 else if (ent->in_catch_scope && !saw_catch)
3314 inform (input_location, " enters catch block");
3315 else if (ent->in_transaction_scope)
3316 inform (input_location, " enters synchronized or atomic statement");
3317 else if (ent->in_constexpr_if)
3318 inform (input_location, " enters constexpr if statement");
3321 if (ent->in_omp_scope)
3323 if (complained)
3324 inform (input_location, " enters OpenMP structured block");
3326 else if (flag_openmp)
3327 for (cp_binding_level *b = current_binding_level; b ; b = b->level_chain)
3329 if (b == ent->binding_level)
3330 break;
3331 if (b->kind == sk_omp)
3333 if (identified < 2)
3335 complained = identify_goto (decl,
3336 DECL_SOURCE_LOCATION (decl),
3337 &input_location, DK_ERROR);
3338 identified = 2;
3340 if (complained)
3341 inform (input_location, " exits OpenMP structured block");
3342 break;
3347 /* Check that a return is ok wrt OpenMP structured blocks.
3348 Called by finish_return_stmt. Returns true if all is well. */
3350 bool
3351 check_omp_return (void)
3353 for (cp_binding_level *b = current_binding_level; b ; b = b->level_chain)
3354 if (b->kind == sk_omp)
3356 error ("invalid exit from OpenMP structured block");
3357 return false;
3359 else if (b->kind == sk_function_parms)
3360 break;
3361 return true;
3364 /* Define a label, specifying the location in the source file.
3365 Return the LABEL_DECL node for the label. */
3367 static tree
3368 define_label_1 (location_t location, tree name)
3370 /* After labels, make any new cleanups in the function go into their
3371 own new (temporary) binding contour. */
3372 for (cp_binding_level *p = current_binding_level;
3373 p->kind != sk_function_parms;
3374 p = p->level_chain)
3375 p->more_cleanups_ok = 0;
3377 named_label_entry *ent = lookup_label_1 (name, false);
3378 tree decl = ent->label_decl;
3380 if (DECL_INITIAL (decl) != NULL_TREE)
3382 error ("duplicate label %qD", decl);
3383 return error_mark_node;
3385 else
3387 /* Mark label as having been defined. */
3388 DECL_INITIAL (decl) = error_mark_node;
3389 /* Say where in the source. */
3390 DECL_SOURCE_LOCATION (decl) = location;
3392 ent->binding_level = current_binding_level;
3393 ent->names_in_scope = current_binding_level->names;
3395 for (named_label_use_entry *use = ent->uses; use; use = use->next)
3396 check_previous_goto (decl, use);
3397 ent->uses = NULL;
3400 return decl;
3403 /* Wrapper for define_label_1. */
3405 tree
3406 define_label (location_t location, tree name)
3408 bool running = timevar_cond_start (TV_NAME_LOOKUP);
3409 tree ret = define_label_1 (location, name);
3410 timevar_cond_stop (TV_NAME_LOOKUP, running);
3411 return ret;
3415 struct cp_switch
3417 cp_binding_level *level;
3418 struct cp_switch *next;
3419 /* The SWITCH_STMT being built. */
3420 tree switch_stmt;
3421 /* A splay-tree mapping the low element of a case range to the high
3422 element, or NULL_TREE if there is no high element. Used to
3423 determine whether or not a new case label duplicates an old case
3424 label. We need a tree, rather than simply a hash table, because
3425 of the GNU case range extension. */
3426 splay_tree cases;
3427 /* Remember whether there was a case value that is outside the
3428 range of the original type of the controlling expression. */
3429 bool outside_range_p;
3432 /* A stack of the currently active switch statements. The innermost
3433 switch statement is on the top of the stack. There is no need to
3434 mark the stack for garbage collection because it is only active
3435 during the processing of the body of a function, and we never
3436 collect at that point. */
3438 static struct cp_switch *switch_stack;
3440 /* Called right after a switch-statement condition is parsed.
3441 SWITCH_STMT is the switch statement being parsed. */
3443 void
3444 push_switch (tree switch_stmt)
3446 struct cp_switch *p = XNEW (struct cp_switch);
3447 p->level = current_binding_level;
3448 p->next = switch_stack;
3449 p->switch_stmt = switch_stmt;
3450 p->cases = splay_tree_new (case_compare, NULL, NULL);
3451 p->outside_range_p = false;
3452 switch_stack = p;
3455 void
3456 pop_switch (void)
3458 struct cp_switch *cs = switch_stack;
3459 location_t switch_location;
3461 /* Emit warnings as needed. */
3462 switch_location = EXPR_LOC_OR_LOC (cs->switch_stmt, input_location);
3463 const bool bool_cond_p
3464 = (SWITCH_STMT_TYPE (cs->switch_stmt)
3465 && TREE_CODE (SWITCH_STMT_TYPE (cs->switch_stmt)) == BOOLEAN_TYPE);
3466 if (!processing_template_decl)
3467 c_do_switch_warnings (cs->cases, switch_location,
3468 SWITCH_STMT_TYPE (cs->switch_stmt),
3469 SWITCH_STMT_COND (cs->switch_stmt),
3470 bool_cond_p, cs->outside_range_p);
3472 splay_tree_delete (cs->cases);
3473 switch_stack = switch_stack->next;
3474 free (cs);
3477 /* Convert a case constant VALUE in a switch to the type TYPE of the switch
3478 condition. Note that if TYPE and VALUE are already integral we don't
3479 really do the conversion because the language-independent
3480 warning/optimization code will work better that way. */
3482 static tree
3483 case_conversion (tree type, tree value)
3485 if (value == NULL_TREE)
3486 return value;
3488 if (cxx_dialect >= cxx11
3489 && (SCOPED_ENUM_P (type)
3490 || !INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (value))))
3492 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
3493 type = type_promotes_to (type);
3494 value = (perform_implicit_conversion_flags
3495 (type, value, tf_warning_or_error,
3496 LOOKUP_IMPLICIT | LOOKUP_NO_NON_INTEGRAL));
3498 return cxx_constant_value (value);
3501 /* Note that we've seen a definition of a case label, and complain if this
3502 is a bad place for one. */
3504 tree
3505 finish_case_label (location_t loc, tree low_value, tree high_value)
3507 tree cond, r;
3508 cp_binding_level *p;
3509 tree type;
3511 if (processing_template_decl)
3513 tree label;
3515 /* For templates, just add the case label; we'll do semantic
3516 analysis at instantiation-time. */
3517 label = build_decl (loc, LABEL_DECL, NULL_TREE, NULL_TREE);
3518 return add_stmt (build_case_label (low_value, high_value, label));
3521 /* Find the condition on which this switch statement depends. */
3522 cond = SWITCH_STMT_COND (switch_stack->switch_stmt);
3523 if (cond && TREE_CODE (cond) == TREE_LIST)
3524 cond = TREE_VALUE (cond);
3526 if (!check_switch_goto (switch_stack->level))
3527 return error_mark_node;
3529 type = SWITCH_STMT_TYPE (switch_stack->switch_stmt);
3531 low_value = case_conversion (type, low_value);
3532 high_value = case_conversion (type, high_value);
3534 r = c_add_case_label (loc, switch_stack->cases, cond, type,
3535 low_value, high_value,
3536 &switch_stack->outside_range_p);
3538 /* After labels, make any new cleanups in the function go into their
3539 own new (temporary) binding contour. */
3540 for (p = current_binding_level;
3541 p->kind != sk_function_parms;
3542 p = p->level_chain)
3543 p->more_cleanups_ok = 0;
3545 return r;
3548 struct typename_info {
3549 tree scope;
3550 tree name;
3551 tree template_id;
3552 bool enum_p;
3553 bool class_p;
3556 struct typename_hasher : ggc_ptr_hash<tree_node>
3558 typedef typename_info *compare_type;
3560 /* Hash a TYPENAME_TYPE. */
3562 static hashval_t
3563 hash (tree t)
3565 hashval_t hash;
3567 hash = (htab_hash_pointer (TYPE_CONTEXT (t))
3568 ^ htab_hash_pointer (TYPE_IDENTIFIER (t)));
3570 return hash;
3573 /* Compare two TYPENAME_TYPEs. */
3575 static bool
3576 equal (tree t1, const typename_info *t2)
3578 return (TYPE_IDENTIFIER (t1) == t2->name
3579 && TYPE_CONTEXT (t1) == t2->scope
3580 && TYPENAME_TYPE_FULLNAME (t1) == t2->template_id
3581 && TYPENAME_IS_ENUM_P (t1) == t2->enum_p
3582 && TYPENAME_IS_CLASS_P (t1) == t2->class_p);
3586 /* Build a TYPENAME_TYPE. If the type is `typename T::t', CONTEXT is
3587 the type of `T', NAME is the IDENTIFIER_NODE for `t'.
3589 Returns the new TYPENAME_TYPE. */
3591 static GTY (()) hash_table<typename_hasher> *typename_htab;
3593 tree
3594 build_typename_type (tree context, tree name, tree fullname,
3595 enum tag_types tag_type)
3597 tree t;
3598 tree d;
3599 typename_info ti;
3600 tree *e;
3601 hashval_t hash;
3603 if (typename_htab == NULL)
3604 typename_htab = hash_table<typename_hasher>::create_ggc (61);
3606 ti.scope = FROB_CONTEXT (context);
3607 ti.name = name;
3608 ti.template_id = fullname;
3609 ti.enum_p = tag_type == enum_type;
3610 ti.class_p = (tag_type == class_type
3611 || tag_type == record_type
3612 || tag_type == union_type);
3613 hash = (htab_hash_pointer (ti.scope)
3614 ^ htab_hash_pointer (ti.name));
3616 /* See if we already have this type. */
3617 e = typename_htab->find_slot_with_hash (&ti, hash, INSERT);
3618 if (*e)
3619 t = *e;
3620 else
3622 /* Build the TYPENAME_TYPE. */
3623 t = cxx_make_type (TYPENAME_TYPE);
3624 TYPE_CONTEXT (t) = ti.scope;
3625 TYPENAME_TYPE_FULLNAME (t) = ti.template_id;
3626 TYPENAME_IS_ENUM_P (t) = ti.enum_p;
3627 TYPENAME_IS_CLASS_P (t) = ti.class_p;
3629 /* Build the corresponding TYPE_DECL. */
3630 d = build_decl (input_location, TYPE_DECL, name, t);
3631 TYPE_NAME (TREE_TYPE (d)) = d;
3632 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
3633 DECL_CONTEXT (d) = FROB_CONTEXT (context);
3634 DECL_ARTIFICIAL (d) = 1;
3636 /* Store it in the hash table. */
3637 *e = t;
3639 /* TYPENAME_TYPEs must always be compared structurally, because
3640 they may or may not resolve down to another type depending on
3641 the currently open classes. */
3642 SET_TYPE_STRUCTURAL_EQUALITY (t);
3645 return t;
3648 /* Resolve `typename CONTEXT::NAME'. TAG_TYPE indicates the tag
3649 provided to name the type. Returns an appropriate type, unless an
3650 error occurs, in which case error_mark_node is returned. If we
3651 locate a non-artificial TYPE_DECL and TF_KEEP_TYPE_DECL is set, we
3652 return that, rather than the _TYPE it corresponds to, in other
3653 cases we look through the type decl. If TF_ERROR is set, complain
3654 about errors, otherwise be quiet. */
3656 tree
3657 make_typename_type (tree context, tree name, enum tag_types tag_type,
3658 tsubst_flags_t complain)
3660 tree fullname;
3661 tree t;
3662 bool want_template;
3664 if (name == error_mark_node
3665 || context == NULL_TREE
3666 || context == error_mark_node)
3667 return error_mark_node;
3669 if (TYPE_P (name))
3671 if (!(TYPE_LANG_SPECIFIC (name)
3672 && (CLASSTYPE_IS_TEMPLATE (name)
3673 || CLASSTYPE_USE_TEMPLATE (name))))
3674 name = TYPE_IDENTIFIER (name);
3675 else
3676 /* Create a TEMPLATE_ID_EXPR for the type. */
3677 name = build_nt (TEMPLATE_ID_EXPR,
3678 CLASSTYPE_TI_TEMPLATE (name),
3679 CLASSTYPE_TI_ARGS (name));
3681 else if (TREE_CODE (name) == TYPE_DECL)
3682 name = DECL_NAME (name);
3684 fullname = name;
3686 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
3688 name = TREE_OPERAND (name, 0);
3689 if (DECL_TYPE_TEMPLATE_P (name))
3690 name = TREE_OPERAND (fullname, 0) = DECL_NAME (name);
3691 if (TREE_CODE (name) != IDENTIFIER_NODE)
3693 if (complain & tf_error)
3694 error ("%qD is not a type", name);
3695 return error_mark_node;
3698 if (TREE_CODE (name) == TEMPLATE_DECL)
3700 if (complain & tf_error)
3701 error ("%qD used without template parameters", name);
3702 return error_mark_node;
3704 gcc_assert (identifier_p (name));
3705 gcc_assert (TYPE_P (context));
3707 if (!MAYBE_CLASS_TYPE_P (context))
3709 if (complain & tf_error)
3710 error ("%q#T is not a class", context);
3711 return error_mark_node;
3714 /* When the CONTEXT is a dependent type, NAME could refer to a
3715 dependent base class of CONTEXT. But look inside it anyway
3716 if CONTEXT is a currently open scope, in case it refers to a
3717 member of the current instantiation or a non-dependent base;
3718 lookup will stop when we hit a dependent base. */
3719 if (!dependent_scope_p (context))
3720 /* We should only set WANT_TYPE when we're a nested typename type.
3721 Then we can give better diagnostics if we find a non-type. */
3722 t = lookup_field (context, name, 2, /*want_type=*/true);
3723 else
3724 t = NULL_TREE;
3726 if ((!t || TREE_CODE (t) == TREE_LIST) && dependent_type_p (context))
3727 return build_typename_type (context, name, fullname, tag_type);
3729 want_template = TREE_CODE (fullname) == TEMPLATE_ID_EXPR;
3731 if (!t)
3733 if (complain & tf_error)
3735 if (!COMPLETE_TYPE_P (context))
3736 cxx_incomplete_type_error (NULL_TREE, context);
3737 else
3738 error (want_template ? G_("no class template named %q#T in %q#T")
3739 : G_("no type named %q#T in %q#T"), name, context);
3741 return error_mark_node;
3744 /* Pull out the template from an injected-class-name (or multiple). */
3745 if (want_template)
3746 t = maybe_get_template_decl_from_type_decl (t);
3748 if (TREE_CODE (t) == TREE_LIST)
3750 if (complain & tf_error)
3752 error ("lookup of %qT in %qT is ambiguous", name, context);
3753 print_candidates (t);
3755 return error_mark_node;
3758 if (want_template && !DECL_TYPE_TEMPLATE_P (t))
3760 if (complain & tf_error)
3761 error ("%<typename %T::%D%> names %q#T, which is not a class template",
3762 context, name, t);
3763 return error_mark_node;
3765 if (!want_template && TREE_CODE (t) != TYPE_DECL)
3767 if (complain & tf_error)
3768 error ("%<typename %T::%D%> names %q#T, which is not a type",
3769 context, name, t);
3770 return error_mark_node;
3773 if (!perform_or_defer_access_check (TYPE_BINFO (context), t, t, complain))
3774 return error_mark_node;
3776 /* If we are currently parsing a template and if T is a typedef accessed
3777 through CONTEXT then we need to remember and check access of T at
3778 template instantiation time. */
3779 add_typedef_to_current_template_for_access_check (t, context, input_location);
3781 if (want_template)
3782 return lookup_template_class (t, TREE_OPERAND (fullname, 1),
3783 NULL_TREE, context,
3784 /*entering_scope=*/0,
3785 complain | tf_user);
3787 if (DECL_ARTIFICIAL (t) || !(complain & tf_keep_type_decl))
3788 t = TREE_TYPE (t);
3790 maybe_record_typedef_use (t);
3792 return t;
3795 /* Resolve `CONTEXT::template NAME'. Returns a TEMPLATE_DECL if the name
3796 can be resolved or an UNBOUND_CLASS_TEMPLATE, unless an error occurs,
3797 in which case error_mark_node is returned.
3799 If PARM_LIST is non-NULL, also make sure that the template parameter
3800 list of TEMPLATE_DECL matches.
3802 If COMPLAIN zero, don't complain about any errors that occur. */
3804 tree
3805 make_unbound_class_template (tree context, tree name, tree parm_list,
3806 tsubst_flags_t complain)
3808 tree t;
3809 tree d;
3811 if (TYPE_P (name))
3812 name = TYPE_IDENTIFIER (name);
3813 else if (DECL_P (name))
3814 name = DECL_NAME (name);
3815 gcc_assert (identifier_p (name));
3817 if (!dependent_type_p (context)
3818 || currently_open_class (context))
3820 tree tmpl = NULL_TREE;
3822 if (MAYBE_CLASS_TYPE_P (context))
3823 tmpl = lookup_field (context, name, 0, false);
3825 if (tmpl && TREE_CODE (tmpl) == TYPE_DECL)
3826 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
3828 if (!tmpl || !DECL_TYPE_TEMPLATE_P (tmpl))
3830 if (complain & tf_error)
3831 error ("no class template named %q#T in %q#T", name, context);
3832 return error_mark_node;
3835 if (parm_list
3836 && !comp_template_parms (DECL_TEMPLATE_PARMS (tmpl), parm_list))
3838 if (complain & tf_error)
3840 error ("template parameters do not match template %qD", tmpl);
3841 inform (DECL_SOURCE_LOCATION (tmpl),
3842 "%qD declared here", tmpl);
3844 return error_mark_node;
3847 if (!perform_or_defer_access_check (TYPE_BINFO (context), tmpl, tmpl,
3848 complain))
3849 return error_mark_node;
3851 return tmpl;
3854 /* Build the UNBOUND_CLASS_TEMPLATE. */
3855 t = cxx_make_type (UNBOUND_CLASS_TEMPLATE);
3856 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
3857 TREE_TYPE (t) = NULL_TREE;
3858 SET_TYPE_STRUCTURAL_EQUALITY (t);
3860 /* Build the corresponding TEMPLATE_DECL. */
3861 d = build_decl (input_location, TEMPLATE_DECL, name, t);
3862 TYPE_NAME (TREE_TYPE (d)) = d;
3863 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
3864 DECL_CONTEXT (d) = FROB_CONTEXT (context);
3865 DECL_ARTIFICIAL (d) = 1;
3866 DECL_TEMPLATE_PARMS (d) = parm_list;
3868 return t;
3873 /* Push the declarations of builtin types into the global namespace.
3874 RID_INDEX is the index of the builtin type in the array
3875 RID_POINTERS. NAME is the name used when looking up the builtin
3876 type. TYPE is the _TYPE node for the builtin type.
3878 The calls to set_global_binding below should be
3879 eliminated. Built-in types should not be looked up name; their
3880 names are keywords that the parser can recognize. However, there
3881 is code in c-common.c that uses identifier_global_value to look up
3882 built-in types by name. */
3884 void
3885 record_builtin_type (enum rid rid_index,
3886 const char* name,
3887 tree type)
3889 tree decl = NULL_TREE;
3891 if (name)
3893 tree tname = get_identifier (name);
3894 tree tdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, tname, type);
3895 DECL_ARTIFICIAL (tdecl) = 1;
3896 set_global_binding (tdecl);
3897 decl = tdecl;
3900 if ((int) rid_index < (int) RID_MAX)
3901 if (tree rname = ridpointers[(int) rid_index])
3902 if (!decl || DECL_NAME (decl) != rname)
3904 tree rdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, rname, type);
3905 DECL_ARTIFICIAL (rdecl) = 1;
3906 set_global_binding (rdecl);
3907 if (!decl)
3908 decl = rdecl;
3911 if (decl)
3913 if (!TYPE_NAME (type))
3914 TYPE_NAME (type) = decl;
3915 debug_hooks->type_decl (decl, 0);
3919 /* Push a type into the namespace so that the back ends ignore it. */
3921 static void
3922 record_unknown_type (tree type, const char* name)
3924 tree decl = pushdecl (build_decl (UNKNOWN_LOCATION,
3925 TYPE_DECL, get_identifier (name), type));
3926 /* Make sure the "unknown type" typedecl gets ignored for debug info. */
3927 DECL_IGNORED_P (decl) = 1;
3928 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
3929 TYPE_SIZE (type) = TYPE_SIZE (void_type_node);
3930 SET_TYPE_ALIGN (type, 1);
3931 TYPE_USER_ALIGN (type) = 0;
3932 SET_TYPE_MODE (type, TYPE_MODE (void_type_node));
3935 /* Create all the predefined identifiers. */
3937 static void
3938 initialize_predefined_identifiers (void)
3940 struct predefined_identifier
3942 const char *name; /* Name. */
3943 tree *node; /* Node to store it in. */
3944 cp_identifier_kind kind; /* Kind of identifier. */
3947 /* A table of identifiers to create at startup. */
3948 static const predefined_identifier predefined_identifiers[] = {
3949 {"C++", &lang_name_cplusplus, cik_normal},
3950 {"C", &lang_name_c, cik_normal},
3951 /* Some of these names have a trailing space so that it is
3952 impossible for them to conflict with names written by users. */
3953 {"__ct ", &ctor_identifier, cik_ctor},
3954 {"__ct_base ", &base_ctor_identifier, cik_ctor},
3955 {"__ct_comp ", &complete_ctor_identifier, cik_ctor},
3956 {"__dt ", &dtor_identifier, cik_dtor},
3957 {"__dt_base ", &base_dtor_identifier, cik_dtor},
3958 {"__dt_comp ", &complete_dtor_identifier, cik_dtor},
3959 {"__dt_del ", &deleting_dtor_identifier, cik_dtor},
3960 {"__conv_op ", &conv_op_identifier, cik_conv_op},
3961 {"__in_chrg", &in_charge_identifier, cik_normal},
3962 {"this", &this_identifier, cik_normal},
3963 {"__delta", &delta_identifier, cik_normal},
3964 {"__pfn", &pfn_identifier, cik_normal},
3965 {"_vptr", &vptr_identifier, cik_normal},
3966 {"__vtt_parm", &vtt_parm_identifier, cik_normal},
3967 {"::", &global_identifier, cik_normal},
3968 {"std", &std_identifier, cik_normal},
3969 /* The demangler expects anonymous namespaces to be called
3970 something starting with '_GLOBAL__N_'. It no longer needs
3971 to be unique to the TU. */
3972 {"_GLOBAL__N_1", &anon_identifier, cik_normal},
3973 {"auto", &auto_identifier, cik_normal},
3974 {"decltype(auto)", &decltype_auto_identifier, cik_normal},
3975 {"initializer_list", &init_list_identifier, cik_normal},
3976 {NULL, NULL, cik_normal}
3979 for (const predefined_identifier *pid = predefined_identifiers;
3980 pid->name; ++pid)
3982 *pid->node = get_identifier (pid->name);
3983 /* Some of these identifiers already have a special kind. */
3984 if (pid->kind != cik_normal)
3985 set_identifier_kind (*pid->node, pid->kind);
3989 /* Create the predefined scalar types of C,
3990 and some nodes representing standard constants (0, 1, (void *)0).
3991 Initialize the global binding level.
3992 Make definitions for built-in primitive functions. */
3994 void
3995 cxx_init_decl_processing (void)
3997 tree void_ftype;
3998 tree void_ftype_ptr;
4000 /* Create all the identifiers we need. */
4001 initialize_predefined_identifiers ();
4003 /* Create the global variables. */
4004 push_to_top_level ();
4006 current_function_decl = NULL_TREE;
4007 current_binding_level = NULL;
4008 /* Enter the global namespace. */
4009 gcc_assert (global_namespace == NULL_TREE);
4010 global_namespace = build_lang_decl (NAMESPACE_DECL, global_identifier,
4011 void_type_node);
4012 TREE_PUBLIC (global_namespace) = 1;
4013 DECL_CONTEXT (global_namespace)
4014 = build_translation_unit_decl (get_identifier (main_input_filename));
4015 debug_hooks->register_main_translation_unit
4016 (DECL_CONTEXT (global_namespace));
4017 begin_scope (sk_namespace, global_namespace);
4018 current_namespace = global_namespace;
4020 if (flag_visibility_ms_compat)
4021 default_visibility = VISIBILITY_HIDDEN;
4023 /* Initially, C. */
4024 current_lang_name = lang_name_c;
4026 /* Create the `std' namespace. */
4027 push_namespace (std_identifier);
4028 std_node = current_namespace;
4029 pop_namespace ();
4031 flag_noexcept_type = (cxx_dialect >= cxx17);
4033 c_common_nodes_and_builtins ();
4035 integer_two_node = build_int_cst (NULL_TREE, 2);
4037 /* Guess at the initial static decls size. */
4038 vec_alloc (static_decls, 500);
4040 /* ... and keyed classes. */
4041 vec_alloc (keyed_classes, 100);
4043 record_builtin_type (RID_BOOL, "bool", boolean_type_node);
4044 truthvalue_type_node = boolean_type_node;
4045 truthvalue_false_node = boolean_false_node;
4046 truthvalue_true_node = boolean_true_node;
4048 empty_except_spec = build_tree_list (NULL_TREE, NULL_TREE);
4049 noexcept_true_spec = build_tree_list (boolean_true_node, NULL_TREE);
4050 noexcept_false_spec = build_tree_list (boolean_false_node, NULL_TREE);
4051 noexcept_deferred_spec = build_tree_list (make_node (DEFERRED_NOEXCEPT),
4052 NULL_TREE);
4054 #if 0
4055 record_builtin_type (RID_MAX, NULL, string_type_node);
4056 #endif
4058 delta_type_node = ptrdiff_type_node;
4059 vtable_index_type = ptrdiff_type_node;
4061 vtt_parm_type = build_pointer_type (const_ptr_type_node);
4062 void_ftype = build_function_type_list (void_type_node, NULL_TREE);
4063 void_ftype_ptr = build_function_type_list (void_type_node,
4064 ptr_type_node, NULL_TREE);
4065 void_ftype_ptr
4066 = build_exception_variant (void_ftype_ptr, empty_except_spec);
4068 /* Create the conversion operator marker. This operator's DECL_NAME
4069 is in the identifier table, so we can use identifier equality to
4070 find it. */
4071 conv_op_marker = build_lang_decl (FUNCTION_DECL, conv_op_identifier,
4072 void_ftype);
4074 /* C++ extensions */
4076 unknown_type_node = make_node (LANG_TYPE);
4077 record_unknown_type (unknown_type_node, "unknown type");
4079 /* Indirecting an UNKNOWN_TYPE node yields an UNKNOWN_TYPE node. */
4080 TREE_TYPE (unknown_type_node) = unknown_type_node;
4082 /* Looking up TYPE_POINTER_TO and TYPE_REFERENCE_TO yield the same
4083 result. */
4084 TYPE_POINTER_TO (unknown_type_node) = unknown_type_node;
4085 TYPE_REFERENCE_TO (unknown_type_node) = unknown_type_node;
4087 init_list_type_node = make_node (LANG_TYPE);
4088 record_unknown_type (init_list_type_node, "init list");
4091 /* Make sure we get a unique function type, so we can give
4092 its pointer type a name. (This wins for gdb.) */
4093 tree vfunc_type = make_node (FUNCTION_TYPE);
4094 TREE_TYPE (vfunc_type) = integer_type_node;
4095 TYPE_ARG_TYPES (vfunc_type) = NULL_TREE;
4096 layout_type (vfunc_type);
4098 vtable_entry_type = build_pointer_type (vfunc_type);
4100 record_builtin_type (RID_MAX, "__vtbl_ptr_type", vtable_entry_type);
4102 vtbl_type_node
4103 = build_cplus_array_type (vtable_entry_type, NULL_TREE);
4104 layout_type (vtbl_type_node);
4105 vtbl_type_node = cp_build_qualified_type (vtbl_type_node, TYPE_QUAL_CONST);
4106 record_builtin_type (RID_MAX, NULL, vtbl_type_node);
4107 vtbl_ptr_type_node = build_pointer_type (vtable_entry_type);
4108 layout_type (vtbl_ptr_type_node);
4109 record_builtin_type (RID_MAX, NULL, vtbl_ptr_type_node);
4111 push_namespace (get_identifier ("__cxxabiv1"));
4112 abi_node = current_namespace;
4113 pop_namespace ();
4115 global_type_node = make_node (LANG_TYPE);
4116 record_unknown_type (global_type_node, "global type");
4118 any_targ_node = make_node (LANG_TYPE);
4119 record_unknown_type (any_targ_node, "any type");
4121 /* Now, C++. */
4122 current_lang_name = lang_name_cplusplus;
4124 if (aligned_new_threshold > 1
4125 && !pow2p_hwi (aligned_new_threshold))
4127 error ("-faligned-new=%d is not a power of two", aligned_new_threshold);
4128 aligned_new_threshold = 1;
4130 if (aligned_new_threshold == -1)
4131 aligned_new_threshold = (cxx_dialect >= cxx17) ? 1 : 0;
4132 if (aligned_new_threshold == 1)
4133 aligned_new_threshold = malloc_alignment () / BITS_PER_UNIT;
4136 tree newattrs, extvisattr;
4137 tree newtype, deltype;
4138 tree ptr_ftype_sizetype;
4139 tree new_eh_spec;
4141 ptr_ftype_sizetype
4142 = build_function_type_list (ptr_type_node, size_type_node, NULL_TREE);
4143 if (cxx_dialect == cxx98)
4145 tree bad_alloc_id;
4146 tree bad_alloc_type_node;
4147 tree bad_alloc_decl;
4149 push_namespace (std_identifier);
4150 bad_alloc_id = get_identifier ("bad_alloc");
4151 bad_alloc_type_node = make_class_type (RECORD_TYPE);
4152 TYPE_CONTEXT (bad_alloc_type_node) = current_namespace;
4153 bad_alloc_decl
4154 = create_implicit_typedef (bad_alloc_id, bad_alloc_type_node);
4155 DECL_CONTEXT (bad_alloc_decl) = current_namespace;
4156 pop_namespace ();
4158 new_eh_spec
4159 = add_exception_specifier (NULL_TREE, bad_alloc_type_node, -1);
4161 else
4162 new_eh_spec = noexcept_false_spec;
4164 /* Ensure attribs.c is initialized. */
4165 init_attributes ();
4167 /* Ensure constraint.cc is initialized. */
4168 init_constraint_processing ();
4170 extvisattr = build_tree_list (get_identifier ("externally_visible"),
4171 NULL_TREE);
4172 newattrs = tree_cons (get_identifier ("alloc_size"),
4173 build_tree_list (NULL_TREE, integer_one_node),
4174 extvisattr);
4175 newtype = cp_build_type_attribute_variant (ptr_ftype_sizetype, newattrs);
4176 newtype = build_exception_variant (newtype, new_eh_spec);
4177 deltype = cp_build_type_attribute_variant (void_ftype_ptr, extvisattr);
4178 deltype = build_exception_variant (deltype, empty_except_spec);
4179 tree opnew = push_cp_library_fn (NEW_EXPR, newtype, 0);
4180 DECL_IS_MALLOC (opnew) = 1;
4181 DECL_IS_OPERATOR_NEW (opnew) = 1;
4182 opnew = push_cp_library_fn (VEC_NEW_EXPR, newtype, 0);
4183 DECL_IS_MALLOC (opnew) = 1;
4184 DECL_IS_OPERATOR_NEW (opnew) = 1;
4185 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4186 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4187 if (flag_sized_deallocation)
4189 /* Also push the sized deallocation variants:
4190 void operator delete(void*, std::size_t) throw();
4191 void operator delete[](void*, std::size_t) throw(); */
4192 tree void_ftype_ptr_size
4193 = build_function_type_list (void_type_node, ptr_type_node,
4194 size_type_node, NULL_TREE);
4195 deltype = cp_build_type_attribute_variant (void_ftype_ptr_size,
4196 extvisattr);
4197 deltype = build_exception_variant (deltype, empty_except_spec);
4198 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4199 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4202 if (aligned_new_threshold)
4204 push_namespace (std_identifier);
4205 tree align_id = get_identifier ("align_val_t");
4206 align_type_node = start_enum (align_id, NULL_TREE, size_type_node,
4207 NULL_TREE, /*scoped*/true, NULL);
4208 pop_namespace ();
4210 /* operator new (size_t, align_val_t); */
4211 newtype = build_function_type_list (ptr_type_node, size_type_node,
4212 align_type_node, NULL_TREE);
4213 newtype = cp_build_type_attribute_variant (newtype, newattrs);
4214 newtype = build_exception_variant (newtype, new_eh_spec);
4215 opnew = push_cp_library_fn (NEW_EXPR, newtype, 0);
4216 DECL_IS_MALLOC (opnew) = 1;
4217 DECL_IS_OPERATOR_NEW (opnew) = 1;
4218 opnew = push_cp_library_fn (VEC_NEW_EXPR, newtype, 0);
4219 DECL_IS_MALLOC (opnew) = 1;
4220 DECL_IS_OPERATOR_NEW (opnew) = 1;
4222 /* operator delete (void *, align_val_t); */
4223 deltype = build_function_type_list (void_type_node, ptr_type_node,
4224 align_type_node, NULL_TREE);
4225 deltype = cp_build_type_attribute_variant (deltype, extvisattr);
4226 deltype = build_exception_variant (deltype, empty_except_spec);
4227 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4228 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4230 if (flag_sized_deallocation)
4232 /* operator delete (void *, size_t, align_val_t); */
4233 deltype = build_function_type_list (void_type_node, ptr_type_node,
4234 size_type_node, align_type_node,
4235 NULL_TREE);
4236 deltype = cp_build_type_attribute_variant (deltype, extvisattr);
4237 deltype = build_exception_variant (deltype, empty_except_spec);
4238 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4239 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4243 nullptr_type_node = make_node (NULLPTR_TYPE);
4244 TYPE_SIZE (nullptr_type_node) = bitsize_int (GET_MODE_BITSIZE (ptr_mode));
4245 TYPE_SIZE_UNIT (nullptr_type_node) = size_int (GET_MODE_SIZE (ptr_mode));
4246 TYPE_UNSIGNED (nullptr_type_node) = 1;
4247 TYPE_PRECISION (nullptr_type_node) = GET_MODE_BITSIZE (ptr_mode);
4248 if (abi_version_at_least (9))
4249 SET_TYPE_ALIGN (nullptr_type_node, GET_MODE_ALIGNMENT (ptr_mode));
4250 SET_TYPE_MODE (nullptr_type_node, ptr_mode);
4251 record_builtin_type (RID_MAX, "decltype(nullptr)", nullptr_type_node);
4252 nullptr_node = build_int_cst (nullptr_type_node, 0);
4255 abort_fndecl
4256 = build_library_fn_ptr ("__cxa_pure_virtual", void_ftype,
4257 ECF_NORETURN | ECF_NOTHROW | ECF_COLD);
4259 /* Perform other language dependent initializations. */
4260 init_class_processing ();
4261 init_rtti_processing ();
4262 init_template_processing ();
4264 if (flag_exceptions)
4265 init_exception_processing ();
4267 if (! supports_one_only ())
4268 flag_weak = 0;
4270 make_fname_decl = cp_make_fname_decl;
4271 start_fname_decls ();
4273 /* Show we use EH for cleanups. */
4274 if (flag_exceptions)
4275 using_eh_for_cleanups ();
4278 /* Generate an initializer for a function naming variable from
4279 NAME. NAME may be NULL, to indicate a dependent name. TYPE_P is
4280 filled in with the type of the init. */
4282 tree
4283 cp_fname_init (const char* name, tree *type_p)
4285 tree domain = NULL_TREE;
4286 tree type;
4287 tree init = NULL_TREE;
4288 size_t length = 0;
4290 if (name)
4292 length = strlen (name);
4293 domain = build_index_type (size_int (length));
4294 init = build_string (length + 1, name);
4297 type = cp_build_qualified_type (char_type_node, TYPE_QUAL_CONST);
4298 type = build_cplus_array_type (type, domain);
4300 *type_p = type;
4302 if (init)
4303 TREE_TYPE (init) = type;
4304 else
4305 init = error_mark_node;
4307 return init;
4310 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give
4311 the decl, LOC is the location to give the decl, NAME is the
4312 initialization string and TYPE_DEP indicates whether NAME depended
4313 on the type of the function. We make use of that to detect
4314 __PRETTY_FUNCTION__ inside a template fn. This is being done lazily
4315 at the point of first use, so we mustn't push the decl now. */
4317 static tree
4318 cp_make_fname_decl (location_t loc, tree id, int type_dep)
4320 const char *const name = (type_dep && processing_template_decl
4321 ? NULL : fname_as_string (type_dep));
4322 tree type;
4323 tree init = cp_fname_init (name, &type);
4324 tree decl = build_decl (loc, VAR_DECL, id, type);
4326 if (name)
4327 free (CONST_CAST (char *, name));
4329 TREE_STATIC (decl) = 1;
4330 TREE_READONLY (decl) = 1;
4331 DECL_ARTIFICIAL (decl) = 1;
4333 TREE_USED (decl) = 1;
4335 if (current_function_decl)
4337 DECL_CONTEXT (decl) = current_function_decl;
4338 decl = pushdecl_outermost_localscope (decl);
4339 cp_finish_decl (decl, init, /*init_const_expr_p=*/false, NULL_TREE,
4340 LOOKUP_ONLYCONVERTING);
4342 else
4344 DECL_THIS_STATIC (decl) = true;
4345 pushdecl_top_level_and_finish (decl, init);
4348 return decl;
4351 static tree
4352 builtin_function_1 (tree decl, tree context, bool is_global)
4354 tree id = DECL_NAME (decl);
4355 const char *name = IDENTIFIER_POINTER (id);
4357 retrofit_lang_decl (decl);
4359 DECL_ARTIFICIAL (decl) = 1;
4360 SET_DECL_LANGUAGE (decl, lang_c);
4361 /* Runtime library routines are, by definition, available in an
4362 external shared object. */
4363 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
4364 DECL_VISIBILITY_SPECIFIED (decl) = 1;
4366 DECL_CONTEXT (decl) = context;
4368 /* A function in the user's namespace should have an explicit
4369 declaration before it is used. Mark the built-in function as
4370 anticipated but not actually declared. */
4371 if (name[0] != '_' || name[1] != '_')
4372 DECL_ANTICIPATED (decl) = 1;
4373 else if (strncmp (name + 2, "builtin_", strlen ("builtin_")) != 0)
4375 size_t len = strlen (name);
4377 /* Treat __*_chk fortification functions as anticipated as well,
4378 unless they are __builtin_*. */
4379 if (len > strlen ("___chk")
4380 && memcmp (name + len - strlen ("_chk"),
4381 "_chk", strlen ("_chk") + 1) == 0)
4382 DECL_ANTICIPATED (decl) = 1;
4385 if (is_global)
4386 pushdecl_top_level (decl);
4387 else
4388 pushdecl (decl);
4390 return decl;
4393 tree
4394 cxx_builtin_function (tree decl)
4396 tree id = DECL_NAME (decl);
4397 const char *name = IDENTIFIER_POINTER (id);
4398 /* All builtins that don't begin with an '_' should additionally
4399 go in the 'std' namespace. */
4400 if (name[0] != '_')
4402 tree decl2 = copy_node(decl);
4403 push_namespace (std_identifier);
4404 builtin_function_1 (decl2, std_node, false);
4405 pop_namespace ();
4408 return builtin_function_1 (decl, NULL_TREE, false);
4411 /* Like cxx_builtin_function, but guarantee the function is added to the global
4412 scope. This is to allow function specific options to add new machine
4413 dependent builtins when the target ISA changes via attribute((target(...)))
4414 which saves space on program startup if the program does not use non-generic
4415 ISAs. */
4417 tree
4418 cxx_builtin_function_ext_scope (tree decl)
4421 tree id = DECL_NAME (decl);
4422 const char *name = IDENTIFIER_POINTER (id);
4423 /* All builtins that don't begin with an '_' should additionally
4424 go in the 'std' namespace. */
4425 if (name[0] != '_')
4427 tree decl2 = copy_node(decl);
4428 push_namespace (std_identifier);
4429 builtin_function_1 (decl2, std_node, true);
4430 pop_namespace ();
4433 return builtin_function_1 (decl, NULL_TREE, true);
4436 /* Generate a FUNCTION_DECL with the typical flags for a runtime library
4437 function. Not called directly. */
4439 static tree
4440 build_library_fn (tree name, enum tree_code operator_code, tree type,
4441 int ecf_flags)
4443 tree fn = build_lang_decl (FUNCTION_DECL, name, type);
4444 DECL_EXTERNAL (fn) = 1;
4445 TREE_PUBLIC (fn) = 1;
4446 DECL_ARTIFICIAL (fn) = 1;
4447 DECL_OVERLOADED_OPERATOR_CODE_RAW (fn)
4448 = OVL_OP_INFO (false, operator_code)->ovl_op_code;
4449 SET_DECL_LANGUAGE (fn, lang_c);
4450 /* Runtime library routines are, by definition, available in an
4451 external shared object. */
4452 DECL_VISIBILITY (fn) = VISIBILITY_DEFAULT;
4453 DECL_VISIBILITY_SPECIFIED (fn) = 1;
4454 set_call_expr_flags (fn, ecf_flags);
4455 return fn;
4458 /* Returns the _DECL for a library function with C++ linkage. */
4460 static tree
4461 build_cp_library_fn (tree name, enum tree_code operator_code, tree type,
4462 int ecf_flags)
4464 tree fn = build_library_fn (name, operator_code, type, ecf_flags);
4465 DECL_CONTEXT (fn) = FROB_CONTEXT (current_namespace);
4466 SET_DECL_LANGUAGE (fn, lang_cplusplus);
4467 return fn;
4470 /* Like build_library_fn, but takes a C string instead of an
4471 IDENTIFIER_NODE. */
4473 tree
4474 build_library_fn_ptr (const char* name, tree type, int ecf_flags)
4476 return build_library_fn (get_identifier (name), ERROR_MARK, type, ecf_flags);
4479 /* Like build_cp_library_fn, but takes a C string instead of an
4480 IDENTIFIER_NODE. */
4482 tree
4483 build_cp_library_fn_ptr (const char* name, tree type, int ecf_flags)
4485 return build_cp_library_fn (get_identifier (name), ERROR_MARK, type,
4486 ecf_flags);
4489 /* Like build_library_fn, but also pushes the function so that we will
4490 be able to find it via get_global_binding. Also, the function
4491 may throw exceptions listed in RAISES. */
4493 tree
4494 push_library_fn (tree name, tree type, tree raises, int ecf_flags)
4496 tree fn;
4498 if (raises)
4499 type = build_exception_variant (type, raises);
4501 fn = build_library_fn (name, ERROR_MARK, type, ecf_flags);
4502 pushdecl_top_level (fn);
4503 return fn;
4506 /* Like build_cp_library_fn, but also pushes the function so that it
4507 will be found by normal lookup. */
4509 static tree
4510 push_cp_library_fn (enum tree_code operator_code, tree type,
4511 int ecf_flags)
4513 tree fn = build_cp_library_fn (ovl_op_identifier (false, operator_code),
4514 operator_code, type, ecf_flags);
4515 pushdecl (fn);
4516 if (flag_tm)
4517 apply_tm_attr (fn, get_identifier ("transaction_safe"));
4518 return fn;
4521 /* Like push_library_fn, but takes a TREE_LIST of parm types rather than
4522 a FUNCTION_TYPE. */
4524 tree
4525 push_void_library_fn (tree name, tree parmtypes, int ecf_flags)
4527 tree type = build_function_type (void_type_node, parmtypes);
4528 return push_library_fn (name, type, NULL_TREE, ecf_flags);
4531 /* Like push_library_fn, but also note that this function throws
4532 and does not return. Used for __throw_foo and the like. */
4534 tree
4535 push_throw_library_fn (tree name, tree type)
4537 tree fn = push_library_fn (name, type, NULL_TREE, ECF_NORETURN | ECF_COLD);
4538 return fn;
4541 /* When we call finish_struct for an anonymous union, we create
4542 default copy constructors and such. But, an anonymous union
4543 shouldn't have such things; this function undoes the damage to the
4544 anonymous union type T.
4546 (The reason that we create the synthesized methods is that we don't
4547 distinguish `union { int i; }' from `typedef union { int i; } U'.
4548 The first is an anonymous union; the second is just an ordinary
4549 union type.) */
4551 void
4552 fixup_anonymous_aggr (tree t)
4554 /* Wipe out memory of synthesized methods. */
4555 TYPE_HAS_USER_CONSTRUCTOR (t) = 0;
4556 TYPE_HAS_DEFAULT_CONSTRUCTOR (t) = 0;
4557 TYPE_HAS_COPY_CTOR (t) = 0;
4558 TYPE_HAS_CONST_COPY_CTOR (t) = 0;
4559 TYPE_HAS_COPY_ASSIGN (t) = 0;
4560 TYPE_HAS_CONST_COPY_ASSIGN (t) = 0;
4562 /* Splice the implicitly generated functions out of TYPE_FIELDS. */
4563 for (tree probe, *prev_p = &TYPE_FIELDS (t); (probe = *prev_p);)
4564 if (TREE_CODE (probe) == FUNCTION_DECL && DECL_ARTIFICIAL (probe))
4565 *prev_p = DECL_CHAIN (probe);
4566 else
4567 prev_p = &DECL_CHAIN (probe);
4569 /* Anonymous aggregates cannot have fields with ctors, dtors or complex
4570 assignment operators (because they cannot have these methods themselves).
4571 For anonymous unions this is already checked because they are not allowed
4572 in any union, otherwise we have to check it. */
4573 if (TREE_CODE (t) != UNION_TYPE)
4575 tree field, type;
4577 for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
4578 if (TREE_CODE (field) == FIELD_DECL)
4580 type = TREE_TYPE (field);
4581 if (CLASS_TYPE_P (type))
4583 if (TYPE_NEEDS_CONSTRUCTING (type))
4584 error ("member %q+#D with constructor not allowed "
4585 "in anonymous aggregate", field);
4586 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
4587 error ("member %q+#D with destructor not allowed "
4588 "in anonymous aggregate", field);
4589 if (TYPE_HAS_COMPLEX_COPY_ASSIGN (type))
4590 error ("member %q+#D with copy assignment operator "
4591 "not allowed in anonymous aggregate", field);
4597 /* Warn for an attribute located at LOCATION that appertains to the
4598 class type CLASS_TYPE that has not been properly placed after its
4599 class-key, in it class-specifier. */
4601 void
4602 warn_misplaced_attr_for_class_type (source_location location,
4603 tree class_type)
4605 gcc_assert (OVERLOAD_TYPE_P (class_type));
4607 if (warning_at (location, OPT_Wattributes,
4608 "attribute ignored in declaration "
4609 "of %q#T", class_type))
4610 inform (location,
4611 "attribute for %q#T must follow the %qs keyword",
4612 class_type, class_key_or_enum_as_string (class_type));
4615 /* Make sure that a declaration with no declarator is well-formed, i.e.
4616 just declares a tagged type or anonymous union.
4618 Returns the type declared; or NULL_TREE if none. */
4620 tree
4621 check_tag_decl (cp_decl_specifier_seq *declspecs,
4622 bool explicit_type_instantiation_p)
4624 int saw_friend = decl_spec_seq_has_spec_p (declspecs, ds_friend);
4625 int saw_typedef = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
4626 /* If a class, struct, or enum type is declared by the DECLSPECS
4627 (i.e, if a class-specifier, enum-specifier, or non-typename
4628 elaborated-type-specifier appears in the DECLSPECS),
4629 DECLARED_TYPE is set to the corresponding type. */
4630 tree declared_type = NULL_TREE;
4631 bool error_p = false;
4633 if (declspecs->multiple_types_p)
4634 error ("multiple types in one declaration");
4635 else if (declspecs->redefined_builtin_type)
4637 if (!in_system_header_at (input_location))
4638 permerror (declspecs->locations[ds_redefined_builtin_type_spec],
4639 "redeclaration of C++ built-in type %qT",
4640 declspecs->redefined_builtin_type);
4641 return NULL_TREE;
4644 if (declspecs->type
4645 && TYPE_P (declspecs->type)
4646 && ((TREE_CODE (declspecs->type) != TYPENAME_TYPE
4647 && MAYBE_CLASS_TYPE_P (declspecs->type))
4648 || TREE_CODE (declspecs->type) == ENUMERAL_TYPE))
4649 declared_type = declspecs->type;
4650 else if (declspecs->type == error_mark_node)
4651 error_p = true;
4652 if (declared_type == NULL_TREE && ! saw_friend && !error_p)
4653 permerror (input_location, "declaration does not declare anything");
4654 else if (declared_type != NULL_TREE && type_uses_auto (declared_type))
4656 error_at (declspecs->locations[ds_type_spec],
4657 "%<auto%> can only be specified for variables "
4658 "or function declarations");
4659 return error_mark_node;
4661 /* Check for an anonymous union. */
4662 else if (declared_type && RECORD_OR_UNION_CODE_P (TREE_CODE (declared_type))
4663 && TYPE_UNNAMED_P (declared_type))
4665 /* 7/3 In a simple-declaration, the optional init-declarator-list
4666 can be omitted only when declaring a class (clause 9) or
4667 enumeration (7.2), that is, when the decl-specifier-seq contains
4668 either a class-specifier, an elaborated-type-specifier with
4669 a class-key (9.1), or an enum-specifier. In these cases and
4670 whenever a class-specifier or enum-specifier is present in the
4671 decl-specifier-seq, the identifiers in these specifiers are among
4672 the names being declared by the declaration (as class-name,
4673 enum-names, or enumerators, depending on the syntax). In such
4674 cases, and except for the declaration of an unnamed bit-field (9.6),
4675 the decl-specifier-seq shall introduce one or more names into the
4676 program, or shall redeclare a name introduced by a previous
4677 declaration. [Example:
4678 enum { }; // ill-formed
4679 typedef class { }; // ill-formed
4680 --end example] */
4681 if (saw_typedef)
4683 error ("missing type-name in typedef-declaration");
4684 return NULL_TREE;
4686 /* Anonymous unions are objects, so they can have specifiers. */;
4687 SET_ANON_AGGR_TYPE_P (declared_type);
4689 if (TREE_CODE (declared_type) != UNION_TYPE
4690 && !in_system_header_at (input_location))
4691 pedwarn (input_location, OPT_Wpedantic, "ISO C++ prohibits anonymous structs");
4694 else
4696 if (decl_spec_seq_has_spec_p (declspecs, ds_inline))
4697 error_at (declspecs->locations[ds_inline],
4698 "%<inline%> can only be specified for functions");
4699 else if (decl_spec_seq_has_spec_p (declspecs, ds_virtual))
4700 error_at (declspecs->locations[ds_virtual],
4701 "%<virtual%> can only be specified for functions");
4702 else if (saw_friend
4703 && (!current_class_type
4704 || current_scope () != current_class_type))
4705 error_at (declspecs->locations[ds_friend],
4706 "%<friend%> can only be specified inside a class");
4707 else if (decl_spec_seq_has_spec_p (declspecs, ds_explicit))
4708 error_at (declspecs->locations[ds_explicit],
4709 "%<explicit%> can only be specified for constructors");
4710 else if (declspecs->storage_class)
4711 error_at (declspecs->locations[ds_storage_class],
4712 "a storage class can only be specified for objects "
4713 "and functions");
4714 else if (decl_spec_seq_has_spec_p (declspecs, ds_const))
4715 error_at (declspecs->locations[ds_const],
4716 "%<const%> can only be specified for objects and "
4717 "functions");
4718 else if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
4719 error_at (declspecs->locations[ds_volatile],
4720 "%<volatile%> can only be specified for objects and "
4721 "functions");
4722 else if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
4723 error_at (declspecs->locations[ds_restrict],
4724 "%<__restrict%> can only be specified for objects and "
4725 "functions");
4726 else if (decl_spec_seq_has_spec_p (declspecs, ds_thread))
4727 error_at (declspecs->locations[ds_thread],
4728 "%<__thread%> can only be specified for objects "
4729 "and functions");
4730 else if (saw_typedef)
4731 warning_at (declspecs->locations[ds_typedef], 0,
4732 "%<typedef%> was ignored in this declaration");
4733 else if (decl_spec_seq_has_spec_p (declspecs, ds_constexpr))
4734 error_at (declspecs->locations[ds_constexpr],
4735 "%<constexpr%> cannot be used for type declarations");
4738 if (declspecs->attributes && warn_attributes && declared_type)
4740 location_t loc;
4741 if (!CLASS_TYPE_P (declared_type)
4742 || !CLASSTYPE_TEMPLATE_INSTANTIATION (declared_type))
4743 /* For a non-template class, use the name location. */
4744 loc = location_of (declared_type);
4745 else
4746 /* For a template class (an explicit instantiation), use the
4747 current location. */
4748 loc = input_location;
4750 if (explicit_type_instantiation_p)
4751 /* [dcl.attr.grammar]/4:
4753 No attribute-specifier-seq shall appertain to an explicit
4754 instantiation. */
4756 if (warning_at (loc, OPT_Wattributes,
4757 "attribute ignored in explicit instantiation %q#T",
4758 declared_type))
4759 inform (loc,
4760 "no attribute can be applied to "
4761 "an explicit instantiation");
4763 else
4764 warn_misplaced_attr_for_class_type (loc, declared_type);
4767 return declared_type;
4770 /* Called when a declaration is seen that contains no names to declare.
4771 If its type is a reference to a structure, union or enum inherited
4772 from a containing scope, shadow that tag name for the current scope
4773 with a forward reference.
4774 If its type defines a new named structure or union
4775 or defines an enum, it is valid but we need not do anything here.
4776 Otherwise, it is an error.
4778 C++: may have to grok the declspecs to learn about static,
4779 complain for anonymous unions.
4781 Returns the TYPE declared -- or NULL_TREE if none. */
4783 tree
4784 shadow_tag (cp_decl_specifier_seq *declspecs)
4786 tree t = check_tag_decl (declspecs,
4787 /*explicit_type_instantiation_p=*/false);
4789 if (!t)
4790 return NULL_TREE;
4792 if (maybe_process_partial_specialization (t) == error_mark_node)
4793 return NULL_TREE;
4795 /* This is where the variables in an anonymous union are
4796 declared. An anonymous union declaration looks like:
4797 union { ... } ;
4798 because there is no declarator after the union, the parser
4799 sends that declaration here. */
4800 if (ANON_AGGR_TYPE_P (t))
4802 fixup_anonymous_aggr (t);
4804 if (TYPE_FIELDS (t))
4806 tree decl = grokdeclarator (/*declarator=*/NULL,
4807 declspecs, NORMAL, 0, NULL);
4808 finish_anon_union (decl);
4812 return t;
4815 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
4817 tree
4818 groktypename (cp_decl_specifier_seq *type_specifiers,
4819 const cp_declarator *declarator,
4820 bool is_template_arg)
4822 tree attrs;
4823 tree type;
4824 enum decl_context context
4825 = is_template_arg ? TEMPLATE_TYPE_ARG : TYPENAME;
4826 attrs = type_specifiers->attributes;
4827 type_specifiers->attributes = NULL_TREE;
4828 type = grokdeclarator (declarator, type_specifiers, context, 0, &attrs);
4829 if (attrs && type != error_mark_node)
4831 if (CLASS_TYPE_P (type))
4832 warning (OPT_Wattributes, "ignoring attributes applied to class type %qT "
4833 "outside of definition", type);
4834 else if (MAYBE_CLASS_TYPE_P (type))
4835 /* A template type parameter or other dependent type. */
4836 warning (OPT_Wattributes, "ignoring attributes applied to dependent "
4837 "type %qT without an associated declaration", type);
4838 else
4839 cplus_decl_attributes (&type, attrs, 0);
4841 return type;
4844 /* Process a DECLARATOR for a function-scope variable declaration,
4845 namespace-scope variable declaration, or function declaration.
4846 (Function definitions go through start_function; class member
4847 declarations appearing in the body of the class go through
4848 grokfield.) The DECL corresponding to the DECLARATOR is returned.
4849 If an error occurs, the error_mark_node is returned instead.
4851 DECLSPECS are the decl-specifiers for the declaration. INITIALIZED is
4852 SD_INITIALIZED if an explicit initializer is present, or SD_DEFAULTED
4853 for an explicitly defaulted function, or SD_DELETED for an explicitly
4854 deleted function, but 0 (SD_UNINITIALIZED) if this is a variable
4855 implicitly initialized via a default constructor. ATTRIBUTES and
4856 PREFIX_ATTRIBUTES are GNU attributes associated with this declaration.
4858 The scope represented by the context of the returned DECL is pushed
4859 (if it is not the global namespace) and is assigned to
4860 *PUSHED_SCOPE_P. The caller is then responsible for calling
4861 pop_scope on *PUSHED_SCOPE_P if it is set. */
4863 tree
4864 start_decl (const cp_declarator *declarator,
4865 cp_decl_specifier_seq *declspecs,
4866 int initialized,
4867 tree attributes,
4868 tree prefix_attributes,
4869 tree *pushed_scope_p)
4871 tree decl;
4872 tree context;
4873 bool was_public;
4874 int flags;
4875 bool alias;
4877 *pushed_scope_p = NULL_TREE;
4879 /* An object declared as __attribute__((deprecated)) suppresses
4880 warnings of uses of other deprecated items. */
4881 if (lookup_attribute ("deprecated", attributes))
4882 deprecated_state = DEPRECATED_SUPPRESS;
4884 attributes = chainon (attributes, prefix_attributes);
4886 decl = grokdeclarator (declarator, declspecs, NORMAL, initialized,
4887 &attributes);
4889 deprecated_state = DEPRECATED_NORMAL;
4891 if (decl == NULL_TREE || VOID_TYPE_P (decl)
4892 || decl == error_mark_node)
4893 return error_mark_node;
4895 context = CP_DECL_CONTEXT (decl);
4896 if (context != global_namespace)
4897 *pushed_scope_p = push_scope (context);
4899 /* Is it valid for this decl to have an initializer at all?
4900 If not, set INITIALIZED to zero, which will indirectly
4901 tell `cp_finish_decl' to ignore the initializer once it is parsed. */
4902 if (initialized
4903 && TREE_CODE (decl) == TYPE_DECL)
4905 error ("typedef %qD is initialized (use decltype instead)", decl);
4906 return error_mark_node;
4909 if (initialized)
4911 if (! toplevel_bindings_p ()
4912 && DECL_EXTERNAL (decl))
4913 warning (0, "declaration of %q#D has %<extern%> and is initialized",
4914 decl);
4915 DECL_EXTERNAL (decl) = 0;
4916 if (toplevel_bindings_p ())
4917 TREE_STATIC (decl) = 1;
4919 alias = lookup_attribute ("alias", DECL_ATTRIBUTES (decl)) != 0;
4921 if (alias && TREE_CODE (decl) == FUNCTION_DECL)
4922 record_key_method_defined (decl);
4924 /* If this is a typedef that names the class for linkage purposes
4925 (7.1.3p8), apply any attributes directly to the type. */
4926 if (TREE_CODE (decl) == TYPE_DECL
4927 && OVERLOAD_TYPE_P (TREE_TYPE (decl))
4928 && decl == TYPE_NAME (TYPE_MAIN_VARIANT (TREE_TYPE (decl))))
4929 flags = ATTR_FLAG_TYPE_IN_PLACE;
4930 else
4931 flags = 0;
4933 /* Set attributes here so if duplicate decl, will have proper attributes. */
4934 cplus_decl_attributes (&decl, attributes, flags);
4936 /* Dllimported symbols cannot be defined. Static data members (which
4937 can be initialized in-class and dllimported) go through grokfield,
4938 not here, so we don't need to exclude those decls when checking for
4939 a definition. */
4940 if (initialized && DECL_DLLIMPORT_P (decl))
4942 error ("definition of %q#D is marked %<dllimport%>", decl);
4943 DECL_DLLIMPORT_P (decl) = 0;
4946 /* If #pragma weak was used, mark the decl weak now. */
4947 if (!processing_template_decl)
4948 maybe_apply_pragma_weak (decl);
4950 if (TREE_CODE (decl) == FUNCTION_DECL
4951 && DECL_DECLARED_INLINE_P (decl)
4952 && DECL_UNINLINABLE (decl)
4953 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
4954 warning_at (DECL_SOURCE_LOCATION (decl), 0,
4955 "inline function %qD given attribute noinline", decl);
4957 if (TYPE_P (context) && COMPLETE_TYPE_P (complete_type (context)))
4959 bool this_tmpl = (processing_template_decl
4960 > template_class_depth (context));
4961 if (VAR_P (decl))
4963 tree field = lookup_field (context, DECL_NAME (decl), 0, false);
4964 if (field == NULL_TREE
4965 || !(VAR_P (field) || variable_template_p (field)))
4966 error ("%q+#D is not a static data member of %q#T", decl, context);
4967 else if (variable_template_p (field) && !this_tmpl)
4969 if (DECL_LANG_SPECIFIC (decl)
4970 && DECL_TEMPLATE_SPECIALIZATION (decl))
4971 /* OK, specialization was already checked. */;
4972 else
4974 error_at (DECL_SOURCE_LOCATION (decl),
4975 "non-member-template declaration of %qD", decl);
4976 inform (DECL_SOURCE_LOCATION (field), "does not match "
4977 "member template declaration here");
4978 return error_mark_node;
4981 else
4983 if (variable_template_p (field))
4984 field = DECL_TEMPLATE_RESULT (field);
4986 if (DECL_CONTEXT (field) != context)
4988 if (!same_type_p (DECL_CONTEXT (field), context))
4989 permerror (input_location, "ISO C++ does not permit %<%T::%D%> "
4990 "to be defined as %<%T::%D%>",
4991 DECL_CONTEXT (field), DECL_NAME (decl),
4992 context, DECL_NAME (decl));
4993 DECL_CONTEXT (decl) = DECL_CONTEXT (field);
4995 /* Static data member are tricky; an in-class initialization
4996 still doesn't provide a definition, so the in-class
4997 declaration will have DECL_EXTERNAL set, but will have an
4998 initialization. Thus, duplicate_decls won't warn
4999 about this situation, and so we check here. */
5000 if (initialized && DECL_INITIALIZED_IN_CLASS_P (field))
5001 error ("duplicate initialization of %qD", decl);
5002 field = duplicate_decls (decl, field,
5003 /*newdecl_is_friend=*/false);
5004 if (field == error_mark_node)
5005 return error_mark_node;
5006 else if (field)
5007 decl = field;
5010 else
5012 tree field = check_classfn (context, decl,
5013 this_tmpl
5014 ? current_template_parms
5015 : NULL_TREE);
5016 if (field && field != error_mark_node
5017 && duplicate_decls (decl, field,
5018 /*newdecl_is_friend=*/false))
5019 decl = field;
5022 /* cp_finish_decl sets DECL_EXTERNAL if DECL_IN_AGGR_P is set. */
5023 DECL_IN_AGGR_P (decl) = 0;
5024 /* Do not mark DECL as an explicit specialization if it was not
5025 already marked as an instantiation; a declaration should
5026 never be marked as a specialization unless we know what
5027 template is being specialized. */
5028 if (DECL_LANG_SPECIFIC (decl) && DECL_USE_TEMPLATE (decl))
5030 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
5031 if (TREE_CODE (decl) == FUNCTION_DECL)
5032 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
5033 && DECL_DECLARED_INLINE_P (decl));
5034 else
5035 DECL_COMDAT (decl) = false;
5037 /* [temp.expl.spec] An explicit specialization of a static data
5038 member of a template is a definition if the declaration
5039 includes an initializer; otherwise, it is a declaration.
5041 We check for processing_specialization so this only applies
5042 to the new specialization syntax. */
5043 if (!initialized && processing_specialization)
5044 DECL_EXTERNAL (decl) = 1;
5047 if (DECL_EXTERNAL (decl) && ! DECL_TEMPLATE_SPECIALIZATION (decl)
5048 /* Aliases are definitions. */
5049 && !alias)
5050 permerror (input_location, "declaration of %q#D outside of class is not definition",
5051 decl);
5054 was_public = TREE_PUBLIC (decl);
5056 /* Enter this declaration into the symbol table. Don't push the plain
5057 VAR_DECL for a variable template. */
5058 if (!template_parm_scope_p ()
5059 || !VAR_P (decl))
5060 decl = maybe_push_decl (decl);
5062 if (processing_template_decl)
5063 decl = push_template_decl (decl);
5064 if (decl == error_mark_node)
5065 return error_mark_node;
5067 if (VAR_P (decl)
5068 && DECL_NAMESPACE_SCOPE_P (decl) && !TREE_PUBLIC (decl) && !was_public
5069 && !DECL_THIS_STATIC (decl) && !DECL_ARTIFICIAL (decl))
5071 /* This is a const variable with implicit 'static'. Set
5072 DECL_THIS_STATIC so we can tell it from variables that are
5073 !TREE_PUBLIC because of the anonymous namespace. */
5074 gcc_assert (CP_TYPE_CONST_P (TREE_TYPE (decl)) || errorcount);
5075 DECL_THIS_STATIC (decl) = 1;
5078 if (current_function_decl && VAR_P (decl)
5079 && DECL_DECLARED_CONSTEXPR_P (current_function_decl))
5081 bool ok = false;
5082 if (CP_DECL_THREAD_LOCAL_P (decl))
5083 error ("%qD declared %<thread_local%> in %<constexpr%> function",
5084 decl);
5085 else if (TREE_STATIC (decl))
5086 error ("%qD declared %<static%> in %<constexpr%> function", decl);
5087 else
5088 ok = true;
5089 if (!ok)
5090 cp_function_chain->invalid_constexpr = true;
5093 if (!processing_template_decl && VAR_P (decl))
5094 start_decl_1 (decl, initialized);
5096 return decl;
5099 /* Process the declaration of a variable DECL. INITIALIZED is true
5100 iff DECL is explicitly initialized. (INITIALIZED is false if the
5101 variable is initialized via an implicitly-called constructor.)
5102 This function must be called for ordinary variables (including, for
5103 example, implicit instantiations of templates), but must not be
5104 called for template declarations. */
5106 void
5107 start_decl_1 (tree decl, bool initialized)
5109 tree type;
5110 bool complete_p;
5111 bool aggregate_definition_p;
5113 gcc_assert (!processing_template_decl);
5115 if (error_operand_p (decl))
5116 return;
5118 gcc_assert (VAR_P (decl));
5120 type = TREE_TYPE (decl);
5121 complete_p = COMPLETE_TYPE_P (type);
5122 aggregate_definition_p = MAYBE_CLASS_TYPE_P (type) && !DECL_EXTERNAL (decl);
5124 /* If an explicit initializer is present, or if this is a definition
5125 of an aggregate, then we need a complete type at this point.
5126 (Scalars are always complete types, so there is nothing to
5127 check.) This code just sets COMPLETE_P; errors (if necessary)
5128 are issued below. */
5129 if ((initialized || aggregate_definition_p)
5130 && !complete_p
5131 && COMPLETE_TYPE_P (complete_type (type)))
5133 complete_p = true;
5134 /* We will not yet have set TREE_READONLY on DECL if the type
5135 was "const", but incomplete, before this point. But, now, we
5136 have a complete type, so we can try again. */
5137 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
5140 if (initialized)
5141 /* Is it valid for this decl to have an initializer at all? */
5143 /* Don't allow initializations for incomplete types except for
5144 arrays which might be completed by the initialization. */
5145 if (complete_p)
5146 ; /* A complete type is ok. */
5147 else if (type_uses_auto (type))
5148 ; /* An auto type is ok. */
5149 else if (TREE_CODE (type) != ARRAY_TYPE)
5151 error ("variable %q#D has initializer but incomplete type", decl);
5152 type = TREE_TYPE (decl) = error_mark_node;
5154 else if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (type))))
5156 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
5157 error ("elements of array %q#D have incomplete type", decl);
5158 /* else we already gave an error in start_decl. */
5161 else if (aggregate_definition_p && !complete_p)
5163 if (type_uses_auto (type))
5164 gcc_assert (CLASS_PLACEHOLDER_TEMPLATE (type));
5165 else
5167 error ("aggregate %q#D has incomplete type and cannot be defined",
5168 decl);
5169 /* Change the type so that assemble_variable will give
5170 DECL an rtl we can live with: (mem (const_int 0)). */
5171 type = TREE_TYPE (decl) = error_mark_node;
5175 /* Create a new scope to hold this declaration if necessary.
5176 Whether or not a new scope is necessary cannot be determined
5177 until after the type has been completed; if the type is a
5178 specialization of a class template it is not until after
5179 instantiation has occurred that TYPE_HAS_NONTRIVIAL_DESTRUCTOR
5180 will be set correctly. */
5181 maybe_push_cleanup_level (type);
5184 /* Handle initialization of references. DECL, TYPE, and INIT have the
5185 same meaning as in cp_finish_decl. *CLEANUP must be NULL on entry,
5186 but will be set to a new CLEANUP_STMT if a temporary is created
5187 that must be destroyed subsequently.
5189 Returns an initializer expression to use to initialize DECL, or
5190 NULL if the initialization can be performed statically.
5192 Quotes on semantics can be found in ARM 8.4.3. */
5194 static tree
5195 grok_reference_init (tree decl, tree type, tree init, int flags)
5197 if (init == NULL_TREE)
5199 if ((DECL_LANG_SPECIFIC (decl) == 0
5200 || DECL_IN_AGGR_P (decl) == 0)
5201 && ! DECL_THIS_EXTERN (decl))
5202 error ("%qD declared as reference but not initialized", decl);
5203 return NULL_TREE;
5206 if (TREE_CODE (init) == TREE_LIST)
5207 init = build_x_compound_expr_from_list (init, ELK_INIT,
5208 tf_warning_or_error);
5210 tree ttype = TREE_TYPE (type);
5211 if (TREE_CODE (ttype) != ARRAY_TYPE
5212 && TREE_CODE (TREE_TYPE (init)) == ARRAY_TYPE)
5213 /* Note: default conversion is only called in very special cases. */
5214 init = decay_conversion (init, tf_warning_or_error);
5216 /* check_initializer handles this for non-reference variables, but for
5217 references we need to do it here or the initializer will get the
5218 incomplete array type and confuse later calls to
5219 cp_complete_array_type. */
5220 if (TREE_CODE (ttype) == ARRAY_TYPE
5221 && TYPE_DOMAIN (ttype) == NULL_TREE
5222 && (BRACE_ENCLOSED_INITIALIZER_P (init)
5223 || TREE_CODE (init) == STRING_CST))
5225 cp_complete_array_type (&ttype, init, false);
5226 if (ttype != TREE_TYPE (type))
5227 type = cp_build_reference_type (ttype, TYPE_REF_IS_RVALUE (type));
5230 /* Convert INIT to the reference type TYPE. This may involve the
5231 creation of a temporary, whose lifetime must be the same as that
5232 of the reference. If so, a DECL_EXPR for the temporary will be
5233 added just after the DECL_EXPR for DECL. That's why we don't set
5234 DECL_INITIAL for local references (instead assigning to them
5235 explicitly); we need to allow the temporary to be initialized
5236 first. */
5237 return initialize_reference (type, init, flags,
5238 tf_warning_or_error);
5241 /* Designated initializers in arrays are not supported in GNU C++.
5242 The parser cannot detect this error since it does not know whether
5243 a given brace-enclosed initializer is for a class type or for an
5244 array. This function checks that CE does not use a designated
5245 initializer. If it does, an error is issued. Returns true if CE
5246 is valid, i.e., does not have a designated initializer. */
5248 static bool
5249 check_array_designated_initializer (constructor_elt *ce,
5250 unsigned HOST_WIDE_INT index)
5252 /* Designated initializers for array elements are not supported. */
5253 if (ce->index)
5255 /* The parser only allows identifiers as designated
5256 initializers. */
5257 if (ce->index == error_mark_node)
5259 error ("name used in a GNU-style designated "
5260 "initializer for an array");
5261 return false;
5263 else if (identifier_p (ce->index))
5265 error ("name %qD used in a GNU-style designated "
5266 "initializer for an array", ce->index);
5267 return false;
5270 tree ce_index = build_expr_type_conversion (WANT_INT | WANT_ENUM,
5271 ce->index, true);
5272 if (ce_index
5273 && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (ce_index))
5274 && (TREE_CODE (ce_index = maybe_constant_value (ce_index))
5275 == INTEGER_CST))
5277 /* A C99 designator is OK if it matches the current index. */
5278 if (wi::to_wide (ce_index) == index)
5279 return true;
5280 else
5281 sorry ("non-trivial designated initializers not supported");
5283 else
5284 error ("C99 designator %qE is not an integral constant-expression",
5285 ce->index);
5287 return false;
5290 return true;
5293 /* When parsing `int a[] = {1, 2};' we don't know the size of the
5294 array until we finish parsing the initializer. If that's the
5295 situation we're in, update DECL accordingly. */
5297 static void
5298 maybe_deduce_size_from_array_init (tree decl, tree init)
5300 tree type = TREE_TYPE (decl);
5302 if (TREE_CODE (type) == ARRAY_TYPE
5303 && TYPE_DOMAIN (type) == NULL_TREE
5304 && TREE_CODE (decl) != TYPE_DECL)
5306 /* do_default is really a C-ism to deal with tentative definitions.
5307 But let's leave it here to ease the eventual merge. */
5308 int do_default = !DECL_EXTERNAL (decl);
5309 tree initializer = init ? init : DECL_INITIAL (decl);
5310 int failure = 0;
5312 /* Check that there are no designated initializers in INIT, as
5313 those are not supported in GNU C++, and as the middle-end
5314 will crash if presented with a non-numeric designated
5315 initializer. */
5316 if (initializer && BRACE_ENCLOSED_INITIALIZER_P (initializer))
5318 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initializer);
5319 constructor_elt *ce;
5320 HOST_WIDE_INT i;
5321 FOR_EACH_VEC_SAFE_ELT (v, i, ce)
5322 if (!check_array_designated_initializer (ce, i))
5323 failure = 1;
5326 if (!failure)
5328 failure = cp_complete_array_type (&TREE_TYPE (decl), initializer,
5329 do_default);
5330 if (failure == 1)
5332 error_at (EXPR_LOC_OR_LOC (initializer,
5333 DECL_SOURCE_LOCATION (decl)),
5334 "initializer fails to determine size of %qD", decl);
5336 else if (failure == 2)
5338 if (do_default)
5340 error_at (DECL_SOURCE_LOCATION (decl),
5341 "array size missing in %qD", decl);
5343 /* If a `static' var's size isn't known, make it extern as
5344 well as static, so it does not get allocated. If it's not
5345 `static', then don't mark it extern; finish_incomplete_decl
5346 will give it a default size and it will get allocated. */
5347 else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
5348 DECL_EXTERNAL (decl) = 1;
5350 else if (failure == 3)
5352 error_at (DECL_SOURCE_LOCATION (decl),
5353 "zero-size array %qD", decl);
5357 cp_apply_type_quals_to_decl (cp_type_quals (TREE_TYPE (decl)), decl);
5359 relayout_decl (decl);
5363 /* Set DECL_SIZE, DECL_ALIGN, etc. for DECL (a VAR_DECL), and issue
5364 any appropriate error messages regarding the layout. */
5366 static void
5367 layout_var_decl (tree decl)
5369 tree type;
5371 type = TREE_TYPE (decl);
5372 if (type == error_mark_node)
5373 return;
5375 /* If we haven't already laid out this declaration, do so now.
5376 Note that we must not call complete type for an external object
5377 because it's type might involve templates that we are not
5378 supposed to instantiate yet. (And it's perfectly valid to say
5379 `extern X x' for some incomplete type `X'.) */
5380 if (!DECL_EXTERNAL (decl))
5381 complete_type (type);
5382 if (!DECL_SIZE (decl)
5383 && TREE_TYPE (decl) != error_mark_node
5384 && complete_or_array_type_p (type))
5385 layout_decl (decl, 0);
5387 if (!DECL_EXTERNAL (decl) && DECL_SIZE (decl) == NULL_TREE)
5389 /* An automatic variable with an incomplete type: that is an error.
5390 Don't talk about array types here, since we took care of that
5391 message in grokdeclarator. */
5392 error_at (DECL_SOURCE_LOCATION (decl),
5393 "storage size of %qD isn%'t known", decl);
5394 TREE_TYPE (decl) = error_mark_node;
5396 #if 0
5397 /* Keep this code around in case we later want to control debug info
5398 based on whether a type is "used". (jason 1999-11-11) */
5400 else if (!DECL_EXTERNAL (decl) && MAYBE_CLASS_TYPE_P (ttype))
5401 /* Let debugger know it should output info for this type. */
5402 note_debug_info_needed (ttype);
5404 if (TREE_STATIC (decl) && DECL_CLASS_SCOPE_P (decl))
5405 note_debug_info_needed (DECL_CONTEXT (decl));
5406 #endif
5408 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
5409 && DECL_SIZE (decl) != NULL_TREE
5410 && ! TREE_CONSTANT (DECL_SIZE (decl)))
5412 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
5413 constant_expression_warning (DECL_SIZE (decl));
5414 else
5416 error_at (DECL_SOURCE_LOCATION (decl),
5417 "storage size of %qD isn%'t constant", decl);
5418 TREE_TYPE (decl) = error_mark_node;
5423 /* If a local static variable is declared in an inline function, or if
5424 we have a weak definition, we must endeavor to create only one
5425 instance of the variable at link-time. */
5427 void
5428 maybe_commonize_var (tree decl)
5430 /* Static data in a function with comdat linkage also has comdat
5431 linkage. */
5432 if ((TREE_STATIC (decl)
5433 /* Don't mess with __FUNCTION__. */
5434 && ! DECL_ARTIFICIAL (decl)
5435 && DECL_FUNCTION_SCOPE_P (decl)
5436 && vague_linkage_p (DECL_CONTEXT (decl)))
5437 || (TREE_PUBLIC (decl) && DECL_INLINE_VAR_P (decl)))
5439 if (flag_weak)
5441 /* With weak symbols, we simply make the variable COMDAT;
5442 that will cause copies in multiple translations units to
5443 be merged. */
5444 comdat_linkage (decl);
5446 else
5448 if (DECL_INITIAL (decl) == NULL_TREE
5449 || DECL_INITIAL (decl) == error_mark_node)
5451 /* Without weak symbols, we can use COMMON to merge
5452 uninitialized variables. */
5453 TREE_PUBLIC (decl) = 1;
5454 DECL_COMMON (decl) = 1;
5456 else
5458 /* While for initialized variables, we must use internal
5459 linkage -- which means that multiple copies will not
5460 be merged. */
5461 TREE_PUBLIC (decl) = 0;
5462 DECL_COMMON (decl) = 0;
5463 const char *msg;
5464 if (DECL_INLINE_VAR_P (decl))
5465 msg = G_("sorry: semantics of inline variable "
5466 "%q#D are wrong (you%'ll wind up with "
5467 "multiple copies)");
5468 else
5469 msg = G_("sorry: semantics of inline function "
5470 "static data %q#D are wrong (you%'ll wind "
5471 "up with multiple copies)");
5472 if (warning_at (DECL_SOURCE_LOCATION (decl), 0,
5473 msg, decl))
5474 inform (DECL_SOURCE_LOCATION (decl),
5475 "you can work around this by removing the initializer");
5481 /* Issue an error message if DECL is an uninitialized const variable. */
5483 static void
5484 check_for_uninitialized_const_var (tree decl)
5486 tree type = strip_array_types (TREE_TYPE (decl));
5488 /* ``Unless explicitly declared extern, a const object does not have
5489 external linkage and must be initialized. ($8.4; $12.1)'' ARM
5490 7.1.6 */
5491 if (VAR_P (decl)
5492 && TREE_CODE (type) != REFERENCE_TYPE
5493 && (CP_TYPE_CONST_P (type) || var_in_constexpr_fn (decl))
5494 && !DECL_INITIAL (decl))
5496 tree field = default_init_uninitialized_part (type);
5497 if (!field)
5498 return;
5500 if (CP_TYPE_CONST_P (type))
5501 permerror (DECL_SOURCE_LOCATION (decl),
5502 "uninitialized const %qD", decl);
5503 else
5505 if (!is_instantiation_of_constexpr (current_function_decl))
5506 error_at (DECL_SOURCE_LOCATION (decl),
5507 "uninitialized variable %qD in %<constexpr%> function",
5508 decl);
5509 cp_function_chain->invalid_constexpr = true;
5512 if (CLASS_TYPE_P (type))
5514 tree defaulted_ctor;
5516 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)),
5517 "%q#T has no user-provided default constructor", type);
5518 defaulted_ctor = in_class_defaulted_default_constructor (type);
5519 if (defaulted_ctor)
5520 inform (DECL_SOURCE_LOCATION (defaulted_ctor),
5521 "constructor is not user-provided because it is "
5522 "explicitly defaulted in the class body");
5523 inform (DECL_SOURCE_LOCATION (field),
5524 "and the implicitly-defined constructor does not "
5525 "initialize %q#D", field);
5530 /* Structure holding the current initializer being processed by reshape_init.
5531 CUR is a pointer to the current element being processed, END is a pointer
5532 after the last element present in the initializer. */
5533 struct reshape_iter
5535 constructor_elt *cur;
5536 constructor_elt *end;
5539 static tree reshape_init_r (tree, reshape_iter *, bool, tsubst_flags_t);
5541 /* FIELD is a FIELD_DECL or NULL. In the former case, the value
5542 returned is the next FIELD_DECL (possibly FIELD itself) that can be
5543 initialized. If there are no more such fields, the return value
5544 will be NULL. */
5546 tree
5547 next_initializable_field (tree field)
5549 while (field
5550 && (TREE_CODE (field) != FIELD_DECL
5551 || (DECL_C_BIT_FIELD (field) && !DECL_NAME (field))
5552 || (DECL_ARTIFICIAL (field)
5553 && !(cxx_dialect >= cxx17 && DECL_FIELD_IS_BASE (field)))))
5554 field = DECL_CHAIN (field);
5556 return field;
5559 /* Return true for [dcl.init.list] direct-list-initialization from
5560 single element of enumeration with a fixed underlying type. */
5562 bool
5563 is_direct_enum_init (tree type, tree init)
5565 if (cxx_dialect >= cxx17
5566 && TREE_CODE (type) == ENUMERAL_TYPE
5567 && ENUM_FIXED_UNDERLYING_TYPE_P (type)
5568 && TREE_CODE (init) == CONSTRUCTOR
5569 && CONSTRUCTOR_IS_DIRECT_INIT (init)
5570 && CONSTRUCTOR_NELTS (init) == 1)
5571 return true;
5572 return false;
5575 /* Subroutine of reshape_init_array and reshape_init_vector, which does
5576 the actual work. ELT_TYPE is the element type of the array. MAX_INDEX is an
5577 INTEGER_CST representing the size of the array minus one (the maximum index),
5578 or NULL_TREE if the array was declared without specifying the size. D is
5579 the iterator within the constructor. */
5581 static tree
5582 reshape_init_array_1 (tree elt_type, tree max_index, reshape_iter *d,
5583 tsubst_flags_t complain)
5585 tree new_init;
5586 bool sized_array_p = (max_index && TREE_CONSTANT (max_index));
5587 unsigned HOST_WIDE_INT max_index_cst = 0;
5588 unsigned HOST_WIDE_INT index;
5590 /* The initializer for an array is always a CONSTRUCTOR. */
5591 new_init = build_constructor (init_list_type_node, NULL);
5593 if (sized_array_p)
5595 /* Minus 1 is used for zero sized arrays. */
5596 if (integer_all_onesp (max_index))
5597 return new_init;
5599 if (tree_fits_uhwi_p (max_index))
5600 max_index_cst = tree_to_uhwi (max_index);
5601 /* sizetype is sign extended, not zero extended. */
5602 else
5603 max_index_cst = tree_to_uhwi (fold_convert (size_type_node, max_index));
5606 /* Loop until there are no more initializers. */
5607 for (index = 0;
5608 d->cur != d->end && (!sized_array_p || index <= max_index_cst);
5609 ++index)
5611 tree elt_init;
5612 constructor_elt *old_cur = d->cur;
5614 check_array_designated_initializer (d->cur, index);
5615 elt_init = reshape_init_r (elt_type, d, /*first_initializer_p=*/false,
5616 complain);
5617 if (elt_init == error_mark_node)
5618 return error_mark_node;
5619 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init),
5620 size_int (index), elt_init);
5621 if (!TREE_CONSTANT (elt_init))
5622 TREE_CONSTANT (new_init) = false;
5624 /* This can happen with an invalid initializer (c++/54501). */
5625 if (d->cur == old_cur && !sized_array_p)
5626 break;
5629 return new_init;
5632 /* Subroutine of reshape_init_r, processes the initializers for arrays.
5633 Parameters are the same of reshape_init_r. */
5635 static tree
5636 reshape_init_array (tree type, reshape_iter *d, tsubst_flags_t complain)
5638 tree max_index = NULL_TREE;
5640 gcc_assert (TREE_CODE (type) == ARRAY_TYPE);
5642 if (TYPE_DOMAIN (type))
5643 max_index = array_type_nelts (type);
5645 return reshape_init_array_1 (TREE_TYPE (type), max_index, d, complain);
5648 /* Subroutine of reshape_init_r, processes the initializers for vectors.
5649 Parameters are the same of reshape_init_r. */
5651 static tree
5652 reshape_init_vector (tree type, reshape_iter *d, tsubst_flags_t complain)
5654 tree max_index = NULL_TREE;
5656 gcc_assert (VECTOR_TYPE_P (type));
5658 if (COMPOUND_LITERAL_P (d->cur->value))
5660 tree value = d->cur->value;
5661 if (!same_type_p (TREE_TYPE (value), type))
5663 if (complain & tf_error)
5664 error ("invalid type %qT as initializer for a vector of type %qT",
5665 TREE_TYPE (d->cur->value), type);
5666 value = error_mark_node;
5668 ++d->cur;
5669 return value;
5672 /* For a vector, we initialize it as an array of the appropriate size. */
5673 if (VECTOR_TYPE_P (type))
5674 max_index = size_int (TYPE_VECTOR_SUBPARTS (type) - 1);
5676 return reshape_init_array_1 (TREE_TYPE (type), max_index, d, complain);
5679 /* Subroutine of reshape_init_r, processes the initializers for classes
5680 or union. Parameters are the same of reshape_init_r. */
5682 static tree
5683 reshape_init_class (tree type, reshape_iter *d, bool first_initializer_p,
5684 tsubst_flags_t complain)
5686 tree field;
5687 tree new_init;
5689 gcc_assert (CLASS_TYPE_P (type));
5691 /* The initializer for a class is always a CONSTRUCTOR. */
5692 new_init = build_constructor (init_list_type_node, NULL);
5693 field = next_initializable_field (TYPE_FIELDS (type));
5695 if (!field)
5697 /* [dcl.init.aggr]
5699 An initializer for an aggregate member that is an
5700 empty class shall have the form of an empty
5701 initializer-list {}. */
5702 if (!first_initializer_p)
5704 if (complain & tf_error)
5705 error ("initializer for %qT must be brace-enclosed", type);
5706 return error_mark_node;
5708 return new_init;
5711 /* Loop through the initializable fields, gathering initializers. */
5712 while (d->cur != d->end)
5714 tree field_init;
5715 constructor_elt *old_cur = d->cur;
5717 /* Handle designated initializers, as an extension. */
5718 if (d->cur->index)
5720 if (d->cur->index == error_mark_node)
5721 return error_mark_node;
5723 if (TREE_CODE (d->cur->index) == FIELD_DECL)
5724 /* We already reshaped this. */
5725 gcc_assert (d->cur->index == field);
5726 else if (TREE_CODE (d->cur->index) == IDENTIFIER_NODE)
5727 field = get_class_binding (type, d->cur->index, false);
5728 else
5730 if (complain & tf_error)
5731 error ("%<[%E] =%> used in a GNU-style designated initializer"
5732 " for class %qT", d->cur->index, type);
5733 return error_mark_node;
5736 if (!field || TREE_CODE (field) != FIELD_DECL)
5738 if (complain & tf_error)
5739 error ("%qT has no non-static data member named %qD", type,
5740 d->cur->index);
5741 return error_mark_node;
5745 /* If we processed all the member of the class, we are done. */
5746 if (!field)
5747 break;
5749 field_init = reshape_init_r (TREE_TYPE (field), d,
5750 /*first_initializer_p=*/false, complain);
5751 if (field_init == error_mark_node)
5752 return error_mark_node;
5754 if (d->cur == old_cur && d->cur->index)
5756 /* This can happen with an invalid initializer for a flexible
5757 array member (c++/54441). */
5758 if (complain & tf_error)
5759 error ("invalid initializer for %q#D", field);
5760 return error_mark_node;
5763 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init), field, field_init);
5765 /* [dcl.init.aggr]
5767 When a union is initialized with a brace-enclosed
5768 initializer, the braces shall only contain an
5769 initializer for the first member of the union. */
5770 if (TREE_CODE (type) == UNION_TYPE)
5771 break;
5773 field = next_initializable_field (DECL_CHAIN (field));
5776 return new_init;
5779 /* Subroutine of reshape_init_r. We're in a context where C99 initializer
5780 designators are not valid; either complain or return true to indicate
5781 that reshape_init_r should return error_mark_node. */
5783 static bool
5784 has_designator_problem (reshape_iter *d, tsubst_flags_t complain)
5786 if (d->cur->index)
5788 if (complain & tf_error)
5789 error ("C99 designator %qE outside aggregate initializer",
5790 d->cur->index);
5791 else
5792 return true;
5794 return false;
5797 /* Subroutine of reshape_init, which processes a single initializer (part of
5798 a CONSTRUCTOR). TYPE is the type of the variable being initialized, D is the
5799 iterator within the CONSTRUCTOR which points to the initializer to process.
5800 FIRST_INITIALIZER_P is true if this is the first initializer of the
5801 outermost CONSTRUCTOR node. */
5803 static tree
5804 reshape_init_r (tree type, reshape_iter *d, bool first_initializer_p,
5805 tsubst_flags_t complain)
5807 tree init = d->cur->value;
5809 if (error_operand_p (init))
5810 return error_mark_node;
5812 if (first_initializer_p && !CP_AGGREGATE_TYPE_P (type)
5813 && has_designator_problem (d, complain))
5814 return error_mark_node;
5816 if (TREE_CODE (type) == COMPLEX_TYPE)
5818 /* A complex type can be initialized from one or two initializers,
5819 but braces are not elided. */
5820 d->cur++;
5821 if (BRACE_ENCLOSED_INITIALIZER_P (init))
5823 if (CONSTRUCTOR_NELTS (init) > 2)
5825 if (complain & tf_error)
5826 error ("too many initializers for %qT", type);
5827 else
5828 return error_mark_node;
5831 else if (first_initializer_p && d->cur != d->end)
5833 vec<constructor_elt, va_gc> *v = 0;
5834 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, init);
5835 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, d->cur->value);
5836 if (has_designator_problem (d, complain))
5837 return error_mark_node;
5838 d->cur++;
5839 init = build_constructor (init_list_type_node, v);
5841 return init;
5844 /* A non-aggregate type is always initialized with a single
5845 initializer. */
5846 if (!CP_AGGREGATE_TYPE_P (type))
5848 /* It is invalid to initialize a non-aggregate type with a
5849 brace-enclosed initializer before C++0x.
5850 We need to check for BRACE_ENCLOSED_INITIALIZER_P here because
5851 of g++.old-deja/g++.mike/p7626.C: a pointer-to-member constant is
5852 a CONSTRUCTOR (with a record type). */
5853 if (TREE_CODE (init) == CONSTRUCTOR
5854 /* Don't complain about a capture-init. */
5855 && !CONSTRUCTOR_IS_DIRECT_INIT (init)
5856 && BRACE_ENCLOSED_INITIALIZER_P (init)) /* p7626.C */
5858 if (SCALAR_TYPE_P (type))
5860 if (cxx_dialect < cxx11
5861 /* Isn't value-initialization. */
5862 || CONSTRUCTOR_NELTS (init) > 0)
5864 if (complain & tf_error)
5865 error ("braces around scalar initializer for type %qT",
5866 type);
5867 init = error_mark_node;
5870 else
5871 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
5874 d->cur++;
5875 return init;
5878 /* "If T is a class type and the initializer list has a single element of
5879 type cv U, where U is T or a class derived from T, the object is
5880 initialized from that element." Even if T is an aggregate. */
5881 if (cxx_dialect >= cxx11 && (CLASS_TYPE_P (type) || VECTOR_TYPE_P (type))
5882 && first_initializer_p
5883 && d->end - d->cur == 1
5884 && reference_related_p (type, TREE_TYPE (init)))
5886 d->cur++;
5887 return init;
5890 /* [dcl.init.aggr]
5892 All implicit type conversions (clause _conv_) are considered when
5893 initializing the aggregate member with an initializer from an
5894 initializer-list. If the initializer can initialize a member,
5895 the member is initialized. Otherwise, if the member is itself a
5896 non-empty subaggregate, brace elision is assumed and the
5897 initializer is considered for the initialization of the first
5898 member of the subaggregate. */
5899 if (TREE_CODE (init) != CONSTRUCTOR
5900 /* But don't try this for the first initializer, since that would be
5901 looking through the outermost braces; A a2 = { a1 }; is not a
5902 valid aggregate initialization. */
5903 && !first_initializer_p
5904 && (same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (init))
5905 || can_convert_arg (type, TREE_TYPE (init), init, LOOKUP_NORMAL,
5906 complain)))
5908 d->cur++;
5909 return init;
5912 /* [dcl.init.string]
5914 A char array (whether plain char, signed char, or unsigned char)
5915 can be initialized by a string-literal (optionally enclosed in
5916 braces); a wchar_t array can be initialized by a wide
5917 string-literal (optionally enclosed in braces). */
5918 if (TREE_CODE (type) == ARRAY_TYPE
5919 && char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (type))))
5921 tree str_init = init;
5923 /* Strip one level of braces if and only if they enclose a single
5924 element (as allowed by [dcl.init.string]). */
5925 if (!first_initializer_p
5926 && TREE_CODE (str_init) == CONSTRUCTOR
5927 && CONSTRUCTOR_NELTS (str_init) == 1)
5929 str_init = (*CONSTRUCTOR_ELTS (str_init))[0].value;
5932 /* If it's a string literal, then it's the initializer for the array
5933 as a whole. Otherwise, continue with normal initialization for
5934 array types (one value per array element). */
5935 if (TREE_CODE (str_init) == STRING_CST)
5937 if (has_designator_problem (d, complain))
5938 return error_mark_node;
5939 d->cur++;
5940 return str_init;
5944 /* The following cases are about aggregates. If we are not within a full
5945 initializer already, and there is not a CONSTRUCTOR, it means that there
5946 is a missing set of braces (that is, we are processing the case for
5947 which reshape_init exists). */
5948 if (!first_initializer_p)
5950 if (TREE_CODE (init) == CONSTRUCTOR)
5952 if (TREE_TYPE (init) && TYPE_PTRMEMFUNC_P (TREE_TYPE (init)))
5953 /* There is no need to reshape pointer-to-member function
5954 initializers, as they are always constructed correctly
5955 by the front end. */
5957 else if (COMPOUND_LITERAL_P (init))
5958 /* For a nested compound literal, there is no need to reshape since
5959 brace elision is not allowed. Even if we decided to allow it,
5960 we should add a call to reshape_init in finish_compound_literal,
5961 before calling digest_init, so changing this code would still
5962 not be necessary. */
5963 gcc_assert (!BRACE_ENCLOSED_INITIALIZER_P (init));
5964 else
5966 ++d->cur;
5967 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
5968 return reshape_init (type, init, complain);
5972 if (complain & tf_warning)
5973 warning (OPT_Wmissing_braces,
5974 "missing braces around initializer for %qT",
5975 type);
5978 /* Dispatch to specialized routines. */
5979 if (CLASS_TYPE_P (type))
5980 return reshape_init_class (type, d, first_initializer_p, complain);
5981 else if (TREE_CODE (type) == ARRAY_TYPE)
5982 return reshape_init_array (type, d, complain);
5983 else if (VECTOR_TYPE_P (type))
5984 return reshape_init_vector (type, d, complain);
5985 else
5986 gcc_unreachable();
5989 /* Undo the brace-elision allowed by [dcl.init.aggr] in a
5990 brace-enclosed aggregate initializer.
5992 INIT is the CONSTRUCTOR containing the list of initializers describing
5993 a brace-enclosed initializer for an entity of the indicated aggregate TYPE.
5994 It may not presently match the shape of the TYPE; for example:
5996 struct S { int a; int b; };
5997 struct S a[] = { 1, 2, 3, 4 };
5999 Here INIT will hold a vector of four elements, rather than a
6000 vector of two elements, each itself a vector of two elements. This
6001 routine transforms INIT from the former form into the latter. The
6002 revised CONSTRUCTOR node is returned. */
6004 tree
6005 reshape_init (tree type, tree init, tsubst_flags_t complain)
6007 vec<constructor_elt, va_gc> *v;
6008 reshape_iter d;
6009 tree new_init;
6011 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
6013 v = CONSTRUCTOR_ELTS (init);
6015 /* An empty constructor does not need reshaping, and it is always a valid
6016 initializer. */
6017 if (vec_safe_is_empty (v))
6018 return init;
6020 /* Handle [dcl.init.list] direct-list-initialization from
6021 single element of enumeration with a fixed underlying type. */
6022 if (is_direct_enum_init (type, init))
6024 tree elt = CONSTRUCTOR_ELT (init, 0)->value;
6025 type = cv_unqualified (type);
6026 if (check_narrowing (ENUM_UNDERLYING_TYPE (type), elt, complain))
6028 warning_sentinel w (warn_useless_cast);
6029 return cp_build_c_cast (type, elt, tf_warning_or_error);
6031 else
6032 return error_mark_node;
6035 /* Recurse on this CONSTRUCTOR. */
6036 d.cur = &(*v)[0];
6037 d.end = d.cur + v->length ();
6039 new_init = reshape_init_r (type, &d, true, complain);
6040 if (new_init == error_mark_node)
6041 return error_mark_node;
6043 /* Make sure all the element of the constructor were used. Otherwise,
6044 issue an error about exceeding initializers. */
6045 if (d.cur != d.end)
6047 if (complain & tf_error)
6048 error ("too many initializers for %qT", type);
6049 return error_mark_node;
6052 if (CONSTRUCTOR_IS_DIRECT_INIT (init)
6053 && BRACE_ENCLOSED_INITIALIZER_P (new_init))
6054 CONSTRUCTOR_IS_DIRECT_INIT (new_init) = true;
6056 return new_init;
6059 /* Verify array initializer. Returns true if errors have been reported. */
6061 bool
6062 check_array_initializer (tree decl, tree type, tree init)
6064 tree element_type = TREE_TYPE (type);
6066 /* The array type itself need not be complete, because the
6067 initializer may tell us how many elements are in the array.
6068 But, the elements of the array must be complete. */
6069 if (!COMPLETE_TYPE_P (complete_type (element_type)))
6071 if (decl)
6072 error_at (DECL_SOURCE_LOCATION (decl),
6073 "elements of array %q#D have incomplete type", decl);
6074 else
6075 error ("elements of array %q#T have incomplete type", type);
6076 return true;
6078 /* A compound literal can't have variable size. */
6079 if (init && !decl
6080 && ((COMPLETE_TYPE_P (type) && !TREE_CONSTANT (TYPE_SIZE (type)))
6081 || !TREE_CONSTANT (TYPE_SIZE (element_type))))
6083 error ("variable-sized compound literal");
6084 return true;
6086 return false;
6089 /* Subroutine of check_initializer; args are passed down from that function.
6090 Set stmts_are_full_exprs_p to 1 across a call to build_aggr_init. */
6092 static tree
6093 build_aggr_init_full_exprs (tree decl, tree init, int flags)
6096 gcc_assert (stmts_are_full_exprs_p ());
6097 return build_aggr_init (decl, init, flags, tf_warning_or_error);
6100 /* Verify INIT (the initializer for DECL), and record the
6101 initialization in DECL_INITIAL, if appropriate. CLEANUP is as for
6102 grok_reference_init.
6104 If the return value is non-NULL, it is an expression that must be
6105 evaluated dynamically to initialize DECL. */
6107 static tree
6108 check_initializer (tree decl, tree init, int flags, vec<tree, va_gc> **cleanups)
6110 tree type = TREE_TYPE (decl);
6111 tree init_code = NULL;
6112 tree core_type;
6114 /* Things that are going to be initialized need to have complete
6115 type. */
6116 TREE_TYPE (decl) = type = complete_type (TREE_TYPE (decl));
6118 if (DECL_HAS_VALUE_EXPR_P (decl))
6120 /* A variable with DECL_HAS_VALUE_EXPR_P set is just a placeholder,
6121 it doesn't have storage to be initialized. */
6122 gcc_assert (init == NULL_TREE);
6123 return NULL_TREE;
6126 if (type == error_mark_node)
6127 /* We will have already complained. */
6128 return NULL_TREE;
6130 if (TREE_CODE (type) == ARRAY_TYPE)
6132 if (check_array_initializer (decl, type, init))
6133 return NULL_TREE;
6135 else if (!COMPLETE_TYPE_P (type))
6137 error_at (DECL_SOURCE_LOCATION (decl),
6138 "%q#D has incomplete type", decl);
6139 TREE_TYPE (decl) = error_mark_node;
6140 return NULL_TREE;
6142 else
6143 /* There is no way to make a variable-sized class type in GNU C++. */
6144 gcc_assert (TREE_CONSTANT (TYPE_SIZE (type)));
6146 if (init && BRACE_ENCLOSED_INITIALIZER_P (init))
6148 int init_len = CONSTRUCTOR_NELTS (init);
6149 if (SCALAR_TYPE_P (type))
6151 if (init_len == 0)
6153 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
6154 init = build_zero_init (type, NULL_TREE, false);
6156 else if (init_len != 1 && TREE_CODE (type) != COMPLEX_TYPE)
6158 error_at (EXPR_LOC_OR_LOC (init, DECL_SOURCE_LOCATION (decl)),
6159 "scalar object %qD requires one element in "
6160 "initializer", decl);
6161 TREE_TYPE (decl) = error_mark_node;
6162 return NULL_TREE;
6167 if (TREE_CODE (decl) == CONST_DECL)
6169 gcc_assert (TREE_CODE (type) != REFERENCE_TYPE);
6171 DECL_INITIAL (decl) = init;
6173 gcc_assert (init != NULL_TREE);
6174 init = NULL_TREE;
6176 else if (!init && DECL_REALLY_EXTERN (decl))
6178 else if (init || type_build_ctor_call (type)
6179 || TREE_CODE (type) == REFERENCE_TYPE)
6181 if (TREE_CODE (type) == REFERENCE_TYPE)
6183 init = grok_reference_init (decl, type, init, flags);
6184 flags |= LOOKUP_ALREADY_DIGESTED;
6186 else if (!init)
6187 check_for_uninitialized_const_var (decl);
6188 /* Do not reshape constructors of vectors (they don't need to be
6189 reshaped. */
6190 else if (BRACE_ENCLOSED_INITIALIZER_P (init))
6192 if (is_std_init_list (type))
6194 init = perform_implicit_conversion (type, init,
6195 tf_warning_or_error);
6196 flags |= LOOKUP_ALREADY_DIGESTED;
6198 else if (TYPE_NON_AGGREGATE_CLASS (type))
6200 /* Don't reshape if the class has constructors. */
6201 if (cxx_dialect == cxx98)
6202 error_at (EXPR_LOC_OR_LOC (init, DECL_SOURCE_LOCATION (decl)),
6203 "in C++98 %qD must be initialized by "
6204 "constructor, not by %<{...}%>",
6205 decl);
6207 else if (VECTOR_TYPE_P (type) && TYPE_VECTOR_OPAQUE (type))
6209 error ("opaque vector types cannot be initialized");
6210 init = error_mark_node;
6212 else
6214 init = reshape_init (type, init, tf_warning_or_error);
6215 flags |= LOOKUP_NO_NARROWING;
6218 else if (TREE_CODE (init) == TREE_LIST
6219 && TREE_TYPE (init) != unknown_type_node
6220 && !MAYBE_CLASS_TYPE_P (type))
6222 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
6224 /* We get here with code like `int a (2);' */
6225 init = build_x_compound_expr_from_list (init, ELK_INIT,
6226 tf_warning_or_error);
6229 /* If DECL has an array type without a specific bound, deduce the
6230 array size from the initializer. */
6231 maybe_deduce_size_from_array_init (decl, init);
6232 type = TREE_TYPE (decl);
6233 if (type == error_mark_node)
6234 return NULL_TREE;
6236 if (((type_build_ctor_call (type) || CLASS_TYPE_P (type))
6237 && !(flags & LOOKUP_ALREADY_DIGESTED)
6238 && !(init && BRACE_ENCLOSED_INITIALIZER_P (init)
6239 && CP_AGGREGATE_TYPE_P (type)
6240 && (CLASS_TYPE_P (type)
6241 || !TYPE_NEEDS_CONSTRUCTING (type)
6242 || type_has_extended_temps (type))))
6243 || (DECL_DECOMPOSITION_P (decl) && TREE_CODE (type) == ARRAY_TYPE))
6245 init_code = build_aggr_init_full_exprs (decl, init, flags);
6247 /* A constructor call is a non-trivial initializer even if
6248 it isn't explicitly written. */
6249 if (TREE_SIDE_EFFECTS (init_code))
6250 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = true;
6252 /* If this is a constexpr initializer, expand_default_init will
6253 have returned an INIT_EXPR rather than a CALL_EXPR. In that
6254 case, pull the initializer back out and pass it down into
6255 store_init_value. */
6256 while (TREE_CODE (init_code) == EXPR_STMT
6257 || TREE_CODE (init_code) == CONVERT_EXPR)
6258 init_code = TREE_OPERAND (init_code, 0);
6259 if (TREE_CODE (init_code) == INIT_EXPR)
6261 init = TREE_OPERAND (init_code, 1);
6262 init_code = NULL_TREE;
6263 /* Don't call digest_init; it's unnecessary and will complain
6264 about aggregate initialization of non-aggregate classes. */
6265 flags |= LOOKUP_ALREADY_DIGESTED;
6267 else if (DECL_DECLARED_CONSTEXPR_P (decl))
6269 /* Declared constexpr, but no suitable initializer; massage
6270 init appropriately so we can pass it into store_init_value
6271 for the error. */
6272 if (CLASS_TYPE_P (type)
6273 && (!init || TREE_CODE (init) == TREE_LIST))
6275 init = build_functional_cast (type, init, tf_none);
6276 if (TREE_CODE (init) == TARGET_EXPR)
6277 TARGET_EXPR_DIRECT_INIT_P (init) = true;
6279 init_code = NULL_TREE;
6281 else
6282 init = NULL_TREE;
6285 if (init && TREE_CODE (init) != TREE_VEC)
6287 /* In aggregate initialization of a variable, each element
6288 initialization is a full-expression because there is no
6289 enclosing expression. */
6290 gcc_assert (stmts_are_full_exprs_p ());
6292 init_code = store_init_value (decl, init, cleanups, flags);
6294 if (pedantic && TREE_CODE (type) == ARRAY_TYPE
6295 && DECL_INITIAL (decl)
6296 && TREE_CODE (DECL_INITIAL (decl)) == STRING_CST
6297 && PAREN_STRING_LITERAL_P (DECL_INITIAL (decl)))
6298 warning_at (EXPR_LOC_OR_LOC (DECL_INITIAL (decl),
6299 DECL_SOURCE_LOCATION (decl)),
6300 0, "array %qD initialized by parenthesized "
6301 "string literal %qE",
6302 decl, DECL_INITIAL (decl));
6303 init = NULL;
6306 else
6308 if (CLASS_TYPE_P (core_type = strip_array_types (type))
6309 && (CLASSTYPE_READONLY_FIELDS_NEED_INIT (core_type)
6310 || CLASSTYPE_REF_FIELDS_NEED_INIT (core_type)))
6311 diagnose_uninitialized_cst_or_ref_member (core_type, /*using_new=*/false,
6312 /*complain=*/true);
6314 check_for_uninitialized_const_var (decl);
6317 if (init && init != error_mark_node)
6318 init_code = build2 (INIT_EXPR, type, decl, init);
6320 if (init_code)
6322 /* We might have set these in cp_finish_decl. */
6323 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = false;
6324 TREE_CONSTANT (decl) = false;
6327 if (init_code
6328 && (DECL_IN_AGGR_P (decl) && !DECL_VAR_DECLARED_INLINE_P (decl)))
6330 static int explained = 0;
6332 if (cxx_dialect < cxx11)
6333 error ("initializer invalid for static member with constructor");
6334 else if (cxx_dialect < cxx17)
6335 error ("non-constant in-class initialization invalid for static "
6336 "member %qD", decl);
6337 else
6338 error ("non-constant in-class initialization invalid for non-inline "
6339 "static member %qD", decl);
6340 if (!explained)
6342 inform (input_location,
6343 "(an out of class initialization is required)");
6344 explained = 1;
6346 return NULL_TREE;
6349 return init_code;
6352 /* If DECL is not a local variable, give it RTL. */
6354 static void
6355 make_rtl_for_nonlocal_decl (tree decl, tree init, const char* asmspec)
6357 int toplev = toplevel_bindings_p ();
6358 int defer_p;
6360 /* Set the DECL_ASSEMBLER_NAME for the object. */
6361 if (asmspec)
6363 /* The `register' keyword, when used together with an
6364 asm-specification, indicates that the variable should be
6365 placed in a particular register. */
6366 if (VAR_P (decl) && DECL_REGISTER (decl))
6368 set_user_assembler_name (decl, asmspec);
6369 DECL_HARD_REGISTER (decl) = 1;
6371 else
6373 if (TREE_CODE (decl) == FUNCTION_DECL
6374 && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
6375 set_builtin_user_assembler_name (decl, asmspec);
6376 set_user_assembler_name (decl, asmspec);
6380 /* Handle non-variables up front. */
6381 if (!VAR_P (decl))
6383 rest_of_decl_compilation (decl, toplev, at_eof);
6384 return;
6387 /* If we see a class member here, it should be a static data
6388 member. */
6389 if (DECL_LANG_SPECIFIC (decl) && DECL_IN_AGGR_P (decl))
6391 gcc_assert (TREE_STATIC (decl));
6392 /* An in-class declaration of a static data member should be
6393 external; it is only a declaration, and not a definition. */
6394 if (init == NULL_TREE)
6395 gcc_assert (DECL_EXTERNAL (decl)
6396 || !TREE_PUBLIC (decl)
6397 || DECL_INLINE_VAR_P (decl));
6400 /* We don't create any RTL for local variables. */
6401 if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
6402 return;
6404 /* We defer emission of local statics until the corresponding
6405 DECL_EXPR is expanded. But with constexpr its function might never
6406 be expanded, so go ahead and tell cgraph about the variable now. */
6407 defer_p = ((DECL_FUNCTION_SCOPE_P (decl)
6408 && !var_in_maybe_constexpr_fn (decl))
6409 || DECL_VIRTUAL_P (decl));
6411 /* Defer template instantiations. */
6412 if (DECL_LANG_SPECIFIC (decl)
6413 && DECL_IMPLICIT_INSTANTIATION (decl))
6414 defer_p = 1;
6416 /* If we're not deferring, go ahead and assemble the variable. */
6417 if (!defer_p)
6418 rest_of_decl_compilation (decl, toplev, at_eof);
6421 /* walk_tree helper for wrap_temporary_cleanups, below. */
6423 static tree
6424 wrap_cleanups_r (tree *stmt_p, int *walk_subtrees, void *data)
6426 /* Stop at types or full-expression boundaries. */
6427 if (TYPE_P (*stmt_p)
6428 || TREE_CODE (*stmt_p) == CLEANUP_POINT_EXPR)
6430 *walk_subtrees = 0;
6431 return NULL_TREE;
6434 if (TREE_CODE (*stmt_p) == TARGET_EXPR)
6436 tree guard = (tree)data;
6437 tree tcleanup = TARGET_EXPR_CLEANUP (*stmt_p);
6439 tcleanup = build2 (TRY_CATCH_EXPR, void_type_node, tcleanup, guard);
6440 /* Tell honor_protect_cleanup_actions to handle this as a separate
6441 cleanup. */
6442 TRY_CATCH_IS_CLEANUP (tcleanup) = 1;
6444 TARGET_EXPR_CLEANUP (*stmt_p) = tcleanup;
6447 return NULL_TREE;
6450 /* We're initializing a local variable which has a cleanup GUARD. If there
6451 are any temporaries used in the initializer INIT of this variable, we
6452 need to wrap their cleanups with TRY_CATCH_EXPR (, GUARD) so that the
6453 variable will be cleaned up properly if one of them throws.
6455 Unfortunately, there's no way to express this properly in terms of
6456 nesting, as the regions for the temporaries overlap the region for the
6457 variable itself; if there are two temporaries, the variable needs to be
6458 the first thing destroyed if either of them throws. However, we only
6459 want to run the variable's cleanup if it actually got constructed. So
6460 we need to guard the temporary cleanups with the variable's cleanup if
6461 they are run on the normal path, but not if they are run on the
6462 exceptional path. We implement this by telling
6463 honor_protect_cleanup_actions to strip the variable cleanup from the
6464 exceptional path. */
6466 static void
6467 wrap_temporary_cleanups (tree init, tree guard)
6469 cp_walk_tree_without_duplicates (&init, wrap_cleanups_r, (void *)guard);
6472 /* Generate code to initialize DECL (a local variable). */
6474 static void
6475 initialize_local_var (tree decl, tree init)
6477 tree type = TREE_TYPE (decl);
6478 tree cleanup;
6479 int already_used;
6481 gcc_assert (VAR_P (decl)
6482 || TREE_CODE (decl) == RESULT_DECL);
6483 gcc_assert (!TREE_STATIC (decl));
6485 if (DECL_SIZE (decl) == NULL_TREE)
6487 /* If we used it already as memory, it must stay in memory. */
6488 DECL_INITIAL (decl) = NULL_TREE;
6489 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
6490 return;
6493 if (type == error_mark_node)
6494 return;
6496 /* Compute and store the initial value. */
6497 already_used = TREE_USED (decl) || TREE_USED (type);
6498 if (TREE_USED (type))
6499 DECL_READ_P (decl) = 1;
6501 /* Generate a cleanup, if necessary. */
6502 cleanup = cxx_maybe_build_cleanup (decl, tf_warning_or_error);
6504 /* Perform the initialization. */
6505 if (init)
6507 tree rinit = (TREE_CODE (init) == INIT_EXPR
6508 ? TREE_OPERAND (init, 1) : NULL_TREE);
6509 if (rinit && !TREE_SIDE_EFFECTS (rinit))
6511 /* Stick simple initializers in DECL_INITIAL so that
6512 -Wno-init-self works (c++/34772). */
6513 gcc_assert (TREE_OPERAND (init, 0) == decl);
6514 DECL_INITIAL (decl) = rinit;
6516 if (warn_init_self && TREE_CODE (type) == REFERENCE_TYPE)
6518 STRIP_NOPS (rinit);
6519 if (rinit == decl)
6520 warning_at (DECL_SOURCE_LOCATION (decl),
6521 OPT_Winit_self,
6522 "reference %qD is initialized with itself", decl);
6525 else
6527 int saved_stmts_are_full_exprs_p;
6529 /* If we're only initializing a single object, guard the
6530 destructors of any temporaries used in its initializer with
6531 its destructor. This isn't right for arrays because each
6532 element initialization is a full-expression. */
6533 if (cleanup && TREE_CODE (type) != ARRAY_TYPE)
6534 wrap_temporary_cleanups (init, cleanup);
6536 gcc_assert (building_stmt_list_p ());
6537 saved_stmts_are_full_exprs_p = stmts_are_full_exprs_p ();
6538 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
6539 finish_expr_stmt (init);
6540 current_stmt_tree ()->stmts_are_full_exprs_p =
6541 saved_stmts_are_full_exprs_p;
6545 /* Set this to 0 so we can tell whether an aggregate which was
6546 initialized was ever used. Don't do this if it has a
6547 destructor, so we don't complain about the 'resource
6548 allocation is initialization' idiom. Now set
6549 attribute((unused)) on types so decls of that type will be
6550 marked used. (see TREE_USED, above.) */
6551 if (TYPE_NEEDS_CONSTRUCTING (type)
6552 && ! already_used
6553 && TYPE_HAS_TRIVIAL_DESTRUCTOR (type)
6554 && DECL_NAME (decl))
6555 TREE_USED (decl) = 0;
6556 else if (already_used)
6557 TREE_USED (decl) = 1;
6559 if (cleanup)
6560 finish_decl_cleanup (decl, cleanup);
6563 /* DECL is a VAR_DECL for a compiler-generated variable with static
6564 storage duration (like a virtual table) whose initializer is a
6565 compile-time constant. Initialize the variable and provide it to the
6566 back end. */
6568 void
6569 initialize_artificial_var (tree decl, vec<constructor_elt, va_gc> *v)
6571 tree init;
6572 gcc_assert (DECL_ARTIFICIAL (decl));
6573 init = build_constructor (TREE_TYPE (decl), v);
6574 gcc_assert (TREE_CODE (init) == CONSTRUCTOR);
6575 DECL_INITIAL (decl) = init;
6576 DECL_INITIALIZED_P (decl) = 1;
6577 determine_visibility (decl);
6578 layout_var_decl (decl);
6579 maybe_commonize_var (decl);
6580 make_rtl_for_nonlocal_decl (decl, init, /*asmspec=*/NULL);
6583 /* INIT is the initializer for a variable, as represented by the
6584 parser. Returns true iff INIT is type-dependent. */
6586 static bool
6587 type_dependent_init_p (tree init)
6589 if (TREE_CODE (init) == TREE_LIST)
6590 /* A parenthesized initializer, e.g.: int i (3, 2); ? */
6591 return any_type_dependent_elements_p (init);
6592 else if (TREE_CODE (init) == CONSTRUCTOR)
6593 /* A brace-enclosed initializer, e.g.: int i = { 3 }; ? */
6595 if (dependent_type_p (TREE_TYPE (init)))
6596 return true;
6598 vec<constructor_elt, va_gc> *elts;
6599 size_t nelts;
6600 size_t i;
6602 elts = CONSTRUCTOR_ELTS (init);
6603 nelts = vec_safe_length (elts);
6604 for (i = 0; i < nelts; ++i)
6605 if (type_dependent_init_p ((*elts)[i].value))
6606 return true;
6608 else
6609 /* It must be a simple expression, e.g., int i = 3; */
6610 return type_dependent_expression_p (init);
6612 return false;
6615 /* INIT is the initializer for a variable, as represented by the
6616 parser. Returns true iff INIT is value-dependent. */
6618 static bool
6619 value_dependent_init_p (tree init)
6621 if (TREE_CODE (init) == TREE_LIST)
6622 /* A parenthesized initializer, e.g.: int i (3, 2); ? */
6623 return any_value_dependent_elements_p (init);
6624 else if (TREE_CODE (init) == CONSTRUCTOR)
6625 /* A brace-enclosed initializer, e.g.: int i = { 3 }; ? */
6627 vec<constructor_elt, va_gc> *elts;
6628 size_t nelts;
6629 size_t i;
6631 elts = CONSTRUCTOR_ELTS (init);
6632 nelts = vec_safe_length (elts);
6633 for (i = 0; i < nelts; ++i)
6634 if (value_dependent_init_p ((*elts)[i].value))
6635 return true;
6637 else
6638 /* It must be a simple expression, e.g., int i = 3; */
6639 return value_dependent_expression_p (init);
6641 return false;
6644 // Returns true if a DECL is VAR_DECL with the concept specifier.
6645 static inline bool
6646 is_concept_var (tree decl)
6648 return (VAR_P (decl)
6649 // Not all variables have DECL_LANG_SPECIFIC.
6650 && DECL_LANG_SPECIFIC (decl)
6651 && DECL_DECLARED_CONCEPT_P (decl));
6654 /* A helper function to be called via walk_tree. If any label exists
6655 under *TP, it is (going to be) forced. Set has_forced_label_in_static. */
6657 static tree
6658 notice_forced_label_r (tree *tp, int *walk_subtrees, void *)
6660 if (TYPE_P (*tp))
6661 *walk_subtrees = 0;
6662 if (TREE_CODE (*tp) == LABEL_DECL)
6663 cfun->has_forced_label_in_static = 1;
6664 return NULL_TREE;
6667 /* Finish processing of a declaration;
6668 install its line number and initial value.
6669 If the length of an array type is not known before,
6670 it must be determined now, from the initial value, or it is an error.
6672 INIT is the initializer (if any) for DECL. If INIT_CONST_EXPR_P is
6673 true, then INIT is an integral constant expression.
6675 FLAGS is LOOKUP_ONLYCONVERTING if the = init syntax was used, else 0
6676 if the (init) syntax was used. */
6678 void
6679 cp_finish_decl (tree decl, tree init, bool init_const_expr_p,
6680 tree asmspec_tree, int flags)
6682 tree type;
6683 vec<tree, va_gc> *cleanups = NULL;
6684 const char *asmspec = NULL;
6685 int was_readonly = 0;
6686 bool var_definition_p = false;
6687 tree auto_node;
6689 if (decl == error_mark_node)
6690 return;
6691 else if (! decl)
6693 if (init)
6694 error ("assignment (not initialization) in declaration");
6695 return;
6698 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
6699 /* Parameters are handled by store_parm_decls, not cp_finish_decl. */
6700 gcc_assert (TREE_CODE (decl) != PARM_DECL);
6702 type = TREE_TYPE (decl);
6703 if (type == error_mark_node)
6704 return;
6706 /* Warn about register storage specifiers except when in GNU global
6707 or local register variable extension. */
6708 if (VAR_P (decl) && DECL_REGISTER (decl) && asmspec_tree == NULL_TREE)
6710 if (cxx_dialect >= cxx17)
6711 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
6712 "ISO C++17 does not allow %<register%> storage "
6713 "class specifier");
6714 else
6715 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
6716 "%<register%> storage class specifier used");
6719 /* If a name was specified, get the string. */
6720 if (at_namespace_scope_p ())
6721 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
6722 if (asmspec_tree && asmspec_tree != error_mark_node)
6723 asmspec = TREE_STRING_POINTER (asmspec_tree);
6725 if (current_class_type
6726 && CP_DECL_CONTEXT (decl) == current_class_type
6727 && TYPE_BEING_DEFINED (current_class_type)
6728 && !CLASSTYPE_TEMPLATE_INSTANTIATION (current_class_type)
6729 && (DECL_INITIAL (decl) || init))
6730 DECL_INITIALIZED_IN_CLASS_P (decl) = 1;
6732 if (TREE_CODE (decl) != FUNCTION_DECL
6733 && (auto_node = type_uses_auto (type)))
6735 tree d_init;
6736 if (init == NULL_TREE)
6738 if (DECL_LANG_SPECIFIC (decl)
6739 && DECL_TEMPLATE_INSTANTIATION (decl)
6740 && !DECL_TEMPLATE_INSTANTIATED (decl))
6742 /* init is null because we're deferring instantiating the
6743 initializer until we need it. Well, we need it now. */
6744 instantiate_decl (decl, /*defer_ok*/true, /*expl*/false);
6745 return;
6748 gcc_assert (CLASS_PLACEHOLDER_TEMPLATE (auto_node));
6750 d_init = init;
6751 if (d_init)
6753 if (TREE_CODE (d_init) == TREE_LIST
6754 && !CLASS_PLACEHOLDER_TEMPLATE (auto_node))
6755 d_init = build_x_compound_expr_from_list (d_init, ELK_INIT,
6756 tf_warning_or_error);
6757 d_init = resolve_nondeduced_context (d_init, tf_warning_or_error);
6759 enum auto_deduction_context adc = adc_variable_type;
6760 if (VAR_P (decl) && DECL_DECOMPOSITION_P (decl))
6761 adc = adc_decomp_type;
6762 type = TREE_TYPE (decl) = do_auto_deduction (type, d_init, auto_node,
6763 tf_warning_or_error, adc,
6764 NULL_TREE, flags);
6765 if (type == error_mark_node)
6766 return;
6767 if (TREE_CODE (type) == FUNCTION_TYPE)
6769 error ("initializer for %<decltype(auto) %D%> has function type "
6770 "(did you forget the %<()%> ?)", decl);
6771 TREE_TYPE (decl) = error_mark_node;
6772 return;
6774 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
6777 if (!ensure_literal_type_for_constexpr_object (decl))
6778 DECL_DECLARED_CONSTEXPR_P (decl) = 0;
6780 if (VAR_P (decl)
6781 && DECL_CLASS_SCOPE_P (decl)
6782 && DECL_INITIALIZED_IN_CLASS_P (decl))
6783 check_static_variable_definition (decl, type);
6785 if (init && TREE_CODE (decl) == FUNCTION_DECL)
6787 tree clone;
6788 if (init == ridpointers[(int)RID_DELETE])
6790 /* FIXME check this is 1st decl. */
6791 DECL_DELETED_FN (decl) = 1;
6792 DECL_DECLARED_INLINE_P (decl) = 1;
6793 DECL_INITIAL (decl) = error_mark_node;
6794 FOR_EACH_CLONE (clone, decl)
6796 DECL_DELETED_FN (clone) = 1;
6797 DECL_DECLARED_INLINE_P (clone) = 1;
6798 DECL_INITIAL (clone) = error_mark_node;
6800 init = NULL_TREE;
6802 else if (init == ridpointers[(int)RID_DEFAULT])
6804 if (defaultable_fn_check (decl))
6805 DECL_DEFAULTED_FN (decl) = 1;
6806 else
6807 DECL_INITIAL (decl) = NULL_TREE;
6811 if (init && VAR_P (decl))
6813 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = 1;
6814 /* If DECL is a reference, then we want to know whether init is a
6815 reference constant; init_const_expr_p as passed tells us whether
6816 it's an rvalue constant. */
6817 if (TREE_CODE (type) == REFERENCE_TYPE)
6818 init_const_expr_p = potential_constant_expression (init);
6819 if (init_const_expr_p)
6821 /* Set these flags now for templates. We'll update the flags in
6822 store_init_value for instantiations. */
6823 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = 1;
6824 if (decl_maybe_constant_var_p (decl)
6825 /* FIXME setting TREE_CONSTANT on refs breaks the back end. */
6826 && TREE_CODE (type) != REFERENCE_TYPE)
6827 TREE_CONSTANT (decl) = 1;
6831 if (processing_template_decl)
6833 bool type_dependent_p;
6835 /* Add this declaration to the statement-tree. */
6836 if (at_function_scope_p ())
6837 add_decl_expr (decl);
6839 type_dependent_p = dependent_type_p (type);
6841 if (check_for_bare_parameter_packs (init))
6843 init = NULL_TREE;
6844 DECL_INITIAL (decl) = NULL_TREE;
6847 init = do_dependent_capture (init);
6849 /* Generally, initializers in templates are expanded when the
6850 template is instantiated. But, if DECL is a variable constant
6851 then it can be used in future constant expressions, so its value
6852 must be available. */
6854 if (!VAR_P (decl) || type_dependent_p)
6855 /* We can't do anything if the decl has dependent type. */;
6856 else if (init
6857 && init_const_expr_p
6858 && TREE_CODE (type) != REFERENCE_TYPE
6859 && decl_maybe_constant_var_p (decl)
6860 && !type_dependent_init_p (init)
6861 && !value_dependent_init_p (init))
6863 /* This variable seems to be a non-dependent constant, so process
6864 its initializer. If check_initializer returns non-null the
6865 initialization wasn't constant after all. */
6866 tree init_code;
6867 cleanups = make_tree_vector ();
6868 init_code = check_initializer (decl, init, flags, &cleanups);
6869 if (init_code == NULL_TREE)
6870 init = NULL_TREE;
6871 release_tree_vector (cleanups);
6873 else if (!init && is_concept_var (decl))
6874 error ("variable concept has no initializer");
6875 else if (!DECL_PRETTY_FUNCTION_P (decl))
6877 /* Deduce array size even if the initializer is dependent. */
6878 maybe_deduce_size_from_array_init (decl, init);
6879 /* And complain about multiple initializers. */
6880 if (init && TREE_CODE (init) == TREE_LIST && TREE_CHAIN (init)
6881 && !MAYBE_CLASS_TYPE_P (type))
6882 init = build_x_compound_expr_from_list (init, ELK_INIT,
6883 tf_warning_or_error);
6886 if (init)
6887 DECL_INITIAL (decl) = init;
6888 return;
6891 /* Just store non-static data member initializers for later. */
6892 if (init && TREE_CODE (decl) == FIELD_DECL)
6893 DECL_INITIAL (decl) = init;
6895 /* Take care of TYPE_DECLs up front. */
6896 if (TREE_CODE (decl) == TYPE_DECL)
6898 if (type != error_mark_node
6899 && MAYBE_CLASS_TYPE_P (type) && DECL_NAME (decl))
6901 if (TREE_TYPE (DECL_NAME (decl)) && TREE_TYPE (decl) != type)
6902 warning (0, "shadowing previous type declaration of %q#D", decl);
6903 set_identifier_type_value (DECL_NAME (decl), decl);
6906 /* If we have installed this as the canonical typedef for this
6907 type, and that type has not been defined yet, delay emitting
6908 the debug information for it, as we will emit it later. */
6909 if (TYPE_MAIN_DECL (TREE_TYPE (decl)) == decl
6910 && !COMPLETE_TYPE_P (TREE_TYPE (decl)))
6911 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
6913 rest_of_decl_compilation (decl, DECL_FILE_SCOPE_P (decl),
6914 at_eof);
6915 return;
6918 /* A reference will be modified here, as it is initialized. */
6919 if (! DECL_EXTERNAL (decl)
6920 && TREE_READONLY (decl)
6921 && TREE_CODE (type) == REFERENCE_TYPE)
6923 was_readonly = 1;
6924 TREE_READONLY (decl) = 0;
6927 if (VAR_P (decl))
6929 /* If this is a local variable that will need a mangled name,
6930 register it now. We must do this before processing the
6931 initializer for the variable, since the initialization might
6932 require a guard variable, and since the mangled name of the
6933 guard variable will depend on the mangled name of this
6934 variable. */
6935 if (DECL_FUNCTION_SCOPE_P (decl)
6936 && TREE_STATIC (decl)
6937 && !DECL_ARTIFICIAL (decl))
6939 push_local_name (decl);
6940 /* Normally has_forced_label_in_static is set during GIMPLE
6941 lowering, but [cd]tors are never actually compiled directly.
6942 We need to set this early so we can deal with the label
6943 address extension. */
6944 if ((DECL_CONSTRUCTOR_P (current_function_decl)
6945 || DECL_DESTRUCTOR_P (current_function_decl))
6946 && init)
6948 walk_tree (&init, notice_forced_label_r, NULL, NULL);
6949 add_local_decl (cfun, decl);
6951 /* And make sure it's in the symbol table for
6952 c_parse_final_cleanups to find. */
6953 varpool_node::get_create (decl);
6956 /* Convert the initializer to the type of DECL, if we have not
6957 already initialized DECL. */
6958 if (!DECL_INITIALIZED_P (decl)
6959 /* If !DECL_EXTERNAL then DECL is being defined. In the
6960 case of a static data member initialized inside the
6961 class-specifier, there can be an initializer even if DECL
6962 is *not* defined. */
6963 && (!DECL_EXTERNAL (decl) || init))
6965 cleanups = make_tree_vector ();
6966 init = check_initializer (decl, init, flags, &cleanups);
6968 /* Handle:
6970 [dcl.init]
6972 The memory occupied by any object of static storage
6973 duration is zero-initialized at program startup before
6974 any other initialization takes place.
6976 We cannot create an appropriate initializer until after
6977 the type of DECL is finalized. If DECL_INITIAL is set,
6978 then the DECL is statically initialized, and any
6979 necessary zero-initialization has already been performed. */
6980 if (TREE_STATIC (decl) && !DECL_INITIAL (decl))
6981 DECL_INITIAL (decl) = build_zero_init (TREE_TYPE (decl),
6982 /*nelts=*/NULL_TREE,
6983 /*static_storage_p=*/true);
6984 /* Remember that the initialization for this variable has
6985 taken place. */
6986 DECL_INITIALIZED_P (decl) = 1;
6987 /* This declaration is the definition of this variable,
6988 unless we are initializing a static data member within
6989 the class specifier. */
6990 if (!DECL_EXTERNAL (decl))
6991 var_definition_p = true;
6993 /* If the variable has an array type, lay out the type, even if
6994 there is no initializer. It is valid to index through the
6995 array, and we must get TYPE_ALIGN set correctly on the array
6996 type. */
6997 else if (TREE_CODE (type) == ARRAY_TYPE)
6998 layout_type (type);
7000 if (TREE_STATIC (decl)
7001 && !at_function_scope_p ()
7002 && current_function_decl == NULL)
7003 /* So decl is a global variable or a static member of a
7004 non local class. Record the types it uses
7005 so that we can decide later to emit debug info for them. */
7006 record_types_used_by_current_var_decl (decl);
7009 /* Add this declaration to the statement-tree. This needs to happen
7010 after the call to check_initializer so that the DECL_EXPR for a
7011 reference temp is added before the DECL_EXPR for the reference itself. */
7012 if (DECL_FUNCTION_SCOPE_P (decl))
7014 /* If we're building a variable sized type, and we might be
7015 reachable other than via the top of the current binding
7016 level, then create a new BIND_EXPR so that we deallocate
7017 the object at the right time. */
7018 if (VAR_P (decl)
7019 && DECL_SIZE (decl)
7020 && !TREE_CONSTANT (DECL_SIZE (decl))
7021 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list))
7023 tree bind;
7024 bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
7025 TREE_SIDE_EFFECTS (bind) = 1;
7026 add_stmt (bind);
7027 BIND_EXPR_BODY (bind) = push_stmt_list ();
7029 add_decl_expr (decl);
7032 /* Let the middle end know about variables and functions -- but not
7033 static data members in uninstantiated class templates. */
7034 if (VAR_OR_FUNCTION_DECL_P (decl))
7036 if (VAR_P (decl))
7038 layout_var_decl (decl);
7039 maybe_commonize_var (decl);
7042 /* This needs to happen after the linkage is set. */
7043 determine_visibility (decl);
7045 if (var_definition_p && TREE_STATIC (decl))
7047 /* If a TREE_READONLY variable needs initialization
7048 at runtime, it is no longer readonly and we need to
7049 avoid MEM_READONLY_P being set on RTL created for it. */
7050 if (init)
7052 if (TREE_READONLY (decl))
7053 TREE_READONLY (decl) = 0;
7054 was_readonly = 0;
7056 else if (was_readonly)
7057 TREE_READONLY (decl) = 1;
7059 /* Likewise if it needs destruction. */
7060 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
7061 TREE_READONLY (decl) = 0;
7064 make_rtl_for_nonlocal_decl (decl, init, asmspec);
7066 /* Check for abstractness of the type. Notice that there is no
7067 need to strip array types here since the check for those types
7068 is already done within create_array_type_for_decl. */
7069 abstract_virtuals_error (decl, type);
7071 if (TREE_TYPE (decl) == error_mark_node)
7072 /* No initialization required. */
7074 else if (TREE_CODE (decl) == FUNCTION_DECL)
7076 if (init)
7078 if (init == ridpointers[(int)RID_DEFAULT])
7080 /* An out-of-class default definition is defined at
7081 the point where it is explicitly defaulted. */
7082 if (DECL_DELETED_FN (decl))
7083 maybe_explain_implicit_delete (decl);
7084 else if (DECL_INITIAL (decl) == error_mark_node)
7085 synthesize_method (decl);
7087 else
7088 error ("function %q#D is initialized like a variable", decl);
7090 /* else no initialization required. */
7092 else if (DECL_EXTERNAL (decl)
7093 && ! (DECL_LANG_SPECIFIC (decl)
7094 && DECL_NOT_REALLY_EXTERN (decl)))
7096 if (init)
7097 DECL_INITIAL (decl) = init;
7099 /* A variable definition. */
7100 else if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
7101 /* Initialize the local variable. */
7102 initialize_local_var (decl, init);
7104 /* If a variable is defined, and then a subsequent
7105 definition with external linkage is encountered, we will
7106 get here twice for the same variable. We want to avoid
7107 calling expand_static_init more than once. For variables
7108 that are not static data members, we can call
7109 expand_static_init only when we actually process the
7110 initializer. It is not legal to redeclare a static data
7111 member, so this issue does not arise in that case. */
7112 else if (var_definition_p && TREE_STATIC (decl))
7113 expand_static_init (decl, init);
7116 /* If a CLEANUP_STMT was created to destroy a temporary bound to a
7117 reference, insert it in the statement-tree now. */
7118 if (cleanups)
7120 unsigned i; tree t;
7121 FOR_EACH_VEC_ELT (*cleanups, i, t)
7122 push_cleanup (decl, t, false);
7123 release_tree_vector (cleanups);
7126 if (was_readonly)
7127 TREE_READONLY (decl) = 1;
7129 invoke_plugin_callbacks (PLUGIN_FINISH_DECL, decl);
7132 /* For class TYPE return itself or some its bases that contain
7133 any direct non-static data members. Return error_mark_node if an
7134 error has been diagnosed. */
7136 static tree
7137 find_decomp_class_base (location_t loc, tree type, tree ret)
7139 bool member_seen = false;
7140 for (tree field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
7141 if (TREE_CODE (field) != FIELD_DECL || DECL_ARTIFICIAL (field))
7142 continue;
7143 else if (ret)
7144 return type;
7145 else if (ANON_AGGR_TYPE_P (TREE_TYPE (field)))
7147 if (TREE_CODE (TREE_TYPE (field)) == RECORD_TYPE)
7148 error_at (loc, "cannot decompose class type %qT because it has an "
7149 "anonymous struct member", type);
7150 else
7151 error_at (loc, "cannot decompose class type %qT because it has an "
7152 "anonymous union member", type);
7153 inform (DECL_SOURCE_LOCATION (field), "declared here");
7154 return error_mark_node;
7156 else if (TREE_PRIVATE (field) || TREE_PROTECTED (field))
7158 error_at (loc, "cannot decompose non-public member %qD of %qT",
7159 field, type);
7160 inform (DECL_SOURCE_LOCATION (field),
7161 TREE_PRIVATE (field)
7162 ? G_("declared private here")
7163 : G_("declared protected here"));
7164 return error_mark_node;
7166 else
7167 member_seen = true;
7169 tree base_binfo, binfo;
7170 tree orig_ret = ret;
7171 int i;
7172 if (member_seen)
7173 ret = type;
7174 for (binfo = TYPE_BINFO (type), i = 0;
7175 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
7177 tree t = find_decomp_class_base (loc, TREE_TYPE (base_binfo), ret);
7178 if (t == error_mark_node)
7179 return error_mark_node;
7180 if (t != NULL_TREE)
7182 if (ret == type)
7184 error_at (loc, "cannot decompose class type %qT: both it and "
7185 "its base class %qT have non-static data members",
7186 type, t);
7187 return error_mark_node;
7189 else if (orig_ret != NULL_TREE)
7190 return t;
7191 else if (ret == t)
7192 /* OK, found the same base along another path. We'll complain
7193 in convert_to_base if it's ambiguous. */;
7194 else if (ret != NULL_TREE)
7196 error_at (loc, "cannot decompose class type %qT: its base "
7197 "classes %qT and %qT have non-static data "
7198 "members", type, ret, t);
7199 return error_mark_node;
7201 else
7202 ret = t;
7205 return ret;
7208 /* Return std::tuple_size<TYPE>::value. */
7210 static tree
7211 get_tuple_size (tree type)
7213 tree args = make_tree_vec (1);
7214 TREE_VEC_ELT (args, 0) = type;
7215 tree inst = lookup_template_class (get_identifier ("tuple_size"), args,
7216 /*in_decl*/NULL_TREE,
7217 /*context*/std_node,
7218 /*entering_scope*/false, tf_none);
7219 inst = complete_type (inst);
7220 if (inst == error_mark_node || !COMPLETE_TYPE_P (inst))
7221 return NULL_TREE;
7222 tree val = lookup_qualified_name (inst, get_identifier ("value"),
7223 /*type*/false, /*complain*/false);
7224 if (TREE_CODE (val) == VAR_DECL || TREE_CODE (val) == CONST_DECL)
7225 val = maybe_constant_value (val);
7226 if (TREE_CODE (val) == INTEGER_CST)
7227 return val;
7228 else
7229 return error_mark_node;
7232 /* Return std::tuple_element<I,TYPE>::type. */
7234 static tree
7235 get_tuple_element_type (tree type, unsigned i)
7237 tree args = make_tree_vec (2);
7238 TREE_VEC_ELT (args, 0) = build_int_cst (integer_type_node, i);
7239 TREE_VEC_ELT (args, 1) = type;
7240 tree inst = lookup_template_class (get_identifier ("tuple_element"), args,
7241 /*in_decl*/NULL_TREE,
7242 /*context*/std_node,
7243 /*entering_scope*/false,
7244 tf_warning_or_error);
7245 return make_typename_type (inst, get_identifier ("type"),
7246 none_type, tf_warning_or_error);
7249 /* Return e.get<i>() or get<i>(e). */
7251 static tree
7252 get_tuple_decomp_init (tree decl, unsigned i)
7254 tree get_id = get_identifier ("get");
7255 tree targs = make_tree_vec (1);
7256 TREE_VEC_ELT (targs, 0) = build_int_cst (integer_type_node, i);
7258 tree etype = TREE_TYPE (decl);
7259 tree e = convert_from_reference (decl);
7261 /* [The id-expression] e is an lvalue if the type of the entity e is an
7262 lvalue reference and an xvalue otherwise. */
7263 if (TREE_CODE (etype) != REFERENCE_TYPE
7264 || TYPE_REF_IS_RVALUE (etype))
7265 e = move (e);
7267 tree fns = lookup_qualified_name (TREE_TYPE (e), get_id,
7268 /*type*/false, /*complain*/false);
7269 if (fns != error_mark_node)
7271 fns = lookup_template_function (fns, targs);
7272 return build_new_method_call (e, fns, /*args*/NULL,
7273 /*path*/NULL_TREE, LOOKUP_NORMAL,
7274 /*fn_p*/NULL, tf_warning_or_error);
7276 else
7278 vec<tree,va_gc> *args = make_tree_vector_single (e);
7279 fns = lookup_template_function (get_id, targs);
7280 fns = perform_koenig_lookup (fns, args, tf_warning_or_error);
7281 return finish_call_expr (fns, &args, /*novirt*/false,
7282 /*koenig*/true, tf_warning_or_error);
7286 /* It's impossible to recover the decltype of a tuple decomposition variable
7287 based on the actual type of the variable, so store it in a hash table. */
7288 static GTY(()) hash_map<tree,tree> *decomp_type_table;
7289 static void
7290 store_decomp_type (tree v, tree t)
7292 if (!decomp_type_table)
7293 decomp_type_table = hash_map<tree,tree>::create_ggc (13);
7294 decomp_type_table->put (v, t);
7297 tree
7298 lookup_decomp_type (tree v)
7300 return *decomp_type_table->get (v);
7303 /* Finish a decomposition declaration. DECL is the underlying declaration
7304 "e", FIRST is the head of a chain of decls for the individual identifiers
7305 chained through DECL_CHAIN in reverse order and COUNT is the number of
7306 those decls. */
7308 void
7309 cp_finish_decomp (tree decl, tree first, unsigned int count)
7311 if (error_operand_p (decl))
7313 error_out:
7314 while (count--)
7316 TREE_TYPE (first) = error_mark_node;
7317 if (DECL_HAS_VALUE_EXPR_P (first))
7319 SET_DECL_VALUE_EXPR (first, NULL_TREE);
7320 DECL_HAS_VALUE_EXPR_P (first) = 0;
7322 first = DECL_CHAIN (first);
7324 if (DECL_P (decl) && DECL_NAMESPACE_SCOPE_P (decl))
7325 SET_DECL_ASSEMBLER_NAME (decl, get_identifier ("<decomp>"));
7326 return;
7329 location_t loc = DECL_SOURCE_LOCATION (decl);
7330 if (type_dependent_expression_p (decl)
7331 /* This happens for range for when not in templates.
7332 Still add the DECL_VALUE_EXPRs for later processing. */
7333 || (!processing_template_decl
7334 && type_uses_auto (TREE_TYPE (decl))))
7336 for (unsigned int i = 0; i < count; i++)
7338 if (!DECL_HAS_VALUE_EXPR_P (first))
7340 tree v = build_nt (ARRAY_REF, decl,
7341 size_int (count - i - 1),
7342 NULL_TREE, NULL_TREE);
7343 SET_DECL_VALUE_EXPR (first, v);
7344 DECL_HAS_VALUE_EXPR_P (first) = 1;
7346 if (processing_template_decl)
7347 fit_decomposition_lang_decl (first, decl);
7348 first = DECL_CHAIN (first);
7350 return;
7353 auto_vec<tree, 16> v;
7354 v.safe_grow (count);
7355 tree d = first;
7356 for (unsigned int i = 0; i < count; i++, d = DECL_CHAIN (d))
7358 v[count - i - 1] = d;
7359 fit_decomposition_lang_decl (d, decl);
7362 tree type = TREE_TYPE (decl);
7363 tree dexp = decl;
7365 if (TREE_CODE (type) == REFERENCE_TYPE)
7367 dexp = convert_from_reference (dexp);
7368 type = TREE_TYPE (type);
7371 tree eltype = NULL_TREE;
7372 unsigned HOST_WIDE_INT eltscnt = 0;
7373 if (TREE_CODE (type) == ARRAY_TYPE)
7375 tree nelts;
7376 nelts = array_type_nelts_top (type);
7377 if (nelts == error_mark_node)
7378 goto error_out;
7379 if (!tree_fits_uhwi_p (nelts))
7381 error_at (loc, "cannot decompose variable length array %qT", type);
7382 goto error_out;
7384 eltscnt = tree_to_uhwi (nelts);
7385 if (count != eltscnt)
7387 cnt_mismatch:
7388 if (count > eltscnt)
7389 error_at (loc, "%u names provided while %qT decomposes into "
7390 "%wu elements", count, type, eltscnt);
7391 else
7392 error_at (loc, "only %u names provided while %qT decomposes into "
7393 "%wu elements", count, type, eltscnt);
7394 goto error_out;
7396 eltype = TREE_TYPE (type);
7397 for (unsigned int i = 0; i < count; i++)
7399 TREE_TYPE (v[i]) = eltype;
7400 layout_decl (v[i], 0);
7401 if (processing_template_decl)
7402 continue;
7403 tree t = unshare_expr (dexp);
7404 t = build4_loc (DECL_SOURCE_LOCATION (v[i]), ARRAY_REF,
7405 eltype, t, size_int (i), NULL_TREE,
7406 NULL_TREE);
7407 SET_DECL_VALUE_EXPR (v[i], t);
7408 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
7411 /* 2 GNU extensions. */
7412 else if (TREE_CODE (type) == COMPLEX_TYPE)
7414 eltscnt = 2;
7415 if (count != eltscnt)
7416 goto cnt_mismatch;
7417 eltype = cp_build_qualified_type (TREE_TYPE (type), TYPE_QUALS (type));
7418 for (unsigned int i = 0; i < count; i++)
7420 TREE_TYPE (v[i]) = eltype;
7421 layout_decl (v[i], 0);
7422 if (processing_template_decl)
7423 continue;
7424 tree t = unshare_expr (dexp);
7425 t = build1_loc (DECL_SOURCE_LOCATION (v[i]),
7426 i ? IMAGPART_EXPR : REALPART_EXPR, eltype,
7428 SET_DECL_VALUE_EXPR (v[i], t);
7429 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
7432 else if (TREE_CODE (type) == VECTOR_TYPE)
7434 eltscnt = TYPE_VECTOR_SUBPARTS (type);
7435 if (count != eltscnt)
7436 goto cnt_mismatch;
7437 eltype = cp_build_qualified_type (TREE_TYPE (type), TYPE_QUALS (type));
7438 for (unsigned int i = 0; i < count; i++)
7440 TREE_TYPE (v[i]) = eltype;
7441 layout_decl (v[i], 0);
7442 if (processing_template_decl)
7443 continue;
7444 tree t = unshare_expr (dexp);
7445 convert_vector_to_array_for_subscript (DECL_SOURCE_LOCATION (v[i]),
7446 &t, size_int (i));
7447 t = build4_loc (DECL_SOURCE_LOCATION (v[i]), ARRAY_REF,
7448 eltype, t, size_int (i), NULL_TREE,
7449 NULL_TREE);
7450 SET_DECL_VALUE_EXPR (v[i], t);
7451 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
7454 else if (tree tsize = get_tuple_size (type))
7456 if (tsize == error_mark_node)
7458 error_at (loc, "%<std::tuple_size<%T>::value%> is not an integral "
7459 "constant expression", type);
7460 goto error_out;
7462 eltscnt = tree_to_uhwi (tsize);
7463 if (count != eltscnt)
7464 goto cnt_mismatch;
7465 int save_read = DECL_READ_P (decl);
7466 for (unsigned i = 0; i < count; ++i)
7468 location_t sloc = input_location;
7469 location_t dloc = DECL_SOURCE_LOCATION (v[i]);
7471 input_location = dloc;
7472 tree init = get_tuple_decomp_init (decl, i);
7473 tree eltype = (init == error_mark_node ? error_mark_node
7474 : get_tuple_element_type (type, i));
7475 input_location = sloc;
7477 if (init == error_mark_node || eltype == error_mark_node)
7479 inform (dloc, "in initialization of structured binding "
7480 "variable %qD", v[i]);
7481 goto error_out;
7483 /* Save the decltype away before reference collapse. */
7484 store_decomp_type (v[i], eltype);
7485 eltype = cp_build_reference_type (eltype, !lvalue_p (init));
7486 TREE_TYPE (v[i]) = eltype;
7487 layout_decl (v[i], 0);
7488 if (DECL_HAS_VALUE_EXPR_P (v[i]))
7490 /* In this case the names are variables, not just proxies. */
7491 SET_DECL_VALUE_EXPR (v[i], NULL_TREE);
7492 DECL_HAS_VALUE_EXPR_P (v[i]) = 0;
7494 if (!processing_template_decl)
7495 cp_finish_decl (v[i], init, /*constexpr*/false,
7496 /*asm*/NULL_TREE, LOOKUP_NORMAL);
7498 /* Ignore reads from the underlying decl performed during initialization
7499 of the individual variables. If those will be read, we'll mark
7500 the underlying decl as read at that point. */
7501 DECL_READ_P (decl) = save_read;
7503 else if (TREE_CODE (type) == UNION_TYPE)
7505 error_at (loc, "cannot decompose union type %qT", type);
7506 goto error_out;
7508 else if (!CLASS_TYPE_P (type))
7510 error_at (loc, "cannot decompose non-array non-class type %qT", type);
7511 goto error_out;
7513 else if (LAMBDA_TYPE_P (type))
7515 error_at (loc, "cannot decompose lambda closure type %qT", type);
7516 goto error_out;
7518 else
7520 tree btype = find_decomp_class_base (loc, type, NULL_TREE);
7521 if (btype == error_mark_node)
7522 goto error_out;
7523 else if (btype == NULL_TREE)
7525 error_at (loc, "cannot decompose class type %qT without non-static "
7526 "data members", type);
7527 goto error_out;
7529 for (tree field = TYPE_FIELDS (btype); field; field = TREE_CHAIN (field))
7530 if (TREE_CODE (field) != FIELD_DECL || DECL_ARTIFICIAL (field))
7531 continue;
7532 else
7533 eltscnt++;
7534 if (count != eltscnt)
7535 goto cnt_mismatch;
7536 tree t = dexp;
7537 if (type != btype)
7539 t = convert_to_base (t, btype, /*check_access*/true,
7540 /*nonnull*/false, tf_warning_or_error);
7541 type = btype;
7543 unsigned int i = 0;
7544 for (tree field = TYPE_FIELDS (btype); field; field = TREE_CHAIN (field))
7545 if (TREE_CODE (field) != FIELD_DECL || DECL_ARTIFICIAL (field))
7546 continue;
7547 else
7549 tree tt = finish_non_static_data_member (field, unshare_expr (t),
7550 NULL_TREE);
7551 if (REFERENCE_REF_P (tt))
7552 tt = TREE_OPERAND (tt, 0);
7553 TREE_TYPE (v[i]) = TREE_TYPE (tt);
7554 layout_decl (v[i], 0);
7555 if (!processing_template_decl)
7557 SET_DECL_VALUE_EXPR (v[i], tt);
7558 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
7560 i++;
7563 if (processing_template_decl)
7565 for (unsigned int i = 0; i < count; i++)
7566 if (!DECL_HAS_VALUE_EXPR_P (v[i]))
7568 tree a = build_nt (ARRAY_REF, decl, size_int (i),
7569 NULL_TREE, NULL_TREE);
7570 SET_DECL_VALUE_EXPR (v[i], a);
7571 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
7574 else if (DECL_NAMESPACE_SCOPE_P (decl))
7575 SET_DECL_ASSEMBLER_NAME (decl, mangle_decomp (decl, v));
7578 /* Returns a declaration for a VAR_DECL as if:
7580 extern "C" TYPE NAME;
7582 had been seen. Used to create compiler-generated global
7583 variables. */
7585 static tree
7586 declare_global_var (tree name, tree type)
7588 tree decl;
7590 push_to_top_level ();
7591 decl = build_decl (input_location, VAR_DECL, name, type);
7592 TREE_PUBLIC (decl) = 1;
7593 DECL_EXTERNAL (decl) = 1;
7594 DECL_ARTIFICIAL (decl) = 1;
7595 DECL_CONTEXT (decl) = FROB_CONTEXT (global_namespace);
7596 /* If the user has explicitly declared this variable (perhaps
7597 because the code we are compiling is part of a low-level runtime
7598 library), then it is possible that our declaration will be merged
7599 with theirs by pushdecl. */
7600 decl = pushdecl (decl);
7601 cp_finish_decl (decl, NULL_TREE, false, NULL_TREE, 0);
7602 pop_from_top_level ();
7604 return decl;
7607 /* Returns the type for the argument to "__cxa_atexit" (or "atexit",
7608 if "__cxa_atexit" is not being used) corresponding to the function
7609 to be called when the program exits. */
7611 static tree
7612 get_atexit_fn_ptr_type (void)
7614 tree fn_type;
7616 if (!atexit_fn_ptr_type_node)
7618 tree arg_type;
7619 if (flag_use_cxa_atexit
7620 && !targetm.cxx.use_atexit_for_cxa_atexit ())
7621 /* The parameter to "__cxa_atexit" is "void (*)(void *)". */
7622 arg_type = ptr_type_node;
7623 else
7624 /* The parameter to "atexit" is "void (*)(void)". */
7625 arg_type = NULL_TREE;
7627 fn_type = build_function_type_list (void_type_node,
7628 arg_type, NULL_TREE);
7629 atexit_fn_ptr_type_node = build_pointer_type (fn_type);
7632 return atexit_fn_ptr_type_node;
7635 /* Returns a pointer to the `atexit' function. Note that if
7636 FLAG_USE_CXA_ATEXIT is nonzero, then this will actually be the new
7637 `__cxa_atexit' function specified in the IA64 C++ ABI. */
7639 static tree
7640 get_atexit_node (void)
7642 tree atexit_fndecl;
7643 tree fn_type;
7644 tree fn_ptr_type;
7645 const char *name;
7646 bool use_aeabi_atexit;
7648 if (atexit_node)
7649 return atexit_node;
7651 if (flag_use_cxa_atexit && !targetm.cxx.use_atexit_for_cxa_atexit ())
7653 /* The declaration for `__cxa_atexit' is:
7655 int __cxa_atexit (void (*)(void *), void *, void *)
7657 We build up the argument types and then the function type
7658 itself. */
7659 tree argtype0, argtype1, argtype2;
7661 use_aeabi_atexit = targetm.cxx.use_aeabi_atexit ();
7662 /* First, build the pointer-to-function type for the first
7663 argument. */
7664 fn_ptr_type = get_atexit_fn_ptr_type ();
7665 /* Then, build the rest of the argument types. */
7666 argtype2 = ptr_type_node;
7667 if (use_aeabi_atexit)
7669 argtype1 = fn_ptr_type;
7670 argtype0 = ptr_type_node;
7672 else
7674 argtype1 = ptr_type_node;
7675 argtype0 = fn_ptr_type;
7677 /* And the final __cxa_atexit type. */
7678 fn_type = build_function_type_list (integer_type_node,
7679 argtype0, argtype1, argtype2,
7680 NULL_TREE);
7681 if (use_aeabi_atexit)
7682 name = "__aeabi_atexit";
7683 else
7684 name = "__cxa_atexit";
7686 else
7688 /* The declaration for `atexit' is:
7690 int atexit (void (*)());
7692 We build up the argument types and then the function type
7693 itself. */
7694 fn_ptr_type = get_atexit_fn_ptr_type ();
7695 /* Build the final atexit type. */
7696 fn_type = build_function_type_list (integer_type_node,
7697 fn_ptr_type, NULL_TREE);
7698 name = "atexit";
7701 /* Now, build the function declaration. */
7702 push_lang_context (lang_name_c);
7703 atexit_fndecl = build_library_fn_ptr (name, fn_type, ECF_LEAF | ECF_NOTHROW);
7704 mark_used (atexit_fndecl);
7705 pop_lang_context ();
7706 atexit_node = decay_conversion (atexit_fndecl, tf_warning_or_error);
7708 return atexit_node;
7711 /* Like get_atexit_node, but for thread-local cleanups. */
7713 static tree
7714 get_thread_atexit_node (void)
7716 /* The declaration for `__cxa_thread_atexit' is:
7718 int __cxa_thread_atexit (void (*)(void *), void *, void *) */
7719 tree fn_type = build_function_type_list (integer_type_node,
7720 get_atexit_fn_ptr_type (),
7721 ptr_type_node, ptr_type_node,
7722 NULL_TREE);
7724 /* Now, build the function declaration. */
7725 tree atexit_fndecl = build_library_fn_ptr ("__cxa_thread_atexit", fn_type,
7726 ECF_LEAF | ECF_NOTHROW);
7727 return decay_conversion (atexit_fndecl, tf_warning_or_error);
7730 /* Returns the __dso_handle VAR_DECL. */
7732 static tree
7733 get_dso_handle_node (void)
7735 if (dso_handle_node)
7736 return dso_handle_node;
7738 /* Declare the variable. */
7739 dso_handle_node = declare_global_var (get_identifier ("__dso_handle"),
7740 ptr_type_node);
7742 #ifdef HAVE_GAS_HIDDEN
7743 if (dso_handle_node != error_mark_node)
7745 DECL_VISIBILITY (dso_handle_node) = VISIBILITY_HIDDEN;
7746 DECL_VISIBILITY_SPECIFIED (dso_handle_node) = 1;
7748 #endif
7750 return dso_handle_node;
7753 /* Begin a new function with internal linkage whose job will be simply
7754 to destroy some particular variable. */
7756 static GTY(()) int start_cleanup_cnt;
7758 static tree
7759 start_cleanup_fn (void)
7761 char name[32];
7762 tree fntype;
7763 tree fndecl;
7764 bool use_cxa_atexit = flag_use_cxa_atexit
7765 && !targetm.cxx.use_atexit_for_cxa_atexit ();
7767 push_to_top_level ();
7769 /* No need to mangle this. */
7770 push_lang_context (lang_name_c);
7772 /* Build the name of the function. */
7773 sprintf (name, "__tcf_%d", start_cleanup_cnt++);
7774 /* Build the function declaration. */
7775 fntype = TREE_TYPE (get_atexit_fn_ptr_type ());
7776 fndecl = build_lang_decl (FUNCTION_DECL, get_identifier (name), fntype);
7777 /* It's a function with internal linkage, generated by the
7778 compiler. */
7779 TREE_PUBLIC (fndecl) = 0;
7780 DECL_ARTIFICIAL (fndecl) = 1;
7781 /* Make the function `inline' so that it is only emitted if it is
7782 actually needed. It is unlikely that it will be inlined, since
7783 it is only called via a function pointer, but we avoid unnecessary
7784 emissions this way. */
7785 DECL_DECLARED_INLINE_P (fndecl) = 1;
7786 DECL_INTERFACE_KNOWN (fndecl) = 1;
7787 /* Build the parameter. */
7788 if (use_cxa_atexit)
7790 tree parmdecl = cp_build_parm_decl (fndecl, NULL_TREE, ptr_type_node);
7791 TREE_USED (parmdecl) = 1;
7792 DECL_READ_P (parmdecl) = 1;
7793 DECL_ARGUMENTS (fndecl) = parmdecl;
7796 pushdecl (fndecl);
7797 start_preparsed_function (fndecl, NULL_TREE, SF_PRE_PARSED);
7799 pop_lang_context ();
7801 return current_function_decl;
7804 /* Finish the cleanup function begun by start_cleanup_fn. */
7806 static void
7807 end_cleanup_fn (void)
7809 expand_or_defer_fn (finish_function (/*inline_p=*/false));
7811 pop_from_top_level ();
7814 /* Generate code to handle the destruction of DECL, an object with
7815 static storage duration. */
7817 tree
7818 register_dtor_fn (tree decl)
7820 tree cleanup;
7821 tree addr;
7822 tree compound_stmt;
7823 tree fcall;
7824 tree type;
7825 bool ob_parm, dso_parm, use_dtor;
7826 tree arg0, arg1, arg2;
7827 tree atex_node;
7829 type = TREE_TYPE (decl);
7830 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
7831 return void_node;
7833 /* If we're using "__cxa_atexit" (or "__cxa_thread_atexit" or
7834 "__aeabi_atexit"), and DECL is a class object, we can just pass the
7835 destructor to "__cxa_atexit"; we don't have to build a temporary
7836 function to do the cleanup. */
7837 dso_parm = (flag_use_cxa_atexit
7838 && !targetm.cxx.use_atexit_for_cxa_atexit ());
7839 ob_parm = (CP_DECL_THREAD_LOCAL_P (decl) || dso_parm);
7840 use_dtor = ob_parm && CLASS_TYPE_P (type);
7841 if (use_dtor)
7843 cleanup = get_class_binding (type, complete_dtor_identifier);
7845 /* Make sure it is accessible. */
7846 perform_or_defer_access_check (TYPE_BINFO (type), cleanup, cleanup,
7847 tf_warning_or_error);
7849 else
7851 /* Call build_cleanup before we enter the anonymous function so
7852 that any access checks will be done relative to the current
7853 scope, rather than the scope of the anonymous function. */
7854 build_cleanup (decl);
7856 /* Now start the function. */
7857 cleanup = start_cleanup_fn ();
7859 /* Now, recompute the cleanup. It may contain SAVE_EXPRs that refer
7860 to the original function, rather than the anonymous one. That
7861 will make the back end think that nested functions are in use,
7862 which causes confusion. */
7863 push_deferring_access_checks (dk_no_check);
7864 fcall = build_cleanup (decl);
7865 pop_deferring_access_checks ();
7867 /* Create the body of the anonymous function. */
7868 compound_stmt = begin_compound_stmt (BCS_FN_BODY);
7869 finish_expr_stmt (fcall);
7870 finish_compound_stmt (compound_stmt);
7871 end_cleanup_fn ();
7874 /* Call atexit with the cleanup function. */
7875 mark_used (cleanup);
7876 cleanup = build_address (cleanup);
7878 if (CP_DECL_THREAD_LOCAL_P (decl))
7879 atex_node = get_thread_atexit_node ();
7880 else
7881 atex_node = get_atexit_node ();
7883 if (use_dtor)
7885 /* We must convert CLEANUP to the type that "__cxa_atexit"
7886 expects. */
7887 cleanup = build_nop (get_atexit_fn_ptr_type (), cleanup);
7888 /* "__cxa_atexit" will pass the address of DECL to the
7889 cleanup function. */
7890 mark_used (decl);
7891 addr = build_address (decl);
7892 /* The declared type of the parameter to "__cxa_atexit" is
7893 "void *". For plain "T*", we could just let the
7894 machinery in cp_build_function_call convert it -- but if the
7895 type is "cv-qualified T *", then we need to convert it
7896 before passing it in, to avoid spurious errors. */
7897 addr = build_nop (ptr_type_node, addr);
7899 else
7900 /* Since the cleanup functions we build ignore the address
7901 they're given, there's no reason to pass the actual address
7902 in, and, in general, it's cheaper to pass NULL than any
7903 other value. */
7904 addr = null_pointer_node;
7906 if (dso_parm)
7907 arg2 = cp_build_addr_expr (get_dso_handle_node (),
7908 tf_warning_or_error);
7909 else if (ob_parm)
7910 /* Just pass NULL to the dso handle parm if we don't actually
7911 have a DSO handle on this target. */
7912 arg2 = null_pointer_node;
7913 else
7914 arg2 = NULL_TREE;
7916 if (ob_parm)
7918 if (!CP_DECL_THREAD_LOCAL_P (decl)
7919 && targetm.cxx.use_aeabi_atexit ())
7921 arg1 = cleanup;
7922 arg0 = addr;
7924 else
7926 arg1 = addr;
7927 arg0 = cleanup;
7930 else
7932 arg0 = cleanup;
7933 arg1 = NULL_TREE;
7935 return cp_build_function_call_nary (atex_node, tf_warning_or_error,
7936 arg0, arg1, arg2, NULL_TREE);
7939 /* DECL is a VAR_DECL with static storage duration. INIT, if present,
7940 is its initializer. Generate code to handle the construction
7941 and destruction of DECL. */
7943 static void
7944 expand_static_init (tree decl, tree init)
7946 gcc_assert (VAR_P (decl));
7947 gcc_assert (TREE_STATIC (decl));
7949 /* Some variables require no dynamic initialization. */
7950 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
7952 /* Make sure the destructor is callable. */
7953 cxx_maybe_build_cleanup (decl, tf_warning_or_error);
7954 if (!init)
7955 return;
7958 if (CP_DECL_THREAD_LOCAL_P (decl) && DECL_GNU_TLS_P (decl)
7959 && !DECL_FUNCTION_SCOPE_P (decl))
7961 if (init)
7962 error ("non-local variable %qD declared %<__thread%> "
7963 "needs dynamic initialization", decl);
7964 else
7965 error ("non-local variable %qD declared %<__thread%> "
7966 "has a non-trivial destructor", decl);
7967 static bool informed;
7968 if (!informed)
7970 inform (DECL_SOURCE_LOCATION (decl),
7971 "C++11 %<thread_local%> allows dynamic initialization "
7972 "and destruction");
7973 informed = true;
7975 return;
7978 if (DECL_FUNCTION_SCOPE_P (decl))
7980 /* Emit code to perform this initialization but once. */
7981 tree if_stmt = NULL_TREE, inner_if_stmt = NULL_TREE;
7982 tree then_clause = NULL_TREE, inner_then_clause = NULL_TREE;
7983 tree guard, guard_addr;
7984 tree flag, begin;
7985 /* We don't need thread-safety code for thread-local vars. */
7986 bool thread_guard = (flag_threadsafe_statics
7987 && !CP_DECL_THREAD_LOCAL_P (decl));
7989 /* Emit code to perform this initialization but once. This code
7990 looks like:
7992 static <type> guard;
7993 if (!__atomic_load (guard.first_byte)) {
7994 if (__cxa_guard_acquire (&guard)) {
7995 bool flag = false;
7996 try {
7997 // Do initialization.
7998 flag = true; __cxa_guard_release (&guard);
7999 // Register variable for destruction at end of program.
8000 } catch {
8001 if (!flag) __cxa_guard_abort (&guard);
8006 Note that the `flag' variable is only set to 1 *after* the
8007 initialization is complete. This ensures that an exception,
8008 thrown during the construction, will cause the variable to
8009 reinitialized when we pass through this code again, as per:
8011 [stmt.dcl]
8013 If the initialization exits by throwing an exception, the
8014 initialization is not complete, so it will be tried again
8015 the next time control enters the declaration.
8017 This process should be thread-safe, too; multiple threads
8018 should not be able to initialize the variable more than
8019 once. */
8021 /* Create the guard variable. */
8022 guard = get_guard (decl);
8024 /* Begin the conditional initialization. */
8025 if_stmt = begin_if_stmt ();
8027 finish_if_stmt_cond (get_guard_cond (guard, thread_guard), if_stmt);
8028 then_clause = begin_compound_stmt (BCS_NO_SCOPE);
8030 if (thread_guard)
8032 tree vfntype = NULL_TREE;
8033 tree acquire_name, release_name, abort_name;
8034 tree acquire_fn, release_fn, abort_fn;
8035 guard_addr = build_address (guard);
8037 acquire_name = get_identifier ("__cxa_guard_acquire");
8038 release_name = get_identifier ("__cxa_guard_release");
8039 abort_name = get_identifier ("__cxa_guard_abort");
8040 acquire_fn = get_global_binding (acquire_name);
8041 release_fn = get_global_binding (release_name);
8042 abort_fn = get_global_binding (abort_name);
8043 if (!acquire_fn)
8044 acquire_fn = push_library_fn
8045 (acquire_name, build_function_type_list (integer_type_node,
8046 TREE_TYPE (guard_addr),
8047 NULL_TREE),
8048 NULL_TREE, ECF_NOTHROW | ECF_LEAF);
8049 if (!release_fn || !abort_fn)
8050 vfntype = build_function_type_list (void_type_node,
8051 TREE_TYPE (guard_addr),
8052 NULL_TREE);
8053 if (!release_fn)
8054 release_fn = push_library_fn (release_name, vfntype, NULL_TREE,
8055 ECF_NOTHROW | ECF_LEAF);
8056 if (!abort_fn)
8057 abort_fn = push_library_fn (abort_name, vfntype, NULL_TREE,
8058 ECF_NOTHROW | ECF_LEAF);
8060 inner_if_stmt = begin_if_stmt ();
8061 finish_if_stmt_cond (build_call_n (acquire_fn, 1, guard_addr),
8062 inner_if_stmt);
8064 inner_then_clause = begin_compound_stmt (BCS_NO_SCOPE);
8065 begin = get_target_expr (boolean_false_node);
8066 flag = TARGET_EXPR_SLOT (begin);
8068 TARGET_EXPR_CLEANUP (begin)
8069 = build3 (COND_EXPR, void_type_node, flag,
8070 void_node,
8071 build_call_n (abort_fn, 1, guard_addr));
8072 CLEANUP_EH_ONLY (begin) = 1;
8074 /* Do the initialization itself. */
8075 init = add_stmt_to_compound (begin, init);
8076 init = add_stmt_to_compound
8077 (init, build2 (MODIFY_EXPR, void_type_node, flag, boolean_true_node));
8078 init = add_stmt_to_compound
8079 (init, build_call_n (release_fn, 1, guard_addr));
8081 else
8082 init = add_stmt_to_compound (init, set_guard (guard));
8084 /* Use atexit to register a function for destroying this static
8085 variable. */
8086 init = add_stmt_to_compound (init, register_dtor_fn (decl));
8088 finish_expr_stmt (init);
8090 if (thread_guard)
8092 finish_compound_stmt (inner_then_clause);
8093 finish_then_clause (inner_if_stmt);
8094 finish_if_stmt (inner_if_stmt);
8097 finish_compound_stmt (then_clause);
8098 finish_then_clause (if_stmt);
8099 finish_if_stmt (if_stmt);
8101 else if (CP_DECL_THREAD_LOCAL_P (decl))
8102 tls_aggregates = tree_cons (init, decl, tls_aggregates);
8103 else
8104 static_aggregates = tree_cons (init, decl, static_aggregates);
8108 /* Make TYPE a complete type based on INITIAL_VALUE.
8109 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
8110 2 if there was no information (in which case assume 0 if DO_DEFAULT),
8111 3 if the initializer list is empty (in pedantic mode). */
8114 cp_complete_array_type (tree *ptype, tree initial_value, bool do_default)
8116 int failure;
8117 tree type, elt_type;
8119 /* Don't get confused by a CONSTRUCTOR for some other type. */
8120 if (initial_value && TREE_CODE (initial_value) == CONSTRUCTOR
8121 && !BRACE_ENCLOSED_INITIALIZER_P (initial_value)
8122 && TREE_CODE (TREE_TYPE (initial_value)) != ARRAY_TYPE)
8123 return 1;
8125 if (initial_value)
8127 unsigned HOST_WIDE_INT i;
8128 tree value;
8130 /* An array of character type can be initialized from a
8131 brace-enclosed string constant.
8133 FIXME: this code is duplicated from reshape_init. Probably
8134 we should just call reshape_init here? */
8135 if (char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (*ptype)))
8136 && TREE_CODE (initial_value) == CONSTRUCTOR
8137 && !vec_safe_is_empty (CONSTRUCTOR_ELTS (initial_value)))
8139 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initial_value);
8140 tree value = (*v)[0].value;
8142 if (TREE_CODE (value) == STRING_CST
8143 && v->length () == 1)
8144 initial_value = value;
8147 /* If any of the elements are parameter packs, we can't actually
8148 complete this type now because the array size is dependent. */
8149 if (TREE_CODE (initial_value) == CONSTRUCTOR)
8151 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (initial_value),
8152 i, value)
8154 if (PACK_EXPANSION_P (value))
8155 return 0;
8160 failure = complete_array_type (ptype, initial_value, do_default);
8162 /* We can create the array before the element type is complete, which
8163 means that we didn't have these two bits set in the original type
8164 either. In completing the type, we are expected to propagate these
8165 bits. See also complete_type which does the same thing for arrays
8166 of fixed size. */
8167 type = *ptype;
8168 if (TYPE_DOMAIN (type))
8170 elt_type = TREE_TYPE (type);
8171 TYPE_NEEDS_CONSTRUCTING (type) = TYPE_NEEDS_CONSTRUCTING (elt_type);
8172 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
8173 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (elt_type);
8176 return failure;
8179 /* As above, but either give an error or reject zero-size arrays, depending
8180 on COMPLAIN. */
8183 cp_complete_array_type_or_error (tree *ptype, tree initial_value,
8184 bool do_default, tsubst_flags_t complain)
8186 int failure;
8187 bool sfinae = !(complain & tf_error);
8188 /* In SFINAE context we can't be lenient about zero-size arrays. */
8189 if (sfinae)
8190 ++pedantic;
8191 failure = cp_complete_array_type (ptype, initial_value, do_default);
8192 if (sfinae)
8193 --pedantic;
8194 if (failure)
8196 if (sfinae)
8197 /* Not an error. */;
8198 else if (failure == 1)
8199 error ("initializer fails to determine size of %qT", *ptype);
8200 else if (failure == 2)
8202 if (do_default)
8203 error ("array size missing in %qT", *ptype);
8205 else if (failure == 3)
8206 error ("zero-size array %qT", *ptype);
8207 *ptype = error_mark_node;
8209 return failure;
8212 /* Return zero if something is declared to be a member of type
8213 CTYPE when in the context of CUR_TYPE. STRING is the error
8214 message to print in that case. Otherwise, quietly return 1. */
8216 static int
8217 member_function_or_else (tree ctype, tree cur_type, enum overload_flags flags)
8219 if (ctype && ctype != cur_type)
8221 if (flags == DTOR_FLAG)
8222 error ("destructor for alien class %qT cannot be a member", ctype);
8223 else
8224 error ("constructor for alien class %qT cannot be a member", ctype);
8225 return 0;
8227 return 1;
8230 /* Subroutine of `grokdeclarator'. */
8232 /* Generate errors possibly applicable for a given set of specifiers.
8233 This is for ARM $7.1.2. */
8235 static void
8236 bad_specifiers (tree object,
8237 enum bad_spec_place type,
8238 int virtualp,
8239 int quals,
8240 int inlinep,
8241 int friendp,
8242 int raises)
8244 switch (type)
8246 case BSP_VAR:
8247 if (virtualp)
8248 error ("%qD declared as a %<virtual%> variable", object);
8249 if (quals)
8250 error ("%<const%> and %<volatile%> function specifiers on "
8251 "%qD invalid in variable declaration", object);
8252 break;
8253 case BSP_PARM:
8254 if (virtualp)
8255 error ("%qD declared as a %<virtual%> parameter", object);
8256 if (inlinep)
8257 error ("%qD declared as an %<inline%> parameter", object);
8258 if (quals)
8259 error ("%<const%> and %<volatile%> function specifiers on "
8260 "%qD invalid in parameter declaration", object);
8261 break;
8262 case BSP_TYPE:
8263 if (virtualp)
8264 error ("%qD declared as a %<virtual%> type", object);
8265 if (inlinep)
8266 error ("%qD declared as an %<inline%> type", object);
8267 if (quals)
8268 error ("%<const%> and %<volatile%> function specifiers on "
8269 "%qD invalid in type declaration", object);
8270 break;
8271 case BSP_FIELD:
8272 if (virtualp)
8273 error ("%qD declared as a %<virtual%> field", object);
8274 if (inlinep)
8275 error ("%qD declared as an %<inline%> field", object);
8276 if (quals)
8277 error ("%<const%> and %<volatile%> function specifiers on "
8278 "%qD invalid in field declaration", object);
8279 break;
8280 default:
8281 gcc_unreachable();
8283 if (friendp)
8284 error ("%q+D declared as a friend", object);
8285 if (raises
8286 && !flag_noexcept_type
8287 && (TREE_CODE (object) == TYPE_DECL
8288 || (!TYPE_PTRFN_P (TREE_TYPE (object))
8289 && !TYPE_REFFN_P (TREE_TYPE (object))
8290 && !TYPE_PTRMEMFUNC_P (TREE_TYPE (object)))))
8291 error ("%q+D declared with an exception specification", object);
8294 /* DECL is a member function or static data member and is presently
8295 being defined. Check that the definition is taking place in a
8296 valid namespace. */
8298 static void
8299 check_class_member_definition_namespace (tree decl)
8301 /* These checks only apply to member functions and static data
8302 members. */
8303 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl));
8304 /* We check for problems with specializations in pt.c in
8305 check_specialization_namespace, where we can issue better
8306 diagnostics. */
8307 if (processing_specialization)
8308 return;
8309 /* We check this in check_explicit_instantiation_namespace. */
8310 if (processing_explicit_instantiation)
8311 return;
8312 /* [class.mfct]
8314 A member function definition that appears outside of the
8315 class definition shall appear in a namespace scope enclosing
8316 the class definition.
8318 [class.static.data]
8320 The definition for a static data member shall appear in a
8321 namespace scope enclosing the member's class definition. */
8322 if (!is_ancestor (current_namespace, DECL_CONTEXT (decl)))
8323 permerror (input_location, "definition of %qD is not in namespace enclosing %qT",
8324 decl, DECL_CONTEXT (decl));
8327 /* Build a PARM_DECL for the "this" parameter of FN. TYPE is the
8328 METHOD_TYPE for a non-static member function; QUALS are the
8329 cv-qualifiers that apply to the function. */
8331 tree
8332 build_this_parm (tree fn, tree type, cp_cv_quals quals)
8334 tree this_type;
8335 tree qual_type;
8336 tree parm;
8337 cp_cv_quals this_quals;
8339 if (CLASS_TYPE_P (type))
8341 this_type
8342 = cp_build_qualified_type (type, quals & ~TYPE_QUAL_RESTRICT);
8343 this_type = build_pointer_type (this_type);
8345 else
8346 this_type = type_of_this_parm (type);
8347 /* The `this' parameter is implicitly `const'; it cannot be
8348 assigned to. */
8349 this_quals = (quals & TYPE_QUAL_RESTRICT) | TYPE_QUAL_CONST;
8350 qual_type = cp_build_qualified_type (this_type, this_quals);
8351 parm = build_artificial_parm (fn, this_identifier, qual_type);
8352 cp_apply_type_quals_to_decl (this_quals, parm);
8353 return parm;
8356 /* DECL is a static member function. Complain if it was declared
8357 with function-cv-quals. */
8359 static void
8360 check_static_quals (tree decl, cp_cv_quals quals)
8362 if (quals != TYPE_UNQUALIFIED)
8363 error ("static member function %q#D declared with type qualifiers",
8364 decl);
8367 // Check that FN takes no arguments and returns bool.
8368 static void
8369 check_concept_fn (tree fn)
8371 // A constraint is nullary.
8372 if (DECL_ARGUMENTS (fn))
8373 error ("concept %q#D declared with function parameters", fn);
8375 // The declared return type of the concept shall be bool, and
8376 // it shall not be deduced from it definition.
8377 tree type = TREE_TYPE (TREE_TYPE (fn));
8378 if (is_auto (type))
8379 error ("concept %q#D declared with a deduced return type", fn);
8380 else if (type != boolean_type_node)
8381 error ("concept %q#D with non-%<bool%> return type %qT", fn, type);
8384 /* Helper function. Replace the temporary this parameter injected
8385 during cp_finish_omp_declare_simd with the real this parameter. */
8387 static tree
8388 declare_simd_adjust_this (tree *tp, int *walk_subtrees, void *data)
8390 tree this_parm = (tree) data;
8391 if (TREE_CODE (*tp) == PARM_DECL
8392 && DECL_NAME (*tp) == this_identifier
8393 && *tp != this_parm)
8394 *tp = this_parm;
8395 else if (TYPE_P (*tp))
8396 *walk_subtrees = 0;
8397 return NULL_TREE;
8400 /* CTYPE is class type, or null if non-class.
8401 TYPE is type this FUNCTION_DECL should have, either FUNCTION_TYPE
8402 or METHOD_TYPE.
8403 DECLARATOR is the function's name.
8404 PARMS is a chain of PARM_DECLs for the function.
8405 VIRTUALP is truthvalue of whether the function is virtual or not.
8406 FLAGS are to be passed through to `grokclassfn'.
8407 QUALS are qualifiers indicating whether the function is `const'
8408 or `volatile'.
8409 RAISES is a list of exceptions that this function can raise.
8410 CHECK is 1 if we must find this method in CTYPE, 0 if we should
8411 not look, and -1 if we should not call `grokclassfn' at all.
8413 SFK is the kind of special function (if any) for the new function.
8415 Returns `NULL_TREE' if something goes wrong, after issuing
8416 applicable error messages. */
8418 static tree
8419 grokfndecl (tree ctype,
8420 tree type,
8421 tree declarator,
8422 tree parms,
8423 tree orig_declarator,
8424 tree decl_reqs,
8425 int virtualp,
8426 enum overload_flags flags,
8427 cp_cv_quals quals,
8428 cp_ref_qualifier rqual,
8429 tree raises,
8430 int check,
8431 int friendp,
8432 int publicp,
8433 int inlinep,
8434 bool deletedp,
8435 special_function_kind sfk,
8436 bool funcdef_flag,
8437 int template_count,
8438 tree in_namespace,
8439 tree* attrlist,
8440 location_t location)
8442 tree decl;
8443 int staticp = ctype && TREE_CODE (type) == FUNCTION_TYPE;
8444 tree t;
8446 // Was the concept specifier present?
8447 bool concept_p = inlinep & 4;
8449 // Concept declarations must have a corresponding definition.
8450 if (concept_p && !funcdef_flag)
8452 error ("concept %qD has no definition", declarator);
8453 return NULL_TREE;
8456 if (rqual)
8457 type = build_ref_qualified_type (type, rqual);
8458 if (raises)
8459 type = build_exception_variant (type, raises);
8461 decl = build_lang_decl (FUNCTION_DECL, declarator, type);
8463 /* Set the constraints on the declaration. */
8464 if (flag_concepts)
8466 tree tmpl_reqs = NULL_TREE;
8467 if (processing_template_decl > template_class_depth (ctype))
8468 tmpl_reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
8470 /* Adjust the required expression into a constraint. */
8471 if (decl_reqs)
8472 decl_reqs = normalize_expression (decl_reqs);
8474 tree ci = build_constraints (tmpl_reqs, decl_reqs);
8475 set_constraints (decl, ci);
8478 /* If we have an explicit location, use it, otherwise use whatever
8479 build_lang_decl used (probably input_location). */
8480 if (location != UNKNOWN_LOCATION)
8481 DECL_SOURCE_LOCATION (decl) = location;
8483 if (TREE_CODE (type) == METHOD_TYPE)
8485 tree parm = build_this_parm (decl, type, quals);
8486 DECL_CHAIN (parm) = parms;
8487 parms = parm;
8489 /* Allocate space to hold the vptr bit if needed. */
8490 SET_DECL_ALIGN (decl, MINIMUM_METHOD_BOUNDARY);
8493 DECL_ARGUMENTS (decl) = parms;
8494 for (t = parms; t; t = DECL_CHAIN (t))
8495 DECL_CONTEXT (t) = decl;
8497 /* Propagate volatile out from type to decl. */
8498 if (TYPE_VOLATILE (type))
8499 TREE_THIS_VOLATILE (decl) = 1;
8501 /* Setup decl according to sfk. */
8502 switch (sfk)
8504 case sfk_constructor:
8505 case sfk_copy_constructor:
8506 case sfk_move_constructor:
8507 DECL_CXX_CONSTRUCTOR_P (decl) = 1;
8508 DECL_NAME (decl) = ctor_identifier;
8509 break;
8510 case sfk_destructor:
8511 DECL_CXX_DESTRUCTOR_P (decl) = 1;
8512 DECL_NAME (decl) = dtor_identifier;
8513 break;
8514 default:
8515 break;
8518 if (friendp && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)
8520 if (funcdef_flag)
8521 error ("defining explicit specialization %qD in friend declaration",
8522 orig_declarator);
8523 else
8525 tree fns = TREE_OPERAND (orig_declarator, 0);
8526 tree args = TREE_OPERAND (orig_declarator, 1);
8528 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
8530 /* Something like `template <class T> friend void f<T>()'. */
8531 error ("invalid use of template-id %qD in declaration "
8532 "of primary template",
8533 orig_declarator);
8534 return NULL_TREE;
8538 /* A friend declaration of the form friend void f<>(). Record
8539 the information in the TEMPLATE_ID_EXPR. */
8540 SET_DECL_IMPLICIT_INSTANTIATION (decl);
8542 gcc_assert (identifier_p (fns) || TREE_CODE (fns) == OVERLOAD);
8543 DECL_TEMPLATE_INFO (decl) = build_template_info (fns, args);
8545 for (t = TYPE_ARG_TYPES (TREE_TYPE (decl)); t; t = TREE_CHAIN (t))
8546 if (TREE_PURPOSE (t)
8547 && TREE_CODE (TREE_PURPOSE (t)) == DEFAULT_ARG)
8549 error ("default arguments are not allowed in declaration "
8550 "of friend template specialization %qD",
8551 decl);
8552 return NULL_TREE;
8555 if (inlinep & 1)
8557 error ("%<inline%> is not allowed in declaration of friend "
8558 "template specialization %qD",
8559 decl);
8560 return NULL_TREE;
8565 /* If this decl has namespace scope, set that up. */
8566 if (in_namespace)
8567 set_decl_namespace (decl, in_namespace, friendp);
8568 else if (!ctype)
8569 DECL_CONTEXT (decl) = FROB_CONTEXT (current_decl_namespace ());
8571 /* `main' and builtins have implicit 'C' linkage. */
8572 if (ctype == NULL_TREE
8573 && DECL_FILE_SCOPE_P (decl)
8574 && current_lang_name == lang_name_cplusplus
8575 && (MAIN_NAME_P (declarator)
8576 || (IDENTIFIER_LENGTH (declarator) > 10
8577 && IDENTIFIER_POINTER (declarator)[0] == '_'
8578 && IDENTIFIER_POINTER (declarator)[1] == '_'
8579 && strncmp (IDENTIFIER_POINTER (declarator)+2,
8580 "builtin_", 8) == 0)
8581 || (targetcm.cxx_implicit_extern_c
8582 && (targetcm.cxx_implicit_extern_c
8583 (IDENTIFIER_POINTER (declarator))))))
8584 SET_DECL_LANGUAGE (decl, lang_c);
8586 /* Should probably propagate const out from type to decl I bet (mrs). */
8587 if (staticp)
8589 DECL_STATIC_FUNCTION_P (decl) = 1;
8590 DECL_CONTEXT (decl) = ctype;
8593 if (deletedp)
8594 DECL_DELETED_FN (decl) = 1;
8596 if (ctype)
8598 DECL_CONTEXT (decl) = ctype;
8599 if (funcdef_flag)
8600 check_class_member_definition_namespace (decl);
8603 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
8605 if (PROCESSING_REAL_TEMPLATE_DECL_P())
8606 error ("cannot declare %<::main%> to be a template");
8607 if (inlinep & 1)
8608 error ("cannot declare %<::main%> to be inline");
8609 if (inlinep & 2)
8610 error ("cannot declare %<::main%> to be constexpr");
8611 if (!publicp)
8612 error ("cannot declare %<::main%> to be static");
8613 inlinep = 0;
8614 publicp = 1;
8617 /* Members of anonymous types and local classes have no linkage; make
8618 them internal. If a typedef is made later, this will be changed. */
8619 if (ctype && (!TREE_PUBLIC (TYPE_MAIN_DECL (ctype))
8620 || decl_function_context (TYPE_MAIN_DECL (ctype))))
8621 publicp = 0;
8623 if (publicp && cxx_dialect == cxx98)
8625 /* [basic.link]: A name with no linkage (notably, the name of a class
8626 or enumeration declared in a local scope) shall not be used to
8627 declare an entity with linkage.
8629 DR 757 relaxes this restriction for C++0x. */
8630 no_linkage_error (decl);
8633 TREE_PUBLIC (decl) = publicp;
8634 if (! publicp)
8636 DECL_INTERFACE_KNOWN (decl) = 1;
8637 DECL_NOT_REALLY_EXTERN (decl) = 1;
8640 /* If the declaration was declared inline, mark it as such. */
8641 if (inlinep)
8643 DECL_DECLARED_INLINE_P (decl) = 1;
8644 if (publicp)
8645 DECL_COMDAT (decl) = 1;
8647 if (inlinep & 2)
8648 DECL_DECLARED_CONSTEXPR_P (decl) = true;
8650 // If the concept declaration specifier was found, check
8651 // that the declaration satisfies the necessary requirements.
8652 if (concept_p)
8654 DECL_DECLARED_CONCEPT_P (decl) = true;
8655 check_concept_fn (decl);
8658 DECL_EXTERNAL (decl) = 1;
8659 if (TREE_CODE (type) == FUNCTION_TYPE)
8661 if (quals || rqual)
8662 TREE_TYPE (decl) = apply_memfn_quals (TREE_TYPE (decl),
8663 TYPE_UNQUALIFIED,
8664 REF_QUAL_NONE);
8666 if (quals)
8668 error (ctype
8669 ? G_("static member function %qD cannot have cv-qualifier")
8670 : G_("non-member function %qD cannot have cv-qualifier"),
8671 decl);
8672 quals = TYPE_UNQUALIFIED;
8675 if (rqual)
8677 error (ctype
8678 ? G_("static member function %qD cannot have ref-qualifier")
8679 : G_("non-member function %qD cannot have ref-qualifier"),
8680 decl);
8681 rqual = REF_QUAL_NONE;
8685 if (deduction_guide_p (decl))
8687 if (!DECL_NAMESPACE_SCOPE_P (decl))
8689 error_at (location, "deduction guide %qD must be declared at "
8690 "namespace scope", decl);
8691 return NULL_TREE;
8693 if (funcdef_flag)
8694 error_at (location,
8695 "deduction guide %qD must not have a function body", decl);
8697 else if (IDENTIFIER_ANY_OP_P (DECL_NAME (decl))
8698 && !grok_op_properties (decl, /*complain=*/true))
8699 return NULL_TREE;
8700 else if (UDLIT_OPER_P (DECL_NAME (decl)))
8702 bool long_long_unsigned_p;
8703 bool long_double_p;
8704 const char *suffix = NULL;
8705 /* [over.literal]/6: Literal operators shall not have C linkage. */
8706 if (DECL_LANGUAGE (decl) == lang_c)
8708 error ("literal operator with C linkage");
8709 maybe_show_extern_c_location ();
8710 return NULL_TREE;
8713 if (DECL_NAMESPACE_SCOPE_P (decl))
8715 if (!check_literal_operator_args (decl, &long_long_unsigned_p,
8716 &long_double_p))
8718 error ("%qD has invalid argument list", decl);
8719 return NULL_TREE;
8722 suffix = UDLIT_OP_SUFFIX (DECL_NAME (decl));
8723 if (long_long_unsigned_p)
8725 if (cpp_interpret_int_suffix (parse_in, suffix, strlen (suffix)))
8726 warning (0, "integer suffix %qs"
8727 " shadowed by implementation", suffix);
8729 else if (long_double_p)
8731 if (cpp_interpret_float_suffix (parse_in, suffix, strlen (suffix)))
8732 warning (0, "floating point suffix %qs"
8733 " shadowed by implementation", suffix);
8736 else
8738 error ("%qD must be a non-member function", decl);
8739 return NULL_TREE;
8743 if (funcdef_flag)
8744 /* Make the init_value nonzero so pushdecl knows this is not
8745 tentative. error_mark_node is replaced later with the BLOCK. */
8746 DECL_INITIAL (decl) = error_mark_node;
8748 if (TYPE_NOTHROW_P (type) || nothrow_libfn_p (decl))
8749 TREE_NOTHROW (decl) = 1;
8751 if (flag_openmp || flag_openmp_simd || flag_cilkplus)
8753 /* Adjust "omp declare simd" attributes. */
8754 tree ods = lookup_attribute ("omp declare simd", *attrlist);
8755 if (ods)
8757 tree attr;
8758 for (attr = ods; attr;
8759 attr = lookup_attribute ("omp declare simd", TREE_CHAIN (attr)))
8761 if (TREE_CODE (type) == METHOD_TYPE)
8762 walk_tree (&TREE_VALUE (attr), declare_simd_adjust_this,
8763 DECL_ARGUMENTS (decl), NULL);
8764 if (TREE_VALUE (attr) != NULL_TREE)
8766 tree cl = TREE_VALUE (TREE_VALUE (attr));
8767 cl = c_omp_declare_simd_clauses_to_numbers
8768 (DECL_ARGUMENTS (decl), cl);
8769 if (cl)
8770 TREE_VALUE (TREE_VALUE (attr)) = cl;
8771 else
8772 TREE_VALUE (attr) = NULL_TREE;
8778 /* Caller will do the rest of this. */
8779 if (check < 0)
8780 return decl;
8782 if (ctype != NULL_TREE)
8783 grokclassfn (ctype, decl, flags);
8785 /* 12.4/3 */
8786 if (cxx_dialect >= cxx11
8787 && DECL_DESTRUCTOR_P (decl)
8788 && !TYPE_BEING_DEFINED (DECL_CONTEXT (decl))
8789 && !processing_template_decl)
8790 deduce_noexcept_on_destructor (decl);
8792 decl = check_explicit_specialization (orig_declarator, decl,
8793 template_count,
8794 2 * funcdef_flag +
8795 4 * (friendp != 0) +
8796 8 * concept_p);
8797 if (decl == error_mark_node)
8798 return NULL_TREE;
8800 if (DECL_STATIC_FUNCTION_P (decl))
8801 check_static_quals (decl, quals);
8803 if (attrlist)
8805 cplus_decl_attributes (&decl, *attrlist, 0);
8806 *attrlist = NULL_TREE;
8809 /* Check main's type after attributes have been applied. */
8810 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
8812 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
8813 integer_type_node))
8815 tree oldtypeargs = TYPE_ARG_TYPES (TREE_TYPE (decl));
8816 tree newtype;
8817 error ("%<::main%> must return %<int%>");
8818 newtype = build_function_type (integer_type_node, oldtypeargs);
8819 TREE_TYPE (decl) = newtype;
8821 if (warn_main)
8822 check_main_parameter_types (decl);
8825 if (ctype != NULL_TREE && check)
8827 tree old_decl = check_classfn (ctype, decl,
8828 (processing_template_decl
8829 > template_class_depth (ctype))
8830 ? current_template_parms
8831 : NULL_TREE);
8833 if (old_decl == error_mark_node)
8834 return NULL_TREE;
8836 if (old_decl)
8838 tree ok;
8839 tree pushed_scope;
8841 if (TREE_CODE (old_decl) == TEMPLATE_DECL)
8842 /* Because grokfndecl is always supposed to return a
8843 FUNCTION_DECL, we pull out the DECL_TEMPLATE_RESULT
8844 here. We depend on our callers to figure out that its
8845 really a template that's being returned. */
8846 old_decl = DECL_TEMPLATE_RESULT (old_decl);
8848 if (DECL_STATIC_FUNCTION_P (old_decl)
8849 && TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE)
8851 /* Remove the `this' parm added by grokclassfn. */
8852 revert_static_member_fn (decl);
8853 check_static_quals (decl, quals);
8855 if (DECL_ARTIFICIAL (old_decl))
8857 error ("definition of implicitly-declared %qD", old_decl);
8858 return NULL_TREE;
8860 else if (DECL_DEFAULTED_FN (old_decl))
8862 error ("definition of explicitly-defaulted %q+D", decl);
8863 inform (DECL_SOURCE_LOCATION (old_decl),
8864 "%q#D explicitly defaulted here", old_decl);
8865 return NULL_TREE;
8868 /* Since we've smashed OLD_DECL to its
8869 DECL_TEMPLATE_RESULT, we must do the same to DECL. */
8870 if (TREE_CODE (decl) == TEMPLATE_DECL)
8871 decl = DECL_TEMPLATE_RESULT (decl);
8873 /* Attempt to merge the declarations. This can fail, in
8874 the case of some invalid specialization declarations. */
8875 pushed_scope = push_scope (ctype);
8876 ok = duplicate_decls (decl, old_decl, friendp);
8877 if (pushed_scope)
8878 pop_scope (pushed_scope);
8879 if (!ok)
8881 error ("no %q#D member function declared in class %qT",
8882 decl, ctype);
8883 return NULL_TREE;
8885 if (ok == error_mark_node)
8886 return NULL_TREE;
8887 return old_decl;
8891 if (DECL_CONSTRUCTOR_P (decl) && !grok_ctor_properties (ctype, decl))
8892 return NULL_TREE;
8894 if (ctype == NULL_TREE || check)
8895 return decl;
8897 if (virtualp)
8898 DECL_VIRTUAL_P (decl) = 1;
8900 return decl;
8903 /* decl is a FUNCTION_DECL.
8904 specifiers are the parsed virt-specifiers.
8906 Set flags to reflect the virt-specifiers.
8908 Returns decl. */
8910 static tree
8911 set_virt_specifiers (tree decl, cp_virt_specifiers specifiers)
8913 if (decl == NULL_TREE)
8914 return decl;
8915 if (specifiers & VIRT_SPEC_OVERRIDE)
8916 DECL_OVERRIDE_P (decl) = 1;
8917 if (specifiers & VIRT_SPEC_FINAL)
8918 DECL_FINAL_P (decl) = 1;
8919 return decl;
8922 /* DECL is a VAR_DECL for a static data member. Set flags to reflect
8923 the linkage that DECL will receive in the object file. */
8925 static void
8926 set_linkage_for_static_data_member (tree decl)
8928 /* A static data member always has static storage duration and
8929 external linkage. Note that static data members are forbidden in
8930 local classes -- the only situation in which a class has
8931 non-external linkage. */
8932 TREE_PUBLIC (decl) = 1;
8933 TREE_STATIC (decl) = 1;
8934 /* For non-template classes, static data members are always put
8935 out in exactly those files where they are defined, just as
8936 with ordinary namespace-scope variables. */
8937 if (!processing_template_decl)
8938 DECL_INTERFACE_KNOWN (decl) = 1;
8941 /* Create a VAR_DECL named NAME with the indicated TYPE.
8943 If SCOPE is non-NULL, it is the class type or namespace containing
8944 the variable. If SCOPE is NULL, the variable should is created in
8945 the innermost enclosing scope. */
8947 static tree
8948 grokvardecl (tree type,
8949 tree name,
8950 tree orig_declarator,
8951 const cp_decl_specifier_seq *declspecs,
8952 int initialized,
8953 int type_quals,
8954 int inlinep,
8955 bool conceptp,
8956 int template_count,
8957 tree scope)
8959 tree decl;
8960 tree explicit_scope;
8962 gcc_assert (!name || identifier_p (name));
8964 bool constp = (type_quals & TYPE_QUAL_CONST) != 0;
8965 bool volatilep = (type_quals & TYPE_QUAL_VOLATILE) != 0;
8967 /* Compute the scope in which to place the variable, but remember
8968 whether or not that scope was explicitly specified by the user. */
8969 explicit_scope = scope;
8970 if (!scope)
8972 /* An explicit "extern" specifier indicates a namespace-scope
8973 variable. */
8974 if (declspecs->storage_class == sc_extern)
8975 scope = current_decl_namespace ();
8976 else if (!at_function_scope_p ())
8977 scope = current_scope ();
8980 if (scope
8981 && (/* If the variable is a namespace-scope variable declared in a
8982 template, we need DECL_LANG_SPECIFIC. */
8983 (TREE_CODE (scope) == NAMESPACE_DECL && processing_template_decl)
8984 /* Similarly for namespace-scope variables with language linkage
8985 other than C++. */
8986 || (TREE_CODE (scope) == NAMESPACE_DECL
8987 && current_lang_name != lang_name_cplusplus)
8988 /* Similarly for static data members. */
8989 || TYPE_P (scope)
8990 /* Similarly for explicit specializations. */
8991 || (orig_declarator
8992 && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)))
8993 decl = build_lang_decl (VAR_DECL, name, type);
8994 else
8995 decl = build_decl (input_location, VAR_DECL, name, type);
8997 if (explicit_scope && TREE_CODE (explicit_scope) == NAMESPACE_DECL)
8998 set_decl_namespace (decl, explicit_scope, 0);
8999 else
9000 DECL_CONTEXT (decl) = FROB_CONTEXT (scope);
9002 if (declspecs->storage_class == sc_extern)
9004 DECL_THIS_EXTERN (decl) = 1;
9005 DECL_EXTERNAL (decl) = !initialized;
9008 if (DECL_CLASS_SCOPE_P (decl))
9010 set_linkage_for_static_data_member (decl);
9011 /* This function is only called with out-of-class definitions. */
9012 DECL_EXTERNAL (decl) = 0;
9013 check_class_member_definition_namespace (decl);
9015 /* At top level, either `static' or no s.c. makes a definition
9016 (perhaps tentative), and absence of `static' makes it public. */
9017 else if (toplevel_bindings_p ())
9019 TREE_PUBLIC (decl) = (declspecs->storage_class != sc_static
9020 && (DECL_THIS_EXTERN (decl)
9021 || ! constp
9022 || volatilep
9023 || inlinep));
9024 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
9026 /* Not at top level, only `static' makes a static definition. */
9027 else
9029 TREE_STATIC (decl) = declspecs->storage_class == sc_static;
9030 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
9033 if (decl_spec_seq_has_spec_p (declspecs, ds_thread))
9035 if (DECL_EXTERNAL (decl) || TREE_STATIC (decl))
9037 CP_DECL_THREAD_LOCAL_P (decl) = true;
9038 if (!processing_template_decl)
9039 set_decl_tls_model (decl, decl_default_tls_model (decl));
9041 if (declspecs->gnu_thread_keyword_p)
9042 SET_DECL_GNU_TLS_P (decl);
9045 /* If the type of the decl has no linkage, make sure that we'll
9046 notice that in mark_used. */
9047 if (cxx_dialect > cxx98
9048 && decl_linkage (decl) != lk_none
9049 && DECL_LANG_SPECIFIC (decl) == NULL
9050 && !DECL_EXTERN_C_P (decl)
9051 && no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/false))
9052 retrofit_lang_decl (decl);
9054 if (TREE_PUBLIC (decl))
9056 /* [basic.link]: A name with no linkage (notably, the name of a class
9057 or enumeration declared in a local scope) shall not be used to
9058 declare an entity with linkage.
9060 DR 757 relaxes this restriction for C++0x. */
9061 if (cxx_dialect < cxx11)
9062 no_linkage_error (decl);
9064 else
9065 DECL_INTERFACE_KNOWN (decl) = 1;
9067 if (DECL_NAME (decl)
9068 && MAIN_NAME_P (DECL_NAME (decl))
9069 && scope == global_namespace)
9070 error ("cannot declare %<::main%> to be a global variable");
9072 /* Check that the variable can be safely declared as a concept.
9073 Note that this also forbids explicit specializations. */
9074 if (conceptp)
9076 if (!processing_template_decl)
9078 error ("a non-template variable cannot be %<concept%>");
9079 return NULL_TREE;
9081 else
9082 DECL_DECLARED_CONCEPT_P (decl) = true;
9083 if (!same_type_ignoring_top_level_qualifiers_p (type, boolean_type_node))
9084 error_at (declspecs->locations[ds_type_spec],
9085 "concept must have type %<bool%>");
9087 else if (flag_concepts
9088 && processing_template_decl > template_class_depth (scope))
9090 tree reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
9091 tree ci = build_constraints (reqs, NULL_TREE);
9092 set_constraints (decl, ci);
9095 // Handle explicit specializations and instantiations of variable templates.
9096 if (orig_declarator)
9097 decl = check_explicit_specialization (orig_declarator, decl,
9098 template_count, conceptp * 8);
9100 return decl != error_mark_node ? decl : NULL_TREE;
9103 /* Create and return a canonical pointer to member function type, for
9104 TYPE, which is a POINTER_TYPE to a METHOD_TYPE. */
9106 tree
9107 build_ptrmemfunc_type (tree type)
9109 tree field, fields;
9110 tree t;
9112 if (type == error_mark_node)
9113 return type;
9115 /* Make sure that we always have the unqualified pointer-to-member
9116 type first. */
9117 if (cp_cv_quals quals = cp_type_quals (type))
9119 tree unqual = build_ptrmemfunc_type (TYPE_MAIN_VARIANT (type));
9120 return cp_build_qualified_type (unqual, quals);
9123 /* If a canonical type already exists for this type, use it. We use
9124 this method instead of type_hash_canon, because it only does a
9125 simple equality check on the list of field members. */
9127 t = TYPE_PTRMEMFUNC_TYPE (type);
9128 if (t)
9129 return t;
9131 t = make_node (RECORD_TYPE);
9133 /* Let the front end know this is a pointer to member function. */
9134 TYPE_PTRMEMFUNC_FLAG (t) = 1;
9136 field = build_decl (input_location, FIELD_DECL, pfn_identifier, type);
9137 fields = field;
9139 field = build_decl (input_location, FIELD_DECL, delta_identifier,
9140 delta_type_node);
9141 DECL_CHAIN (field) = fields;
9142 fields = field;
9144 finish_builtin_struct (t, "__ptrmemfunc_type", fields, ptr_type_node);
9146 /* Zap out the name so that the back end will give us the debugging
9147 information for this anonymous RECORD_TYPE. */
9148 TYPE_NAME (t) = NULL_TREE;
9150 /* Cache this pointer-to-member type so that we can find it again
9151 later. */
9152 TYPE_PTRMEMFUNC_TYPE (type) = t;
9154 if (TYPE_STRUCTURAL_EQUALITY_P (type))
9155 SET_TYPE_STRUCTURAL_EQUALITY (t);
9156 else if (TYPE_CANONICAL (type) != type)
9157 TYPE_CANONICAL (t) = build_ptrmemfunc_type (TYPE_CANONICAL (type));
9159 return t;
9162 /* Create and return a pointer to data member type. */
9164 tree
9165 build_ptrmem_type (tree class_type, tree member_type)
9167 if (TREE_CODE (member_type) == METHOD_TYPE)
9169 cp_cv_quals quals = type_memfn_quals (member_type);
9170 cp_ref_qualifier rqual = type_memfn_rqual (member_type);
9171 member_type = build_memfn_type (member_type, class_type, quals, rqual);
9172 return build_ptrmemfunc_type (build_pointer_type (member_type));
9174 else
9176 gcc_assert (TREE_CODE (member_type) != FUNCTION_TYPE);
9177 return build_offset_type (class_type, member_type);
9181 /* DECL is a VAR_DECL defined in-class, whose TYPE is also given.
9182 Check to see that the definition is valid. Issue appropriate error
9183 messages. Return 1 if the definition is particularly bad, or 0
9184 otherwise. */
9186 static int
9187 check_static_variable_definition (tree decl, tree type)
9189 /* Avoid redundant diagnostics on out-of-class definitions. */
9190 if (!current_class_type || !TYPE_BEING_DEFINED (current_class_type))
9191 return 0;
9192 /* Can't check yet if we don't know the type. */
9193 if (dependent_type_p (type))
9194 return 0;
9195 /* If DECL is declared constexpr, we'll do the appropriate checks
9196 in check_initializer. Similarly for inline static data members. */
9197 if (DECL_P (decl)
9198 && (DECL_DECLARED_CONSTEXPR_P (decl)
9199 || DECL_VAR_DECLARED_INLINE_P (decl)))
9200 return 0;
9201 else if (cxx_dialect >= cxx11 && !INTEGRAL_OR_ENUMERATION_TYPE_P (type))
9203 if (!COMPLETE_TYPE_P (type))
9204 error_at (DECL_SOURCE_LOCATION (decl),
9205 "in-class initialization of static data member %q#D of "
9206 "incomplete type", decl);
9207 else if (literal_type_p (type))
9208 permerror (DECL_SOURCE_LOCATION (decl),
9209 "%<constexpr%> needed for in-class initialization of "
9210 "static data member %q#D of non-integral type", decl);
9211 else
9212 error_at (DECL_SOURCE_LOCATION (decl),
9213 "in-class initialization of static data member %q#D of "
9214 "non-literal type", decl);
9215 return 1;
9218 /* Motion 10 at San Diego: If a static const integral data member is
9219 initialized with an integral constant expression, the initializer
9220 may appear either in the declaration (within the class), or in
9221 the definition, but not both. If it appears in the class, the
9222 member is a member constant. The file-scope definition is always
9223 required. */
9224 if (!ARITHMETIC_TYPE_P (type) && TREE_CODE (type) != ENUMERAL_TYPE)
9226 error_at (DECL_SOURCE_LOCATION (decl),
9227 "invalid in-class initialization of static data member "
9228 "of non-integral type %qT",
9229 type);
9230 return 1;
9232 else if (!CP_TYPE_CONST_P (type))
9233 error_at (DECL_SOURCE_LOCATION (decl),
9234 "ISO C++ forbids in-class initialization of non-const "
9235 "static member %qD",
9236 decl);
9237 else if (!INTEGRAL_OR_ENUMERATION_TYPE_P (type))
9238 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wpedantic,
9239 "ISO C++ forbids initialization of member constant "
9240 "%qD of non-integral type %qT", decl, type);
9242 return 0;
9245 /* *expr_p is part of the TYPE_SIZE of a variably-sized array. If any
9246 SAVE_EXPRs in *expr_p wrap expressions with side-effects, break those
9247 expressions out into temporary variables so that walk_tree doesn't
9248 step into them (c++/15764). */
9250 static tree
9251 stabilize_save_expr_r (tree *expr_p, int *walk_subtrees, void *data)
9253 hash_set<tree> *pset = (hash_set<tree> *)data;
9254 tree expr = *expr_p;
9255 if (TREE_CODE (expr) == SAVE_EXPR)
9257 tree op = TREE_OPERAND (expr, 0);
9258 cp_walk_tree (&op, stabilize_save_expr_r, data, pset);
9259 if (TREE_SIDE_EFFECTS (op))
9260 TREE_OPERAND (expr, 0) = get_temp_regvar (TREE_TYPE (op), op);
9261 *walk_subtrees = 0;
9263 else if (!EXPR_P (expr) || !TREE_SIDE_EFFECTS (expr))
9264 *walk_subtrees = 0;
9265 return NULL;
9268 /* Entry point for the above. */
9270 static void
9271 stabilize_vla_size (tree size)
9273 hash_set<tree> pset;
9274 /* Break out any function calls into temporary variables. */
9275 cp_walk_tree (&size, stabilize_save_expr_r, &pset, &pset);
9278 /* Reduce a SIZEOF_EXPR to its value. */
9280 tree
9281 fold_sizeof_expr (tree t)
9283 tree r;
9284 if (SIZEOF_EXPR_TYPE_P (t))
9285 r = cxx_sizeof_or_alignof_type (TREE_TYPE (TREE_OPERAND (t, 0)),
9286 SIZEOF_EXPR, false);
9287 else if (TYPE_P (TREE_OPERAND (t, 0)))
9288 r = cxx_sizeof_or_alignof_type (TREE_OPERAND (t, 0), SIZEOF_EXPR,
9289 false);
9290 else
9291 r = cxx_sizeof_or_alignof_expr (TREE_OPERAND (t, 0), SIZEOF_EXPR,
9292 false);
9293 if (r == error_mark_node)
9294 r = size_one_node;
9295 return r;
9298 /* Given the SIZE (i.e., number of elements) in an array, compute
9299 an appropriate index type for the array. If non-NULL, NAME is
9300 the name of the entity being declared. */
9302 tree
9303 compute_array_index_type (tree name, tree size, tsubst_flags_t complain)
9305 tree itype;
9306 tree osize = size;
9308 if (error_operand_p (size))
9309 return error_mark_node;
9311 if (!type_dependent_expression_p (size))
9313 tree type = TREE_TYPE (size);
9315 size = mark_rvalue_use (size);
9317 if (cxx_dialect < cxx11 && TREE_CODE (size) == NOP_EXPR
9318 && TREE_SIDE_EFFECTS (size))
9319 /* In C++98, we mark a non-constant array bound with a magic
9320 NOP_EXPR with TREE_SIDE_EFFECTS; don't fold in that case. */;
9321 else
9323 size = instantiate_non_dependent_expr_sfinae (size, complain);
9325 if (CLASS_TYPE_P (type)
9326 && CLASSTYPE_LITERAL_P (type))
9328 size = build_expr_type_conversion (WANT_INT, size, true);
9329 if (!size)
9331 if (!(complain & tf_error))
9332 return error_mark_node;
9333 if (name)
9334 error ("size of array %qD has non-integral type %qT",
9335 name, type);
9336 else
9337 error ("size of array has non-integral type %qT", type);
9338 size = integer_one_node;
9340 if (size == error_mark_node)
9341 return error_mark_node;
9342 type = TREE_TYPE (size);
9345 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
9346 size = maybe_constant_value (size);
9348 if (!TREE_CONSTANT (size))
9349 size = osize;
9352 if (error_operand_p (size))
9353 return error_mark_node;
9355 /* The array bound must be an integer type. */
9356 if (!INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
9358 if (!(complain & tf_error))
9359 return error_mark_node;
9360 if (name)
9361 error ("size of array %qD has non-integral type %qT", name, type);
9362 else
9363 error ("size of array has non-integral type %qT", type);
9364 size = integer_one_node;
9365 type = TREE_TYPE (size);
9369 /* A type is dependent if it is...an array type constructed from any
9370 dependent type or whose size is specified by a constant expression
9371 that is value-dependent. */
9372 /* We can only call value_dependent_expression_p on integral constant
9373 expressions; treat non-constant expressions as dependent, too. */
9374 if (processing_template_decl
9375 && (type_dependent_expression_p (size)
9376 || !TREE_CONSTANT (size) || value_dependent_expression_p (size)))
9378 /* We cannot do any checking for a SIZE that isn't known to be
9379 constant. Just build the index type and mark that it requires
9380 structural equality checks. */
9381 itype = build_index_type (build_min (MINUS_EXPR, sizetype,
9382 size, size_one_node));
9383 TYPE_DEPENDENT_P (itype) = 1;
9384 TYPE_DEPENDENT_P_VALID (itype) = 1;
9385 SET_TYPE_STRUCTURAL_EQUALITY (itype);
9386 return itype;
9389 if (TREE_CODE (size) != INTEGER_CST)
9391 tree folded = cp_fully_fold (size);
9392 if (TREE_CODE (folded) == INTEGER_CST)
9393 pedwarn (location_of (size), OPT_Wpedantic,
9394 "size of array is not an integral constant-expression");
9395 /* Use the folded result for VLAs, too; it will have resolved
9396 SIZEOF_EXPR. */
9397 size = folded;
9400 /* Normally, the array-bound will be a constant. */
9401 if (TREE_CODE (size) == INTEGER_CST)
9403 /* Check to see if the array bound overflowed. Make that an
9404 error, no matter how generous we're being. */
9405 constant_expression_error (size);
9407 /* An array must have a positive number of elements. */
9408 if (tree_int_cst_lt (size, integer_zero_node))
9410 if (!(complain & tf_error))
9411 return error_mark_node;
9412 if (name)
9413 error ("size of array %qD is negative", name);
9414 else
9415 error ("size of array is negative");
9416 size = integer_one_node;
9418 /* As an extension we allow zero-sized arrays. */
9419 else if (integer_zerop (size))
9421 if (!(complain & tf_error))
9422 /* We must fail if performing argument deduction (as
9423 indicated by the state of complain), so that
9424 another substitution can be found. */
9425 return error_mark_node;
9426 else if (in_system_header_at (input_location))
9427 /* Allow them in system headers because glibc uses them. */;
9428 else if (name)
9429 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids zero-size array %qD", name);
9430 else
9431 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids zero-size array");
9434 else if (TREE_CONSTANT (size)
9435 /* We don't allow VLAs at non-function scopes, or during
9436 tentative template substitution. */
9437 || !at_function_scope_p ()
9438 || !(complain & tf_error))
9440 if (!(complain & tf_error))
9441 return error_mark_node;
9442 /* `(int) &fn' is not a valid array bound. */
9443 if (name)
9444 error ("size of array %qD is not an integral constant-expression",
9445 name);
9446 else
9447 error ("size of array is not an integral constant-expression");
9448 size = integer_one_node;
9450 else if (pedantic && warn_vla != 0)
9452 if (name)
9453 pedwarn (input_location, OPT_Wvla, "ISO C++ forbids variable length array %qD", name);
9454 else
9455 pedwarn (input_location, OPT_Wvla, "ISO C++ forbids variable length array");
9457 else if (warn_vla > 0)
9459 if (name)
9460 warning (OPT_Wvla,
9461 "variable length array %qD is used", name);
9462 else
9463 warning (OPT_Wvla,
9464 "variable length array is used");
9467 if (processing_template_decl && !TREE_CONSTANT (size))
9468 /* A variable sized array. */
9469 itype = build_min (MINUS_EXPR, sizetype, size, integer_one_node);
9470 else
9472 /* Compute the index of the largest element in the array. It is
9473 one less than the number of elements in the array. We save
9474 and restore PROCESSING_TEMPLATE_DECL so that computations in
9475 cp_build_binary_op will be appropriately folded. */
9477 processing_template_decl_sentinel s;
9478 itype = cp_build_binary_op (input_location,
9479 MINUS_EXPR,
9480 cp_convert (ssizetype, size, complain),
9481 cp_convert (ssizetype, integer_one_node,
9482 complain),
9483 complain);
9484 itype = maybe_constant_value (itype);
9487 if (!TREE_CONSTANT (itype))
9489 /* A variable sized array. */
9490 itype = variable_size (itype);
9492 stabilize_vla_size (itype);
9494 if (sanitize_flags_p (SANITIZE_VLA)
9495 && current_function_decl != NULL_TREE)
9497 /* We have to add 1 -- in the ubsan routine we generate
9498 LE_EXPR rather than LT_EXPR. */
9499 tree t = fold_build2 (PLUS_EXPR, TREE_TYPE (itype), itype,
9500 build_one_cst (TREE_TYPE (itype)));
9501 t = ubsan_instrument_vla (input_location, t);
9502 finish_expr_stmt (t);
9505 /* Make sure that there was no overflow when creating to a signed
9506 index type. (For example, on a 32-bit machine, an array with
9507 size 2^32 - 1 is too big.) */
9508 else if (TREE_CODE (itype) == INTEGER_CST
9509 && TREE_OVERFLOW (itype))
9511 if (!(complain & tf_error))
9512 return error_mark_node;
9513 error ("overflow in array dimension");
9514 TREE_OVERFLOW (itype) = 0;
9518 /* Create and return the appropriate index type. */
9519 itype = build_index_type (itype);
9521 /* If the index type were dependent, we would have returned early, so
9522 remember that it isn't. */
9523 TYPE_DEPENDENT_P (itype) = 0;
9524 TYPE_DEPENDENT_P_VALID (itype) = 1;
9525 return itype;
9528 /* Returns the scope (if any) in which the entity declared by
9529 DECLARATOR will be located. If the entity was declared with an
9530 unqualified name, NULL_TREE is returned. */
9532 tree
9533 get_scope_of_declarator (const cp_declarator *declarator)
9535 while (declarator && declarator->kind != cdk_id)
9536 declarator = declarator->declarator;
9538 /* If the declarator-id is a SCOPE_REF, the scope in which the
9539 declaration occurs is the first operand. */
9540 if (declarator
9541 && declarator->u.id.qualifying_scope)
9542 return declarator->u.id.qualifying_scope;
9544 /* Otherwise, the declarator is not a qualified name; the entity will
9545 be declared in the current scope. */
9546 return NULL_TREE;
9549 /* Returns an ARRAY_TYPE for an array with SIZE elements of the
9550 indicated TYPE. If non-NULL, NAME is the NAME of the declaration
9551 with this type. */
9553 static tree
9554 create_array_type_for_decl (tree name, tree type, tree size)
9556 tree itype = NULL_TREE;
9558 /* If things have already gone awry, bail now. */
9559 if (type == error_mark_node || size == error_mark_node)
9560 return error_mark_node;
9562 /* 8.3.4/1: If the type of the identifier of D contains the auto
9563 type-specifier, the program is ill-formed. */
9564 if (type_uses_auto (type))
9566 error ("%qD declared as array of %qT", name, type);
9567 return error_mark_node;
9570 /* If there are some types which cannot be array elements,
9571 issue an error-message and return. */
9572 switch (TREE_CODE (type))
9574 case VOID_TYPE:
9575 if (name)
9576 error ("declaration of %qD as array of void", name);
9577 else
9578 error ("creating array of void");
9579 return error_mark_node;
9581 case FUNCTION_TYPE:
9582 if (name)
9583 error ("declaration of %qD as array of functions", name);
9584 else
9585 error ("creating array of functions");
9586 return error_mark_node;
9588 case REFERENCE_TYPE:
9589 if (name)
9590 error ("declaration of %qD as array of references", name);
9591 else
9592 error ("creating array of references");
9593 return error_mark_node;
9595 case METHOD_TYPE:
9596 if (name)
9597 error ("declaration of %qD as array of function members", name);
9598 else
9599 error ("creating array of function members");
9600 return error_mark_node;
9602 default:
9603 break;
9606 /* [dcl.array]
9608 The constant expressions that specify the bounds of the arrays
9609 can be omitted only for the first member of the sequence. */
9610 if (TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type))
9612 if (name)
9613 error ("declaration of %qD as multidimensional array must "
9614 "have bounds for all dimensions except the first",
9615 name);
9616 else
9617 error ("multidimensional array must have bounds for all "
9618 "dimensions except the first");
9620 return error_mark_node;
9623 /* Figure out the index type for the array. */
9624 if (size)
9625 itype = compute_array_index_type (name, size, tf_warning_or_error);
9627 /* [dcl.array]
9628 T is called the array element type; this type shall not be [...] an
9629 abstract class type. */
9630 abstract_virtuals_error (name, type);
9632 return build_cplus_array_type (type, itype);
9635 /* Returns the smallest location != UNKNOWN_LOCATION among the
9636 three stored in LOCATIONS[ds_const], LOCATIONS[ds_volatile],
9637 and LOCATIONS[ds_restrict]. */
9639 static location_t
9640 smallest_type_quals_location (int type_quals, const location_t* locations)
9642 location_t loc = UNKNOWN_LOCATION;
9644 if (type_quals & TYPE_QUAL_CONST)
9645 loc = locations[ds_const];
9647 if ((type_quals & TYPE_QUAL_VOLATILE)
9648 && (loc == UNKNOWN_LOCATION || locations[ds_volatile] < loc))
9649 loc = locations[ds_volatile];
9651 if ((type_quals & TYPE_QUAL_RESTRICT)
9652 && (loc == UNKNOWN_LOCATION || locations[ds_restrict] < loc))
9653 loc = locations[ds_restrict];
9655 return loc;
9658 /* Check that it's OK to declare a function with the indicated TYPE
9659 and TYPE_QUALS. SFK indicates the kind of special function (if any)
9660 that this function is. OPTYPE is the type given in a conversion
9661 operator declaration, or the class type for a constructor/destructor.
9662 Returns the actual return type of the function; that may be different
9663 than TYPE if an error occurs, or for certain special functions. */
9665 static tree
9666 check_special_function_return_type (special_function_kind sfk,
9667 tree type,
9668 tree optype,
9669 int type_quals,
9670 const location_t* locations)
9672 switch (sfk)
9674 case sfk_constructor:
9675 if (type)
9676 error ("return type specification for constructor invalid");
9677 else if (type_quals != TYPE_UNQUALIFIED)
9678 error_at (smallest_type_quals_location (type_quals, locations),
9679 "qualifiers are not allowed on constructor declaration");
9681 if (targetm.cxx.cdtor_returns_this ())
9682 type = build_pointer_type (optype);
9683 else
9684 type = void_type_node;
9685 break;
9687 case sfk_destructor:
9688 if (type)
9689 error ("return type specification for destructor invalid");
9690 else if (type_quals != TYPE_UNQUALIFIED)
9691 error_at (smallest_type_quals_location (type_quals, locations),
9692 "qualifiers are not allowed on destructor declaration");
9694 /* We can't use the proper return type here because we run into
9695 problems with ambiguous bases and covariant returns. */
9696 if (targetm.cxx.cdtor_returns_this ())
9697 type = build_pointer_type (void_type_node);
9698 else
9699 type = void_type_node;
9700 break;
9702 case sfk_conversion:
9703 if (type)
9704 error ("return type specified for %<operator %T%>", optype);
9705 else if (type_quals != TYPE_UNQUALIFIED)
9706 error_at (smallest_type_quals_location (type_quals, locations),
9707 "qualifiers are not allowed on declaration of "
9708 "%<operator %T%>", optype);
9710 type = optype;
9711 break;
9713 case sfk_deduction_guide:
9714 if (type)
9715 error ("return type specified for deduction guide");
9716 else if (type_quals != TYPE_UNQUALIFIED)
9717 error_at (smallest_type_quals_location (type_quals, locations),
9718 "qualifiers are not allowed on declaration of "
9719 "deduction guide");
9720 type = make_template_placeholder (CLASSTYPE_TI_TEMPLATE (optype));
9721 for (int i = 0; i < ds_last; ++i)
9722 if (i != ds_explicit && locations[i])
9723 error_at (locations[i],
9724 "decl-specifier in declaration of deduction guide");
9725 break;
9727 default:
9728 gcc_unreachable ();
9731 return type;
9734 /* A variable or data member (whose unqualified name is IDENTIFIER)
9735 has been declared with the indicated TYPE. If the TYPE is not
9736 acceptable, issue an error message and return a type to use for
9737 error-recovery purposes. */
9739 tree
9740 check_var_type (tree identifier, tree type)
9742 if (VOID_TYPE_P (type))
9744 if (!identifier)
9745 error ("unnamed variable or field declared void");
9746 else if (identifier_p (identifier))
9748 gcc_assert (!IDENTIFIER_ANY_OP_P (identifier));
9749 error ("variable or field %qE declared void", identifier);
9751 else
9752 error ("variable or field declared void");
9753 type = error_mark_node;
9756 return type;
9759 /* Handle declaring DECL as an inline variable. */
9761 static void
9762 mark_inline_variable (tree decl)
9764 bool inlinep = true;
9765 if (! toplevel_bindings_p ())
9767 error ("%<inline%> specifier invalid for variable "
9768 "%qD declared at block scope", decl);
9769 inlinep = false;
9771 else if (cxx_dialect < cxx17)
9772 pedwarn (DECL_SOURCE_LOCATION (decl), 0,
9773 "inline variables are only available "
9774 "with -std=c++17 or -std=gnu++17");
9775 if (inlinep)
9777 retrofit_lang_decl (decl);
9778 SET_DECL_VAR_DECLARED_INLINE_P (decl);
9783 /* Assign a typedef-given name to a class or enumeration type declared
9784 as anonymous at first. This was split out of grokdeclarator
9785 because it is also used in libcc1. */
9787 void
9788 name_unnamed_type (tree type, tree decl)
9790 gcc_assert (TYPE_UNNAMED_P (type));
9792 /* Replace the anonymous name with the real name everywhere. */
9793 for (tree t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
9795 if (anon_aggrname_p (TYPE_IDENTIFIER (t)))
9796 /* We do not rename the debug info representing the
9797 unnamed tagged type because the standard says in
9798 [dcl.typedef] that the naming applies only for
9799 linkage purposes. */
9800 /*debug_hooks->set_name (t, decl);*/
9801 TYPE_NAME (t) = decl;
9804 if (TYPE_LANG_SPECIFIC (type))
9805 TYPE_WAS_UNNAMED (type) = 1;
9807 /* If this is a typedef within a template class, the nested
9808 type is a (non-primary) template. The name for the
9809 template needs updating as well. */
9810 if (TYPE_LANG_SPECIFIC (type) && CLASSTYPE_TEMPLATE_INFO (type))
9811 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type))
9812 = TYPE_IDENTIFIER (type);
9814 /* Adjust linkage now that we aren't unnamed anymore. */
9815 reset_type_linkage (type);
9817 /* FIXME remangle member functions; member functions of a
9818 type with external linkage have external linkage. */
9820 /* Check that our job is done, and that it would fail if we
9821 attempted to do it again. */
9822 gcc_assert (!TYPE_UNNAMED_P (type));
9825 /* Given declspecs and a declarator (abstract or otherwise), determine
9826 the name and type of the object declared and construct a DECL node
9827 for it.
9829 DECLSPECS points to the representation of declaration-specifier
9830 sequence that precedes declarator.
9832 DECL_CONTEXT says which syntactic context this declaration is in:
9833 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
9834 FUNCDEF for a function definition. Like NORMAL but a few different
9835 error messages in each case. Return value may be zero meaning
9836 this definition is too screwy to try to parse.
9837 MEMFUNCDEF for a function definition. Like FUNCDEF but prepares to
9838 handle member functions (which have FIELD context).
9839 Return value may be zero meaning this definition is too screwy to
9840 try to parse.
9841 PARM for a parameter declaration (either within a function prototype
9842 or before a function body). Make a PARM_DECL, or return void_type_node.
9843 TPARM for a template parameter declaration.
9844 CATCHPARM for a parameter declaration before a catch clause.
9845 TYPENAME if for a typename (in a cast or sizeof).
9846 Don't make a DECL node; just return the ..._TYPE node.
9847 FIELD for a struct or union field; make a FIELD_DECL.
9848 BITFIELD for a field with specified width.
9850 INITIALIZED is as for start_decl.
9852 ATTRLIST is a pointer to the list of attributes, which may be NULL
9853 if there are none; *ATTRLIST may be modified if attributes from inside
9854 the declarator should be applied to the declaration.
9856 When this function is called, scoping variables (such as
9857 CURRENT_CLASS_TYPE) should reflect the scope in which the
9858 declaration occurs, not the scope in which the new declaration will
9859 be placed. For example, on:
9861 void S::f() { ... }
9863 when grokdeclarator is called for `S::f', the CURRENT_CLASS_TYPE
9864 should not be `S'.
9866 Returns a DECL (if a declarator is present), a TYPE (if there is no
9867 declarator, in cases like "struct S;"), or the ERROR_MARK_NODE if an
9868 error occurs. */
9870 tree
9871 grokdeclarator (const cp_declarator *declarator,
9872 cp_decl_specifier_seq *declspecs,
9873 enum decl_context decl_context,
9874 int initialized,
9875 tree* attrlist)
9877 tree type = NULL_TREE;
9878 int longlong = 0;
9879 int explicit_intN = 0;
9880 int virtualp, explicitp, friendp, inlinep, staticp;
9881 int explicit_int = 0;
9882 int explicit_char = 0;
9883 int defaulted_int = 0;
9885 tree typedef_decl = NULL_TREE;
9886 const char *name = NULL;
9887 tree typedef_type = NULL_TREE;
9888 /* True if this declarator is a function definition. */
9889 bool funcdef_flag = false;
9890 cp_declarator_kind innermost_code = cdk_error;
9891 int bitfield = 0;
9892 #if 0
9893 /* See the code below that used this. */
9894 tree decl_attr = NULL_TREE;
9895 #endif
9897 /* Keep track of what sort of function is being processed
9898 so that we can warn about default return values, or explicit
9899 return values which do not match prescribed defaults. */
9900 special_function_kind sfk = sfk_none;
9902 tree dname = NULL_TREE;
9903 tree ctor_return_type = NULL_TREE;
9904 enum overload_flags flags = NO_SPECIAL;
9905 /* cv-qualifiers that apply to the declarator, for a declaration of
9906 a member function. */
9907 cp_cv_quals memfn_quals = TYPE_UNQUALIFIED;
9908 /* virt-specifiers that apply to the declarator, for a declaration of
9909 a member function. */
9910 cp_virt_specifiers virt_specifiers = VIRT_SPEC_UNSPECIFIED;
9911 /* ref-qualifier that applies to the declarator, for a declaration of
9912 a member function. */
9913 cp_ref_qualifier rqual = REF_QUAL_NONE;
9914 /* cv-qualifiers that apply to the type specified by the DECLSPECS. */
9915 int type_quals = TYPE_UNQUALIFIED;
9916 tree raises = NULL_TREE;
9917 int template_count = 0;
9918 tree returned_attrs = NULL_TREE;
9919 tree parms = NULL_TREE;
9920 const cp_declarator *id_declarator;
9921 /* The unqualified name of the declarator; either an
9922 IDENTIFIER_NODE, BIT_NOT_EXPR, or TEMPLATE_ID_EXPR. */
9923 tree unqualified_id;
9924 /* The class type, if any, in which this entity is located,
9925 or NULL_TREE if none. Note that this value may be different from
9926 the current class type; for example if an attempt is made to declare
9927 "A::f" inside "B", this value will be "A". */
9928 tree ctype = current_class_type;
9929 /* The NAMESPACE_DECL for the namespace in which this entity is
9930 located. If an unqualified name is used to declare the entity,
9931 this value will be NULL_TREE, even if the entity is located at
9932 namespace scope. */
9933 tree in_namespace = NULL_TREE;
9934 cp_storage_class storage_class;
9935 bool unsigned_p, signed_p, short_p, long_p, thread_p;
9936 bool type_was_error_mark_node = false;
9937 bool parameter_pack_p = declarator ? declarator->parameter_pack_p : false;
9938 bool template_type_arg = false;
9939 bool template_parm_flag = false;
9940 bool typedef_p = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
9941 bool constexpr_p = decl_spec_seq_has_spec_p (declspecs, ds_constexpr);
9942 bool late_return_type_p = false;
9943 bool array_parameter_p = false;
9944 source_location saved_loc = input_location;
9945 tree reqs = NULL_TREE;
9947 signed_p = decl_spec_seq_has_spec_p (declspecs, ds_signed);
9948 unsigned_p = decl_spec_seq_has_spec_p (declspecs, ds_unsigned);
9949 short_p = decl_spec_seq_has_spec_p (declspecs, ds_short);
9950 long_p = decl_spec_seq_has_spec_p (declspecs, ds_long);
9951 longlong = decl_spec_seq_has_spec_p (declspecs, ds_long_long);
9952 explicit_intN = declspecs->explicit_intN_p;
9953 thread_p = decl_spec_seq_has_spec_p (declspecs, ds_thread);
9955 // Was concept_p specified? Note that ds_concept
9956 // implies ds_constexpr!
9957 bool concept_p = decl_spec_seq_has_spec_p (declspecs, ds_concept);
9958 if (concept_p)
9959 constexpr_p = true;
9961 if (decl_spec_seq_has_spec_p (declspecs, ds_const))
9962 type_quals |= TYPE_QUAL_CONST;
9963 if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
9964 type_quals |= TYPE_QUAL_VOLATILE;
9965 if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
9966 type_quals |= TYPE_QUAL_RESTRICT;
9968 if (decl_context == FUNCDEF)
9969 funcdef_flag = true, decl_context = NORMAL;
9970 else if (decl_context == MEMFUNCDEF)
9971 funcdef_flag = true, decl_context = FIELD;
9972 else if (decl_context == BITFIELD)
9973 bitfield = 1, decl_context = FIELD;
9974 else if (decl_context == TEMPLATE_TYPE_ARG)
9975 template_type_arg = true, decl_context = TYPENAME;
9976 else if (decl_context == TPARM)
9977 template_parm_flag = true, decl_context = PARM;
9979 if (initialized > 1)
9980 funcdef_flag = true;
9982 location_t typespec_loc = smallest_type_quals_location (type_quals,
9983 declspecs->locations);
9984 if (typespec_loc == UNKNOWN_LOCATION)
9985 typespec_loc = declspecs->locations[ds_type_spec];
9986 if (typespec_loc == UNKNOWN_LOCATION)
9987 typespec_loc = input_location;
9989 /* Look inside a declarator for the name being declared
9990 and get it as a string, for an error message. */
9991 for (id_declarator = declarator;
9992 id_declarator;
9993 id_declarator = id_declarator->declarator)
9995 if (id_declarator->kind != cdk_id)
9996 innermost_code = id_declarator->kind;
9998 switch (id_declarator->kind)
10000 case cdk_function:
10001 if (id_declarator->declarator
10002 && id_declarator->declarator->kind == cdk_id)
10004 sfk = id_declarator->declarator->u.id.sfk;
10005 if (sfk == sfk_destructor)
10006 flags = DTOR_FLAG;
10008 break;
10010 case cdk_id:
10012 tree qualifying_scope = id_declarator->u.id.qualifying_scope;
10013 tree decl = id_declarator->u.id.unqualified_name;
10014 if (!decl)
10015 break;
10016 if (qualifying_scope)
10018 if (at_function_scope_p ())
10020 /* [dcl.meaning]
10022 A declarator-id shall not be qualified except
10023 for ...
10025 None of the cases are permitted in block
10026 scope. */
10027 if (qualifying_scope == global_namespace)
10028 error ("invalid use of qualified-name %<::%D%>",
10029 decl);
10030 else if (TYPE_P (qualifying_scope))
10031 error ("invalid use of qualified-name %<%T::%D%>",
10032 qualifying_scope, decl);
10033 else
10034 error ("invalid use of qualified-name %<%D::%D%>",
10035 qualifying_scope, decl);
10036 return error_mark_node;
10038 else if (TYPE_P (qualifying_scope))
10040 ctype = qualifying_scope;
10041 if (!MAYBE_CLASS_TYPE_P (ctype))
10043 error ("%q#T is not a class or a namespace", ctype);
10044 ctype = NULL_TREE;
10046 else if (innermost_code != cdk_function
10047 && current_class_type
10048 && !uniquely_derived_from_p (ctype,
10049 current_class_type))
10051 error ("invalid use of qualified-name %<%T::%D%>",
10052 qualifying_scope, decl);
10053 return error_mark_node;
10056 else if (TREE_CODE (qualifying_scope) == NAMESPACE_DECL)
10057 in_namespace = qualifying_scope;
10059 switch (TREE_CODE (decl))
10061 case BIT_NOT_EXPR:
10063 if (innermost_code != cdk_function)
10065 error ("declaration of %qD as non-function", decl);
10066 return error_mark_node;
10068 else if (!qualifying_scope
10069 && !(current_class_type && at_class_scope_p ()))
10071 error ("declaration of %qD as non-member", decl);
10072 return error_mark_node;
10075 tree type = TREE_OPERAND (decl, 0);
10076 if (TYPE_P (type))
10077 type = constructor_name (type);
10078 name = identifier_to_locale (IDENTIFIER_POINTER (type));
10079 dname = decl;
10081 break;
10083 case TEMPLATE_ID_EXPR:
10085 tree fns = TREE_OPERAND (decl, 0);
10087 dname = fns;
10088 if (!identifier_p (dname))
10089 dname = OVL_NAME (dname);
10091 /* Fall through. */
10093 case IDENTIFIER_NODE:
10094 if (identifier_p (decl))
10095 dname = decl;
10097 if (IDENTIFIER_KEYWORD_P (dname))
10099 error ("declarator-id missing; using reserved word %qD",
10100 dname);
10101 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
10103 else if (!IDENTIFIER_CONV_OP_P (dname))
10104 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
10105 else
10107 gcc_assert (flags == NO_SPECIAL);
10108 flags = TYPENAME_FLAG;
10109 sfk = sfk_conversion;
10110 tree glob = get_global_binding (dname);
10111 if (glob && TREE_CODE (glob) == TYPE_DECL)
10112 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
10113 else
10114 name = "<invalid operator>";
10116 break;
10118 default:
10119 gcc_unreachable ();
10121 break;
10124 case cdk_array:
10125 case cdk_pointer:
10126 case cdk_reference:
10127 case cdk_ptrmem:
10128 break;
10130 case cdk_decomp:
10131 name = "structured binding";
10132 break;
10134 case cdk_error:
10135 return error_mark_node;
10137 default:
10138 gcc_unreachable ();
10140 if (id_declarator->kind == cdk_id)
10141 break;
10144 /* [dcl.fct.edf]
10146 The declarator in a function-definition shall have the form
10147 D1 ( parameter-declaration-clause) ... */
10148 if (funcdef_flag && innermost_code != cdk_function)
10150 error ("function definition does not declare parameters");
10151 return error_mark_node;
10154 if (flags == TYPENAME_FLAG
10155 && innermost_code != cdk_function
10156 && ! (ctype && !declspecs->any_specifiers_p))
10158 error ("declaration of %qD as non-function", dname);
10159 return error_mark_node;
10162 if (dname && identifier_p (dname))
10164 if (UDLIT_OPER_P (dname)
10165 && innermost_code != cdk_function)
10167 error ("declaration of %qD as non-function", dname);
10168 return error_mark_node;
10171 if (IDENTIFIER_ANY_OP_P (dname))
10173 if (typedef_p)
10175 error ("declaration of %qD as %<typedef%>", dname);
10176 return error_mark_node;
10178 else if (decl_context == PARM || decl_context == CATCHPARM)
10180 error ("declaration of %qD as parameter", dname);
10181 return error_mark_node;
10186 /* Anything declared one level down from the top level
10187 must be one of the parameters of a function
10188 (because the body is at least two levels down). */
10190 /* This heuristic cannot be applied to C++ nodes! Fixed, however,
10191 by not allowing C++ class definitions to specify their parameters
10192 with xdecls (must be spec.d in the parmlist).
10194 Since we now wait to push a class scope until we are sure that
10195 we are in a legitimate method context, we must set oldcname
10196 explicitly (since current_class_name is not yet alive).
10198 We also want to avoid calling this a PARM if it is in a namespace. */
10200 if (decl_context == NORMAL && !toplevel_bindings_p ())
10202 cp_binding_level *b = current_binding_level;
10203 current_binding_level = b->level_chain;
10204 if (current_binding_level != 0 && toplevel_bindings_p ())
10205 decl_context = PARM;
10206 current_binding_level = b;
10209 if (name == NULL)
10210 name = decl_context == PARM ? "parameter" : "type name";
10212 if (concept_p && typedef_p)
10214 error ("%<concept%> cannot appear in a typedef declaration");
10215 return error_mark_node;
10218 if (constexpr_p && typedef_p)
10220 error ("%<constexpr%> cannot appear in a typedef declaration");
10221 return error_mark_node;
10224 /* If there were multiple types specified in the decl-specifier-seq,
10225 issue an error message. */
10226 if (declspecs->multiple_types_p)
10228 error ("two or more data types in declaration of %qs", name);
10229 return error_mark_node;
10232 if (declspecs->conflicting_specifiers_p)
10234 error ("conflicting specifiers in declaration of %qs", name);
10235 return error_mark_node;
10238 /* Extract the basic type from the decl-specifier-seq. */
10239 type = declspecs->type;
10240 if (type == error_mark_node)
10242 type = NULL_TREE;
10243 type_was_error_mark_node = true;
10245 /* If the entire declaration is itself tagged as deprecated then
10246 suppress reports of deprecated items. */
10247 if (type && TREE_DEPRECATED (type)
10248 && deprecated_state != DEPRECATED_SUPPRESS)
10249 warn_deprecated_use (type, NULL_TREE);
10250 if (type && TREE_CODE (type) == TYPE_DECL)
10252 typedef_decl = type;
10253 type = TREE_TYPE (typedef_decl);
10254 if (TREE_DEPRECATED (type)
10255 && DECL_ARTIFICIAL (typedef_decl)
10256 && deprecated_state != DEPRECATED_SUPPRESS)
10257 warn_deprecated_use (type, NULL_TREE);
10259 /* No type at all: default to `int', and set DEFAULTED_INT
10260 because it was not a user-defined typedef. */
10261 if (type == NULL_TREE)
10263 if (signed_p || unsigned_p || long_p || short_p)
10265 /* These imply 'int'. */
10266 type = integer_type_node;
10267 defaulted_int = 1;
10269 /* If we just have "complex", it is equivalent to "complex double". */
10270 else if (!longlong && !explicit_intN
10271 && decl_spec_seq_has_spec_p (declspecs, ds_complex))
10273 type = double_type_node;
10274 pedwarn (declspecs->locations[ds_complex], OPT_Wpedantic,
10275 "ISO C++ does not support plain %<complex%> meaning "
10276 "%<double complex%>");
10279 /* Gather flags. */
10280 explicit_int = declspecs->explicit_int_p;
10281 explicit_char = declspecs->explicit_char_p;
10283 #if 0
10284 /* See the code below that used this. */
10285 if (typedef_decl)
10286 decl_attr = DECL_ATTRIBUTES (typedef_decl);
10287 #endif
10288 typedef_type = type;
10290 if (sfk == sfk_conversion || sfk == sfk_deduction_guide)
10291 ctor_return_type = TREE_TYPE (dname);
10292 else
10293 ctor_return_type = ctype;
10295 if (sfk != sfk_none)
10297 type = check_special_function_return_type (sfk, type,
10298 ctor_return_type,
10299 type_quals,
10300 declspecs->locations);
10301 type_quals = TYPE_UNQUALIFIED;
10303 else if (type == NULL_TREE)
10305 int is_main;
10307 explicit_int = -1;
10309 /* We handle `main' specially here, because 'main () { }' is so
10310 common. With no options, it is allowed. With -Wreturn-type,
10311 it is a warning. It is only an error with -pedantic-errors. */
10312 is_main = (funcdef_flag
10313 && dname && identifier_p (dname)
10314 && MAIN_NAME_P (dname)
10315 && ctype == NULL_TREE
10316 && in_namespace == NULL_TREE
10317 && current_namespace == global_namespace);
10319 if (type_was_error_mark_node)
10320 /* We've already issued an error, don't complain more. */;
10321 else if (in_system_header_at (input_location) || flag_ms_extensions)
10322 /* Allow it, sigh. */;
10323 else if (! is_main)
10324 permerror (input_location, "ISO C++ forbids declaration of %qs with no type", name);
10325 else if (pedantic)
10326 pedwarn (input_location, OPT_Wpedantic,
10327 "ISO C++ forbids declaration of %qs with no type", name);
10328 else
10329 warning (OPT_Wreturn_type,
10330 "ISO C++ forbids declaration of %qs with no type", name);
10332 if (type_was_error_mark_node && template_parm_flag)
10333 /* FIXME we should be able to propagate the error_mark_node as is
10334 for other contexts too. */
10335 type = error_mark_node;
10336 else
10337 type = integer_type_node;
10340 ctype = NULL_TREE;
10342 if (explicit_intN)
10344 if (! int_n_enabled_p[declspecs->int_n_idx])
10346 error ("%<__int%d%> is not supported by this target",
10347 int_n_data[declspecs->int_n_idx].bitsize);
10348 explicit_intN = false;
10350 else if (pedantic && ! in_system_header_at (input_location))
10351 pedwarn (input_location, OPT_Wpedantic,
10352 "ISO C++ does not support %<__int%d%> for %qs",
10353 int_n_data[declspecs->int_n_idx].bitsize, name);
10356 /* Now process the modifiers that were specified
10357 and check for invalid combinations. */
10359 /* Long double is a special combination. */
10360 if (long_p && !longlong && TYPE_MAIN_VARIANT (type) == double_type_node)
10362 long_p = false;
10363 type = cp_build_qualified_type (long_double_type_node,
10364 cp_type_quals (type));
10367 /* Check all other uses of type modifiers. */
10369 if (unsigned_p || signed_p || long_p || short_p)
10371 int ok = 0;
10373 if ((signed_p || unsigned_p) && TREE_CODE (type) != INTEGER_TYPE)
10374 error ("%<signed%> or %<unsigned%> invalid for %qs", name);
10375 else if (signed_p && unsigned_p)
10376 error ("%<signed%> and %<unsigned%> specified together for %qs", name);
10377 else if (longlong && TREE_CODE (type) != INTEGER_TYPE)
10378 error ("%<long long%> invalid for %qs", name);
10379 else if (long_p && TREE_CODE (type) == REAL_TYPE)
10380 error ("%<long%> invalid for %qs", name);
10381 else if (short_p && TREE_CODE (type) == REAL_TYPE)
10382 error ("%<short%> invalid for %qs", name);
10383 else if ((long_p || short_p) && TREE_CODE (type) != INTEGER_TYPE)
10384 error ("%<long%> or %<short%> invalid for %qs", name);
10385 else if ((long_p || short_p || explicit_char || explicit_int) && explicit_intN)
10386 error ("%<long%>, %<int%>, %<short%>, or %<char%> invalid for %qs", name);
10387 else if ((long_p || short_p) && explicit_char)
10388 error ("%<long%> or %<short%> specified with char for %qs", name);
10389 else if (long_p && short_p)
10390 error ("%<long%> and %<short%> specified together for %qs", name);
10391 else if (type == char16_type_node || type == char32_type_node)
10393 if (signed_p || unsigned_p)
10394 error ("%<signed%> or %<unsigned%> invalid for %qs", name);
10395 else if (short_p || long_p)
10396 error ("%<short%> or %<long%> invalid for %qs", name);
10398 else
10400 ok = 1;
10401 if (!explicit_int && !defaulted_int && !explicit_char && !explicit_intN && pedantic)
10403 pedwarn (input_location, OPT_Wpedantic,
10404 "long, short, signed or unsigned used invalidly for %qs",
10405 name);
10406 if (flag_pedantic_errors)
10407 ok = 0;
10411 /* Discard the type modifiers if they are invalid. */
10412 if (! ok)
10414 unsigned_p = false;
10415 signed_p = false;
10416 long_p = false;
10417 short_p = false;
10418 longlong = 0;
10422 /* Decide whether an integer type is signed or not.
10423 Optionally treat bitfields as signed by default. */
10424 if (unsigned_p
10425 /* [class.bit]
10427 It is implementation-defined whether a plain (neither
10428 explicitly signed or unsigned) char, short, int, or long
10429 bit-field is signed or unsigned.
10431 Naturally, we extend this to long long as well. Note that
10432 this does not include wchar_t. */
10433 || (bitfield && !flag_signed_bitfields
10434 && !signed_p
10435 /* A typedef for plain `int' without `signed' can be
10436 controlled just like plain `int', but a typedef for
10437 `signed int' cannot be so controlled. */
10438 && !(typedef_decl
10439 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl))
10440 && TREE_CODE (type) == INTEGER_TYPE
10441 && !same_type_p (TYPE_MAIN_VARIANT (type), wchar_type_node)))
10443 if (explicit_intN)
10444 type = int_n_trees[declspecs->int_n_idx].unsigned_type;
10445 else if (longlong)
10446 type = long_long_unsigned_type_node;
10447 else if (long_p)
10448 type = long_unsigned_type_node;
10449 else if (short_p)
10450 type = short_unsigned_type_node;
10451 else if (type == char_type_node)
10452 type = unsigned_char_type_node;
10453 else if (typedef_decl)
10454 type = unsigned_type_for (type);
10455 else
10456 type = unsigned_type_node;
10458 else if (signed_p && type == char_type_node)
10459 type = signed_char_type_node;
10460 else if (explicit_intN)
10461 type = int_n_trees[declspecs->int_n_idx].signed_type;
10462 else if (longlong)
10463 type = long_long_integer_type_node;
10464 else if (long_p)
10465 type = long_integer_type_node;
10466 else if (short_p)
10467 type = short_integer_type_node;
10469 if (decl_spec_seq_has_spec_p (declspecs, ds_complex))
10471 if (TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
10472 error ("complex invalid for %qs", name);
10473 /* If a modifier is specified, the resulting complex is the complex
10474 form of TYPE. E.g, "complex short" is "complex short int". */
10475 else if (type == integer_type_node)
10476 type = complex_integer_type_node;
10477 else if (type == float_type_node)
10478 type = complex_float_type_node;
10479 else if (type == double_type_node)
10480 type = complex_double_type_node;
10481 else if (type == long_double_type_node)
10482 type = complex_long_double_type_node;
10483 else
10484 type = build_complex_type (type);
10487 /* If we're using the injected-class-name to form a compound type or a
10488 declaration, replace it with the underlying class so we don't get
10489 redundant typedefs in the debug output. But if we are returning the
10490 type unchanged, leave it alone so that it's available to
10491 maybe_get_template_decl_from_type_decl. */
10492 if (CLASS_TYPE_P (type)
10493 && DECL_SELF_REFERENCE_P (TYPE_NAME (type))
10494 && type == TREE_TYPE (TYPE_NAME (type))
10495 && (declarator || type_quals))
10496 type = DECL_ORIGINAL_TYPE (TYPE_NAME (type));
10498 type_quals |= cp_type_quals (type);
10499 type = cp_build_qualified_type_real
10500 (type, type_quals, ((((typedef_decl && !DECL_ARTIFICIAL (typedef_decl))
10501 || declspecs->decltype_p)
10502 ? tf_ignore_bad_quals : 0) | tf_warning_or_error));
10503 /* We might have ignored or rejected some of the qualifiers. */
10504 type_quals = cp_type_quals (type);
10506 if (cxx_dialect >= cxx17 && type && is_auto (type)
10507 && innermost_code != cdk_function
10508 && id_declarator && declarator != id_declarator)
10509 if (tree tmpl = CLASS_PLACEHOLDER_TEMPLATE (type))
10511 error_at (typespec_loc, "template placeholder type %qT must be followed "
10512 "by a simple declarator-id", type);
10513 inform (DECL_SOURCE_LOCATION (tmpl), "%qD declared here", tmpl);
10516 staticp = 0;
10517 inlinep = decl_spec_seq_has_spec_p (declspecs, ds_inline);
10518 virtualp = decl_spec_seq_has_spec_p (declspecs, ds_virtual);
10519 explicitp = decl_spec_seq_has_spec_p (declspecs, ds_explicit);
10521 storage_class = declspecs->storage_class;
10522 if (storage_class == sc_static)
10523 staticp = 1 + (decl_context == FIELD);
10525 if (virtualp)
10527 if (staticp == 2)
10529 error ("member %qD cannot be declared both %<virtual%> "
10530 "and %<static%>", dname);
10531 storage_class = sc_none;
10532 staticp = 0;
10534 if (constexpr_p)
10535 error ("member %qD cannot be declared both %<virtual%> "
10536 "and %<constexpr%>", dname);
10538 friendp = decl_spec_seq_has_spec_p (declspecs, ds_friend);
10540 /* Issue errors about use of storage classes for parameters. */
10541 if (decl_context == PARM)
10543 if (typedef_p)
10545 error ("typedef declaration invalid in parameter declaration");
10546 return error_mark_node;
10548 else if (template_parm_flag && storage_class != sc_none)
10550 error ("storage class specified for template parameter %qs", name);
10551 return error_mark_node;
10553 else if (storage_class == sc_static
10554 || storage_class == sc_extern
10555 || thread_p)
10556 error ("storage class specifiers invalid in parameter declarations");
10558 /* Function parameters cannot be concept. */
10559 if (concept_p)
10560 error ("a parameter cannot be declared %<concept%>");
10561 /* Function parameters cannot be constexpr. If we saw one, moan
10562 and pretend it wasn't there. */
10563 else if (constexpr_p)
10565 error ("a parameter cannot be declared %<constexpr%>");
10566 constexpr_p = 0;
10570 /* Give error if `virtual' is used outside of class declaration. */
10571 if (virtualp
10572 && (current_class_name == NULL_TREE || decl_context != FIELD))
10574 error_at (declspecs->locations[ds_virtual],
10575 "%<virtual%> outside class declaration");
10576 virtualp = 0;
10579 if (innermost_code == cdk_decomp)
10581 location_t loc = (declarator->kind == cdk_reference
10582 ? declarator->declarator->id_loc : declarator->id_loc);
10583 if (inlinep)
10584 error_at (declspecs->locations[ds_inline],
10585 "structured binding declaration cannot be %<inline%>");
10586 if (typedef_p)
10587 error_at (declspecs->locations[ds_typedef],
10588 "structured binding declaration cannot be %<typedef%>");
10589 if (constexpr_p)
10590 error_at (declspecs->locations[ds_constexpr], "structured "
10591 "binding declaration cannot be %<constexpr%>");
10592 if (thread_p)
10593 error_at (declspecs->locations[ds_thread],
10594 "structured binding declaration cannot be %qs",
10595 declspecs->gnu_thread_keyword_p
10596 ? "__thread" : "thread_local");
10597 if (concept_p)
10598 error_at (declspecs->locations[ds_concept],
10599 "structured binding declaration cannot be %<concept%>");
10600 switch (storage_class)
10602 case sc_none:
10603 break;
10604 case sc_register:
10605 error_at (loc, "structured binding declaration cannot be "
10606 "%<register%>");
10607 break;
10608 case sc_static:
10609 error_at (loc, "structured binding declaration cannot be "
10610 "%<static%>");
10611 break;
10612 case sc_extern:
10613 error_at (loc, "structured binding declaration cannot be "
10614 "%<extern%>");
10615 break;
10616 case sc_mutable:
10617 error_at (loc, "structured binding declaration cannot be "
10618 "%<mutable%>");
10619 break;
10620 case sc_auto:
10621 error_at (loc, "structured binding declaration cannot be "
10622 "C++98 %<auto%>");
10623 break;
10624 default:
10625 gcc_unreachable ();
10627 if (TREE_CODE (type) != TEMPLATE_TYPE_PARM
10628 || TYPE_IDENTIFIER (type) != auto_identifier)
10630 if (type != error_mark_node)
10632 error_at (loc, "structured binding declaration cannot have "
10633 "type %qT", type);
10634 inform (loc,
10635 "type must be cv-qualified %<auto%> or reference to "
10636 "cv-qualified %<auto%>");
10638 type = build_qualified_type (make_auto (), type_quals);
10639 declspecs->type = type;
10641 inlinep = 0;
10642 typedef_p = 0;
10643 constexpr_p = 0;
10644 thread_p = 0;
10645 concept_p = 0;
10646 storage_class = sc_none;
10647 staticp = 0;
10648 declspecs->storage_class = sc_none;
10649 declspecs->locations[ds_thread] = UNKNOWN_LOCATION;
10652 /* Static anonymous unions are dealt with here. */
10653 if (staticp && decl_context == TYPENAME
10654 && declspecs->type
10655 && ANON_AGGR_TYPE_P (declspecs->type))
10656 decl_context = FIELD;
10658 /* Warn about storage classes that are invalid for certain
10659 kinds of declarations (parameters, typenames, etc.). */
10660 if (thread_p
10661 && ((storage_class
10662 && storage_class != sc_extern
10663 && storage_class != sc_static)
10664 || typedef_p))
10666 error ("multiple storage classes in declaration of %qs", name);
10667 thread_p = false;
10669 if (decl_context != NORMAL
10670 && ((storage_class != sc_none
10671 && storage_class != sc_mutable)
10672 || thread_p))
10674 if ((decl_context == PARM || decl_context == CATCHPARM)
10675 && (storage_class == sc_register
10676 || storage_class == sc_auto))
10678 else if (typedef_p)
10680 else if (decl_context == FIELD
10681 /* C++ allows static class elements. */
10682 && storage_class == sc_static)
10683 /* C++ also allows inlines and signed and unsigned elements,
10684 but in those cases we don't come in here. */
10686 else
10688 if (decl_context == FIELD)
10689 error ("storage class specified for %qs", name);
10690 else
10692 if (decl_context == PARM || decl_context == CATCHPARM)
10693 error ("storage class specified for parameter %qs", name);
10694 else
10695 error ("storage class specified for typename");
10697 if (storage_class == sc_register
10698 || storage_class == sc_auto
10699 || storage_class == sc_extern
10700 || thread_p)
10701 storage_class = sc_none;
10704 else if (storage_class == sc_extern && funcdef_flag
10705 && ! toplevel_bindings_p ())
10706 error ("nested function %qs declared %<extern%>", name);
10707 else if (toplevel_bindings_p ())
10709 if (storage_class == sc_auto)
10710 error ("top-level declaration of %qs specifies %<auto%>", name);
10712 else if (thread_p
10713 && storage_class != sc_extern
10714 && storage_class != sc_static)
10716 if (declspecs->gnu_thread_keyword_p)
10717 pedwarn (input_location, 0, "function-scope %qs implicitly auto and "
10718 "declared %<__thread%>", name);
10720 /* When thread_local is applied to a variable of block scope the
10721 storage-class-specifier static is implied if it does not appear
10722 explicitly. */
10723 storage_class = declspecs->storage_class = sc_static;
10724 staticp = 1;
10727 if (storage_class && friendp)
10729 error ("storage class specifiers invalid in friend function declarations");
10730 storage_class = sc_none;
10731 staticp = 0;
10734 if (!id_declarator)
10735 unqualified_id = NULL_TREE;
10736 else
10738 unqualified_id = id_declarator->u.id.unqualified_name;
10739 switch (TREE_CODE (unqualified_id))
10741 case BIT_NOT_EXPR:
10742 unqualified_id = TREE_OPERAND (unqualified_id, 0);
10743 if (TYPE_P (unqualified_id))
10744 unqualified_id = constructor_name (unqualified_id);
10745 break;
10747 case IDENTIFIER_NODE:
10748 case TEMPLATE_ID_EXPR:
10749 break;
10751 default:
10752 gcc_unreachable ();
10756 if (declspecs->std_attributes)
10758 /* Apply the c++11 attributes to the type preceding them. */
10759 input_location = declspecs->locations[ds_std_attribute];
10760 decl_attributes (&type, declspecs->std_attributes, 0);
10761 input_location = saved_loc;
10764 /* Determine the type of the entity declared by recurring on the
10765 declarator. */
10766 for (; declarator; declarator = declarator->declarator)
10768 const cp_declarator *inner_declarator;
10769 tree attrs;
10771 if (type == error_mark_node)
10772 return error_mark_node;
10774 attrs = declarator->attributes;
10775 if (attrs)
10777 int attr_flags;
10779 attr_flags = 0;
10780 if (declarator == NULL || declarator->kind == cdk_id)
10781 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
10782 if (declarator->kind == cdk_function)
10783 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
10784 if (declarator->kind == cdk_array)
10785 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
10786 returned_attrs = decl_attributes (&type,
10787 chainon (returned_attrs, attrs),
10788 attr_flags);
10791 inner_declarator = declarator->declarator;
10793 /* We don't want to warn in parmeter context because we don't
10794 yet know if the parse will succeed, and this might turn out
10795 to be a constructor call. */
10796 if (decl_context != PARM
10797 && declarator->parenthesized != UNKNOWN_LOCATION
10798 /* If the type is a class and the inner name used a global
10799 namespace qualifier, we need the parens. Unfortunately
10800 all we can tell is that a qualified name was used. */
10801 && !(CLASS_TYPE_P (type)
10802 && inner_declarator
10803 && inner_declarator->kind == cdk_id
10804 && inner_declarator->u.id.qualifying_scope))
10805 warning_at (declarator->parenthesized, OPT_Wparentheses,
10806 "unnecessary parentheses in declaration of %qs", name);
10807 if (declarator->kind == cdk_id || declarator->kind == cdk_decomp)
10808 break;
10810 switch (declarator->kind)
10812 case cdk_array:
10813 type = create_array_type_for_decl (dname, type,
10814 declarator->u.array.bounds);
10815 if (!valid_array_size_p (input_location, type, dname))
10816 type = error_mark_node;
10818 if (declarator->std_attributes)
10819 /* [dcl.array]/1:
10821 The optional attribute-specifier-seq appertains to the
10822 array. */
10823 returned_attrs = chainon (returned_attrs,
10824 declarator->std_attributes);
10825 break;
10827 case cdk_function:
10829 tree arg_types;
10830 int funcdecl_p;
10832 /* Declaring a function type. */
10834 input_location = declspecs->locations[ds_type_spec];
10835 abstract_virtuals_error (ACU_RETURN, type);
10836 input_location = saved_loc;
10838 /* Pick up type qualifiers which should be applied to `this'. */
10839 memfn_quals = declarator->u.function.qualifiers;
10840 /* Pick up virt-specifiers. */
10841 virt_specifiers = declarator->u.function.virt_specifiers;
10842 /* And ref-qualifier, too */
10843 rqual = declarator->u.function.ref_qualifier;
10844 /* And tx-qualifier. */
10845 tree tx_qual = declarator->u.function.tx_qualifier;
10846 /* Pick up the exception specifications. */
10847 raises = declarator->u.function.exception_specification;
10848 /* If the exception-specification is ill-formed, let's pretend
10849 there wasn't one. */
10850 if (raises == error_mark_node)
10851 raises = NULL_TREE;
10853 if (reqs)
10854 error_at (location_of (reqs), "requires-clause on return type");
10855 reqs = declarator->u.function.requires_clause;
10857 /* Say it's a definition only for the CALL_EXPR
10858 closest to the identifier. */
10859 funcdecl_p = inner_declarator && inner_declarator->kind == cdk_id;
10861 /* Handle a late-specified return type. */
10862 tree late_return_type = declarator->u.function.late_return_type;
10863 if (funcdecl_p)
10865 if (tree auto_node = type_uses_auto (type))
10867 if (!late_return_type)
10869 if (current_class_type
10870 && LAMBDA_TYPE_P (current_class_type))
10871 /* OK for C++11 lambdas. */;
10872 else if (cxx_dialect < cxx14)
10874 error ("%qs function uses "
10875 "%<auto%> type specifier without trailing "
10876 "return type", name);
10877 inform (input_location, "deduced return type "
10878 "only available with -std=c++14 or "
10879 "-std=gnu++14");
10881 else if (virtualp)
10883 error ("virtual function cannot "
10884 "have deduced return type");
10885 virtualp = false;
10888 else if (!is_auto (type) && sfk != sfk_conversion)
10890 error ("%qs function with trailing return type has"
10891 " %qT as its type rather than plain %<auto%>",
10892 name, type);
10893 return error_mark_node;
10895 if (tree tmpl = CLASS_PLACEHOLDER_TEMPLATE (auto_node))
10897 if (!late_return_type)
10899 if (dguide_name_p (unqualified_id))
10900 error_at (declarator->id_loc, "deduction guide "
10901 "for %qT must have trailing return "
10902 "type", TREE_TYPE (tmpl));
10903 else
10904 error_at (declarator->id_loc, "deduced class "
10905 "type %qT in function return type",
10906 type);
10907 inform (DECL_SOURCE_LOCATION (tmpl),
10908 "%qD declared here", tmpl);
10910 else if (CLASS_TYPE_P (late_return_type)
10911 && CLASSTYPE_TEMPLATE_INFO (late_return_type)
10912 && (CLASSTYPE_TI_TEMPLATE (late_return_type)
10913 == tmpl))
10914 /* OK */;
10915 else
10916 error ("trailing return type %qT of deduction guide "
10917 "is not a specialization of %qT",
10918 late_return_type, TREE_TYPE (tmpl));
10921 else if (late_return_type
10922 && sfk != sfk_conversion)
10924 if (cxx_dialect < cxx11)
10925 /* Not using maybe_warn_cpp0x because this should
10926 always be an error. */
10927 error ("trailing return type only available with "
10928 "-std=c++11 or -std=gnu++11");
10929 else
10930 error ("%qs function with trailing return type not "
10931 "declared with %<auto%> type specifier", name);
10932 return error_mark_node;
10935 type = splice_late_return_type (type, late_return_type);
10936 if (type == error_mark_node)
10937 return error_mark_node;
10939 if (late_return_type)
10941 late_return_type_p = true;
10942 type_quals = cp_type_quals (type);
10945 if (type_quals != TYPE_UNQUALIFIED)
10947 if (SCALAR_TYPE_P (type) || VOID_TYPE_P (type))
10948 warning_at (typespec_loc, OPT_Wignored_qualifiers, "type "
10949 "qualifiers ignored on function return type");
10950 /* We now know that the TYPE_QUALS don't apply to the
10951 decl, but to its return type. */
10952 type_quals = TYPE_UNQUALIFIED;
10955 /* Error about some types functions can't return. */
10957 if (TREE_CODE (type) == FUNCTION_TYPE)
10959 error_at (typespec_loc, "%qs declared as function returning "
10960 "a function", name);
10961 return error_mark_node;
10963 if (TREE_CODE (type) == ARRAY_TYPE)
10965 error_at (typespec_loc, "%qs declared as function returning "
10966 "an array", name);
10967 return error_mark_node;
10970 if (ctype == NULL_TREE
10971 && decl_context == FIELD
10972 && funcdecl_p
10973 && friendp == 0)
10974 ctype = current_class_type;
10976 if (ctype && (sfk == sfk_constructor
10977 || sfk == sfk_destructor))
10979 /* We are within a class's scope. If our declarator name
10980 is the same as the class name, and we are defining
10981 a function, then it is a constructor/destructor, and
10982 therefore returns a void type. */
10984 /* ISO C++ 12.4/2. A destructor may not be declared
10985 const or volatile. A destructor may not be static.
10986 A destructor may not be declared with ref-qualifier.
10988 ISO C++ 12.1. A constructor may not be declared
10989 const or volatile. A constructor may not be
10990 virtual. A constructor may not be static.
10991 A constructor may not be declared with ref-qualifier. */
10992 if (staticp == 2)
10993 error ((flags == DTOR_FLAG)
10994 ? G_("destructor cannot be static member function")
10995 : G_("constructor cannot be static member function"));
10996 if (memfn_quals)
10998 error ((flags == DTOR_FLAG)
10999 ? G_("destructors may not be cv-qualified")
11000 : G_("constructors may not be cv-qualified"));
11001 memfn_quals = TYPE_UNQUALIFIED;
11004 if (rqual)
11006 maybe_warn_cpp0x (CPP0X_REF_QUALIFIER);
11007 error ((flags == DTOR_FLAG)
11008 ? G_("destructors may not be ref-qualified")
11009 : G_("constructors may not be ref-qualified"));
11010 rqual = REF_QUAL_NONE;
11013 if (decl_context == FIELD
11014 && !member_function_or_else (ctype,
11015 current_class_type,
11016 flags))
11017 return error_mark_node;
11019 if (flags != DTOR_FLAG)
11021 /* It's a constructor. */
11022 if (explicitp == 1)
11023 explicitp = 2;
11024 if (virtualp)
11026 permerror (input_location,
11027 "constructors cannot be declared %<virtual%>");
11028 virtualp = 0;
11030 if (decl_context == FIELD
11031 && sfk != sfk_constructor)
11032 return error_mark_node;
11034 if (decl_context == FIELD)
11035 staticp = 0;
11037 else if (friendp)
11039 if (virtualp)
11041 /* Cannot be both friend and virtual. */
11042 error ("virtual functions cannot be friends");
11043 friendp = 0;
11045 if (decl_context == NORMAL)
11046 error ("friend declaration not in class definition");
11047 if (current_function_decl && funcdef_flag)
11048 error ("can%'t define friend function %qs in a local "
11049 "class definition",
11050 name);
11052 else if (ctype && sfk == sfk_conversion)
11054 if (explicitp == 1)
11056 maybe_warn_cpp0x (CPP0X_EXPLICIT_CONVERSION);
11057 explicitp = 2;
11059 if (late_return_type_p)
11060 error ("a conversion function cannot have a trailing return type");
11062 else if (sfk == sfk_deduction_guide)
11064 if (explicitp == 1)
11065 explicitp = 2;
11068 arg_types = grokparms (declarator->u.function.parameters,
11069 &parms);
11071 if (inner_declarator
11072 && inner_declarator->kind == cdk_id
11073 && inner_declarator->u.id.sfk == sfk_destructor
11074 && arg_types != void_list_node)
11076 error ("destructors may not have parameters");
11077 arg_types = void_list_node;
11078 parms = NULL_TREE;
11081 type = build_function_type (type, arg_types);
11083 tree attrs = declarator->std_attributes;
11084 if (tx_qual)
11086 tree att = build_tree_list (tx_qual, NULL_TREE);
11087 /* transaction_safe applies to the type, but
11088 transaction_safe_dynamic applies to the function. */
11089 if (is_attribute_p ("transaction_safe", tx_qual))
11090 attrs = chainon (attrs, att);
11091 else
11092 returned_attrs = chainon (returned_attrs, att);
11094 if (attrs)
11095 /* [dcl.fct]/2:
11097 The optional attribute-specifier-seq appertains to
11098 the function type. */
11099 decl_attributes (&type, attrs, 0);
11101 if (raises)
11102 type = build_exception_variant (type, raises);
11104 break;
11106 case cdk_pointer:
11107 case cdk_reference:
11108 case cdk_ptrmem:
11109 /* Filter out pointers-to-references and references-to-references.
11110 We can get these if a TYPE_DECL is used. */
11112 if (TREE_CODE (type) == REFERENCE_TYPE)
11114 if (declarator->kind != cdk_reference)
11116 error ("cannot declare pointer to %q#T", type);
11117 type = TREE_TYPE (type);
11120 /* In C++0x, we allow reference to reference declarations
11121 that occur indirectly through typedefs [7.1.3/8 dcl.typedef]
11122 and template type arguments [14.3.1/4 temp.arg.type]. The
11123 check for direct reference to reference declarations, which
11124 are still forbidden, occurs below. Reasoning behind the change
11125 can be found in DR106, DR540, and the rvalue reference
11126 proposals. */
11127 else if (cxx_dialect == cxx98)
11129 error ("cannot declare reference to %q#T", type);
11130 type = TREE_TYPE (type);
11133 else if (VOID_TYPE_P (type))
11135 if (declarator->kind == cdk_reference)
11136 error ("cannot declare reference to %q#T", type);
11137 else if (declarator->kind == cdk_ptrmem)
11138 error ("cannot declare pointer to %q#T member", type);
11141 /* We now know that the TYPE_QUALS don't apply to the decl,
11142 but to the target of the pointer. */
11143 type_quals = TYPE_UNQUALIFIED;
11145 /* This code used to handle METHOD_TYPE, but I don't think it's
11146 possible to get it here anymore. */
11147 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
11148 if (declarator->kind == cdk_ptrmem
11149 && TREE_CODE (type) == FUNCTION_TYPE)
11151 memfn_quals |= type_memfn_quals (type);
11152 type = build_memfn_type (type,
11153 declarator->u.pointer.class_type,
11154 memfn_quals,
11155 rqual);
11156 if (type == error_mark_node)
11157 return error_mark_node;
11159 rqual = REF_QUAL_NONE;
11160 memfn_quals = TYPE_UNQUALIFIED;
11163 if (TREE_CODE (type) == FUNCTION_TYPE
11164 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
11165 || type_memfn_rqual (type) != REF_QUAL_NONE))
11166 error (declarator->kind == cdk_reference
11167 ? G_("cannot declare reference to qualified function type %qT")
11168 : G_("cannot declare pointer to qualified function type %qT"),
11169 type);
11171 /* When the pointed-to type involves components of variable size,
11172 care must be taken to ensure that the size evaluation code is
11173 emitted early enough to dominate all the possible later uses
11174 and late enough for the variables on which it depends to have
11175 been assigned.
11177 This is expected to happen automatically when the pointed-to
11178 type has a name/declaration of it's own, but special attention
11179 is required if the type is anonymous.
11181 We handle the NORMAL and FIELD contexts here by inserting a
11182 dummy statement that just evaluates the size at a safe point
11183 and ensures it is not deferred until e.g. within a deeper
11184 conditional context (c++/43555).
11186 We expect nothing to be needed here for PARM or TYPENAME.
11187 Evaluating the size at this point for TYPENAME would
11188 actually be incorrect, as we might be in the middle of an
11189 expression with side effects on the pointed-to type size
11190 "arguments" prior to the pointer declaration point and the
11191 size evaluation could end up prior to the side effects. */
11193 if (!TYPE_NAME (type)
11194 && (decl_context == NORMAL || decl_context == FIELD)
11195 && at_function_scope_p ()
11196 && variably_modified_type_p (type, NULL_TREE))
11198 TYPE_NAME (type) = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
11199 NULL_TREE, type);
11200 add_decl_expr (TYPE_NAME (type));
11203 if (declarator->kind == cdk_reference)
11205 /* In C++0x, the type we are creating a reference to might be
11206 a typedef which is itself a reference type. In that case,
11207 we follow the reference collapsing rules in
11208 [7.1.3/8 dcl.typedef] to create the final reference type:
11210 "If a typedef TD names a type that is a reference to a type
11211 T, an attempt to create the type 'lvalue reference to cv TD'
11212 creates the type 'lvalue reference to T,' while an attempt
11213 to create the type "rvalue reference to cv TD' creates the
11214 type TD."
11216 if (VOID_TYPE_P (type))
11217 /* We already gave an error. */;
11218 else if (TREE_CODE (type) == REFERENCE_TYPE)
11220 if (declarator->u.reference.rvalue_ref)
11221 /* Leave type alone. */;
11222 else
11223 type = cp_build_reference_type (TREE_TYPE (type), false);
11225 else
11226 type = cp_build_reference_type
11227 (type, declarator->u.reference.rvalue_ref);
11229 /* In C++0x, we need this check for direct reference to
11230 reference declarations, which are forbidden by
11231 [8.3.2/5 dcl.ref]. Reference to reference declarations
11232 are only allowed indirectly through typedefs and template
11233 type arguments. Example:
11235 void foo(int & &); // invalid ref-to-ref decl
11237 typedef int & int_ref;
11238 void foo(int_ref &); // valid ref-to-ref decl
11240 if (inner_declarator && inner_declarator->kind == cdk_reference)
11241 error ("cannot declare reference to %q#T, which is not "
11242 "a typedef or a template type argument", type);
11244 else if (TREE_CODE (type) == METHOD_TYPE)
11245 type = build_ptrmemfunc_type (build_pointer_type (type));
11246 else if (declarator->kind == cdk_ptrmem)
11248 gcc_assert (TREE_CODE (declarator->u.pointer.class_type)
11249 != NAMESPACE_DECL);
11250 if (declarator->u.pointer.class_type == error_mark_node)
11251 /* We will already have complained. */
11252 type = error_mark_node;
11253 else
11254 type = build_ptrmem_type (declarator->u.pointer.class_type,
11255 type);
11257 else
11258 type = build_pointer_type (type);
11260 /* Process a list of type modifier keywords (such as
11261 const or volatile) that were given inside the `*' or `&'. */
11263 if (declarator->u.pointer.qualifiers)
11265 type
11266 = cp_build_qualified_type (type,
11267 declarator->u.pointer.qualifiers);
11268 type_quals = cp_type_quals (type);
11271 /* Apply C++11 attributes to the pointer, and not to the
11272 type pointed to. This is unlike what is done for GNU
11273 attributes above. It is to comply with [dcl.ptr]/1:
11275 [the optional attribute-specifier-seq (7.6.1) appertains
11276 to the pointer and not to the object pointed to]. */
11277 if (declarator->std_attributes)
11278 decl_attributes (&type, declarator->std_attributes,
11281 ctype = NULL_TREE;
11282 break;
11284 case cdk_error:
11285 break;
11287 default:
11288 gcc_unreachable ();
11292 /* A `constexpr' specifier used in an object declaration declares
11293 the object as `const'. */
11294 if (constexpr_p && innermost_code != cdk_function)
11296 /* DR1688 says that a `constexpr' specifier in combination with
11297 `volatile' is valid. */
11299 if (TREE_CODE (type) != REFERENCE_TYPE)
11301 type_quals |= TYPE_QUAL_CONST;
11302 type = cp_build_qualified_type (type, type_quals);
11306 if (unqualified_id && TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR
11307 && TREE_CODE (type) != FUNCTION_TYPE
11308 && TREE_CODE (type) != METHOD_TYPE
11309 && !variable_template_p (TREE_OPERAND (unqualified_id, 0)))
11311 error ("template-id %qD used as a declarator",
11312 unqualified_id);
11313 unqualified_id = dname;
11316 /* If TYPE is a FUNCTION_TYPE, but the function name was explicitly
11317 qualified with a class-name, turn it into a METHOD_TYPE, unless
11318 we know that the function is static. We take advantage of this
11319 opportunity to do other processing that pertains to entities
11320 explicitly declared to be class members. Note that if DECLARATOR
11321 is non-NULL, we know it is a cdk_id declarator; otherwise, we
11322 would not have exited the loop above. */
11323 if (declarator
11324 && declarator->kind == cdk_id
11325 && declarator->u.id.qualifying_scope
11326 && MAYBE_CLASS_TYPE_P (declarator->u.id.qualifying_scope))
11328 ctype = declarator->u.id.qualifying_scope;
11329 ctype = TYPE_MAIN_VARIANT (ctype);
11330 template_count = num_template_headers_for_class (ctype);
11332 if (ctype == current_class_type)
11334 if (friendp)
11336 permerror (input_location, "member functions are implicitly "
11337 "friends of their class");
11338 friendp = 0;
11340 else
11341 permerror (declarator->id_loc,
11342 "extra qualification %<%T::%> on member %qs",
11343 ctype, name);
11345 else if (/* If the qualifying type is already complete, then we
11346 can skip the following checks. */
11347 !COMPLETE_TYPE_P (ctype)
11348 && (/* If the function is being defined, then
11349 qualifying type must certainly be complete. */
11350 funcdef_flag
11351 /* A friend declaration of "T::f" is OK, even if
11352 "T" is a template parameter. But, if this
11353 function is not a friend, the qualifying type
11354 must be a class. */
11355 || (!friendp && !CLASS_TYPE_P (ctype))
11356 /* For a declaration, the type need not be
11357 complete, if either it is dependent (since there
11358 is no meaningful definition of complete in that
11359 case) or the qualifying class is currently being
11360 defined. */
11361 || !(dependent_type_p (ctype)
11362 || currently_open_class (ctype)))
11363 /* Check that the qualifying type is complete. */
11364 && !complete_type_or_else (ctype, NULL_TREE))
11365 return error_mark_node;
11366 else if (TREE_CODE (type) == FUNCTION_TYPE)
11368 if (current_class_type
11369 && (!friendp || funcdef_flag || initialized))
11371 error (funcdef_flag || initialized
11372 ? G_("cannot define member function %<%T::%s%> "
11373 "within %qT")
11374 : G_("cannot declare member function %<%T::%s%> "
11375 "within %qT"),
11376 ctype, name, current_class_type);
11377 return error_mark_node;
11380 else if (typedef_p && current_class_type)
11382 error ("cannot declare member %<%T::%s%> within %qT",
11383 ctype, name, current_class_type);
11384 return error_mark_node;
11388 if (ctype == NULL_TREE && decl_context == FIELD && friendp == 0)
11389 ctype = current_class_type;
11391 /* Now TYPE has the actual type. */
11393 if (returned_attrs)
11395 if (attrlist)
11396 *attrlist = chainon (returned_attrs, *attrlist);
11397 else
11398 attrlist = &returned_attrs;
11401 if (declarator
11402 && declarator->kind == cdk_id
11403 && declarator->std_attributes
11404 && attrlist != NULL)
11405 /* [dcl.meaning]/1: The optional attribute-specifier-seq following
11406 a declarator-id appertains to the entity that is declared. */
11407 *attrlist = chainon (*attrlist, declarator->std_attributes);
11409 /* Handle parameter packs. */
11410 if (parameter_pack_p)
11412 if (decl_context == PARM)
11413 /* Turn the type into a pack expansion.*/
11414 type = make_pack_expansion (type);
11415 else
11416 error ("non-parameter %qs cannot be a parameter pack", name);
11419 if ((decl_context == FIELD || decl_context == PARM)
11420 && !processing_template_decl
11421 && variably_modified_type_p (type, NULL_TREE))
11423 if (decl_context == FIELD)
11424 error ("data member may not have variably modified type %qT", type);
11425 else
11426 error ("parameter may not have variably modified type %qT", type);
11427 type = error_mark_node;
11430 if (explicitp == 1 || (explicitp && friendp))
11432 /* [dcl.fct.spec] (C++11) The explicit specifier shall be used only
11433 in the declaration of a constructor or conversion function within
11434 a class definition. */
11435 if (!current_class_type)
11436 error_at (declspecs->locations[ds_explicit],
11437 "%<explicit%> outside class declaration");
11438 else if (friendp)
11439 error_at (declspecs->locations[ds_explicit],
11440 "%<explicit%> in friend declaration");
11441 else
11442 error_at (declspecs->locations[ds_explicit],
11443 "only declarations of constructors and conversion operators "
11444 "can be %<explicit%>");
11445 explicitp = 0;
11448 if (storage_class == sc_mutable)
11450 if (decl_context != FIELD || friendp)
11452 error ("non-member %qs cannot be declared %<mutable%>", name);
11453 storage_class = sc_none;
11455 else if (decl_context == TYPENAME || typedef_p)
11457 error ("non-object member %qs cannot be declared %<mutable%>", name);
11458 storage_class = sc_none;
11460 else if (TREE_CODE (type) == FUNCTION_TYPE
11461 || TREE_CODE (type) == METHOD_TYPE)
11463 error ("function %qs cannot be declared %<mutable%>", name);
11464 storage_class = sc_none;
11466 else if (staticp)
11468 error ("static %qs cannot be declared %<mutable%>", name);
11469 storage_class = sc_none;
11471 else if (type_quals & TYPE_QUAL_CONST)
11473 error ("const %qs cannot be declared %<mutable%>", name);
11474 storage_class = sc_none;
11476 else if (TREE_CODE (type) == REFERENCE_TYPE)
11478 permerror (input_location, "reference %qs cannot be declared "
11479 "%<mutable%>", name);
11480 storage_class = sc_none;
11484 /* If this is declaring a typedef name, return a TYPE_DECL. */
11485 if (typedef_p && decl_context != TYPENAME)
11487 tree decl;
11489 /* This declaration:
11491 typedef void f(int) const;
11493 declares a function type which is not a member of any
11494 particular class, but which is cv-qualified; for
11495 example "f S::*" declares a pointer to a const-qualified
11496 member function of S. We record the cv-qualification in the
11497 function type. */
11498 if ((rqual || memfn_quals) && TREE_CODE (type) == FUNCTION_TYPE)
11500 type = apply_memfn_quals (type, memfn_quals, rqual);
11502 /* We have now dealt with these qualifiers. */
11503 memfn_quals = TYPE_UNQUALIFIED;
11504 rqual = REF_QUAL_NONE;
11507 if (type_uses_auto (type))
11509 error ("typedef declared %<auto%>");
11510 type = error_mark_node;
11513 if (reqs)
11514 error_at (location_of (reqs), "requires-clause on typedef");
11516 if (decl_context == FIELD)
11517 decl = build_lang_decl (TYPE_DECL, unqualified_id, type);
11518 else
11519 decl = build_decl (input_location, TYPE_DECL, unqualified_id, type);
11520 if (id_declarator && declarator->u.id.qualifying_scope) {
11521 error_at (DECL_SOURCE_LOCATION (decl),
11522 "typedef name may not be a nested-name-specifier");
11523 TREE_TYPE (decl) = error_mark_node;
11526 if (decl_context != FIELD)
11528 if (!current_function_decl)
11529 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
11530 else if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (current_function_decl)
11531 || (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P
11532 (current_function_decl)))
11533 /* The TYPE_DECL is "abstract" because there will be
11534 clones of this constructor/destructor, and there will
11535 be copies of this TYPE_DECL generated in those
11536 clones. The decloning optimization (for space) may
11537 revert this subsequently if it determines that
11538 the clones should share a common implementation. */
11539 DECL_ABSTRACT_P (decl) = true;
11541 else if (current_class_type
11542 && constructor_name_p (unqualified_id, current_class_type))
11543 permerror (input_location, "ISO C++ forbids nested type %qD with same name "
11544 "as enclosing class",
11545 unqualified_id);
11547 /* If the user declares "typedef struct {...} foo" then the
11548 struct will have an anonymous name. Fill that name in now.
11549 Nothing can refer to it, so nothing needs know about the name
11550 change. */
11551 if (type != error_mark_node
11552 && unqualified_id
11553 && TYPE_NAME (type)
11554 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
11555 && TYPE_UNNAMED_P (type)
11556 && declspecs->type_definition_p
11557 && attributes_naming_typedef_ok (*attrlist)
11558 && cp_type_quals (type) == TYPE_UNQUALIFIED)
11559 name_unnamed_type (type, decl);
11561 if (signed_p
11562 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
11563 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
11565 bad_specifiers (decl, BSP_TYPE, virtualp,
11566 memfn_quals != TYPE_UNQUALIFIED,
11567 inlinep, friendp, raises != NULL_TREE);
11569 if (decl_spec_seq_has_spec_p (declspecs, ds_alias))
11570 /* Acknowledge that this was written:
11571 `using analias = atype;'. */
11572 TYPE_DECL_ALIAS_P (decl) = 1;
11574 return decl;
11577 /* Detect the case of an array type of unspecified size
11578 which came, as such, direct from a typedef name.
11579 We must copy the type, so that the array's domain can be
11580 individually set by the object's initializer. */
11582 if (type && typedef_type
11583 && TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type)
11584 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type))
11585 type = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
11587 /* Detect where we're using a typedef of function type to declare a
11588 function. PARMS will not be set, so we must create it now. */
11590 if (type == typedef_type && TREE_CODE (type) == FUNCTION_TYPE)
11592 tree decls = NULL_TREE;
11593 tree args;
11595 for (args = TYPE_ARG_TYPES (type);
11596 args && args != void_list_node;
11597 args = TREE_CHAIN (args))
11599 tree decl = cp_build_parm_decl (NULL_TREE, NULL_TREE,
11600 TREE_VALUE (args));
11602 DECL_CHAIN (decl) = decls;
11603 decls = decl;
11606 parms = nreverse (decls);
11608 if (decl_context != TYPENAME)
11610 /* The qualifiers on the function type become the qualifiers on
11611 the non-static member function. */
11612 memfn_quals |= type_memfn_quals (type);
11613 rqual = type_memfn_rqual (type);
11614 type_quals = TYPE_UNQUALIFIED;
11618 /* If this is a type name (such as, in a cast or sizeof),
11619 compute the type and return it now. */
11621 if (decl_context == TYPENAME)
11623 /* Note that here we don't care about type_quals. */
11625 /* Special case: "friend class foo" looks like a TYPENAME context. */
11626 if (friendp)
11628 if (inlinep)
11630 error ("%<inline%> specified for friend class declaration");
11631 inlinep = 0;
11634 if (!current_aggr)
11636 /* Don't allow friend declaration without a class-key. */
11637 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
11638 permerror (input_location, "template parameters cannot be friends");
11639 else if (TREE_CODE (type) == TYPENAME_TYPE)
11640 permerror (input_location, "friend declaration requires class-key, "
11641 "i.e. %<friend class %T::%D%>",
11642 TYPE_CONTEXT (type), TYPENAME_TYPE_FULLNAME (type));
11643 else
11644 permerror (input_location, "friend declaration requires class-key, "
11645 "i.e. %<friend %#T%>",
11646 type);
11649 /* Only try to do this stuff if we didn't already give up. */
11650 if (type != integer_type_node)
11652 /* A friendly class? */
11653 if (current_class_type)
11654 make_friend_class (current_class_type, TYPE_MAIN_VARIANT (type),
11655 /*complain=*/true);
11656 else
11657 error ("trying to make class %qT a friend of global scope",
11658 type);
11660 type = void_type_node;
11663 else if (memfn_quals || rqual)
11665 if (ctype == NULL_TREE
11666 && TREE_CODE (type) == METHOD_TYPE)
11667 ctype = TYPE_METHOD_BASETYPE (type);
11669 if (ctype)
11670 type = build_memfn_type (type, ctype, memfn_quals, rqual);
11671 /* Core issue #547: need to allow this in template type args.
11672 Allow it in general in C++11 for alias-declarations. */
11673 else if ((template_type_arg || cxx_dialect >= cxx11)
11674 && TREE_CODE (type) == FUNCTION_TYPE)
11675 type = apply_memfn_quals (type, memfn_quals, rqual);
11676 else
11677 error ("invalid qualifiers on non-member function type");
11680 if (reqs)
11681 error_at (location_of (reqs), "requires-clause on type-id");
11683 return type;
11685 else if (unqualified_id == NULL_TREE && decl_context != PARM
11686 && decl_context != CATCHPARM
11687 && TREE_CODE (type) != UNION_TYPE
11688 && ! bitfield
11689 && innermost_code != cdk_decomp)
11691 error ("abstract declarator %qT used as declaration", type);
11692 return error_mark_node;
11695 if (!FUNC_OR_METHOD_TYPE_P (type))
11697 /* Only functions may be declared using an operator-function-id. */
11698 if (dname && IDENTIFIER_ANY_OP_P (dname))
11700 error ("declaration of %qD as non-function", dname);
11701 return error_mark_node;
11704 if (reqs)
11705 error_at (location_of (reqs),
11706 "requires-clause on declaration of non-function type %qT",
11707 type);
11710 /* We don't check parameter types here because we can emit a better
11711 error message later. */
11712 if (decl_context != PARM)
11714 type = check_var_type (unqualified_id, type);
11715 if (type == error_mark_node)
11716 return error_mark_node;
11719 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
11720 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
11722 if (decl_context == PARM || decl_context == CATCHPARM)
11724 if (ctype || in_namespace)
11725 error ("cannot use %<::%> in parameter declaration");
11727 if (type_uses_auto (type)
11728 && !(cxx_dialect >= cxx17 && template_parm_flag))
11730 if (cxx_dialect >= cxx14)
11731 error ("%<auto%> parameter not permitted in this context");
11732 else
11733 error ("parameter declared %<auto%>");
11734 type = error_mark_node;
11737 /* A parameter declared as an array of T is really a pointer to T.
11738 One declared as a function is really a pointer to a function.
11739 One declared as a member is really a pointer to member. */
11741 if (TREE_CODE (type) == ARRAY_TYPE)
11743 /* Transfer const-ness of array into that of type pointed to. */
11744 type = build_pointer_type (TREE_TYPE (type));
11745 type_quals = TYPE_UNQUALIFIED;
11746 array_parameter_p = true;
11748 else if (TREE_CODE (type) == FUNCTION_TYPE)
11749 type = build_pointer_type (type);
11752 if (ctype && TREE_CODE (type) == FUNCTION_TYPE && staticp < 2
11753 && !(identifier_p (unqualified_id)
11754 && IDENTIFIER_OVL_OP_P (unqualified_id)
11755 && (IDENTIFIER_OVL_OP_FLAGS (unqualified_id) & OVL_OP_FLAG_ALLOC)))
11757 cp_cv_quals real_quals = memfn_quals;
11758 if (cxx_dialect < cxx14 && constexpr_p
11759 && sfk != sfk_constructor && sfk != sfk_destructor)
11760 real_quals |= TYPE_QUAL_CONST;
11761 type = build_memfn_type (type, ctype, real_quals, rqual);
11765 tree decl = NULL_TREE;
11767 if (decl_context == PARM)
11769 decl = cp_build_parm_decl (NULL_TREE, unqualified_id, type);
11770 DECL_ARRAY_PARAMETER_P (decl) = array_parameter_p;
11772 bad_specifiers (decl, BSP_PARM, virtualp,
11773 memfn_quals != TYPE_UNQUALIFIED,
11774 inlinep, friendp, raises != NULL_TREE);
11776 else if (decl_context == FIELD)
11778 if (!staticp && !friendp && TREE_CODE (type) != METHOD_TYPE)
11779 if (tree auto_node = type_uses_auto (type))
11781 location_t loc = declspecs->locations[ds_type_spec];
11782 if (CLASS_PLACEHOLDER_TEMPLATE (auto_node))
11783 error_at (loc, "invalid use of template-name %qE without an "
11784 "argument list",
11785 CLASS_PLACEHOLDER_TEMPLATE (auto_node));
11786 else
11787 error_at (loc, "non-static data member declared with "
11788 "placeholder %qT", auto_node);
11789 type = error_mark_node;
11792 /* The C99 flexible array extension. */
11793 if (!staticp && TREE_CODE (type) == ARRAY_TYPE
11794 && TYPE_DOMAIN (type) == NULL_TREE)
11796 if (ctype
11797 && (TREE_CODE (ctype) == UNION_TYPE
11798 || TREE_CODE (ctype) == QUAL_UNION_TYPE))
11800 error ("flexible array member in union");
11801 type = error_mark_node;
11803 else
11805 /* Array is a flexible member. */
11806 if (in_system_header_at (input_location))
11807 /* Do not warn on flexible array members in system
11808 headers because glibc uses them. */;
11809 else if (name)
11810 pedwarn (input_location, OPT_Wpedantic,
11811 "ISO C++ forbids flexible array member %qs", name);
11812 else
11813 pedwarn (input_location, OPT_Wpedantic,
11814 "ISO C++ forbids flexible array members");
11816 /* Flexible array member has a null domain. */
11817 type = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
11821 if (type == error_mark_node)
11823 /* Happens when declaring arrays of sizes which
11824 are error_mark_node, for example. */
11825 decl = NULL_TREE;
11827 else if (in_namespace && !friendp)
11829 /* Something like struct S { int N::j; }; */
11830 error ("invalid use of %<::%>");
11831 return error_mark_node;
11833 else if (TREE_CODE (type) == FUNCTION_TYPE
11834 || TREE_CODE (type) == METHOD_TYPE)
11836 int publicp = 0;
11837 tree function_context;
11839 if (friendp == 0)
11841 /* This should never happen in pure C++ (the check
11842 could be an assert). It could happen in
11843 Objective-C++ if someone writes invalid code that
11844 uses a function declaration for an instance
11845 variable or property (instance variables and
11846 properties are parsed as FIELD_DECLs, but they are
11847 part of an Objective-C class, not a C++ class).
11848 That code is invalid and is caught by this
11849 check. */
11850 if (!ctype)
11852 error ("declaration of function %qD in invalid context",
11853 unqualified_id);
11854 return error_mark_node;
11857 /* ``A union may [ ... ] not [ have ] virtual functions.''
11858 ARM 9.5 */
11859 if (virtualp && TREE_CODE (ctype) == UNION_TYPE)
11861 error ("function %qD declared %<virtual%> inside a union",
11862 unqualified_id);
11863 return error_mark_node;
11866 if (virtualp
11867 && identifier_p (unqualified_id)
11868 && IDENTIFIER_OVL_OP_P (unqualified_id)
11869 && (IDENTIFIER_OVL_OP_FLAGS (unqualified_id)
11870 & OVL_OP_FLAG_ALLOC))
11872 error ("%qD cannot be declared %<virtual%>, since it "
11873 "is always static", unqualified_id);
11874 virtualp = 0;
11878 /* Check that the name used for a destructor makes sense. */
11879 if (sfk == sfk_destructor)
11881 tree uqname = id_declarator->u.id.unqualified_name;
11883 if (!ctype)
11885 gcc_assert (friendp);
11886 error ("expected qualified name in friend declaration "
11887 "for destructor %qD", uqname);
11888 return error_mark_node;
11891 if (!check_dtor_name (ctype, TREE_OPERAND (uqname, 0)))
11893 error ("declaration of %qD as member of %qT",
11894 uqname, ctype);
11895 return error_mark_node;
11897 if (concept_p)
11899 error ("a destructor cannot be %<concept%>");
11900 return error_mark_node;
11902 if (constexpr_p)
11904 error ("a destructor cannot be %<constexpr%>");
11905 return error_mark_node;
11908 else if (sfk == sfk_constructor && friendp && !ctype)
11910 error ("expected qualified name in friend declaration "
11911 "for constructor %qD",
11912 id_declarator->u.id.unqualified_name);
11913 return error_mark_node;
11915 if (sfk == sfk_constructor)
11916 if (concept_p)
11918 error ("a constructor cannot be %<concept%>");
11919 return error_mark_node;
11921 if (concept_p)
11923 error ("a concept cannot be a member function");
11924 concept_p = false;
11927 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
11929 tree tmpl = TREE_OPERAND (unqualified_id, 0);
11930 if (variable_template_p (tmpl))
11932 error ("specialization of variable template %qD "
11933 "declared as function", tmpl);
11934 inform (DECL_SOURCE_LOCATION (tmpl),
11935 "variable template declared here");
11936 return error_mark_node;
11940 /* Tell grokfndecl if it needs to set TREE_PUBLIC on the node. */
11941 function_context = (ctype != NULL_TREE) ?
11942 decl_function_context (TYPE_MAIN_DECL (ctype)) : NULL_TREE;
11943 publicp = (! friendp || ! staticp)
11944 && function_context == NULL_TREE;
11946 if (late_return_type_p)
11947 TYPE_HAS_LATE_RETURN_TYPE (type) = 1;
11949 decl = grokfndecl (ctype, type,
11950 TREE_CODE (unqualified_id) != TEMPLATE_ID_EXPR
11951 ? unqualified_id : dname,
11952 parms,
11953 unqualified_id,
11954 reqs,
11955 virtualp, flags, memfn_quals, rqual, raises,
11956 friendp ? -1 : 0, friendp, publicp,
11957 inlinep | (2 * constexpr_p) | (4 * concept_p),
11958 initialized == SD_DELETED, sfk,
11959 funcdef_flag, template_count, in_namespace,
11960 attrlist, declarator->id_loc);
11961 decl = set_virt_specifiers (decl, virt_specifiers);
11962 if (decl == NULL_TREE)
11963 return error_mark_node;
11964 #if 0
11965 /* This clobbers the attrs stored in `decl' from `attrlist'. */
11966 /* The decl and setting of decl_attr is also turned off. */
11967 decl = build_decl_attribute_variant (decl, decl_attr);
11968 #endif
11970 /* [class.conv.ctor]
11972 A constructor declared without the function-specifier
11973 explicit that can be called with a single parameter
11974 specifies a conversion from the type of its first
11975 parameter to the type of its class. Such a constructor
11976 is called a converting constructor. */
11977 if (explicitp == 2)
11978 DECL_NONCONVERTING_P (decl) = 1;
11980 else if (!staticp && !dependent_type_p (type)
11981 && !COMPLETE_TYPE_P (complete_type (type))
11982 && (!complete_or_array_type_p (type)
11983 || initialized == 0))
11985 if (TREE_CODE (type) != ARRAY_TYPE
11986 || !COMPLETE_TYPE_P (TREE_TYPE (type)))
11988 if (unqualified_id)
11990 error ("field %qD has incomplete type %qT",
11991 unqualified_id, type);
11992 cxx_incomplete_type_inform (strip_array_types (type));
11994 else
11995 error ("name %qT has incomplete type", type);
11997 type = error_mark_node;
11998 decl = NULL_TREE;
12001 else
12003 if (friendp)
12005 error ("%qE is neither function nor member function; "
12006 "cannot be declared friend", unqualified_id);
12007 friendp = 0;
12009 decl = NULL_TREE;
12012 if (friendp)
12014 /* Friends are treated specially. */
12015 if (ctype == current_class_type)
12016 ; /* We already issued a permerror. */
12017 else if (decl && DECL_NAME (decl))
12019 if (template_class_depth (current_class_type) == 0)
12021 decl = check_explicit_specialization
12022 (unqualified_id, decl, template_count,
12023 2 * funcdef_flag + 4);
12024 if (decl == error_mark_node)
12025 return error_mark_node;
12028 decl = do_friend (ctype, unqualified_id, decl,
12029 *attrlist, flags,
12030 funcdef_flag);
12031 return decl;
12033 else
12034 return error_mark_node;
12037 /* Structure field. It may not be a function, except for C++. */
12039 if (decl == NULL_TREE)
12041 if (staticp)
12043 /* C++ allows static class members. All other work
12044 for this is done by grokfield. */
12045 decl = build_lang_decl_loc (declarator
12046 ? declarator->id_loc
12047 : input_location,
12048 VAR_DECL, unqualified_id, type);
12049 set_linkage_for_static_data_member (decl);
12050 if (concept_p)
12051 error ("static data member %qE declared %<concept%>",
12052 unqualified_id);
12053 else if (constexpr_p && !initialized)
12055 error ("constexpr static data member %qD must have an "
12056 "initializer", decl);
12057 constexpr_p = false;
12060 if (inlinep)
12061 mark_inline_variable (decl);
12063 if (!DECL_VAR_DECLARED_INLINE_P (decl)
12064 && !(cxx_dialect >= cxx17 && constexpr_p))
12065 /* Even if there is an in-class initialization, DECL
12066 is considered undefined until an out-of-class
12067 definition is provided, unless this is an inline
12068 variable. */
12069 DECL_EXTERNAL (decl) = 1;
12071 if (thread_p)
12073 CP_DECL_THREAD_LOCAL_P (decl) = true;
12074 if (!processing_template_decl)
12075 set_decl_tls_model (decl, decl_default_tls_model (decl));
12076 if (declspecs->gnu_thread_keyword_p)
12077 SET_DECL_GNU_TLS_P (decl);
12080 else
12082 if (concept_p)
12083 error ("non-static data member %qE declared %<concept%>",
12084 unqualified_id);
12085 else if (constexpr_p)
12087 error ("non-static data member %qE declared %<constexpr%>",
12088 unqualified_id);
12089 constexpr_p = false;
12091 decl = build_decl (input_location,
12092 FIELD_DECL, unqualified_id, type);
12093 DECL_NONADDRESSABLE_P (decl) = bitfield;
12094 if (bitfield && !unqualified_id)
12095 TREE_NO_WARNING (decl) = 1;
12097 if (storage_class == sc_mutable)
12099 DECL_MUTABLE_P (decl) = 1;
12100 storage_class = sc_none;
12103 if (initialized)
12105 /* An attempt is being made to initialize a non-static
12106 member. This is new in C++11. */
12107 maybe_warn_cpp0x (CPP0X_NSDMI);
12109 /* If this has been parsed with static storage class, but
12110 errors forced staticp to be cleared, ensure NSDMI is
12111 not present. */
12112 if (declspecs->storage_class == sc_static)
12113 DECL_INITIAL (decl) = error_mark_node;
12117 bad_specifiers (decl, BSP_FIELD, virtualp,
12118 memfn_quals != TYPE_UNQUALIFIED,
12119 staticp ? false : inlinep, friendp,
12120 raises != NULL_TREE);
12123 else if (TREE_CODE (type) == FUNCTION_TYPE
12124 || TREE_CODE (type) == METHOD_TYPE)
12126 tree original_name;
12127 int publicp = 0;
12129 if (!unqualified_id)
12130 return error_mark_node;
12132 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
12133 original_name = dname;
12134 else
12135 original_name = unqualified_id;
12136 // FIXME:gcc_assert (original_name == dname);
12138 if (storage_class == sc_auto)
12139 error ("storage class %<auto%> invalid for function %qs", name);
12140 else if (storage_class == sc_register)
12141 error ("storage class %<register%> invalid for function %qs", name);
12142 else if (thread_p)
12144 if (declspecs->gnu_thread_keyword_p)
12145 error ("storage class %<__thread%> invalid for function %qs",
12146 name);
12147 else
12148 error ("storage class %<thread_local%> invalid for function %qs",
12149 name);
12152 if (virt_specifiers)
12153 error ("virt-specifiers in %qs not allowed outside a class definition", name);
12154 /* Function declaration not at top level.
12155 Storage classes other than `extern' are not allowed
12156 and `extern' makes no difference. */
12157 if (! toplevel_bindings_p ()
12158 && (storage_class == sc_static
12159 || decl_spec_seq_has_spec_p (declspecs, ds_inline))
12160 && pedantic)
12162 if (storage_class == sc_static)
12163 pedwarn (input_location, OPT_Wpedantic,
12164 "%<static%> specifier invalid for function %qs "
12165 "declared out of global scope", name);
12166 else
12167 pedwarn (input_location, OPT_Wpedantic,
12168 "%<inline%> specifier invalid for function %qs "
12169 "declared out of global scope", name);
12172 if (ctype == NULL_TREE)
12174 if (virtualp)
12176 error ("virtual non-class function %qs", name);
12177 virtualp = 0;
12179 else if (sfk == sfk_constructor
12180 || sfk == sfk_destructor)
12182 error (funcdef_flag
12183 ? G_("%qs defined in a non-class scope")
12184 : G_("%qs declared in a non-class scope"), name);
12185 sfk = sfk_none;
12189 /* Record whether the function is public. */
12190 publicp = (ctype != NULL_TREE
12191 || storage_class != sc_static);
12193 if (late_return_type_p)
12194 TYPE_HAS_LATE_RETURN_TYPE (type) = 1;
12196 decl = grokfndecl (ctype, type, original_name, parms, unqualified_id,
12197 reqs, virtualp, flags, memfn_quals, rqual, raises,
12198 1, friendp,
12199 publicp,
12200 inlinep | (2 * constexpr_p) | (4 * concept_p),
12201 initialized == SD_DELETED,
12202 sfk,
12203 funcdef_flag,
12204 template_count, in_namespace, attrlist,
12205 declarator->id_loc);
12206 if (decl == NULL_TREE)
12207 return error_mark_node;
12209 if (explicitp == 2)
12210 DECL_NONCONVERTING_P (decl) = 1;
12211 if (staticp == 1)
12213 int invalid_static = 0;
12215 /* Don't allow a static member function in a class, and forbid
12216 declaring main to be static. */
12217 if (TREE_CODE (type) == METHOD_TYPE)
12219 permerror (input_location, "cannot declare member function %qD to have "
12220 "static linkage", decl);
12221 invalid_static = 1;
12223 else if (current_function_decl)
12225 /* 7.1.1: There can be no static function declarations within a
12226 block. */
12227 error ("cannot declare static function inside another function");
12228 invalid_static = 1;
12231 if (invalid_static)
12233 staticp = 0;
12234 storage_class = sc_none;
12238 else
12240 /* It's a variable. */
12242 /* An uninitialized decl with `extern' is a reference. */
12243 decl = grokvardecl (type, dname, unqualified_id,
12244 declspecs,
12245 initialized,
12246 type_quals,
12247 inlinep,
12248 concept_p,
12249 template_count,
12250 ctype ? ctype : in_namespace);
12251 if (decl == NULL_TREE)
12252 return error_mark_node;
12254 bad_specifiers (decl, BSP_VAR, virtualp,
12255 memfn_quals != TYPE_UNQUALIFIED,
12256 inlinep, friendp, raises != NULL_TREE);
12258 if (ctype)
12260 DECL_CONTEXT (decl) = ctype;
12261 if (staticp == 1)
12263 permerror (input_location, "%<static%> may not be used when defining "
12264 "(as opposed to declaring) a static data member");
12265 staticp = 0;
12266 storage_class = sc_none;
12268 if (storage_class == sc_register && TREE_STATIC (decl))
12270 error ("static member %qD declared %<register%>", decl);
12271 storage_class = sc_none;
12273 if (storage_class == sc_extern && pedantic)
12275 pedwarn (input_location, OPT_Wpedantic,
12276 "cannot explicitly declare member %q#D to have "
12277 "extern linkage", decl);
12278 storage_class = sc_none;
12281 else if (constexpr_p && DECL_EXTERNAL (decl))
12283 error ("declaration of constexpr variable %qD is not a definition",
12284 decl);
12285 constexpr_p = false;
12288 if (inlinep)
12289 mark_inline_variable (decl);
12290 if (innermost_code == cdk_decomp)
12292 gcc_assert (declarator && declarator->kind == cdk_decomp);
12293 DECL_SOURCE_LOCATION (decl) = declarator->id_loc;
12294 DECL_ARTIFICIAL (decl) = 1;
12295 fit_decomposition_lang_decl (decl, NULL_TREE);
12299 if (VAR_P (decl) && !initialized)
12300 if (tree auto_node = type_uses_auto (type))
12301 if (!CLASS_PLACEHOLDER_TEMPLATE (auto_node))
12303 location_t loc = declspecs->locations[ds_type_spec];
12304 error_at (loc, "declaration of %q#D has no initializer", decl);
12305 TREE_TYPE (decl) = error_mark_node;
12308 if (storage_class == sc_extern && initialized && !funcdef_flag)
12310 if (toplevel_bindings_p ())
12312 /* It's common practice (and completely valid) to have a const
12313 be initialized and declared extern. */
12314 if (!(type_quals & TYPE_QUAL_CONST))
12315 warning (0, "%qs initialized and declared %<extern%>", name);
12317 else
12319 error ("%qs has both %<extern%> and initializer", name);
12320 return error_mark_node;
12324 /* Record `register' declaration for warnings on &
12325 and in case doing stupid register allocation. */
12327 if (storage_class == sc_register)
12329 DECL_REGISTER (decl) = 1;
12330 /* Warn about register storage specifiers on PARM_DECLs. */
12331 if (TREE_CODE (decl) == PARM_DECL)
12333 if (cxx_dialect >= cxx17)
12334 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
12335 "ISO C++17 does not allow %<register%> storage "
12336 "class specifier");
12337 else
12338 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
12339 "%<register%> storage class specifier used");
12342 else if (storage_class == sc_extern)
12343 DECL_THIS_EXTERN (decl) = 1;
12344 else if (storage_class == sc_static)
12345 DECL_THIS_STATIC (decl) = 1;
12347 /* Set constexpr flag on vars (functions got it in grokfndecl). */
12348 if (constexpr_p && VAR_P (decl))
12349 DECL_DECLARED_CONSTEXPR_P (decl) = true;
12351 /* Record constancy and volatility on the DECL itself . There's
12352 no need to do this when processing a template; we'll do this
12353 for the instantiated declaration based on the type of DECL. */
12354 if (!processing_template_decl)
12355 cp_apply_type_quals_to_decl (type_quals, decl);
12357 return decl;
12361 /* Subroutine of start_function. Ensure that each of the parameter
12362 types (as listed in PARMS) is complete, as is required for a
12363 function definition. */
12365 static void
12366 require_complete_types_for_parms (tree parms)
12368 for (; parms; parms = DECL_CHAIN (parms))
12370 if (dependent_type_p (TREE_TYPE (parms)))
12371 continue;
12372 if (!VOID_TYPE_P (TREE_TYPE (parms))
12373 && complete_type_or_else (TREE_TYPE (parms), parms))
12375 relayout_decl (parms);
12376 DECL_ARG_TYPE (parms) = type_passed_as (TREE_TYPE (parms));
12378 maybe_warn_parm_abi (TREE_TYPE (parms),
12379 DECL_SOURCE_LOCATION (parms));
12381 else
12382 /* grokparms or complete_type_or_else will have already issued
12383 an error. */
12384 TREE_TYPE (parms) = error_mark_node;
12388 /* Returns nonzero if T is a local variable. */
12391 local_variable_p (const_tree t)
12393 if ((VAR_P (t)
12394 /* A VAR_DECL with a context that is a _TYPE is a static data
12395 member. */
12396 && !TYPE_P (CP_DECL_CONTEXT (t))
12397 /* Any other non-local variable must be at namespace scope. */
12398 && !DECL_NAMESPACE_SCOPE_P (t))
12399 || (TREE_CODE (t) == PARM_DECL))
12400 return 1;
12402 return 0;
12405 /* Like local_variable_p, but suitable for use as a tree-walking
12406 function. */
12408 static tree
12409 local_variable_p_walkfn (tree *tp, int *walk_subtrees,
12410 void * /*data*/)
12412 if (local_variable_p (*tp)
12413 && (!DECL_ARTIFICIAL (*tp) || DECL_NAME (*tp) == this_identifier))
12414 return *tp;
12415 else if (TYPE_P (*tp))
12416 *walk_subtrees = 0;
12418 return NULL_TREE;
12421 /* Check that ARG, which is a default-argument expression for a
12422 parameter DECL, is valid. Returns ARG, or ERROR_MARK_NODE, if
12423 something goes wrong. DECL may also be a _TYPE node, rather than a
12424 DECL, if there is no DECL available. */
12426 tree
12427 check_default_argument (tree decl, tree arg, tsubst_flags_t complain)
12429 tree var;
12430 tree decl_type;
12432 if (TREE_CODE (arg) == DEFAULT_ARG)
12433 /* We get a DEFAULT_ARG when looking at an in-class declaration
12434 with a default argument. Ignore the argument for now; we'll
12435 deal with it after the class is complete. */
12436 return arg;
12438 if (TYPE_P (decl))
12440 decl_type = decl;
12441 decl = NULL_TREE;
12443 else
12444 decl_type = TREE_TYPE (decl);
12446 if (arg == error_mark_node
12447 || decl == error_mark_node
12448 || TREE_TYPE (arg) == error_mark_node
12449 || decl_type == error_mark_node)
12450 /* Something already went wrong. There's no need to check
12451 further. */
12452 return error_mark_node;
12454 /* [dcl.fct.default]
12456 A default argument expression is implicitly converted to the
12457 parameter type. */
12458 ++cp_unevaluated_operand;
12459 perform_implicit_conversion_flags (decl_type, arg, complain,
12460 LOOKUP_IMPLICIT);
12461 --cp_unevaluated_operand;
12463 /* Avoid redundant -Wzero-as-null-pointer-constant warnings at
12464 the call sites. */
12465 if (TYPE_PTR_OR_PTRMEM_P (decl_type)
12466 && null_ptr_cst_p (arg))
12467 return nullptr_node;
12469 /* [dcl.fct.default]
12471 Local variables shall not be used in default argument
12472 expressions.
12474 The keyword `this' shall not be used in a default argument of a
12475 member function. */
12476 var = cp_walk_tree_without_duplicates (&arg, local_variable_p_walkfn, NULL);
12477 if (var)
12479 if (complain & tf_warning_or_error)
12481 if (DECL_NAME (var) == this_identifier)
12482 permerror (input_location, "default argument %qE uses %qD",
12483 arg, var);
12484 else
12485 error ("default argument %qE uses local variable %qD", arg, var);
12487 return error_mark_node;
12490 /* All is well. */
12491 return arg;
12494 /* Returns a deprecated type used within TYPE, or NULL_TREE if none. */
12496 static tree
12497 type_is_deprecated (tree type)
12499 enum tree_code code;
12500 if (TREE_DEPRECATED (type))
12501 return type;
12502 if (TYPE_NAME (type))
12504 if (TREE_DEPRECATED (TYPE_NAME (type)))
12505 return type;
12506 else
12507 return NULL_TREE;
12510 /* Do warn about using typedefs to a deprecated class. */
12511 if (OVERLOAD_TYPE_P (type) && type != TYPE_MAIN_VARIANT (type))
12512 return type_is_deprecated (TYPE_MAIN_VARIANT (type));
12514 code = TREE_CODE (type);
12516 if (code == POINTER_TYPE || code == REFERENCE_TYPE
12517 || code == OFFSET_TYPE || code == FUNCTION_TYPE
12518 || code == METHOD_TYPE || code == ARRAY_TYPE)
12519 return type_is_deprecated (TREE_TYPE (type));
12521 if (TYPE_PTRMEMFUNC_P (type))
12522 return type_is_deprecated
12523 (TREE_TYPE (TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (type))));
12525 return NULL_TREE;
12528 /* Decode the list of parameter types for a function type.
12529 Given the list of things declared inside the parens,
12530 return a list of types.
12532 If this parameter does not end with an ellipsis, we append
12533 void_list_node.
12535 *PARMS is set to the chain of PARM_DECLs created. */
12537 tree
12538 grokparms (tree parmlist, tree *parms)
12540 tree result = NULL_TREE;
12541 tree decls = NULL_TREE;
12542 tree parm;
12543 int any_error = 0;
12545 for (parm = parmlist; parm != NULL_TREE; parm = TREE_CHAIN (parm))
12547 tree type = NULL_TREE;
12548 tree init = TREE_PURPOSE (parm);
12549 tree decl = TREE_VALUE (parm);
12551 if (parm == void_list_node)
12552 break;
12554 if (! decl || TREE_TYPE (decl) == error_mark_node)
12555 continue;
12557 type = TREE_TYPE (decl);
12558 if (VOID_TYPE_P (type))
12560 if (same_type_p (type, void_type_node)
12561 && !init
12562 && !DECL_NAME (decl) && !result
12563 && TREE_CHAIN (parm) == void_list_node)
12564 /* DR 577: A parameter list consisting of a single
12565 unnamed parameter of non-dependent type 'void'. */
12566 break;
12567 else if (cv_qualified_p (type))
12568 error_at (DECL_SOURCE_LOCATION (decl),
12569 "invalid use of cv-qualified type %qT in "
12570 "parameter declaration", type);
12571 else
12572 error_at (DECL_SOURCE_LOCATION (decl),
12573 "invalid use of type %<void%> in parameter "
12574 "declaration");
12575 /* It's not a good idea to actually create parameters of
12576 type `void'; other parts of the compiler assume that a
12577 void type terminates the parameter list. */
12578 type = error_mark_node;
12579 TREE_TYPE (decl) = error_mark_node;
12582 if (type != error_mark_node)
12584 if (deprecated_state != DEPRECATED_SUPPRESS)
12586 tree deptype = type_is_deprecated (type);
12587 if (deptype)
12588 warn_deprecated_use (deptype, NULL_TREE);
12591 /* Top-level qualifiers on the parameters are
12592 ignored for function types. */
12593 type = cp_build_qualified_type (type, 0);
12594 if (TREE_CODE (type) == METHOD_TYPE)
12596 error ("parameter %qD invalidly declared method type", decl);
12597 type = build_pointer_type (type);
12598 TREE_TYPE (decl) = type;
12600 else if (abstract_virtuals_error (decl, type))
12601 any_error = 1; /* Seems like a good idea. */
12602 else if (cxx_dialect < cxx17 && POINTER_TYPE_P (type))
12604 /* Before C++17 DR 393:
12605 [dcl.fct]/6, parameter types cannot contain pointers
12606 (references) to arrays of unknown bound. */
12607 tree t = TREE_TYPE (type);
12608 int ptr = TYPE_PTR_P (type);
12610 while (1)
12612 if (TYPE_PTR_P (t))
12613 ptr = 1;
12614 else if (TREE_CODE (t) != ARRAY_TYPE)
12615 break;
12616 else if (!TYPE_DOMAIN (t))
12617 break;
12618 t = TREE_TYPE (t);
12620 if (TREE_CODE (t) == ARRAY_TYPE)
12621 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wpedantic,
12623 ? G_("parameter %qD includes pointer to array of "
12624 "unknown bound %qT")
12625 : G_("parameter %qD includes reference to array of "
12626 "unknown bound %qT"),
12627 decl, t);
12630 if (any_error)
12631 init = NULL_TREE;
12632 else if (init && !processing_template_decl)
12633 init = check_default_argument (decl, init, tf_warning_or_error);
12636 DECL_CHAIN (decl) = decls;
12637 decls = decl;
12638 result = tree_cons (init, type, result);
12640 decls = nreverse (decls);
12641 result = nreverse (result);
12642 if (parm)
12643 result = chainon (result, void_list_node);
12644 *parms = decls;
12646 return result;
12650 /* D is a constructor or overloaded `operator='.
12652 Let T be the class in which D is declared. Then, this function
12653 returns:
12655 -1 if D's is an ill-formed constructor or copy assignment operator
12656 whose first parameter is of type `T'.
12657 0 if D is not a copy constructor or copy assignment
12658 operator.
12659 1 if D is a copy constructor or copy assignment operator whose
12660 first parameter is a reference to non-const qualified T.
12661 2 if D is a copy constructor or copy assignment operator whose
12662 first parameter is a reference to const qualified T.
12664 This function can be used as a predicate. Positive values indicate
12665 a copy constructor and nonzero values indicate a copy assignment
12666 operator. */
12669 copy_fn_p (const_tree d)
12671 tree args;
12672 tree arg_type;
12673 int result = 1;
12675 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
12677 if (TREE_CODE (d) == TEMPLATE_DECL
12678 || (DECL_TEMPLATE_INFO (d)
12679 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
12680 /* Instantiations of template member functions are never copy
12681 functions. Note that member functions of templated classes are
12682 represented as template functions internally, and we must
12683 accept those as copy functions. */
12684 return 0;
12686 args = FUNCTION_FIRST_USER_PARMTYPE (d);
12687 if (!args)
12688 return 0;
12690 arg_type = TREE_VALUE (args);
12691 if (arg_type == error_mark_node)
12692 return 0;
12694 if (TYPE_MAIN_VARIANT (arg_type) == DECL_CONTEXT (d))
12696 /* Pass by value copy assignment operator. */
12697 result = -1;
12699 else if (TREE_CODE (arg_type) == REFERENCE_TYPE
12700 && !TYPE_REF_IS_RVALUE (arg_type)
12701 && TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)) == DECL_CONTEXT (d))
12703 if (CP_TYPE_CONST_P (TREE_TYPE (arg_type)))
12704 result = 2;
12706 else
12707 return 0;
12709 args = TREE_CHAIN (args);
12711 if (args && args != void_list_node && !TREE_PURPOSE (args))
12712 /* There are more non-optional args. */
12713 return 0;
12715 return result;
12718 /* D is a constructor or overloaded `operator='.
12720 Let T be the class in which D is declared. Then, this function
12721 returns true when D is a move constructor or move assignment
12722 operator, false otherwise. */
12724 bool
12725 move_fn_p (const_tree d)
12727 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
12729 if (cxx_dialect == cxx98)
12730 /* There are no move constructors if we are in C++98 mode. */
12731 return false;
12733 if (TREE_CODE (d) == TEMPLATE_DECL
12734 || (DECL_TEMPLATE_INFO (d)
12735 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
12736 /* Instantiations of template member functions are never move
12737 functions. Note that member functions of templated classes are
12738 represented as template functions internally, and we must
12739 accept those as move functions. */
12740 return 0;
12742 return move_signature_fn_p (d);
12745 /* D is a constructor or overloaded `operator='.
12747 Then, this function returns true when D has the same signature as a move
12748 constructor or move assignment operator (because either it is such a
12749 ctor/op= or it is a template specialization with the same signature),
12750 false otherwise. */
12752 bool
12753 move_signature_fn_p (const_tree d)
12755 tree args;
12756 tree arg_type;
12757 bool result = false;
12759 args = FUNCTION_FIRST_USER_PARMTYPE (d);
12760 if (!args)
12761 return 0;
12763 arg_type = TREE_VALUE (args);
12764 if (arg_type == error_mark_node)
12765 return 0;
12767 if (TREE_CODE (arg_type) == REFERENCE_TYPE
12768 && TYPE_REF_IS_RVALUE (arg_type)
12769 && same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)),
12770 DECL_CONTEXT (d)))
12771 result = true;
12773 args = TREE_CHAIN (args);
12775 if (args && args != void_list_node && !TREE_PURPOSE (args))
12776 /* There are more non-optional args. */
12777 return false;
12779 return result;
12782 /* Remember any special properties of member function DECL. */
12784 void
12785 grok_special_member_properties (tree decl)
12787 tree class_type;
12789 if (!DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
12790 return;
12792 class_type = DECL_CONTEXT (decl);
12793 if (IDENTIFIER_CTOR_P (DECL_NAME (decl)))
12795 int ctor = copy_fn_p (decl);
12797 if (!DECL_ARTIFICIAL (decl))
12798 TYPE_HAS_USER_CONSTRUCTOR (class_type) = 1;
12800 if (ctor > 0)
12802 /* [class.copy]
12804 A non-template constructor for class X is a copy
12805 constructor if its first parameter is of type X&, const
12806 X&, volatile X& or const volatile X&, and either there
12807 are no other parameters or else all other parameters have
12808 default arguments. */
12809 TYPE_HAS_COPY_CTOR (class_type) = 1;
12810 if (user_provided_p (decl))
12811 TYPE_HAS_COMPLEX_COPY_CTOR (class_type) = 1;
12812 if (ctor > 1)
12813 TYPE_HAS_CONST_COPY_CTOR (class_type) = 1;
12815 else if (sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (decl)))
12816 TYPE_HAS_DEFAULT_CONSTRUCTOR (class_type) = 1;
12817 else if (move_fn_p (decl) && user_provided_p (decl))
12818 TYPE_HAS_COMPLEX_MOVE_CTOR (class_type) = 1;
12819 else if (is_list_ctor (decl))
12820 TYPE_HAS_LIST_CTOR (class_type) = 1;
12822 if (DECL_DECLARED_CONSTEXPR_P (decl)
12823 && !ctor && !move_fn_p (decl))
12824 TYPE_HAS_CONSTEXPR_CTOR (class_type) = 1;
12826 else if (DECL_NAME (decl) == assign_op_identifier)
12828 /* [class.copy]
12830 A non-template assignment operator for class X is a copy
12831 assignment operator if its parameter is of type X, X&, const
12832 X&, volatile X& or const volatile X&. */
12834 int assop = copy_fn_p (decl);
12836 if (assop)
12838 TYPE_HAS_COPY_ASSIGN (class_type) = 1;
12839 if (user_provided_p (decl))
12840 TYPE_HAS_COMPLEX_COPY_ASSIGN (class_type) = 1;
12841 if (assop != 1)
12842 TYPE_HAS_CONST_COPY_ASSIGN (class_type) = 1;
12844 else if (move_fn_p (decl) && user_provided_p (decl))
12845 TYPE_HAS_COMPLEX_MOVE_ASSIGN (class_type) = 1;
12847 else if (IDENTIFIER_CONV_OP_P (DECL_NAME (decl)))
12848 TYPE_HAS_CONVERSION (class_type) = true;
12850 /* Destructors are handled in check_methods. */
12853 /* Check a constructor DECL has the correct form. Complains
12854 if the class has a constructor of the form X(X). */
12856 bool
12857 grok_ctor_properties (const_tree ctype, const_tree decl)
12859 int ctor_parm = copy_fn_p (decl);
12861 if (ctor_parm < 0)
12863 /* [class.copy]
12865 A declaration of a constructor for a class X is ill-formed if
12866 its first parameter is of type (optionally cv-qualified) X
12867 and either there are no other parameters or else all other
12868 parameters have default arguments.
12870 We *don't* complain about member template instantiations that
12871 have this form, though; they can occur as we try to decide
12872 what constructor to use during overload resolution. Since
12873 overload resolution will never prefer such a constructor to
12874 the non-template copy constructor (which is either explicitly
12875 or implicitly defined), there's no need to worry about their
12876 existence. Theoretically, they should never even be
12877 instantiated, but that's hard to forestall. */
12878 error ("invalid constructor; you probably meant %<%T (const %T&)%>",
12879 ctype, ctype);
12880 return false;
12883 return true;
12886 /* DECL is a declaration for an overloaded or conversion operator. If
12887 COMPLAIN is true, errors are issued for invalid declarations. */
12889 bool
12890 grok_op_properties (tree decl, bool complain)
12892 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
12893 bool methodp = TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE;
12894 tree name = DECL_NAME (decl);
12896 tree class_type = DECL_CONTEXT (decl);
12897 if (class_type && !CLASS_TYPE_P (class_type))
12898 class_type = NULL_TREE;
12900 tree_code operator_code;
12901 unsigned op_flags;
12902 if (IDENTIFIER_CONV_OP_P (name))
12904 /* Conversion operators are TYPE_EXPR for the purposes of this
12905 function. */
12906 operator_code = TYPE_EXPR;
12907 op_flags = OVL_OP_FLAG_UNARY;
12909 else
12911 const ovl_op_info_t *ovl_op = IDENTIFIER_OVL_OP_INFO (name);
12913 operator_code = ovl_op->tree_code;
12914 op_flags = ovl_op->flags;
12915 gcc_checking_assert (operator_code != ERROR_MARK);
12916 DECL_OVERLOADED_OPERATOR_CODE_RAW (decl) = ovl_op->ovl_op_code;
12919 if (op_flags & OVL_OP_FLAG_ALLOC)
12921 /* operator new and operator delete are quite special. */
12922 if (class_type)
12923 switch (op_flags)
12925 case OVL_OP_FLAG_ALLOC:
12926 TYPE_HAS_NEW_OPERATOR (class_type) = 1;
12927 break;
12929 case OVL_OP_FLAG_ALLOC | OVL_OP_FLAG_DELETE:
12930 TYPE_GETS_DELETE (class_type) |= 1;
12931 break;
12933 case OVL_OP_FLAG_ALLOC | OVL_OP_FLAG_VEC:
12934 TYPE_HAS_ARRAY_NEW_OPERATOR (class_type) = 1;
12935 break;
12937 case OVL_OP_FLAG_ALLOC | OVL_OP_FLAG_DELETE | OVL_OP_FLAG_VEC:
12938 TYPE_GETS_DELETE (class_type) |= 2;
12939 break;
12941 default:
12942 gcc_unreachable ();
12945 /* [basic.std.dynamic.allocation]/1:
12947 A program is ill-formed if an allocation function is declared
12948 in a namespace scope other than global scope or declared
12949 static in global scope.
12951 The same also holds true for deallocation functions. */
12952 if (DECL_NAMESPACE_SCOPE_P (decl))
12954 if (CP_DECL_CONTEXT (decl) != global_namespace)
12956 error ("%qD may not be declared within a namespace", decl);
12957 return false;
12960 if (!TREE_PUBLIC (decl))
12962 error ("%qD may not be declared as static", decl);
12963 return false;
12967 if (op_flags & OVL_OP_FLAG_DELETE)
12968 TREE_TYPE (decl) = coerce_delete_type (TREE_TYPE (decl));
12969 else
12971 DECL_IS_OPERATOR_NEW (decl) = 1;
12972 TREE_TYPE (decl) = coerce_new_type (TREE_TYPE (decl));
12975 return true;
12978 /* An operator function must either be a non-static member function
12979 or have at least one parameter of a class, a reference to a class,
12980 an enumeration, or a reference to an enumeration. 13.4.0.6 */
12981 if (! methodp || DECL_STATIC_FUNCTION_P (decl))
12983 if (operator_code == TYPE_EXPR
12984 || operator_code == CALL_EXPR
12985 || operator_code == COMPONENT_REF
12986 || operator_code == ARRAY_REF
12987 || operator_code == NOP_EXPR)
12989 error ("%qD must be a nonstatic member function", decl);
12990 return false;
12993 if (DECL_STATIC_FUNCTION_P (decl))
12995 error ("%qD must be either a non-static member "
12996 "function or a non-member function", decl);
12997 return false;
13000 for (tree arg = argtypes; ; arg = TREE_CHAIN (arg))
13002 if (!arg || arg == void_list_node)
13004 if (complain)
13005 error ("%qD must have an argument of class or "
13006 "enumerated type", decl);
13007 return false;
13010 tree type = non_reference (TREE_VALUE (arg));
13011 if (type == error_mark_node)
13012 return false;
13014 /* MAYBE_CLASS_TYPE_P, rather than CLASS_TYPE_P, is used
13015 because these checks are performed even on template
13016 functions. */
13017 if (MAYBE_CLASS_TYPE_P (type)
13018 || TREE_CODE (type) == ENUMERAL_TYPE)
13019 break;
13023 if (operator_code == CALL_EXPR)
13024 /* There are no further restrictions on the arguments to an overloaded
13025 "operator ()". */
13026 return true;
13028 if (operator_code == COND_EXPR)
13030 /* 13.4.0.3 */
13031 error ("ISO C++ prohibits overloading operator ?:");
13032 return false;
13035 /* Count the number of arguments and check for ellipsis. */
13036 int arity = 0;
13037 for (tree arg = argtypes; arg != void_list_node; arg = TREE_CHAIN (arg))
13039 if (!arg)
13041 /* Variadic. */
13042 error ("%qD must not have variable number of arguments", decl);
13043 return false;
13045 ++arity;
13048 /* Verify correct number of arguments. */
13049 switch (op_flags)
13051 case OVL_OP_FLAG_AMBIARY:
13052 if (arity == 1)
13054 /* We have a unary instance of an ambi-ary op. Remap to the
13055 unary one. */
13056 unsigned alt = ovl_op_alternate[ovl_op_mapping [operator_code]];
13057 const ovl_op_info_t *ovl_op = &ovl_op_info[false][alt];
13058 gcc_checking_assert (ovl_op->flags == OVL_OP_FLAG_UNARY);
13059 operator_code = ovl_op->tree_code;
13060 DECL_OVERLOADED_OPERATOR_CODE_RAW (decl) = ovl_op->ovl_op_code;
13062 else if (arity != 2)
13064 /* This was an ambiguous operator but is invalid. */
13065 error (methodp
13066 ? G_("%qD must have either zero or one argument")
13067 : G_("%qD must have either one or two arguments"), decl);
13068 return false;
13070 else if ((operator_code == POSTINCREMENT_EXPR
13071 || operator_code == POSTDECREMENT_EXPR)
13072 && ! processing_template_decl
13073 /* x++ and x--'s second argument must be an int. */
13074 && ! same_type_p (TREE_VALUE (TREE_CHAIN (argtypes)),
13075 integer_type_node))
13077 error (methodp
13078 ? G_("postfix %qD must have %<int%> as its argument")
13079 : G_("postfix %qD must have %<int%> as its second argument"),
13080 decl);
13081 return false;
13083 break;
13085 case OVL_OP_FLAG_UNARY:
13086 if (arity != 1)
13088 error (methodp
13089 ? G_("%qD must have no arguments")
13090 : G_("%qD must have exactly one argument"), decl);
13091 return false;
13093 break;
13095 case OVL_OP_FLAG_BINARY:
13096 if (arity != 2)
13098 error (methodp
13099 ? G_("%qD must have exactly one argument")
13100 : G_("%qD must have exactly two arguments"), decl);
13101 return false;
13103 break;
13105 default:
13106 gcc_unreachable ();
13109 /* There can be no default arguments. */
13110 for (tree arg = argtypes; arg != void_list_node; arg = TREE_CHAIN (arg))
13111 if (TREE_PURPOSE (arg))
13113 TREE_PURPOSE (arg) = NULL_TREE;
13114 if (operator_code == POSTINCREMENT_EXPR
13115 || operator_code == POSTDECREMENT_EXPR)
13116 pedwarn (input_location, OPT_Wpedantic,
13117 "%qD cannot have default arguments", decl);
13118 else
13120 error ("%qD cannot have default arguments", decl);
13121 return false;
13125 /* At this point the declaration is well-formed. It may not be
13126 sensible though. */
13128 /* Check member function warnings only on the in-class declaration.
13129 There's no point warning on an out-of-class definition. */
13130 if (class_type && class_type != current_class_type)
13131 return true;
13133 /* Warn about conversion operators that will never be used. */
13134 if (IDENTIFIER_CONV_OP_P (name)
13135 && ! DECL_TEMPLATE_INFO (decl)
13136 && warn_conversion)
13138 tree t = TREE_TYPE (name);
13139 int ref = (TREE_CODE (t) == REFERENCE_TYPE);
13141 if (ref)
13142 t = TYPE_MAIN_VARIANT (TREE_TYPE (t));
13144 if (VOID_TYPE_P (t))
13145 warning (OPT_Wconversion,
13147 ? G_("conversion to a reference to void "
13148 "will never use a type conversion operator")
13149 : G_("conversion to void "
13150 "will never use a type conversion operator"));
13151 else if (class_type)
13153 if (t == class_type)
13154 warning (OPT_Wconversion,
13156 ? G_("conversion to a reference to the same type "
13157 "will never use a type conversion operator")
13158 : G_("conversion to the same type "
13159 "will never use a type conversion operator"));
13160 /* Don't force t to be complete here. */
13161 else if (MAYBE_CLASS_TYPE_P (t)
13162 && COMPLETE_TYPE_P (t)
13163 && DERIVED_FROM_P (t, class_type))
13164 warning (OPT_Wconversion,
13166 ? G_("conversion to a reference to a base class "
13167 "will never use a type conversion operator")
13168 : G_("conversion to a base class "
13169 "will never use a type conversion operator"));
13173 if (!warn_ecpp)
13174 return true;
13176 /* Effective C++ rules below. */
13178 /* More Effective C++ rule 7. */
13179 if (operator_code == TRUTH_ANDIF_EXPR
13180 || operator_code == TRUTH_ORIF_EXPR
13181 || operator_code == COMPOUND_EXPR)
13182 warning (OPT_Weffc__,
13183 "user-defined %qD always evaluates both arguments", decl);
13185 /* More Effective C++ rule 6. */
13186 if (operator_code == POSTINCREMENT_EXPR
13187 || operator_code == POSTDECREMENT_EXPR
13188 || operator_code == PREINCREMENT_EXPR
13189 || operator_code == PREDECREMENT_EXPR)
13191 tree arg = TREE_VALUE (argtypes);
13192 tree ret = TREE_TYPE (TREE_TYPE (decl));
13193 if (methodp || TREE_CODE (arg) == REFERENCE_TYPE)
13194 arg = TREE_TYPE (arg);
13195 arg = TYPE_MAIN_VARIANT (arg);
13197 if (operator_code == PREINCREMENT_EXPR
13198 || operator_code == PREDECREMENT_EXPR)
13200 if (TREE_CODE (ret) != REFERENCE_TYPE
13201 || !same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (ret)), arg))
13202 warning (OPT_Weffc__, "prefix %qD should return %qT", decl,
13203 build_reference_type (arg));
13205 else
13207 if (!same_type_p (TYPE_MAIN_VARIANT (ret), arg))
13208 warning (OPT_Weffc__, "postfix %qD should return %qT", decl, arg);
13212 /* Effective C++ rule 23. */
13213 if (!DECL_ASSIGNMENT_OPERATOR_P (decl)
13214 && (operator_code == PLUS_EXPR
13215 || operator_code == MINUS_EXPR
13216 || operator_code == TRUNC_DIV_EXPR
13217 || operator_code == MULT_EXPR
13218 || operator_code == TRUNC_MOD_EXPR)
13219 && TREE_CODE (TREE_TYPE (TREE_TYPE (decl))) == REFERENCE_TYPE)
13220 warning (OPT_Weffc__, "%qD should return by value", decl);
13222 return true;
13225 /* Return a string giving the keyword associate with CODE. */
13227 static const char *
13228 tag_name (enum tag_types code)
13230 switch (code)
13232 case record_type:
13233 return "struct";
13234 case class_type:
13235 return "class";
13236 case union_type:
13237 return "union";
13238 case enum_type:
13239 return "enum";
13240 case typename_type:
13241 return "typename";
13242 default:
13243 gcc_unreachable ();
13247 /* Name lookup in an elaborated-type-specifier (after the keyword
13248 indicated by TAG_CODE) has found the TYPE_DECL DECL. If the
13249 elaborated-type-specifier is invalid, issue a diagnostic and return
13250 error_mark_node; otherwise, return the *_TYPE to which it referred.
13251 If ALLOW_TEMPLATE_P is true, TYPE may be a class template. */
13253 tree
13254 check_elaborated_type_specifier (enum tag_types tag_code,
13255 tree decl,
13256 bool allow_template_p)
13258 tree type;
13260 /* In the case of:
13262 struct S { struct S *p; };
13264 name lookup will find the TYPE_DECL for the implicit "S::S"
13265 typedef. Adjust for that here. */
13266 if (DECL_SELF_REFERENCE_P (decl))
13267 decl = TYPE_NAME (TREE_TYPE (decl));
13269 type = TREE_TYPE (decl);
13271 /* Check TEMPLATE_TYPE_PARM first because DECL_IMPLICIT_TYPEDEF_P
13272 is false for this case as well. */
13273 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
13275 error ("using template type parameter %qT after %qs",
13276 type, tag_name (tag_code));
13277 return error_mark_node;
13279 /* Accept template template parameters. */
13280 else if (allow_template_p
13281 && (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM
13282 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM))
13284 /* [dcl.type.elab]
13286 If the identifier resolves to a typedef-name or the
13287 simple-template-id resolves to an alias template
13288 specialization, the elaborated-type-specifier is ill-formed.
13290 In other words, the only legitimate declaration to use in the
13291 elaborated type specifier is the implicit typedef created when
13292 the type is declared. */
13293 else if (!DECL_IMPLICIT_TYPEDEF_P (decl)
13294 && !DECL_SELF_REFERENCE_P (decl)
13295 && tag_code != typename_type)
13297 if (alias_template_specialization_p (type))
13298 error ("using alias template specialization %qT after %qs",
13299 type, tag_name (tag_code));
13300 else
13301 error ("using typedef-name %qD after %qs", decl, tag_name (tag_code));
13302 inform (DECL_SOURCE_LOCATION (decl),
13303 "%qD has a previous declaration here", decl);
13304 return error_mark_node;
13306 else if (TREE_CODE (type) != RECORD_TYPE
13307 && TREE_CODE (type) != UNION_TYPE
13308 && tag_code != enum_type
13309 && tag_code != typename_type)
13311 error ("%qT referred to as %qs", type, tag_name (tag_code));
13312 inform (location_of (type), "%qT has a previous declaration here", type);
13313 return error_mark_node;
13315 else if (TREE_CODE (type) != ENUMERAL_TYPE
13316 && tag_code == enum_type)
13318 error ("%qT referred to as enum", type);
13319 inform (location_of (type), "%qT has a previous declaration here", type);
13320 return error_mark_node;
13322 else if (!allow_template_p
13323 && TREE_CODE (type) == RECORD_TYPE
13324 && CLASSTYPE_IS_TEMPLATE (type))
13326 /* If a class template appears as elaborated type specifier
13327 without a template header such as:
13329 template <class T> class C {};
13330 void f(class C); // No template header here
13332 then the required template argument is missing. */
13333 error ("template argument required for %<%s %T%>",
13334 tag_name (tag_code),
13335 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type)));
13336 return error_mark_node;
13339 return type;
13342 /* Lookup NAME in elaborate type specifier in scope according to
13343 SCOPE and issue diagnostics if necessary.
13344 Return *_TYPE node upon success, NULL_TREE when the NAME is not
13345 found, and ERROR_MARK_NODE for type error. */
13347 static tree
13348 lookup_and_check_tag (enum tag_types tag_code, tree name,
13349 tag_scope scope, bool template_header_p)
13351 tree t;
13352 tree decl;
13353 if (scope == ts_global)
13355 /* First try ordinary name lookup, ignoring hidden class name
13356 injected via friend declaration. */
13357 decl = lookup_name_prefer_type (name, 2);
13358 decl = strip_using_decl (decl);
13359 /* If that fails, the name will be placed in the smallest
13360 non-class, non-function-prototype scope according to 3.3.1/5.
13361 We may already have a hidden name declared as friend in this
13362 scope. So lookup again but not ignoring hidden names.
13363 If we find one, that name will be made visible rather than
13364 creating a new tag. */
13365 if (!decl)
13366 decl = lookup_type_scope (name, ts_within_enclosing_non_class);
13368 else
13369 decl = lookup_type_scope (name, scope);
13371 if (decl
13372 && (DECL_CLASS_TEMPLATE_P (decl)
13373 /* If scope is ts_current we're defining a class, so ignore a
13374 template template parameter. */
13375 || (scope != ts_current
13376 && DECL_TEMPLATE_TEMPLATE_PARM_P (decl))))
13377 decl = DECL_TEMPLATE_RESULT (decl);
13379 if (decl && TREE_CODE (decl) == TYPE_DECL)
13381 /* Look for invalid nested type:
13382 class C {
13383 class C {};
13384 }; */
13385 if (scope == ts_current && DECL_SELF_REFERENCE_P (decl))
13387 error ("%qD has the same name as the class in which it is "
13388 "declared",
13389 decl);
13390 return error_mark_node;
13393 /* Two cases we need to consider when deciding if a class
13394 template is allowed as an elaborated type specifier:
13395 1. It is a self reference to its own class.
13396 2. It comes with a template header.
13398 For example:
13400 template <class T> class C {
13401 class C *c1; // DECL_SELF_REFERENCE_P is true
13402 class D;
13404 template <class U> class C; // template_header_p is true
13405 template <class T> class C<T>::D {
13406 class C *c2; // DECL_SELF_REFERENCE_P is true
13407 }; */
13409 t = check_elaborated_type_specifier (tag_code,
13410 decl,
13411 template_header_p
13412 | DECL_SELF_REFERENCE_P (decl));
13413 if (template_header_p && t && CLASS_TYPE_P (t)
13414 && (!CLASSTYPE_TEMPLATE_INFO (t)
13415 || (!PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t)))))
13417 error ("%qT is not a template", t);
13418 inform (location_of (t), "previous declaration here");
13419 if (TYPE_CLASS_SCOPE_P (t)
13420 && CLASSTYPE_TEMPLATE_INFO (TYPE_CONTEXT (t)))
13421 inform (input_location,
13422 "perhaps you want to explicitly add %<%T::%>",
13423 TYPE_CONTEXT (t));
13424 t = error_mark_node;
13427 return t;
13429 else if (decl && TREE_CODE (decl) == TREE_LIST)
13431 error ("reference to %qD is ambiguous", name);
13432 print_candidates (decl);
13433 return error_mark_node;
13435 else
13436 return NULL_TREE;
13439 /* Get the struct, enum or union (TAG_CODE says which) with tag NAME.
13440 Define the tag as a forward-reference if it is not defined.
13442 If a declaration is given, process it here, and report an error if
13443 multiple declarations are not identical.
13445 SCOPE is TS_CURRENT when this is also a definition. Only look in
13446 the current frame for the name (since C++ allows new names in any
13447 scope.) It is TS_WITHIN_ENCLOSING_NON_CLASS if this is a friend
13448 declaration. Only look beginning from the current scope outward up
13449 till the nearest non-class scope. Otherwise it is TS_GLOBAL.
13451 TEMPLATE_HEADER_P is true when this declaration is preceded by
13452 a set of template parameters. */
13454 static tree
13455 xref_tag_1 (enum tag_types tag_code, tree name,
13456 tag_scope scope, bool template_header_p)
13458 enum tree_code code;
13459 tree context = NULL_TREE;
13461 gcc_assert (identifier_p (name));
13463 switch (tag_code)
13465 case record_type:
13466 case class_type:
13467 code = RECORD_TYPE;
13468 break;
13469 case union_type:
13470 code = UNION_TYPE;
13471 break;
13472 case enum_type:
13473 code = ENUMERAL_TYPE;
13474 break;
13475 default:
13476 gcc_unreachable ();
13479 /* In case of anonymous name, xref_tag is only called to
13480 make type node and push name. Name lookup is not required. */
13481 tree t = NULL_TREE;
13482 if (scope != ts_lambda && !anon_aggrname_p (name))
13483 t = lookup_and_check_tag (tag_code, name, scope, template_header_p);
13485 if (t == error_mark_node)
13486 return error_mark_node;
13488 if (scope != ts_current && t && current_class_type
13489 && template_class_depth (current_class_type)
13490 && template_header_p)
13492 if (TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM)
13493 return t;
13495 /* Since SCOPE is not TS_CURRENT, we are not looking at a
13496 definition of this tag. Since, in addition, we are currently
13497 processing a (member) template declaration of a template
13498 class, we must be very careful; consider:
13500 template <class X>
13501 struct S1
13503 template <class U>
13504 struct S2
13505 { template <class V>
13506 friend struct S1; };
13508 Here, the S2::S1 declaration should not be confused with the
13509 outer declaration. In particular, the inner version should
13510 have a template parameter of level 2, not level 1. This
13511 would be particularly important if the member declaration
13512 were instead:
13514 template <class V = U> friend struct S1;
13516 say, when we should tsubst into `U' when instantiating
13517 S2. On the other hand, when presented with:
13519 template <class T>
13520 struct S1 {
13521 template <class U>
13522 struct S2 {};
13523 template <class U>
13524 friend struct S2;
13527 we must find the inner binding eventually. We
13528 accomplish this by making sure that the new type we
13529 create to represent this declaration has the right
13530 TYPE_CONTEXT. */
13531 context = TYPE_CONTEXT (t);
13532 t = NULL_TREE;
13535 if (! t)
13537 /* If no such tag is yet defined, create a forward-reference node
13538 and record it as the "definition".
13539 When a real declaration of this type is found,
13540 the forward-reference will be altered into a real type. */
13541 if (code == ENUMERAL_TYPE)
13543 error ("use of enum %q#D without previous declaration", name);
13544 return error_mark_node;
13546 else
13548 t = make_class_type (code);
13549 TYPE_CONTEXT (t) = context;
13550 if (scope == ts_lambda)
13551 /* Mark it as a lambda type. */
13552 CLASSTYPE_LAMBDA_EXPR (t) = error_mark_node;
13553 t = pushtag (name, t, scope);
13556 else
13558 if (template_header_p && MAYBE_CLASS_TYPE_P (t))
13560 /* Check that we aren't trying to overload a class with different
13561 constraints. */
13562 tree constr = NULL_TREE;
13563 if (current_template_parms)
13565 tree reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
13566 constr = build_constraints (reqs, NULL_TREE);
13568 if (!redeclare_class_template (t, current_template_parms, constr))
13569 return error_mark_node;
13571 else if (!processing_template_decl
13572 && CLASS_TYPE_P (t)
13573 && CLASSTYPE_IS_TEMPLATE (t))
13575 error ("redeclaration of %qT as a non-template", t);
13576 inform (location_of (t), "previous declaration %qD", t);
13577 return error_mark_node;
13580 /* Make injected friend class visible. */
13581 if (scope != ts_within_enclosing_non_class && TYPE_HIDDEN_P (t))
13583 tree decl = TYPE_NAME (t);
13585 DECL_ANTICIPATED (decl) = false;
13586 DECL_FRIEND_P (decl) = false;
13588 if (TYPE_TEMPLATE_INFO (t))
13590 tree tmpl = TYPE_TI_TEMPLATE (t);
13591 DECL_ANTICIPATED (tmpl) = false;
13592 DECL_FRIEND_P (tmpl) = false;
13597 return t;
13600 /* Wrapper for xref_tag_1. */
13602 tree
13603 xref_tag (enum tag_types tag_code, tree name,
13604 tag_scope scope, bool template_header_p)
13606 tree ret;
13607 bool subtime;
13608 subtime = timevar_cond_start (TV_NAME_LOOKUP);
13609 ret = xref_tag_1 (tag_code, name, scope, template_header_p);
13610 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
13611 return ret;
13615 tree
13616 xref_tag_from_type (tree old, tree id, tag_scope scope)
13618 enum tag_types tag_kind;
13620 if (TREE_CODE (old) == RECORD_TYPE)
13621 tag_kind = (CLASSTYPE_DECLARED_CLASS (old) ? class_type : record_type);
13622 else
13623 tag_kind = union_type;
13625 if (id == NULL_TREE)
13626 id = TYPE_IDENTIFIER (old);
13628 return xref_tag (tag_kind, id, scope, false);
13631 /* Create the binfo hierarchy for REF with (possibly NULL) base list
13632 BASE_LIST. For each element on BASE_LIST the TREE_PURPOSE is an
13633 access_* node, and the TREE_VALUE is the type of the base-class.
13634 Non-NULL TREE_TYPE indicates virtual inheritance. */
13636 void
13637 xref_basetypes (tree ref, tree base_list)
13639 tree *basep;
13640 tree binfo, base_binfo;
13641 unsigned max_vbases = 0; /* Maximum direct & indirect virtual bases. */
13642 unsigned max_bases = 0; /* Maximum direct bases. */
13643 unsigned max_dvbases = 0; /* Maximum direct virtual bases. */
13644 int i;
13645 tree default_access;
13646 tree igo_prev; /* Track Inheritance Graph Order. */
13648 if (ref == error_mark_node)
13649 return;
13651 /* The base of a derived class is private by default, all others are
13652 public. */
13653 default_access = (TREE_CODE (ref) == RECORD_TYPE
13654 && CLASSTYPE_DECLARED_CLASS (ref)
13655 ? access_private_node : access_public_node);
13657 /* First, make sure that any templates in base-classes are
13658 instantiated. This ensures that if we call ourselves recursively
13659 we do not get confused about which classes are marked and which
13660 are not. */
13661 basep = &base_list;
13662 while (*basep)
13664 tree basetype = TREE_VALUE (*basep);
13666 /* The dependent_type_p call below should really be dependent_scope_p
13667 so that we give a hard error about using an incomplete type as a
13668 base, but we allow it with a pedwarn for backward
13669 compatibility. */
13670 if (processing_template_decl
13671 && CLASS_TYPE_P (basetype) && TYPE_BEING_DEFINED (basetype))
13672 cxx_incomplete_type_diagnostic (NULL_TREE, basetype, DK_PEDWARN);
13673 if (!dependent_type_p (basetype)
13674 && !complete_type_or_else (basetype, NULL))
13675 /* An incomplete type. Remove it from the list. */
13676 *basep = TREE_CHAIN (*basep);
13677 else
13679 max_bases++;
13680 if (TREE_TYPE (*basep))
13681 max_dvbases++;
13682 if (CLASS_TYPE_P (basetype))
13683 max_vbases += vec_safe_length (CLASSTYPE_VBASECLASSES (basetype));
13684 basep = &TREE_CHAIN (*basep);
13687 max_vbases += max_dvbases;
13689 TYPE_MARKED_P (ref) = 1;
13691 /* The binfo slot should be empty, unless this is an (ill-formed)
13692 redefinition. */
13693 gcc_assert (!TYPE_BINFO (ref) || TYPE_SIZE (ref));
13695 gcc_assert (TYPE_MAIN_VARIANT (ref) == ref);
13697 binfo = make_tree_binfo (max_bases);
13699 TYPE_BINFO (ref) = binfo;
13700 BINFO_OFFSET (binfo) = size_zero_node;
13701 BINFO_TYPE (binfo) = ref;
13703 /* Apply base-class info set up to the variants of this type. */
13704 fixup_type_variants (ref);
13706 if (max_bases)
13708 vec_alloc (BINFO_BASE_ACCESSES (binfo), max_bases);
13709 /* A C++98 POD cannot have base classes. */
13710 CLASSTYPE_NON_LAYOUT_POD_P (ref) = true;
13712 if (TREE_CODE (ref) == UNION_TYPE)
13713 error ("derived union %qT invalid", ref);
13716 if (max_bases > 1)
13717 warning (OPT_Wmultiple_inheritance,
13718 "%qT defined with multiple direct bases", ref);
13720 if (max_vbases)
13722 /* An aggregate can't have virtual base classes. */
13723 CLASSTYPE_NON_AGGREGATE (ref) = true;
13725 vec_alloc (CLASSTYPE_VBASECLASSES (ref), max_vbases);
13727 if (max_dvbases)
13728 warning (OPT_Wvirtual_inheritance,
13729 "%qT defined with direct virtual base", ref);
13732 for (igo_prev = binfo; base_list; base_list = TREE_CHAIN (base_list))
13734 tree access = TREE_PURPOSE (base_list);
13735 int via_virtual = TREE_TYPE (base_list) != NULL_TREE;
13736 tree basetype = TREE_VALUE (base_list);
13738 if (access == access_default_node)
13739 access = default_access;
13741 /* Before C++17, an aggregate cannot have base classes. In C++17, an
13742 aggregate can't have virtual, private, or protected base classes. */
13743 if (cxx_dialect < cxx17
13744 || access != access_public_node
13745 || via_virtual)
13746 CLASSTYPE_NON_AGGREGATE (ref) = true;
13748 if (PACK_EXPANSION_P (basetype))
13749 basetype = PACK_EXPANSION_PATTERN (basetype);
13750 if (TREE_CODE (basetype) == TYPE_DECL)
13751 basetype = TREE_TYPE (basetype);
13752 if (!MAYBE_CLASS_TYPE_P (basetype) || TREE_CODE (basetype) == UNION_TYPE)
13754 error ("base type %qT fails to be a struct or class type",
13755 basetype);
13756 goto dropped_base;
13759 base_binfo = NULL_TREE;
13760 if (CLASS_TYPE_P (basetype) && !dependent_scope_p (basetype))
13762 base_binfo = TYPE_BINFO (basetype);
13763 /* The original basetype could have been a typedef'd type. */
13764 basetype = BINFO_TYPE (base_binfo);
13766 /* Inherit flags from the base. */
13767 TYPE_HAS_NEW_OPERATOR (ref)
13768 |= TYPE_HAS_NEW_OPERATOR (basetype);
13769 TYPE_HAS_ARRAY_NEW_OPERATOR (ref)
13770 |= TYPE_HAS_ARRAY_NEW_OPERATOR (basetype);
13771 TYPE_GETS_DELETE (ref) |= TYPE_GETS_DELETE (basetype);
13772 TYPE_HAS_CONVERSION (ref) |= TYPE_HAS_CONVERSION (basetype);
13773 CLASSTYPE_DIAMOND_SHAPED_P (ref)
13774 |= CLASSTYPE_DIAMOND_SHAPED_P (basetype);
13775 CLASSTYPE_REPEATED_BASE_P (ref)
13776 |= CLASSTYPE_REPEATED_BASE_P (basetype);
13779 /* We must do this test after we've seen through a typedef
13780 type. */
13781 if (TYPE_MARKED_P (basetype))
13783 if (basetype == ref)
13784 error ("recursive type %qT undefined", basetype);
13785 else
13786 error ("duplicate base type %qT invalid", basetype);
13787 goto dropped_base;
13790 if (PACK_EXPANSION_P (TREE_VALUE (base_list)))
13791 /* Regenerate the pack expansion for the bases. */
13792 basetype = make_pack_expansion (basetype);
13794 TYPE_MARKED_P (basetype) = 1;
13796 base_binfo = copy_binfo (base_binfo, basetype, ref,
13797 &igo_prev, via_virtual);
13798 if (!BINFO_INHERITANCE_CHAIN (base_binfo))
13799 BINFO_INHERITANCE_CHAIN (base_binfo) = binfo;
13801 BINFO_BASE_APPEND (binfo, base_binfo);
13802 BINFO_BASE_ACCESS_APPEND (binfo, access);
13803 continue;
13805 dropped_base:
13806 /* Update max_vbases to reflect the reality that we are dropping
13807 this base: if it reaches zero we want to undo the vec_alloc
13808 above to avoid inconsistencies during error-recovery: eg, in
13809 build_special_member_call, CLASSTYPE_VBASECLASSES non null
13810 and vtt null (c++/27952). */
13811 if (via_virtual)
13812 max_vbases--;
13813 if (CLASS_TYPE_P (basetype))
13814 max_vbases
13815 -= vec_safe_length (CLASSTYPE_VBASECLASSES (basetype));
13818 if (CLASSTYPE_VBASECLASSES (ref)
13819 && max_vbases == 0)
13820 vec_free (CLASSTYPE_VBASECLASSES (ref));
13822 if (vec_safe_length (CLASSTYPE_VBASECLASSES (ref)) < max_vbases)
13823 /* If we didn't get max_vbases vbases, we must have shared at
13824 least one of them, and are therefore diamond shaped. */
13825 CLASSTYPE_DIAMOND_SHAPED_P (ref) = 1;
13827 /* Unmark all the types. */
13828 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
13829 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
13830 TYPE_MARKED_P (ref) = 0;
13832 /* Now see if we have a repeated base type. */
13833 if (!CLASSTYPE_REPEATED_BASE_P (ref))
13835 for (base_binfo = binfo; base_binfo;
13836 base_binfo = TREE_CHAIN (base_binfo))
13838 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
13840 CLASSTYPE_REPEATED_BASE_P (ref) = 1;
13841 break;
13843 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 1;
13845 for (base_binfo = binfo; base_binfo;
13846 base_binfo = TREE_CHAIN (base_binfo))
13847 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
13848 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
13849 else
13850 break;
13855 /* Copies the enum-related properties from type SRC to type DST.
13856 Used with the underlying type of an enum and the enum itself. */
13857 static void
13858 copy_type_enum (tree dst, tree src)
13860 tree t;
13861 for (t = dst; t; t = TYPE_NEXT_VARIANT (t))
13863 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (src);
13864 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (src);
13865 TYPE_SIZE (t) = TYPE_SIZE (src);
13866 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (src);
13867 SET_TYPE_MODE (dst, TYPE_MODE (src));
13868 TYPE_PRECISION (t) = TYPE_PRECISION (src);
13869 unsigned valign = TYPE_ALIGN (src);
13870 if (TYPE_USER_ALIGN (t))
13871 valign = MAX (valign, TYPE_ALIGN (t));
13872 else
13873 TYPE_USER_ALIGN (t) = TYPE_USER_ALIGN (src);
13874 SET_TYPE_ALIGN (t, valign);
13875 TYPE_UNSIGNED (t) = TYPE_UNSIGNED (src);
13879 /* Begin compiling the definition of an enumeration type.
13880 NAME is its name,
13882 if ENUMTYPE is not NULL_TREE then the type has alredy been found.
13884 UNDERLYING_TYPE is the type that will be used as the storage for
13885 the enumeration type. This should be NULL_TREE if no storage type
13886 was specified.
13888 ATTRIBUTES are any attributes specified after the enum-key.
13890 SCOPED_ENUM_P is true if this is a scoped enumeration type.
13892 if IS_NEW is not NULL, gets TRUE iff a new type is created.
13894 Returns the type object, as yet incomplete.
13895 Also records info about it so that build_enumerator
13896 may be used to declare the individual values as they are read. */
13898 tree
13899 start_enum (tree name, tree enumtype, tree underlying_type,
13900 tree attributes, bool scoped_enum_p, bool *is_new)
13902 tree prevtype = NULL_TREE;
13903 gcc_assert (identifier_p (name));
13905 if (is_new)
13906 *is_new = false;
13907 /* [C++0x dcl.enum]p5:
13909 If not explicitly specified, the underlying type of a scoped
13910 enumeration type is int. */
13911 if (!underlying_type && scoped_enum_p)
13912 underlying_type = integer_type_node;
13914 if (underlying_type)
13915 underlying_type = cv_unqualified (underlying_type);
13917 /* If this is the real definition for a previous forward reference,
13918 fill in the contents in the same object that used to be the
13919 forward reference. */
13920 if (!enumtype)
13921 enumtype = lookup_and_check_tag (enum_type, name,
13922 /*tag_scope=*/ts_current,
13923 /*template_header_p=*/false);
13925 /* In case of a template_decl, the only check that should be deferred
13926 to instantiation time is the comparison of underlying types. */
13927 if (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE)
13929 if (scoped_enum_p != SCOPED_ENUM_P (enumtype))
13931 error_at (input_location, "scoped/unscoped mismatch "
13932 "in enum %q#T", enumtype);
13933 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
13934 "previous definition here");
13935 enumtype = error_mark_node;
13937 else if (ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) != !! underlying_type)
13939 error_at (input_location, "underlying type mismatch "
13940 "in enum %q#T", enumtype);
13941 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
13942 "previous definition here");
13943 enumtype = error_mark_node;
13945 else if (underlying_type && ENUM_UNDERLYING_TYPE (enumtype)
13946 && !dependent_type_p (underlying_type)
13947 && !dependent_type_p (ENUM_UNDERLYING_TYPE (enumtype))
13948 && !same_type_p (underlying_type,
13949 ENUM_UNDERLYING_TYPE (enumtype)))
13951 error_at (input_location, "different underlying type "
13952 "in enum %q#T", enumtype);
13953 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
13954 "previous definition here");
13955 underlying_type = NULL_TREE;
13959 if (!enumtype || TREE_CODE (enumtype) != ENUMERAL_TYPE
13960 || processing_template_decl)
13962 /* In case of error, make a dummy enum to allow parsing to
13963 continue. */
13964 if (enumtype == error_mark_node)
13966 name = make_anon_name ();
13967 enumtype = NULL_TREE;
13970 /* enumtype may be an ENUMERAL_TYPE if this is a redefinition
13971 of an opaque enum, or an opaque enum of an already defined
13972 enumeration (C++0x only).
13973 In any other case, it'll be NULL_TREE. */
13974 if (!enumtype)
13976 if (is_new)
13977 *is_new = true;
13979 prevtype = enumtype;
13981 /* Do not push the decl more than once, unless we need to
13982 compare underlying types at instantiation time */
13983 if (!enumtype
13984 || TREE_CODE (enumtype) != ENUMERAL_TYPE
13985 || (underlying_type
13986 && dependent_type_p (underlying_type))
13987 || (ENUM_UNDERLYING_TYPE (enumtype)
13988 && dependent_type_p (ENUM_UNDERLYING_TYPE (enumtype))))
13990 enumtype = cxx_make_type (ENUMERAL_TYPE);
13991 enumtype = pushtag (name, enumtype, /*tag_scope=*/ts_current);
13993 /* std::byte aliases anything. */
13994 if (enumtype != error_mark_node
13995 && TYPE_CONTEXT (enumtype) == std_node
13996 && !strcmp ("byte", TYPE_NAME_STRING (enumtype)))
13997 TYPE_ALIAS_SET (enumtype) = 0;
13999 else
14000 enumtype = xref_tag (enum_type, name, /*tag_scope=*/ts_current,
14001 false);
14003 if (enumtype == error_mark_node)
14004 return error_mark_node;
14006 /* The enum is considered opaque until the opening '{' of the
14007 enumerator list. */
14008 SET_OPAQUE_ENUM_P (enumtype, true);
14009 ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) = !! underlying_type;
14012 SET_SCOPED_ENUM_P (enumtype, scoped_enum_p);
14014 cplus_decl_attributes (&enumtype, attributes, (int)ATTR_FLAG_TYPE_IN_PLACE);
14016 if (underlying_type)
14018 if (ENUM_UNDERLYING_TYPE (enumtype))
14019 /* We already checked that it matches, don't change it to a different
14020 typedef variant. */;
14021 else if (CP_INTEGRAL_TYPE_P (underlying_type))
14023 copy_type_enum (enumtype, underlying_type);
14024 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
14026 else if (dependent_type_p (underlying_type))
14027 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
14028 else
14029 error ("underlying type %qT of %qT must be an integral type",
14030 underlying_type, enumtype);
14033 /* If into a template class, the returned enum is always the first
14034 declaration (opaque or not) seen. This way all the references to
14035 this type will be to the same declaration. The following ones are used
14036 only to check for definition errors. */
14037 if (prevtype && processing_template_decl)
14038 return prevtype;
14039 else
14040 return enumtype;
14043 /* After processing and defining all the values of an enumeration type,
14044 install their decls in the enumeration type.
14045 ENUMTYPE is the type object. */
14047 void
14048 finish_enum_value_list (tree enumtype)
14050 tree values;
14051 tree underlying_type;
14052 tree decl;
14053 tree value;
14054 tree minnode, maxnode;
14055 tree t;
14057 bool fixed_underlying_type_p
14058 = ENUM_UNDERLYING_TYPE (enumtype) != NULL_TREE;
14060 /* We built up the VALUES in reverse order. */
14061 TYPE_VALUES (enumtype) = nreverse (TYPE_VALUES (enumtype));
14063 /* For an enum defined in a template, just set the type of the values;
14064 all further processing is postponed until the template is
14065 instantiated. We need to set the type so that tsubst of a CONST_DECL
14066 works. */
14067 if (processing_template_decl)
14069 for (values = TYPE_VALUES (enumtype);
14070 values;
14071 values = TREE_CHAIN (values))
14072 TREE_TYPE (TREE_VALUE (values)) = enumtype;
14073 return;
14076 /* Determine the minimum and maximum values of the enumerators. */
14077 if (TYPE_VALUES (enumtype))
14079 minnode = maxnode = NULL_TREE;
14081 for (values = TYPE_VALUES (enumtype);
14082 values;
14083 values = TREE_CHAIN (values))
14085 decl = TREE_VALUE (values);
14087 /* [dcl.enum]: Following the closing brace of an enum-specifier,
14088 each enumerator has the type of its enumeration. Prior to the
14089 closing brace, the type of each enumerator is the type of its
14090 initializing value. */
14091 TREE_TYPE (decl) = enumtype;
14093 /* Update the minimum and maximum values, if appropriate. */
14094 value = DECL_INITIAL (decl);
14095 if (value == error_mark_node)
14096 value = integer_zero_node;
14097 /* Figure out what the minimum and maximum values of the
14098 enumerators are. */
14099 if (!minnode)
14100 minnode = maxnode = value;
14101 else if (tree_int_cst_lt (maxnode, value))
14102 maxnode = value;
14103 else if (tree_int_cst_lt (value, minnode))
14104 minnode = value;
14107 else
14108 /* [dcl.enum]
14110 If the enumerator-list is empty, the underlying type is as if
14111 the enumeration had a single enumerator with value 0. */
14112 minnode = maxnode = integer_zero_node;
14114 if (!fixed_underlying_type_p)
14116 /* Compute the number of bits require to represent all values of the
14117 enumeration. We must do this before the type of MINNODE and
14118 MAXNODE are transformed, since tree_int_cst_min_precision relies
14119 on the TREE_TYPE of the value it is passed. */
14120 signop sgn = tree_int_cst_sgn (minnode) >= 0 ? UNSIGNED : SIGNED;
14121 int lowprec = tree_int_cst_min_precision (minnode, sgn);
14122 int highprec = tree_int_cst_min_precision (maxnode, sgn);
14123 int precision = MAX (lowprec, highprec);
14124 unsigned int itk;
14125 bool use_short_enum;
14127 /* Determine the underlying type of the enumeration.
14129 [dcl.enum]
14131 The underlying type of an enumeration is an integral type that
14132 can represent all the enumerator values defined in the
14133 enumeration. It is implementation-defined which integral type is
14134 used as the underlying type for an enumeration except that the
14135 underlying type shall not be larger than int unless the value of
14136 an enumerator cannot fit in an int or unsigned int.
14138 We use "int" or an "unsigned int" as the underlying type, even if
14139 a smaller integral type would work, unless the user has
14140 explicitly requested that we use the smallest possible type. The
14141 user can request that for all enumerations with a command line
14142 flag, or for just one enumeration with an attribute. */
14144 use_short_enum = flag_short_enums
14145 || lookup_attribute ("packed", TYPE_ATTRIBUTES (enumtype));
14147 /* If the precision of the type was specified with an attribute and it
14148 was too small, give an error. Otherwise, use it. */
14149 if (TYPE_PRECISION (enumtype))
14151 if (precision > TYPE_PRECISION (enumtype))
14152 error ("specified mode too small for enumeral values");
14153 else
14155 use_short_enum = true;
14156 precision = TYPE_PRECISION (enumtype);
14160 for (itk = (use_short_enum ? itk_char : itk_int);
14161 itk != itk_none;
14162 itk++)
14164 underlying_type = integer_types[itk];
14165 if (underlying_type != NULL_TREE
14166 && TYPE_PRECISION (underlying_type) >= precision
14167 && TYPE_SIGN (underlying_type) == sgn)
14168 break;
14170 if (itk == itk_none)
14172 /* DR 377
14174 IF no integral type can represent all the enumerator values, the
14175 enumeration is ill-formed. */
14176 error ("no integral type can represent all of the enumerator values "
14177 "for %qT", enumtype);
14178 precision = TYPE_PRECISION (long_long_integer_type_node);
14179 underlying_type = integer_types[itk_unsigned_long_long];
14182 /* [dcl.enum]
14184 The value of sizeof() applied to an enumeration type, an object
14185 of an enumeration type, or an enumerator, is the value of sizeof()
14186 applied to the underlying type. */
14187 copy_type_enum (enumtype, underlying_type);
14189 /* Compute the minimum and maximum values for the type.
14191 [dcl.enum]
14193 For an enumeration where emin is the smallest enumerator and emax
14194 is the largest, the values of the enumeration are the values of the
14195 underlying type in the range bmin to bmax, where bmin and bmax are,
14196 respectively, the smallest and largest values of the smallest bit-
14197 field that can store emin and emax. */
14199 /* The middle-end currently assumes that types with TYPE_PRECISION
14200 narrower than their underlying type are suitably zero or sign
14201 extended to fill their mode. Similarly, it assumes that the front
14202 end assures that a value of a particular type must be within
14203 TYPE_MIN_VALUE and TYPE_MAX_VALUE.
14205 We used to set these fields based on bmin and bmax, but that led
14206 to invalid assumptions like optimizing away bounds checking. So
14207 now we just set the TYPE_PRECISION, TYPE_MIN_VALUE, and
14208 TYPE_MAX_VALUE to the values for the mode above and only restrict
14209 the ENUM_UNDERLYING_TYPE for the benefit of diagnostics. */
14210 ENUM_UNDERLYING_TYPE (enumtype)
14211 = build_distinct_type_copy (underlying_type);
14212 TYPE_PRECISION (ENUM_UNDERLYING_TYPE (enumtype)) = precision;
14213 set_min_and_max_values_for_integral_type
14214 (ENUM_UNDERLYING_TYPE (enumtype), precision, sgn);
14216 /* If -fstrict-enums, still constrain TYPE_MIN/MAX_VALUE. */
14217 if (flag_strict_enums)
14218 set_min_and_max_values_for_integral_type (enumtype, precision, sgn);
14220 else
14221 underlying_type = ENUM_UNDERLYING_TYPE (enumtype);
14223 /* Convert each of the enumerators to the type of the underlying
14224 type of the enumeration. */
14225 for (values = TYPE_VALUES (enumtype); values; values = TREE_CHAIN (values))
14227 location_t saved_location;
14229 decl = TREE_VALUE (values);
14230 saved_location = input_location;
14231 input_location = DECL_SOURCE_LOCATION (decl);
14232 if (fixed_underlying_type_p)
14233 /* If the enumeration type has a fixed underlying type, we
14234 already checked all of the enumerator values. */
14235 value = DECL_INITIAL (decl);
14236 else
14237 value = perform_implicit_conversion (underlying_type,
14238 DECL_INITIAL (decl),
14239 tf_warning_or_error);
14240 input_location = saved_location;
14242 /* Do not clobber shared ints. */
14243 if (value != error_mark_node)
14245 value = copy_node (value);
14247 TREE_TYPE (value) = enumtype;
14249 DECL_INITIAL (decl) = value;
14252 /* Fix up all variant types of this enum type. */
14253 for (t = TYPE_MAIN_VARIANT (enumtype); t; t = TYPE_NEXT_VARIANT (t))
14254 TYPE_VALUES (t) = TYPE_VALUES (enumtype);
14256 if (at_class_scope_p ()
14257 && COMPLETE_TYPE_P (current_class_type)
14258 && UNSCOPED_ENUM_P (enumtype))
14260 insert_late_enum_def_bindings (current_class_type, enumtype);
14261 /* TYPE_FIELDS needs fixup. */
14262 fixup_type_variants (current_class_type);
14265 /* Finish debugging output for this type. */
14266 rest_of_type_compilation (enumtype, namespace_bindings_p ());
14268 /* Each enumerator now has the type of its enumeration. Clear the cache
14269 so that this change in types doesn't confuse us later on. */
14270 clear_cv_and_fold_caches ();
14273 /* Finishes the enum type. This is called only the first time an
14274 enumeration is seen, be it opaque or odinary.
14275 ENUMTYPE is the type object. */
14277 void
14278 finish_enum (tree enumtype)
14280 if (processing_template_decl)
14282 if (at_function_scope_p ())
14283 add_stmt (build_min (TAG_DEFN, enumtype));
14284 return;
14287 /* If this is a forward declaration, there should not be any variants,
14288 though we can get a variant in the middle of an enum-specifier with
14289 wacky code like 'enum E { e = sizeof(const E*) };' */
14290 gcc_assert (enumtype == TYPE_MAIN_VARIANT (enumtype)
14291 && (TYPE_VALUES (enumtype)
14292 || !TYPE_NEXT_VARIANT (enumtype)));
14295 /* Build and install a CONST_DECL for an enumeration constant of the
14296 enumeration type ENUMTYPE whose NAME and VALUE (if any) are provided.
14297 Apply ATTRIBUTES if available. LOC is the location of NAME.
14298 Assignment of sequential values by default is handled here. */
14300 void
14301 build_enumerator (tree name, tree value, tree enumtype, tree attributes,
14302 location_t loc)
14304 tree decl;
14305 tree context;
14306 tree type;
14308 /* scalar_constant_value will pull out this expression, so make sure
14309 it's folded as appropriate. */
14310 if (processing_template_decl)
14311 value = fold_non_dependent_expr (value);
14313 /* If the VALUE was erroneous, pretend it wasn't there; that will
14314 result in the enum being assigned the next value in sequence. */
14315 if (value == error_mark_node)
14316 value = NULL_TREE;
14318 /* Remove no-op casts from the value. */
14319 if (value)
14320 STRIP_TYPE_NOPS (value);
14322 if (! processing_template_decl)
14324 /* Validate and default VALUE. */
14325 if (value != NULL_TREE)
14327 if (!ENUM_UNDERLYING_TYPE (enumtype))
14329 tree tmp_value = build_expr_type_conversion (WANT_INT | WANT_ENUM,
14330 value, true);
14331 if (tmp_value)
14332 value = tmp_value;
14334 else if (! INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P
14335 (TREE_TYPE (value)))
14336 value = perform_implicit_conversion_flags
14337 (ENUM_UNDERLYING_TYPE (enumtype), value, tf_warning_or_error,
14338 LOOKUP_IMPLICIT | LOOKUP_NO_NARROWING);
14340 if (value == error_mark_node)
14341 value = NULL_TREE;
14343 if (value != NULL_TREE)
14345 if (! INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P
14346 (TREE_TYPE (value)))
14348 error ("enumerator value for %qD must have integral or "
14349 "unscoped enumeration type", name);
14350 value = NULL_TREE;
14352 else
14354 value = cxx_constant_value (value);
14356 if (TREE_CODE (value) != INTEGER_CST)
14358 error ("enumerator value for %qD is not an integer "
14359 "constant", name);
14360 value = NULL_TREE;
14366 /* Default based on previous value. */
14367 if (value == NULL_TREE)
14369 if (TYPE_VALUES (enumtype))
14371 tree prev_value;
14372 bool overflowed;
14374 /* C++03 7.2/4: If no initializer is specified for the first
14375 enumerator, the type is an unspecified integral
14376 type. Otherwise the type is the same as the type of the
14377 initializing value of the preceding enumerator unless the
14378 incremented value is not representable in that type, in
14379 which case the type is an unspecified integral type
14380 sufficient to contain the incremented value. */
14381 prev_value = DECL_INITIAL (TREE_VALUE (TYPE_VALUES (enumtype)));
14382 if (error_operand_p (prev_value))
14383 value = error_mark_node;
14384 else
14386 tree type = TREE_TYPE (prev_value);
14387 signop sgn = TYPE_SIGN (type);
14388 widest_int wi = wi::add (wi::to_widest (prev_value), 1, sgn,
14389 &overflowed);
14390 if (!overflowed)
14392 bool pos = !wi::neg_p (wi, sgn);
14393 if (!wi::fits_to_tree_p (wi, type))
14395 unsigned int itk;
14396 for (itk = itk_int; itk != itk_none; itk++)
14398 type = integer_types[itk];
14399 if (type != NULL_TREE
14400 && (pos || !TYPE_UNSIGNED (type))
14401 && wi::fits_to_tree_p (wi, type))
14402 break;
14404 if (type && cxx_dialect < cxx11
14405 && itk > itk_unsigned_long)
14406 pedwarn (input_location, OPT_Wlong_long,
14407 pos ? G_("\
14408 incremented enumerator value is too large for %<unsigned long%>") : G_("\
14409 incremented enumerator value is too large for %<long%>"));
14411 if (type == NULL_TREE)
14412 overflowed = true;
14413 else
14414 value = wide_int_to_tree (type, wi);
14417 if (overflowed)
14419 error ("overflow in enumeration values at %qD", name);
14420 value = error_mark_node;
14424 else
14425 value = integer_zero_node;
14428 /* Remove no-op casts from the value. */
14429 STRIP_TYPE_NOPS (value);
14431 /* If the underlying type of the enum is fixed, check whether
14432 the enumerator values fits in the underlying type. If it
14433 does not fit, the program is ill-formed [C++0x dcl.enum]. */
14434 if (ENUM_UNDERLYING_TYPE (enumtype)
14435 && value
14436 && TREE_CODE (value) == INTEGER_CST)
14438 if (!int_fits_type_p (value, ENUM_UNDERLYING_TYPE (enumtype)))
14439 error ("enumerator value %qE is outside the range of underlying "
14440 "type %qT", value, ENUM_UNDERLYING_TYPE (enumtype));
14442 /* Convert the value to the appropriate type. */
14443 value = fold_convert (ENUM_UNDERLYING_TYPE (enumtype), value);
14447 /* C++ associates enums with global, function, or class declarations. */
14448 context = current_scope ();
14450 /* Build the actual enumeration constant. Note that the enumeration
14451 constants have the underlying type of the enum (if it is fixed)
14452 or the type of their initializer (if the underlying type of the
14453 enum is not fixed):
14455 [ C++0x dcl.enum ]
14457 If the underlying type is fixed, the type of each enumerator
14458 prior to the closing brace is the underlying type; if the
14459 initializing value of an enumerator cannot be represented by
14460 the underlying type, the program is ill-formed. If the
14461 underlying type is not fixed, the type of each enumerator is
14462 the type of its initializing value.
14464 If the underlying type is not fixed, it will be computed by
14465 finish_enum and we will reset the type of this enumerator. Of
14466 course, if we're processing a template, there may be no value. */
14467 type = value ? TREE_TYPE (value) : NULL_TREE;
14469 decl = build_decl (loc, CONST_DECL, name, type);
14471 DECL_CONTEXT (decl) = enumtype;
14472 TREE_CONSTANT (decl) = 1;
14473 TREE_READONLY (decl) = 1;
14474 DECL_INITIAL (decl) = value;
14476 if (attributes)
14477 cplus_decl_attributes (&decl, attributes, 0);
14479 if (context && context == current_class_type && !SCOPED_ENUM_P (enumtype))
14481 /* In something like `struct S { enum E { i = 7 }; };' we put `i'
14482 on the TYPE_FIELDS list for `S'. (That's so that you can say
14483 things like `S::i' later.) */
14485 /* The enumerator may be getting declared outside of its enclosing
14486 class, like so:
14488 class S { public: enum E : int; }; enum S::E : int { i = 7; };
14490 For which case we need to make sure that the access of `S::i'
14491 matches the access of `S::E'. */
14492 tree saved_cas = current_access_specifier;
14493 if (TREE_PRIVATE (TYPE_NAME (enumtype)))
14494 current_access_specifier = access_private_node;
14495 else if (TREE_PROTECTED (TYPE_NAME (enumtype)))
14496 current_access_specifier = access_protected_node;
14497 else
14498 current_access_specifier = access_public_node;
14500 finish_member_declaration (decl);
14502 current_access_specifier = saved_cas;
14504 else
14505 pushdecl (decl);
14507 /* Add this enumeration constant to the list for this type. */
14508 TYPE_VALUES (enumtype) = tree_cons (name, decl, TYPE_VALUES (enumtype));
14511 /* Look for an enumerator with the given NAME within the enumeration
14512 type ENUMTYPE. This routine is used primarily for qualified name
14513 lookup into an enumerator in C++0x, e.g.,
14515 enum class Color { Red, Green, Blue };
14517 Color color = Color::Red;
14519 Returns the value corresponding to the enumerator, or
14520 NULL_TREE if no such enumerator was found. */
14521 tree
14522 lookup_enumerator (tree enumtype, tree name)
14524 tree e;
14525 gcc_assert (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE);
14527 e = purpose_member (name, TYPE_VALUES (enumtype));
14528 return e? TREE_VALUE (e) : NULL_TREE;
14532 /* We're defining DECL. Make sure that its type is OK. */
14534 static void
14535 check_function_type (tree decl, tree current_function_parms)
14537 tree fntype = TREE_TYPE (decl);
14538 tree return_type = complete_type (TREE_TYPE (fntype));
14540 /* In a function definition, arg types must be complete. */
14541 require_complete_types_for_parms (current_function_parms);
14543 if (dependent_type_p (return_type)
14544 || type_uses_auto (return_type))
14545 return;
14546 if (!COMPLETE_OR_VOID_TYPE_P (return_type))
14548 tree args = TYPE_ARG_TYPES (fntype);
14550 error ("return type %q#T is incomplete", return_type);
14552 /* Make it return void instead. */
14553 if (TREE_CODE (fntype) == METHOD_TYPE)
14554 fntype = build_method_type_directly (TREE_TYPE (TREE_VALUE (args)),
14555 void_type_node,
14556 TREE_CHAIN (args));
14557 else
14558 fntype = build_function_type (void_type_node, args);
14559 fntype
14560 = build_exception_variant (fntype,
14561 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (decl)));
14562 fntype = (cp_build_type_attribute_variant
14563 (fntype, TYPE_ATTRIBUTES (TREE_TYPE (decl))));
14564 TREE_TYPE (decl) = fntype;
14566 else
14568 abstract_virtuals_error (decl, TREE_TYPE (fntype));
14569 maybe_warn_parm_abi (TREE_TYPE (fntype),
14570 DECL_SOURCE_LOCATION (decl));
14574 /* True iff FN is an implicitly-defined default constructor. */
14576 static bool
14577 implicit_default_ctor_p (tree fn)
14579 return (DECL_CONSTRUCTOR_P (fn)
14580 && !user_provided_p (fn)
14581 && sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (fn)));
14584 /* Clobber the contents of *this to let the back end know that the object
14585 storage is dead when we enter the constructor or leave the destructor. */
14587 static tree
14588 build_clobber_this ()
14590 /* Clobbering an empty base is pointless, and harmful if its one byte
14591 TYPE_SIZE overlays real data. */
14592 if (is_empty_class (current_class_type))
14593 return void_node;
14595 /* If we have virtual bases, clobber the whole object, but only if we're in
14596 charge. If we don't have virtual bases, clobber the as-base type so we
14597 don't mess with tail padding. */
14598 bool vbases = CLASSTYPE_VBASECLASSES (current_class_type);
14600 tree ctype = current_class_type;
14601 if (!vbases)
14602 ctype = CLASSTYPE_AS_BASE (ctype);
14604 tree clobber = build_constructor (ctype, NULL);
14605 TREE_THIS_VOLATILE (clobber) = true;
14607 tree thisref = current_class_ref;
14608 if (ctype != current_class_type)
14610 thisref = build_nop (build_reference_type (ctype), current_class_ptr);
14611 thisref = convert_from_reference (thisref);
14614 tree exprstmt = build2 (MODIFY_EXPR, void_type_node, thisref, clobber);
14615 if (vbases)
14616 exprstmt = build_if_in_charge (exprstmt);
14618 return exprstmt;
14621 /* Create the FUNCTION_DECL for a function definition.
14622 DECLSPECS and DECLARATOR are the parts of the declaration;
14623 they describe the function's name and the type it returns,
14624 but twisted together in a fashion that parallels the syntax of C.
14626 FLAGS is a bitwise or of SF_PRE_PARSED (indicating that the
14627 DECLARATOR is really the DECL for the function we are about to
14628 process and that DECLSPECS should be ignored), SF_INCLASS_INLINE
14629 indicating that the function is an inline defined in-class.
14631 This function creates a binding context for the function body
14632 as well as setting up the FUNCTION_DECL in current_function_decl.
14634 For C++, we must first check whether that datum makes any sense.
14635 For example, "class A local_a(1,2);" means that variable local_a
14636 is an aggregate of type A, which should have a constructor
14637 applied to it with the argument list [1, 2].
14639 On entry, DECL_INITIAL (decl1) should be NULL_TREE or error_mark_node,
14640 or may be a BLOCK if the function has been defined previously
14641 in this translation unit. On exit, DECL_INITIAL (decl1) will be
14642 error_mark_node if the function has never been defined, or
14643 a BLOCK if the function has been defined somewhere. */
14645 bool
14646 start_preparsed_function (tree decl1, tree attrs, int flags)
14648 tree ctype = NULL_TREE;
14649 tree fntype;
14650 tree restype;
14651 int doing_friend = 0;
14652 cp_binding_level *bl;
14653 tree current_function_parms;
14654 struct c_fileinfo *finfo
14655 = get_fileinfo (LOCATION_FILE (DECL_SOURCE_LOCATION (decl1)));
14656 bool honor_interface;
14658 /* Sanity check. */
14659 gcc_assert (VOID_TYPE_P (TREE_VALUE (void_list_node)));
14660 gcc_assert (TREE_CHAIN (void_list_node) == NULL_TREE);
14662 fntype = TREE_TYPE (decl1);
14663 if (TREE_CODE (fntype) == METHOD_TYPE)
14664 ctype = TYPE_METHOD_BASETYPE (fntype);
14666 /* ISO C++ 11.4/5. A friend function defined in a class is in
14667 the (lexical) scope of the class in which it is defined. */
14668 if (!ctype && DECL_FRIEND_P (decl1))
14670 ctype = DECL_FRIEND_CONTEXT (decl1);
14672 /* CTYPE could be null here if we're dealing with a template;
14673 for example, `inline friend float foo()' inside a template
14674 will have no CTYPE set. */
14675 if (ctype && TREE_CODE (ctype) != RECORD_TYPE)
14676 ctype = NULL_TREE;
14677 else
14678 doing_friend = 1;
14681 if (DECL_DECLARED_INLINE_P (decl1)
14682 && lookup_attribute ("noinline", attrs))
14683 warning_at (DECL_SOURCE_LOCATION (decl1), 0,
14684 "inline function %qD given attribute noinline", decl1);
14686 /* Handle gnu_inline attribute. */
14687 if (GNU_INLINE_P (decl1))
14689 DECL_EXTERNAL (decl1) = 1;
14690 DECL_NOT_REALLY_EXTERN (decl1) = 0;
14691 DECL_INTERFACE_KNOWN (decl1) = 1;
14692 DECL_DISREGARD_INLINE_LIMITS (decl1) = 1;
14695 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl1))
14696 /* This is a constructor, we must ensure that any default args
14697 introduced by this definition are propagated to the clones
14698 now. The clones are used directly in overload resolution. */
14699 adjust_clone_args (decl1);
14701 /* Sometimes we don't notice that a function is a static member, and
14702 build a METHOD_TYPE for it. Fix that up now. */
14703 gcc_assert (!(ctype != NULL_TREE && DECL_STATIC_FUNCTION_P (decl1)
14704 && TREE_CODE (TREE_TYPE (decl1)) == METHOD_TYPE));
14706 /* Set up current_class_type, and enter the scope of the class, if
14707 appropriate. */
14708 if (ctype)
14709 push_nested_class (ctype);
14710 else if (DECL_STATIC_FUNCTION_P (decl1))
14711 push_nested_class (DECL_CONTEXT (decl1));
14713 /* Now that we have entered the scope of the class, we must restore
14714 the bindings for any template parameters surrounding DECL1, if it
14715 is an inline member template. (Order is important; consider the
14716 case where a template parameter has the same name as a field of
14717 the class.) It is not until after this point that
14718 PROCESSING_TEMPLATE_DECL is guaranteed to be set up correctly. */
14719 if (flags & SF_INCLASS_INLINE)
14720 maybe_begin_member_template_processing (decl1);
14722 /* Effective C++ rule 15. */
14723 if (warn_ecpp
14724 && DECL_ASSIGNMENT_OPERATOR_P (decl1)
14725 && DECL_OVERLOADED_OPERATOR_IS (decl1, NOP_EXPR)
14726 && VOID_TYPE_P (TREE_TYPE (fntype)))
14727 warning (OPT_Weffc__,
14728 "%<operator=%> should return a reference to %<*this%>");
14730 /* Make the init_value nonzero so pushdecl knows this is not tentative.
14731 error_mark_node is replaced below (in poplevel) with the BLOCK. */
14732 if (!DECL_INITIAL (decl1))
14733 DECL_INITIAL (decl1) = error_mark_node;
14735 /* This function exists in static storage.
14736 (This does not mean `static' in the C sense!) */
14737 TREE_STATIC (decl1) = 1;
14739 /* We must call push_template_decl after current_class_type is set
14740 up. (If we are processing inline definitions after exiting a
14741 class scope, current_class_type will be NULL_TREE until set above
14742 by push_nested_class.) */
14743 if (processing_template_decl)
14745 tree newdecl1 = push_template_decl (decl1);
14746 if (newdecl1 == error_mark_node)
14748 if (ctype || DECL_STATIC_FUNCTION_P (decl1))
14749 pop_nested_class ();
14750 return false;
14752 decl1 = newdecl1;
14755 /* Make sure the parameter and return types are reasonable. When
14756 you declare a function, these types can be incomplete, but they
14757 must be complete when you define the function. */
14758 check_function_type (decl1, DECL_ARGUMENTS (decl1));
14760 /* Build the return declaration for the function. */
14761 restype = TREE_TYPE (fntype);
14763 if (DECL_RESULT (decl1) == NULL_TREE)
14765 tree resdecl;
14767 resdecl = build_decl (input_location, RESULT_DECL, 0, restype);
14768 DECL_ARTIFICIAL (resdecl) = 1;
14769 DECL_IGNORED_P (resdecl) = 1;
14770 DECL_RESULT (decl1) = resdecl;
14772 cp_apply_type_quals_to_decl (cp_type_quals (restype), resdecl);
14775 /* Record the decl so that the function name is defined.
14776 If we already have a decl for this name, and it is a FUNCTION_DECL,
14777 use the old decl. */
14778 if (!processing_template_decl && !(flags & SF_PRE_PARSED))
14780 /* A specialization is not used to guide overload resolution. */
14781 if (!DECL_FUNCTION_MEMBER_P (decl1)
14782 && !(DECL_USE_TEMPLATE (decl1) &&
14783 PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl1))))
14785 tree olddecl = pushdecl (decl1);
14787 if (olddecl == error_mark_node)
14788 /* If something went wrong when registering the declaration,
14789 use DECL1; we have to have a FUNCTION_DECL to use when
14790 parsing the body of the function. */
14792 else
14794 /* Otherwise, OLDDECL is either a previous declaration
14795 of the same function or DECL1 itself. */
14797 if (warn_missing_declarations
14798 && olddecl == decl1
14799 && !DECL_MAIN_P (decl1)
14800 && TREE_PUBLIC (decl1)
14801 && !DECL_DECLARED_INLINE_P (decl1))
14803 tree context;
14805 /* Check whether DECL1 is in an anonymous
14806 namespace. */
14807 for (context = DECL_CONTEXT (decl1);
14808 context;
14809 context = DECL_CONTEXT (context))
14811 if (TREE_CODE (context) == NAMESPACE_DECL
14812 && DECL_NAME (context) == NULL_TREE)
14813 break;
14816 if (context == NULL)
14817 warning_at (DECL_SOURCE_LOCATION (decl1),
14818 OPT_Wmissing_declarations,
14819 "no previous declaration for %qD", decl1);
14822 decl1 = olddecl;
14825 else
14827 /* We need to set the DECL_CONTEXT. */
14828 if (!DECL_CONTEXT (decl1) && DECL_TEMPLATE_INFO (decl1))
14829 DECL_CONTEXT (decl1) = DECL_CONTEXT (DECL_TI_TEMPLATE (decl1));
14831 fntype = TREE_TYPE (decl1);
14832 restype = TREE_TYPE (fntype);
14834 /* If #pragma weak applies, mark the decl appropriately now.
14835 The pragma only applies to global functions. Because
14836 determining whether or not the #pragma applies involves
14837 computing the mangled name for the declaration, we cannot
14838 apply the pragma until after we have merged this declaration
14839 with any previous declarations; if the original declaration
14840 has a linkage specification, that specification applies to
14841 the definition as well, and may affect the mangled name. */
14842 if (DECL_FILE_SCOPE_P (decl1))
14843 maybe_apply_pragma_weak (decl1);
14846 /* We are now in the scope of the function being defined. */
14847 current_function_decl = decl1;
14849 /* Save the parm names or decls from this function's declarator
14850 where store_parm_decls will find them. */
14851 current_function_parms = DECL_ARGUMENTS (decl1);
14853 /* Let the user know we're compiling this function. */
14854 announce_function (decl1);
14856 gcc_assert (DECL_INITIAL (decl1));
14858 /* This function may already have been parsed, in which case just
14859 return; our caller will skip over the body without parsing. */
14860 if (DECL_INITIAL (decl1) != error_mark_node)
14861 return true;
14863 /* Initialize RTL machinery. We cannot do this until
14864 CURRENT_FUNCTION_DECL and DECL_RESULT are set up. We do this
14865 even when processing a template; this is how we get
14866 CFUN set up, and our per-function variables initialized.
14867 FIXME factor out the non-RTL stuff. */
14868 bl = current_binding_level;
14869 allocate_struct_function (decl1, processing_template_decl);
14871 /* Initialize the language data structures. Whenever we start
14872 a new function, we destroy temporaries in the usual way. */
14873 cfun->language = ggc_cleared_alloc<language_function> ();
14874 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
14875 current_binding_level = bl;
14877 if (!processing_template_decl && type_uses_auto (restype))
14879 FNDECL_USED_AUTO (decl1) = true;
14880 current_function_auto_return_pattern = restype;
14883 /* Start the statement-tree, start the tree now. */
14884 DECL_SAVED_TREE (decl1) = push_stmt_list ();
14886 /* If we are (erroneously) defining a function that we have already
14887 defined before, wipe out what we knew before. */
14888 if (!DECL_PENDING_INLINE_P (decl1))
14889 DECL_SAVED_FUNCTION_DATA (decl1) = NULL;
14891 if (ctype && !doing_friend && !DECL_STATIC_FUNCTION_P (decl1))
14893 /* We know that this was set up by `grokclassfn'. We do not
14894 wait until `store_parm_decls', since evil parse errors may
14895 never get us to that point. Here we keep the consistency
14896 between `current_class_type' and `current_class_ptr'. */
14897 tree t = DECL_ARGUMENTS (decl1);
14899 gcc_assert (t != NULL_TREE && TREE_CODE (t) == PARM_DECL);
14900 gcc_assert (TYPE_PTR_P (TREE_TYPE (t)));
14902 cp_function_chain->x_current_class_ref
14903 = cp_build_indirect_ref (t, RO_NULL, tf_warning_or_error);
14904 /* Set this second to avoid shortcut in cp_build_indirect_ref. */
14905 cp_function_chain->x_current_class_ptr = t;
14907 /* Constructors and destructors need to know whether they're "in
14908 charge" of initializing virtual base classes. */
14909 t = DECL_CHAIN (t);
14910 if (DECL_HAS_IN_CHARGE_PARM_P (decl1))
14912 current_in_charge_parm = t;
14913 t = DECL_CHAIN (t);
14915 if (DECL_HAS_VTT_PARM_P (decl1))
14917 gcc_assert (DECL_NAME (t) == vtt_parm_identifier);
14918 current_vtt_parm = t;
14922 honor_interface = (!DECL_TEMPLATE_INSTANTIATION (decl1)
14923 /* Implicitly-defined methods (like the
14924 destructor for a class in which no destructor
14925 is explicitly declared) must not be defined
14926 until their definition is needed. So, we
14927 ignore interface specifications for
14928 compiler-generated functions. */
14929 && !DECL_ARTIFICIAL (decl1));
14931 if (processing_template_decl)
14932 /* Don't mess with interface flags. */;
14933 else if (DECL_INTERFACE_KNOWN (decl1))
14935 tree ctx = decl_function_context (decl1);
14937 if (DECL_NOT_REALLY_EXTERN (decl1))
14938 DECL_EXTERNAL (decl1) = 0;
14940 if (ctx != NULL_TREE && vague_linkage_p (ctx))
14941 /* This is a function in a local class in an extern inline
14942 or template function. */
14943 comdat_linkage (decl1);
14945 /* If this function belongs to an interface, it is public.
14946 If it belongs to someone else's interface, it is also external.
14947 This only affects inlines and template instantiations. */
14948 else if (!finfo->interface_unknown && honor_interface)
14950 if (DECL_DECLARED_INLINE_P (decl1)
14951 || DECL_TEMPLATE_INSTANTIATION (decl1))
14953 DECL_EXTERNAL (decl1)
14954 = (finfo->interface_only
14955 || (DECL_DECLARED_INLINE_P (decl1)
14956 && ! flag_implement_inlines
14957 && !DECL_VINDEX (decl1)));
14959 /* For WIN32 we also want to put these in linkonce sections. */
14960 maybe_make_one_only (decl1);
14962 else
14963 DECL_EXTERNAL (decl1) = 0;
14964 DECL_INTERFACE_KNOWN (decl1) = 1;
14965 /* If this function is in an interface implemented in this file,
14966 make sure that the back end knows to emit this function
14967 here. */
14968 if (!DECL_EXTERNAL (decl1))
14969 mark_needed (decl1);
14971 else if (finfo->interface_unknown && finfo->interface_only
14972 && honor_interface)
14974 /* If MULTIPLE_SYMBOL_SPACES is defined and we saw a #pragma
14975 interface, we will have both finfo->interface_unknown and
14976 finfo->interface_only set. In that case, we don't want to
14977 use the normal heuristics because someone will supply a
14978 #pragma implementation elsewhere, and deducing it here would
14979 produce a conflict. */
14980 comdat_linkage (decl1);
14981 DECL_EXTERNAL (decl1) = 0;
14982 DECL_INTERFACE_KNOWN (decl1) = 1;
14983 DECL_DEFER_OUTPUT (decl1) = 1;
14985 else
14987 /* This is a definition, not a reference.
14988 So clear DECL_EXTERNAL, unless this is a GNU extern inline. */
14989 if (!GNU_INLINE_P (decl1))
14990 DECL_EXTERNAL (decl1) = 0;
14992 if ((DECL_DECLARED_INLINE_P (decl1)
14993 || DECL_TEMPLATE_INSTANTIATION (decl1))
14994 && ! DECL_INTERFACE_KNOWN (decl1))
14995 DECL_DEFER_OUTPUT (decl1) = 1;
14996 else
14997 DECL_INTERFACE_KNOWN (decl1) = 1;
15000 /* Determine the ELF visibility attribute for the function. We must not
15001 do this before calling "pushdecl", as we must allow "duplicate_decls"
15002 to merge any attributes appropriately. We also need to wait until
15003 linkage is set. */
15004 if (!DECL_CLONED_FUNCTION_P (decl1))
15005 determine_visibility (decl1);
15007 if (!processing_template_decl)
15008 maybe_instantiate_noexcept (decl1);
15010 begin_scope (sk_function_parms, decl1);
15012 ++function_depth;
15014 if (DECL_DESTRUCTOR_P (decl1)
15015 || (DECL_CONSTRUCTOR_P (decl1)
15016 && targetm.cxx.cdtor_returns_this ()))
15018 cdtor_label = create_artificial_label (input_location);
15019 LABEL_DECL_CDTOR (cdtor_label) = true;
15022 start_fname_decls ();
15024 store_parm_decls (current_function_parms);
15026 if (!processing_template_decl
15027 && (flag_lifetime_dse > 1)
15028 && DECL_CONSTRUCTOR_P (decl1)
15029 && !DECL_CLONED_FUNCTION_P (decl1)
15030 /* Clobbering an empty base is harmful if it overlays real data. */
15031 && !is_empty_class (current_class_type)
15032 /* We can't clobber safely for an implicitly-defined default constructor
15033 because part of the initialization might happen before we enter the
15034 constructor, via AGGR_INIT_ZERO_FIRST (c++/68006). */
15035 && !implicit_default_ctor_p (decl1))
15036 finish_expr_stmt (build_clobber_this ());
15038 if (!processing_template_decl
15039 && DECL_CONSTRUCTOR_P (decl1)
15040 && sanitize_flags_p (SANITIZE_VPTR)
15041 && !DECL_CLONED_FUNCTION_P (decl1)
15042 && !implicit_default_ctor_p (decl1))
15043 cp_ubsan_maybe_initialize_vtbl_ptrs (current_class_ptr);
15045 start_lambda_scope (decl1);
15047 return true;
15051 /* Like start_preparsed_function, except that instead of a
15052 FUNCTION_DECL, this function takes DECLSPECS and DECLARATOR.
15054 Returns true on success. If the DECLARATOR is not suitable
15055 for a function, we return false, which tells the parser to
15056 skip the entire function. */
15058 bool
15059 start_function (cp_decl_specifier_seq *declspecs,
15060 const cp_declarator *declarator,
15061 tree attrs)
15063 tree decl1;
15065 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1, &attrs);
15066 invoke_plugin_callbacks (PLUGIN_START_PARSE_FUNCTION, decl1);
15067 if (decl1 == error_mark_node)
15068 return false;
15069 /* If the declarator is not suitable for a function definition,
15070 cause a syntax error. */
15071 if (decl1 == NULL_TREE || TREE_CODE (decl1) != FUNCTION_DECL)
15073 error ("invalid function declaration");
15074 return false;
15077 if (DECL_MAIN_P (decl1))
15078 /* main must return int. grokfndecl should have corrected it
15079 (and issued a diagnostic) if the user got it wrong. */
15080 gcc_assert (same_type_p (TREE_TYPE (TREE_TYPE (decl1)),
15081 integer_type_node));
15083 return start_preparsed_function (decl1, attrs, /*flags=*/SF_DEFAULT);
15086 /* Returns true iff an EH_SPEC_BLOCK should be created in the body of
15087 FN. */
15089 static bool
15090 use_eh_spec_block (tree fn)
15092 return (flag_exceptions && flag_enforce_eh_specs
15093 && !processing_template_decl
15094 && !type_throw_all_p (TREE_TYPE (fn))
15095 /* We insert the EH_SPEC_BLOCK only in the original
15096 function; then, it is copied automatically to the
15097 clones. */
15098 && !DECL_CLONED_FUNCTION_P (fn)
15099 /* Implicitly-generated constructors and destructors have
15100 exception specifications. However, those specifications
15101 are the union of the possible exceptions specified by the
15102 constructors/destructors for bases and members, so no
15103 unallowed exception will ever reach this function. By
15104 not creating the EH_SPEC_BLOCK we save a little memory,
15105 and we avoid spurious warnings about unreachable
15106 code. */
15107 && !DECL_DEFAULTED_FN (fn));
15110 /* Store the parameter declarations into the current function declaration.
15111 This is called after parsing the parameter declarations, before
15112 digesting the body of the function.
15114 Also install to binding contour return value identifier, if any. */
15116 static void
15117 store_parm_decls (tree current_function_parms)
15119 tree fndecl = current_function_decl;
15120 tree parm;
15122 /* This is a chain of any other decls that came in among the parm
15123 declarations. If a parm is declared with enum {foo, bar} x;
15124 then CONST_DECLs for foo and bar are put here. */
15125 tree nonparms = NULL_TREE;
15127 if (current_function_parms)
15129 /* This case is when the function was defined with an ANSI prototype.
15130 The parms already have decls, so we need not do anything here
15131 except record them as in effect
15132 and complain if any redundant old-style parm decls were written. */
15134 tree specparms = current_function_parms;
15135 tree next;
15137 /* Must clear this because it might contain TYPE_DECLs declared
15138 at class level. */
15139 current_binding_level->names = NULL;
15141 /* If we're doing semantic analysis, then we'll call pushdecl
15142 for each of these. We must do them in reverse order so that
15143 they end in the correct forward order. */
15144 specparms = nreverse (specparms);
15146 for (parm = specparms; parm; parm = next)
15148 next = DECL_CHAIN (parm);
15149 if (TREE_CODE (parm) == PARM_DECL)
15150 pushdecl (parm);
15151 else
15153 /* If we find an enum constant or a type tag,
15154 put it aside for the moment. */
15155 TREE_CHAIN (parm) = NULL_TREE;
15156 nonparms = chainon (nonparms, parm);
15160 /* Get the decls in their original chain order and record in the
15161 function. This is all and only the PARM_DECLs that were
15162 pushed into scope by the loop above. */
15163 DECL_ARGUMENTS (fndecl) = get_local_decls ();
15165 else
15166 DECL_ARGUMENTS (fndecl) = NULL_TREE;
15168 /* Now store the final chain of decls for the arguments
15169 as the decl-chain of the current lexical scope.
15170 Put the enumerators in as well, at the front so that
15171 DECL_ARGUMENTS is not modified. */
15172 current_binding_level->names = chainon (nonparms, DECL_ARGUMENTS (fndecl));
15174 if (use_eh_spec_block (current_function_decl))
15175 current_eh_spec_block = begin_eh_spec_block ();
15179 /* We have finished doing semantic analysis on DECL, but have not yet
15180 generated RTL for its body. Save away our current state, so that
15181 when we want to generate RTL later we know what to do. */
15183 static void
15184 save_function_data (tree decl)
15186 struct language_function *f;
15188 /* Save the language-specific per-function data so that we can
15189 get it back when we really expand this function. */
15190 gcc_assert (!DECL_PENDING_INLINE_P (decl));
15192 /* Make a copy. */
15193 f = ggc_alloc<language_function> ();
15194 memcpy (f, cp_function_chain, sizeof (struct language_function));
15195 DECL_SAVED_FUNCTION_DATA (decl) = f;
15197 /* Clear out the bits we don't need. */
15198 f->base.x_stmt_tree.x_cur_stmt_list = NULL;
15199 f->bindings = NULL;
15200 f->x_local_names = NULL;
15201 f->base.local_typedefs = NULL;
15205 /* Set the return value of the constructor (if present). */
15207 static void
15208 finish_constructor_body (void)
15210 tree val;
15211 tree exprstmt;
15213 if (targetm.cxx.cdtor_returns_this ())
15215 /* Any return from a constructor will end up here. */
15216 add_stmt (build_stmt (input_location, LABEL_EXPR, cdtor_label));
15218 val = DECL_ARGUMENTS (current_function_decl);
15219 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
15220 DECL_RESULT (current_function_decl), val);
15221 /* Return the address of the object. */
15222 exprstmt = build_stmt (input_location, RETURN_EXPR, val);
15223 add_stmt (exprstmt);
15227 /* Do all the processing for the beginning of a destructor; set up the
15228 vtable pointers and cleanups for bases and members. */
15230 static void
15231 begin_destructor_body (void)
15233 tree compound_stmt;
15235 /* If the CURRENT_CLASS_TYPE is incomplete, we will have already
15236 issued an error message. We still want to try to process the
15237 body of the function, but initialize_vtbl_ptrs will crash if
15238 TYPE_BINFO is NULL. */
15239 if (COMPLETE_TYPE_P (current_class_type))
15241 compound_stmt = begin_compound_stmt (0);
15242 /* Make all virtual function table pointers in non-virtual base
15243 classes point to CURRENT_CLASS_TYPE's virtual function
15244 tables. */
15245 initialize_vtbl_ptrs (current_class_ptr);
15246 finish_compound_stmt (compound_stmt);
15248 if (flag_lifetime_dse
15249 /* Clobbering an empty base is harmful if it overlays real data. */
15250 && !is_empty_class (current_class_type))
15251 finish_decl_cleanup (NULL_TREE, build_clobber_this ());
15253 /* And insert cleanups for our bases and members so that they
15254 will be properly destroyed if we throw. */
15255 push_base_cleanups ();
15259 /* At the end of every destructor we generate code to delete the object if
15260 necessary. Do that now. */
15262 static void
15263 finish_destructor_body (void)
15265 tree exprstmt;
15267 /* Any return from a destructor will end up here; that way all base
15268 and member cleanups will be run when the function returns. */
15269 add_stmt (build_stmt (input_location, LABEL_EXPR, cdtor_label));
15271 if (targetm.cxx.cdtor_returns_this ())
15273 tree val;
15275 val = DECL_ARGUMENTS (current_function_decl);
15276 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
15277 DECL_RESULT (current_function_decl), val);
15278 /* Return the address of the object. */
15279 exprstmt = build_stmt (input_location, RETURN_EXPR, val);
15280 add_stmt (exprstmt);
15284 /* Do the necessary processing for the beginning of a function body, which
15285 in this case includes member-initializers, but not the catch clauses of
15286 a function-try-block. Currently, this means opening a binding level
15287 for the member-initializers (in a ctor), member cleanups (in a dtor),
15288 and capture proxies (in a lambda operator()). */
15290 tree
15291 begin_function_body (void)
15293 tree stmt;
15295 if (! FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
15296 return NULL_TREE;
15298 if (processing_template_decl)
15299 /* Do nothing now. */;
15300 else
15301 /* Always keep the BLOCK node associated with the outermost pair of
15302 curly braces of a function. These are needed for correct
15303 operation of dwarfout.c. */
15304 keep_next_level (true);
15306 stmt = begin_compound_stmt (BCS_FN_BODY);
15308 if (processing_template_decl)
15309 /* Do nothing now. */;
15310 else if (DECL_DESTRUCTOR_P (current_function_decl))
15311 begin_destructor_body ();
15313 return stmt;
15316 /* Do the processing for the end of a function body. Currently, this means
15317 closing out the cleanups for fully-constructed bases and members, and in
15318 the case of the destructor, deleting the object if desired. Again, this
15319 is only meaningful for [cd]tors, since they are the only functions where
15320 there is a significant distinction between the main body and any
15321 function catch clauses. Handling, say, main() return semantics here
15322 would be wrong, as flowing off the end of a function catch clause for
15323 main() would also need to return 0. */
15325 void
15326 finish_function_body (tree compstmt)
15328 if (compstmt == NULL_TREE)
15329 return;
15331 /* Close the block. */
15332 finish_compound_stmt (compstmt);
15334 if (processing_template_decl)
15335 /* Do nothing now. */;
15336 else if (DECL_CONSTRUCTOR_P (current_function_decl))
15337 finish_constructor_body ();
15338 else if (DECL_DESTRUCTOR_P (current_function_decl))
15339 finish_destructor_body ();
15342 /* Given a function, returns the BLOCK corresponding to the outermost level
15343 of curly braces, skipping the artificial block created for constructor
15344 initializers. */
15346 tree
15347 outer_curly_brace_block (tree fndecl)
15349 tree block = DECL_INITIAL (fndecl);
15350 if (BLOCK_OUTER_CURLY_BRACE_P (block))
15351 return block;
15352 block = BLOCK_SUBBLOCKS (block);
15353 if (BLOCK_OUTER_CURLY_BRACE_P (block))
15354 return block;
15355 block = BLOCK_SUBBLOCKS (block);
15356 gcc_assert (BLOCK_OUTER_CURLY_BRACE_P (block));
15357 return block;
15360 /* If FNDECL is a class's key method, add the class to the list of
15361 keyed classes that should be emitted. */
15363 static void
15364 record_key_method_defined (tree fndecl)
15366 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fndecl)
15367 && DECL_VIRTUAL_P (fndecl)
15368 && !processing_template_decl)
15370 tree fnclass = DECL_CONTEXT (fndecl);
15371 if (fndecl == CLASSTYPE_KEY_METHOD (fnclass))
15372 vec_safe_push (keyed_classes, fnclass);
15376 /* Subroutine of finish_function.
15377 Save the body of constexpr functions for possible
15378 future compile time evaluation. */
15380 static void
15381 maybe_save_function_definition (tree fun)
15383 if (!processing_template_decl
15384 && DECL_DECLARED_CONSTEXPR_P (fun)
15385 && !cp_function_chain->invalid_constexpr
15386 && !DECL_CLONED_FUNCTION_P (fun))
15387 register_constexpr_fundef (fun, DECL_SAVED_TREE (fun));
15390 /* Finish up a function declaration and compile that function
15391 all the way to assembler language output. The free the storage
15392 for the function definition. INLINE_P is TRUE if we just
15393 finished processing the body of an in-class inline function
15394 definition. (This processing will have taken place after the
15395 class definition is complete.) */
15397 tree
15398 finish_function (bool inline_p)
15400 tree fndecl = current_function_decl;
15401 tree fntype, ctype = NULL_TREE;
15403 /* When we get some parse errors, we can end up without a
15404 current_function_decl, so cope. */
15405 if (fndecl == NULL_TREE)
15406 return error_mark_node;
15408 finish_lambda_scope ();
15410 if (c_dialect_objc ())
15411 objc_finish_function ();
15413 record_key_method_defined (fndecl);
15415 fntype = TREE_TYPE (fndecl);
15417 /* TREE_READONLY (fndecl) = 1;
15418 This caused &foo to be of type ptr-to-const-function
15419 which then got a warning when stored in a ptr-to-function variable. */
15421 gcc_assert (building_stmt_list_p ());
15422 /* The current function is being defined, so its DECL_INITIAL should
15423 be set, and unless there's a multiple definition, it should be
15424 error_mark_node. */
15425 gcc_assert (DECL_INITIAL (fndecl) == error_mark_node);
15427 /* For a cloned function, we've already got all the code we need;
15428 there's no need to add any extra bits. */
15429 if (!DECL_CLONED_FUNCTION_P (fndecl))
15431 /* Make it so that `main' always returns 0 by default. */
15432 if (DECL_MAIN_P (current_function_decl))
15433 finish_return_stmt (integer_zero_node);
15435 if (use_eh_spec_block (current_function_decl))
15436 finish_eh_spec_block (TYPE_RAISES_EXCEPTIONS
15437 (TREE_TYPE (current_function_decl)),
15438 current_eh_spec_block);
15441 /* If we're saving up tree structure, tie off the function now. */
15442 DECL_SAVED_TREE (fndecl) = pop_stmt_list (DECL_SAVED_TREE (fndecl));
15444 if (fn_contains_cilk_spawn_p (cfun) && !processing_template_decl)
15445 cfun->cilk_frame_decl = insert_cilk_frame (fndecl);
15447 finish_fname_decls ();
15449 /* If this function can't throw any exceptions, remember that. */
15450 if (!processing_template_decl
15451 && !cp_function_chain->can_throw
15452 && !flag_non_call_exceptions
15453 && !decl_replaceable_p (fndecl))
15454 TREE_NOTHROW (fndecl) = 1;
15456 /* This must come after expand_function_end because cleanups might
15457 have declarations (from inline functions) that need to go into
15458 this function's blocks. */
15460 /* If the current binding level isn't the outermost binding level
15461 for this function, either there is a bug, or we have experienced
15462 syntax errors and the statement tree is malformed. */
15463 if (current_binding_level->kind != sk_function_parms)
15465 /* Make sure we have already experienced errors. */
15466 gcc_assert (errorcount);
15468 /* Throw away the broken statement tree and extra binding
15469 levels. */
15470 DECL_SAVED_TREE (fndecl) = alloc_stmt_list ();
15472 while (current_binding_level->kind != sk_function_parms)
15474 if (current_binding_level->kind == sk_class)
15475 pop_nested_class ();
15476 else
15477 poplevel (0, 0, 0);
15480 poplevel (1, 0, 1);
15482 /* Statements should always be full-expressions at the outermost set
15483 of curly braces for a function. */
15484 gcc_assert (stmts_are_full_exprs_p ());
15486 /* If there are no return statements in a function with auto return type,
15487 the return type is void. But if the declared type is something like
15488 auto*, this is an error. */
15489 if (!processing_template_decl && FNDECL_USED_AUTO (fndecl)
15490 && TREE_TYPE (fntype) == current_function_auto_return_pattern)
15492 if (is_auto (current_function_auto_return_pattern))
15494 apply_deduced_return_type (fndecl, void_type_node);
15495 fntype = TREE_TYPE (fndecl);
15497 else if (!current_function_returns_value
15498 && !current_function_returns_null)
15500 error ("no return statements in function returning %qT",
15501 current_function_auto_return_pattern);
15502 inform (input_location, "only plain %<auto%> return type can be "
15503 "deduced to %<void%>");
15507 // If this is a concept, check that the definition is reasonable.
15508 if (DECL_DECLARED_CONCEPT_P (fndecl))
15509 check_function_concept (fndecl);
15511 /* Lambda closure members are implicitly constexpr if possible. */
15512 if (cxx_dialect >= cxx17
15513 && LAMBDA_TYPE_P (CP_DECL_CONTEXT (fndecl)))
15514 DECL_DECLARED_CONSTEXPR_P (fndecl)
15515 = ((processing_template_decl
15516 || is_valid_constexpr_fn (fndecl, /*complain*/false))
15517 && potential_constant_expression (DECL_SAVED_TREE (fndecl)));
15519 /* Save constexpr function body before it gets munged by
15520 the NRV transformation. */
15521 maybe_save_function_definition (fndecl);
15523 /* Invoke the pre-genericize plugin before we start munging things. */
15524 if (!processing_template_decl)
15525 invoke_plugin_callbacks (PLUGIN_PRE_GENERICIZE, fndecl);
15527 /* Perform delayed folding before NRV transformation. */
15528 if (!processing_template_decl)
15529 cp_fold_function (fndecl);
15531 /* Set up the named return value optimization, if we can. Candidate
15532 variables are selected in check_return_expr. */
15533 if (current_function_return_value)
15535 tree r = current_function_return_value;
15536 tree outer;
15538 if (r != error_mark_node
15539 /* This is only worth doing for fns that return in memory--and
15540 simpler, since we don't have to worry about promoted modes. */
15541 && aggregate_value_p (TREE_TYPE (TREE_TYPE (fndecl)), fndecl)
15542 /* Only allow this for variables declared in the outer scope of
15543 the function so we know that their lifetime always ends with a
15544 return; see g++.dg/opt/nrv6.C. We could be more flexible if
15545 we were to do this optimization in tree-ssa. */
15546 && (outer = outer_curly_brace_block (fndecl))
15547 && chain_member (r, BLOCK_VARS (outer)))
15548 finalize_nrv (&DECL_SAVED_TREE (fndecl), r, DECL_RESULT (fndecl));
15550 current_function_return_value = NULL_TREE;
15553 /* Remember that we were in class scope. */
15554 if (current_class_name)
15555 ctype = current_class_type;
15557 /* Must mark the RESULT_DECL as being in this function. */
15558 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
15560 /* Set the BLOCK_SUPERCONTEXT of the outermost function scope to point
15561 to the FUNCTION_DECL node itself. */
15562 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
15564 /* Save away current state, if appropriate. */
15565 if (!processing_template_decl)
15566 save_function_data (fndecl);
15568 /* Complain if there's just no return statement. */
15569 if (warn_return_type
15570 && !VOID_TYPE_P (TREE_TYPE (fntype))
15571 && !dependent_type_p (TREE_TYPE (fntype))
15572 && !current_function_returns_value && !current_function_returns_null
15573 /* Don't complain if we abort or throw. */
15574 && !current_function_returns_abnormally
15575 /* Don't complain if there's an infinite loop. */
15576 && !current_function_infinite_loop
15577 /* Don't complain if we are declared noreturn. */
15578 && !TREE_THIS_VOLATILE (fndecl)
15579 && !DECL_NAME (DECL_RESULT (fndecl))
15580 && !TREE_NO_WARNING (fndecl)
15581 /* Structor return values (if any) are set by the compiler. */
15582 && !DECL_CONSTRUCTOR_P (fndecl)
15583 && !DECL_DESTRUCTOR_P (fndecl)
15584 && targetm.warn_func_return (fndecl))
15586 warning (OPT_Wreturn_type,
15587 "no return statement in function returning non-void");
15588 TREE_NO_WARNING (fndecl) = 1;
15591 /* Store the end of the function, so that we get good line number
15592 info for the epilogue. */
15593 cfun->function_end_locus = input_location;
15595 /* Complain about parameters that are only set, but never otherwise used. */
15596 if (warn_unused_but_set_parameter
15597 && !processing_template_decl
15598 && errorcount == unused_but_set_errorcount
15599 && !DECL_CLONED_FUNCTION_P (fndecl))
15601 tree decl;
15603 for (decl = DECL_ARGUMENTS (fndecl);
15604 decl;
15605 decl = DECL_CHAIN (decl))
15606 if (TREE_USED (decl)
15607 && TREE_CODE (decl) == PARM_DECL
15608 && !DECL_READ_P (decl)
15609 && DECL_NAME (decl)
15610 && !DECL_ARTIFICIAL (decl)
15611 && !TREE_NO_WARNING (decl)
15612 && !DECL_IN_SYSTEM_HEADER (decl)
15613 && TREE_TYPE (decl) != error_mark_node
15614 && TREE_CODE (TREE_TYPE (decl)) != REFERENCE_TYPE
15615 && (!CLASS_TYPE_P (TREE_TYPE (decl))
15616 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (decl))))
15617 warning_at (DECL_SOURCE_LOCATION (decl),
15618 OPT_Wunused_but_set_parameter,
15619 "parameter %qD set but not used", decl);
15620 unused_but_set_errorcount = errorcount;
15623 /* Complain about locally defined typedefs that are not used in this
15624 function. */
15625 maybe_warn_unused_local_typedefs ();
15627 /* Possibly warn about unused parameters. */
15628 if (warn_unused_parameter
15629 && !processing_template_decl
15630 && !DECL_CLONED_FUNCTION_P (fndecl))
15631 do_warn_unused_parameter (fndecl);
15633 /* Genericize before inlining. */
15634 if (!processing_template_decl)
15636 struct language_function *f = DECL_SAVED_FUNCTION_DATA (fndecl);
15637 cp_genericize (fndecl);
15638 /* Clear out the bits we don't need. */
15639 f->x_current_class_ptr = NULL;
15640 f->x_current_class_ref = NULL;
15641 f->x_eh_spec_block = NULL;
15642 f->x_in_charge_parm = NULL;
15643 f->x_vtt_parm = NULL;
15644 f->x_return_value = NULL;
15645 f->bindings = NULL;
15646 f->extern_decl_map = NULL;
15647 f->infinite_loops = NULL;
15649 /* Clear out the bits we don't need. */
15650 local_names = NULL;
15652 /* We're leaving the context of this function, so zap cfun. It's still in
15653 DECL_STRUCT_FUNCTION, and we'll restore it in tree_rest_of_compilation. */
15654 set_cfun (NULL);
15655 current_function_decl = NULL;
15657 /* If this is an in-class inline definition, we may have to pop the
15658 bindings for the template parameters that we added in
15659 maybe_begin_member_template_processing when start_function was
15660 called. */
15661 if (inline_p)
15662 maybe_end_member_template_processing ();
15664 /* Leave the scope of the class. */
15665 if (ctype)
15666 pop_nested_class ();
15668 --function_depth;
15670 /* Clean up. */
15671 current_function_decl = NULL_TREE;
15673 invoke_plugin_callbacks (PLUGIN_FINISH_PARSE_FUNCTION, fndecl);
15674 return fndecl;
15677 /* Create the FUNCTION_DECL for a function definition.
15678 DECLSPECS and DECLARATOR are the parts of the declaration;
15679 they describe the return type and the name of the function,
15680 but twisted together in a fashion that parallels the syntax of C.
15682 This function creates a binding context for the function body
15683 as well as setting up the FUNCTION_DECL in current_function_decl.
15685 Returns a FUNCTION_DECL on success.
15687 If the DECLARATOR is not suitable for a function (it defines a datum
15688 instead), we return 0, which tells yyparse to report a parse error.
15690 May return void_type_node indicating that this method is actually
15691 a friend. See grokfield for more details.
15693 Came here with a `.pushlevel' .
15695 DO NOT MAKE ANY CHANGES TO THIS CODE WITHOUT MAKING CORRESPONDING
15696 CHANGES TO CODE IN `grokfield'. */
15698 tree
15699 grokmethod (cp_decl_specifier_seq *declspecs,
15700 const cp_declarator *declarator, tree attrlist)
15702 tree fndecl = grokdeclarator (declarator, declspecs, MEMFUNCDEF, 0,
15703 &attrlist);
15705 if (fndecl == error_mark_node)
15706 return error_mark_node;
15708 if (fndecl == NULL || TREE_CODE (fndecl) != FUNCTION_DECL)
15710 error ("invalid member function declaration");
15711 return error_mark_node;
15714 if (attrlist)
15715 cplus_decl_attributes (&fndecl, attrlist, 0);
15717 /* Pass friends other than inline friend functions back. */
15718 if (fndecl == void_type_node)
15719 return fndecl;
15721 if (DECL_IN_AGGR_P (fndecl))
15723 if (DECL_CLASS_SCOPE_P (fndecl))
15724 error ("%qD is already defined in class %qT", fndecl,
15725 DECL_CONTEXT (fndecl));
15726 return error_mark_node;
15729 check_template_shadow (fndecl);
15731 if (TREE_PUBLIC (fndecl))
15732 DECL_COMDAT (fndecl) = 1;
15733 DECL_DECLARED_INLINE_P (fndecl) = 1;
15734 DECL_NO_INLINE_WARNING_P (fndecl) = 1;
15736 /* We process method specializations in finish_struct_1. */
15737 if (processing_template_decl && !DECL_TEMPLATE_SPECIALIZATION (fndecl))
15739 fndecl = push_template_decl (fndecl);
15740 if (fndecl == error_mark_node)
15741 return fndecl;
15744 if (! DECL_FRIEND_P (fndecl))
15746 if (DECL_CHAIN (fndecl))
15748 fndecl = copy_node (fndecl);
15749 TREE_CHAIN (fndecl) = NULL_TREE;
15753 cp_finish_decl (fndecl, NULL_TREE, false, NULL_TREE, 0);
15755 DECL_IN_AGGR_P (fndecl) = 1;
15756 return fndecl;
15760 /* VAR is a VAR_DECL. If its type is incomplete, remember VAR so that
15761 we can lay it out later, when and if its type becomes complete.
15763 Also handle constexpr variables where the initializer involves
15764 an unlowered PTRMEM_CST because the class isn't complete yet. */
15766 void
15767 maybe_register_incomplete_var (tree var)
15769 gcc_assert (VAR_P (var));
15771 /* Keep track of variables with incomplete types. */
15772 if (!processing_template_decl && TREE_TYPE (var) != error_mark_node
15773 && DECL_EXTERNAL (var))
15775 tree inner_type = TREE_TYPE (var);
15777 while (TREE_CODE (inner_type) == ARRAY_TYPE)
15778 inner_type = TREE_TYPE (inner_type);
15779 inner_type = TYPE_MAIN_VARIANT (inner_type);
15781 if ((!COMPLETE_TYPE_P (inner_type) && CLASS_TYPE_P (inner_type))
15782 /* RTTI TD entries are created while defining the type_info. */
15783 || (TYPE_LANG_SPECIFIC (inner_type)
15784 && TYPE_BEING_DEFINED (inner_type)))
15786 incomplete_var iv = {var, inner_type};
15787 vec_safe_push (incomplete_vars, iv);
15789 else if (!(DECL_LANG_SPECIFIC (var) && DECL_TEMPLATE_INFO (var))
15790 && decl_constant_var_p (var)
15791 && (TYPE_PTRMEM_P (inner_type) || CLASS_TYPE_P (inner_type)))
15793 /* When the outermost open class is complete we can resolve any
15794 pointers-to-members. */
15795 tree context = outermost_open_class ();
15796 incomplete_var iv = {var, context};
15797 vec_safe_push (incomplete_vars, iv);
15802 /* Called when a class type (given by TYPE) is defined. If there are
15803 any existing VAR_DECLs whose type has been completed by this
15804 declaration, update them now. */
15806 void
15807 complete_vars (tree type)
15809 unsigned ix;
15810 incomplete_var *iv;
15812 for (ix = 0; vec_safe_iterate (incomplete_vars, ix, &iv); )
15814 if (same_type_p (type, iv->incomplete_type))
15816 tree var = iv->decl;
15817 tree type = TREE_TYPE (var);
15819 if (type != error_mark_node
15820 && (TYPE_MAIN_VARIANT (strip_array_types (type))
15821 == iv->incomplete_type))
15823 /* Complete the type of the variable. The VAR_DECL itself
15824 will be laid out in expand_expr. */
15825 complete_type (type);
15826 cp_apply_type_quals_to_decl (cp_type_quals (type), var);
15829 /* Remove this entry from the list. */
15830 incomplete_vars->unordered_remove (ix);
15832 else
15833 ix++;
15836 /* Check for pending declarations which may have abstract type. */
15837 complete_type_check_abstract (type);
15840 /* If DECL is of a type which needs a cleanup, build and return an
15841 expression to perform that cleanup here. Return NULL_TREE if no
15842 cleanup need be done. DECL can also be a _REF when called from
15843 split_nonconstant_init_1. */
15845 tree
15846 cxx_maybe_build_cleanup (tree decl, tsubst_flags_t complain)
15848 tree type;
15849 tree attr;
15850 tree cleanup;
15852 /* Assume no cleanup is required. */
15853 cleanup = NULL_TREE;
15855 if (error_operand_p (decl))
15856 return cleanup;
15858 /* Handle "__attribute__((cleanup))". We run the cleanup function
15859 before the destructor since the destructor is what actually
15860 terminates the lifetime of the object. */
15861 if (DECL_P (decl))
15862 attr = lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl));
15863 else
15864 attr = NULL_TREE;
15865 if (attr)
15867 tree id;
15868 tree fn;
15869 tree arg;
15871 /* Get the name specified by the user for the cleanup function. */
15872 id = TREE_VALUE (TREE_VALUE (attr));
15873 /* Look up the name to find the cleanup function to call. It is
15874 important to use lookup_name here because that is what is
15875 used in c-common.c:handle_cleanup_attribute when performing
15876 initial checks on the attribute. Note that those checks
15877 include ensuring that the function found is not an overloaded
15878 function, or an object with an overloaded call operator,
15879 etc.; we can rely on the fact that the function found is an
15880 ordinary FUNCTION_DECL. */
15881 fn = lookup_name (id);
15882 arg = build_address (decl);
15883 if (!mark_used (decl, complain) && !(complain & tf_error))
15884 return error_mark_node;
15885 cleanup = cp_build_function_call_nary (fn, complain, arg, NULL_TREE);
15886 if (cleanup == error_mark_node)
15887 return error_mark_node;
15889 /* Handle ordinary C++ destructors. */
15890 type = TREE_TYPE (decl);
15891 if (type_build_dtor_call (type))
15893 int flags = LOOKUP_NORMAL|LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR;
15894 tree addr;
15895 tree call;
15897 if (TREE_CODE (type) == ARRAY_TYPE)
15898 addr = decl;
15899 else
15900 addr = build_address (decl);
15902 call = build_delete (TREE_TYPE (addr), addr,
15903 sfk_complete_destructor, flags, 0, complain);
15904 if (call == error_mark_node)
15905 cleanup = error_mark_node;
15906 else if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
15907 /* Discard the call. */;
15908 else if (cleanup)
15909 cleanup = cp_build_compound_expr (cleanup, call, complain);
15910 else
15911 cleanup = call;
15914 /* build_delete sets the location of the destructor call to the
15915 current location, even though the destructor is going to be
15916 called later, at the end of the current scope. This can lead to
15917 a "jumpy" behavior for users of debuggers when they step around
15918 the end of the block. So let's unset the location of the
15919 destructor call instead. */
15920 protected_set_expr_location (cleanup, UNKNOWN_LOCATION);
15922 if (cleanup
15923 && DECL_P (decl)
15924 && !lookup_attribute ("warn_unused", TYPE_ATTRIBUTES (TREE_TYPE (decl)))
15925 /* Treat objects with destructors as used; the destructor may do
15926 something substantive. */
15927 && !mark_used (decl, complain) && !(complain & tf_error))
15928 return error_mark_node;
15930 return cleanup;
15934 /* Return the FUNCTION_TYPE that corresponds to MEMFNTYPE, which can be a
15935 FUNCTION_DECL, METHOD_TYPE, FUNCTION_TYPE, pointer or reference to
15936 METHOD_TYPE or FUNCTION_TYPE, or pointer to member function. */
15938 tree
15939 static_fn_type (tree memfntype)
15941 tree fntype;
15942 tree args;
15944 if (TYPE_PTRMEMFUNC_P (memfntype))
15945 memfntype = TYPE_PTRMEMFUNC_FN_TYPE (memfntype);
15946 if (POINTER_TYPE_P (memfntype)
15947 || TREE_CODE (memfntype) == FUNCTION_DECL)
15948 memfntype = TREE_TYPE (memfntype);
15949 if (TREE_CODE (memfntype) == FUNCTION_TYPE)
15950 return memfntype;
15951 gcc_assert (TREE_CODE (memfntype) == METHOD_TYPE);
15952 args = TYPE_ARG_TYPES (memfntype);
15953 cp_ref_qualifier rqual = type_memfn_rqual (memfntype);
15954 fntype = build_function_type (TREE_TYPE (memfntype), TREE_CHAIN (args));
15955 fntype = apply_memfn_quals (fntype, type_memfn_quals (memfntype), rqual);
15956 fntype = (cp_build_type_attribute_variant
15957 (fntype, TYPE_ATTRIBUTES (memfntype)));
15958 fntype = (build_exception_variant
15959 (fntype, TYPE_RAISES_EXCEPTIONS (memfntype)));
15960 if (TYPE_HAS_LATE_RETURN_TYPE (memfntype))
15961 TYPE_HAS_LATE_RETURN_TYPE (fntype) = 1;
15962 return fntype;
15965 /* DECL was originally constructed as a non-static member function,
15966 but turned out to be static. Update it accordingly. */
15968 void
15969 revert_static_member_fn (tree decl)
15971 tree stype = static_fn_type (decl);
15972 cp_cv_quals quals = type_memfn_quals (stype);
15973 cp_ref_qualifier rqual = type_memfn_rqual (stype);
15975 if (quals != TYPE_UNQUALIFIED || rqual != REF_QUAL_NONE)
15976 stype = apply_memfn_quals (stype, TYPE_UNQUALIFIED, REF_QUAL_NONE);
15978 TREE_TYPE (decl) = stype;
15980 if (DECL_ARGUMENTS (decl))
15981 DECL_ARGUMENTS (decl) = DECL_CHAIN (DECL_ARGUMENTS (decl));
15982 DECL_STATIC_FUNCTION_P (decl) = 1;
15985 /* Return which tree structure is used by T, or TS_CP_GENERIC if T is
15986 one of the language-independent trees. */
15988 enum cp_tree_node_structure_enum
15989 cp_tree_node_structure (union lang_tree_node * t)
15991 switch (TREE_CODE (&t->generic))
15993 case DEFAULT_ARG: return TS_CP_DEFAULT_ARG;
15994 case DEFERRED_NOEXCEPT: return TS_CP_DEFERRED_NOEXCEPT;
15995 case IDENTIFIER_NODE: return TS_CP_IDENTIFIER;
15996 case OVERLOAD: return TS_CP_OVERLOAD;
15997 case TEMPLATE_PARM_INDEX: return TS_CP_TPI;
15998 case PTRMEM_CST: return TS_CP_PTRMEM;
15999 case BASELINK: return TS_CP_BASELINK;
16000 case TEMPLATE_DECL: return TS_CP_TEMPLATE_DECL;
16001 case STATIC_ASSERT: return TS_CP_STATIC_ASSERT;
16002 case ARGUMENT_PACK_SELECT: return TS_CP_ARGUMENT_PACK_SELECT;
16003 case TRAIT_EXPR: return TS_CP_TRAIT_EXPR;
16004 case LAMBDA_EXPR: return TS_CP_LAMBDA_EXPR;
16005 case TEMPLATE_INFO: return TS_CP_TEMPLATE_INFO;
16006 case CONSTRAINT_INFO: return TS_CP_CONSTRAINT_INFO;
16007 case USERDEF_LITERAL: return TS_CP_USERDEF_LITERAL;
16008 default: return TS_CP_GENERIC;
16012 /* Build the void_list_node (void_type_node having been created). */
16013 tree
16014 build_void_list_node (void)
16016 tree t = build_tree_list (NULL_TREE, void_type_node);
16017 return t;
16020 bool
16021 cp_missing_noreturn_ok_p (tree decl)
16023 /* A missing noreturn is ok for the `main' function. */
16024 return DECL_MAIN_P (decl);
16027 /* Return the decl used to identify the COMDAT group into which DECL should
16028 be placed. */
16030 tree
16031 cxx_comdat_group (tree decl)
16033 /* Virtual tables, construction virtual tables, and virtual table
16034 tables all go in a single COMDAT group, named after the primary
16035 virtual table. */
16036 if (VAR_P (decl) && DECL_VTABLE_OR_VTT_P (decl))
16037 decl = CLASSTYPE_VTABLES (DECL_CONTEXT (decl));
16038 /* For all other DECLs, the COMDAT group is the mangled name of the
16039 declaration itself. */
16040 else
16042 while (DECL_THUNK_P (decl))
16044 /* If TARGET_USE_LOCAL_THUNK_ALIAS_P, use_thunk puts the thunk
16045 into the same section as the target function. In that case
16046 we must return target's name. */
16047 tree target = THUNK_TARGET (decl);
16048 if (TARGET_USE_LOCAL_THUNK_ALIAS_P (target)
16049 && DECL_SECTION_NAME (target) != NULL
16050 && DECL_ONE_ONLY (target))
16051 decl = target;
16052 else
16053 break;
16057 return decl;
16060 /* Returns the return type for FN as written by the user, which may include
16061 a placeholder for a deduced return type. */
16063 tree
16064 fndecl_declared_return_type (tree fn)
16066 fn = STRIP_TEMPLATE (fn);
16067 if (FNDECL_USED_AUTO (fn))
16069 struct language_function *f = NULL;
16070 if (DECL_STRUCT_FUNCTION (fn))
16071 f = DECL_STRUCT_FUNCTION (fn)->language;
16072 if (f == NULL)
16073 f = DECL_SAVED_FUNCTION_DATA (fn);
16074 return f->x_auto_return_pattern;
16076 return TREE_TYPE (TREE_TYPE (fn));
16079 /* Returns true iff DECL was declared with an auto type and it has
16080 not yet been deduced to a real type. */
16082 bool
16083 undeduced_auto_decl (tree decl)
16085 if (cxx_dialect < cxx11)
16086 return false;
16087 return type_uses_auto (TREE_TYPE (decl));
16090 /* Complain if DECL has an undeduced return type. */
16092 bool
16093 require_deduced_type (tree decl, tsubst_flags_t complain)
16095 if (undeduced_auto_decl (decl))
16097 if (complain & tf_error)
16098 error ("use of %qD before deduction of %<auto%>", decl);
16099 return false;
16101 return true;
16104 #include "gt-cp-decl.h"