PR target/84064
[official-gcc.git] / gcc / cp / decl.c
blob244a3efe831f55c4d8a937a20a1988f3c3b9cc7c
1 /* Process declarations and variables for C++ compiler.
2 Copyright (C) 1988-2018 Free Software Foundation, Inc.
3 Contributed by Michael Tiemann (tiemann@cygnus.com)
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
22 /* Process declarations and symbol lookup for C++ front end.
23 Also constructs types; the standard scalar types at initialization,
24 and structure, union, array and enum types when they are declared. */
26 /* ??? not all decl nodes are given the most useful possible
27 line numbers. For example, the CONST_DECLs for enum values. */
29 #include "config.h"
30 #include "system.h"
31 #include "coretypes.h"
32 #include "target.h"
33 #include "c-family/c-target.h"
34 #include "cp-tree.h"
35 #include "timevar.h"
36 #include "stringpool.h"
37 #include "cgraph.h"
38 #include "stor-layout.h"
39 #include "varasm.h"
40 #include "attribs.h"
41 #include "flags.h"
42 #include "tree-iterator.h"
43 #include "decl.h"
44 #include "intl.h"
45 #include "toplev.h"
46 #include "c-family/c-objc.h"
47 #include "c-family/c-pragma.h"
48 #include "c-family/c-ubsan.h"
49 #include "debug.h"
50 #include "plugin.h"
51 #include "builtins.h"
52 #include "gimplify.h"
53 #include "asan.h"
55 /* Possible cases of bad specifiers type used by bad_specifiers. */
56 enum bad_spec_place {
57 BSP_VAR, /* variable */
58 BSP_PARM, /* parameter */
59 BSP_TYPE, /* type */
60 BSP_FIELD /* field */
63 static const char *redeclaration_error_message (tree, tree);
65 static int decl_jump_unsafe (tree);
66 static void require_complete_types_for_parms (tree);
67 static void push_local_name (tree);
68 static tree grok_reference_init (tree, tree, tree, int);
69 static tree grokvardecl (tree, tree, tree, const cp_decl_specifier_seq *,
70 int, int, int, bool, int, tree);
71 static int check_static_variable_definition (tree, tree);
72 static void record_unknown_type (tree, const char *);
73 static tree builtin_function_1 (tree, tree, bool);
74 static int member_function_or_else (tree, tree, enum overload_flags);
75 static tree local_variable_p_walkfn (tree *, int *, void *);
76 static const char *tag_name (enum tag_types);
77 static tree lookup_and_check_tag (enum tag_types, tree, tag_scope, bool);
78 static void maybe_deduce_size_from_array_init (tree, tree);
79 static void layout_var_decl (tree);
80 static tree check_initializer (tree, tree, int, vec<tree, va_gc> **);
81 static void make_rtl_for_nonlocal_decl (tree, tree, const char *);
82 static void save_function_data (tree);
83 static void copy_type_enum (tree , tree);
84 static void check_function_type (tree, tree);
85 static void finish_constructor_body (void);
86 static void begin_destructor_body (void);
87 static void finish_destructor_body (void);
88 static void record_key_method_defined (tree);
89 static tree create_array_type_for_decl (tree, tree, tree);
90 static tree get_atexit_node (void);
91 static tree get_dso_handle_node (void);
92 static tree start_cleanup_fn (void);
93 static void end_cleanup_fn (void);
94 static tree cp_make_fname_decl (location_t, tree, int);
95 static void initialize_predefined_identifiers (void);
96 static tree check_special_function_return_type
97 (special_function_kind, tree, tree, int, const location_t*);
98 static tree push_cp_library_fn (enum tree_code, tree, int);
99 static tree build_cp_library_fn (tree, enum tree_code, tree, int);
100 static void store_parm_decls (tree);
101 static void initialize_local_var (tree, tree);
102 static void expand_static_init (tree, tree);
104 /* The following symbols are subsumed in the cp_global_trees array, and
105 listed here individually for documentation purposes.
107 C++ extensions
108 tree wchar_decl_node;
110 tree vtable_entry_type;
111 tree delta_type_node;
112 tree __t_desc_type_node;
114 tree class_type_node;
115 tree unknown_type_node;
117 Array type `vtable_entry_type[]'
119 tree vtbl_type_node;
120 tree vtbl_ptr_type_node;
122 Namespaces,
124 tree std_node;
125 tree abi_node;
127 A FUNCTION_DECL which can call `abort'. Not necessarily the
128 one that the user will declare, but sufficient to be called
129 by routines that want to abort the program.
131 tree abort_fndecl;
133 Used by RTTI
134 tree type_info_type_node, tinfo_decl_id, tinfo_decl_type;
135 tree tinfo_var_id; */
137 tree cp_global_trees[CPTI_MAX];
139 #define local_names cp_function_chain->x_local_names
141 /* A list of objects which have constructors or destructors
142 which reside in the global scope. The decl is stored in
143 the TREE_VALUE slot and the initializer is stored
144 in the TREE_PURPOSE slot. */
145 tree static_aggregates;
147 /* Like static_aggregates, but for thread_local variables. */
148 tree tls_aggregates;
150 /* -- end of C++ */
152 /* A node for the integer constant 2. */
154 tree integer_two_node;
156 /* vector of static decls. */
157 vec<tree, va_gc> *static_decls;
159 /* vector of keyed classes. */
160 vec<tree, va_gc> *keyed_classes;
162 /* Used only for jumps to as-yet undefined labels, since jumps to
163 defined labels can have their validity checked immediately. */
165 struct GTY((chain_next ("%h.next"))) named_label_use_entry {
166 struct named_label_use_entry *next;
167 /* The binding level to which this entry is *currently* attached.
168 This is initially the binding level in which the goto appeared,
169 but is modified as scopes are closed. */
170 cp_binding_level *binding_level;
171 /* The head of the names list that was current when the goto appeared,
172 or the inner scope popped. These are the decls that will *not* be
173 skipped when jumping to the label. */
174 tree names_in_scope;
175 /* The location of the goto, for error reporting. */
176 location_t o_goto_locus;
177 /* True if an OpenMP structured block scope has been closed since
178 the goto appeared. This means that the branch from the label will
179 illegally exit an OpenMP scope. */
180 bool in_omp_scope;
183 /* A list of all LABEL_DECLs in the function that have names. Here so
184 we can clear out their names' definitions at the end of the
185 function, and so we can check the validity of jumps to these labels. */
187 struct GTY((for_user)) named_label_entry {
189 tree name; /* Name of decl. */
191 tree label_decl; /* LABEL_DECL, unless deleted local label. */
193 named_label_entry *outer; /* Outer shadowed chain. */
195 /* The binding level to which the label is *currently* attached.
196 This is initially set to the binding level in which the label
197 is defined, but is modified as scopes are closed. */
198 cp_binding_level *binding_level;
200 /* The head of the names list that was current when the label was
201 defined, or the inner scope popped. These are the decls that will
202 be skipped when jumping to the label. */
203 tree names_in_scope;
205 /* A vector of all decls from all binding levels that would be
206 crossed by a backward branch to the label. */
207 vec<tree, va_gc> *bad_decls;
209 /* A list of uses of the label, before the label is defined. */
210 named_label_use_entry *uses;
212 /* The following bits are set after the label is defined, and are
213 updated as scopes are popped. They indicate that a jump to the
214 label will illegally enter a scope of the given flavor. */
215 bool in_try_scope;
216 bool in_catch_scope;
217 bool in_omp_scope;
218 bool in_transaction_scope;
219 bool in_constexpr_if;
222 #define named_labels cp_function_chain->x_named_labels
224 /* The number of function bodies which we are currently processing.
225 (Zero if we are at namespace scope, one inside the body of a
226 function, two inside the body of a function in a local class, etc.) */
227 int function_depth;
229 /* Whether the exception-specifier is part of a function type (i.e. C++17). */
230 bool flag_noexcept_type;
232 /* States indicating how grokdeclarator() should handle declspecs marked
233 with __attribute__((deprecated)). An object declared as
234 __attribute__((deprecated)) suppresses warnings of uses of other
235 deprecated items. */
236 enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
239 /* A list of VAR_DECLs whose type was incomplete at the time the
240 variable was declared. */
242 struct GTY(()) incomplete_var {
243 tree decl;
244 tree incomplete_type;
248 static GTY(()) vec<incomplete_var, va_gc> *incomplete_vars;
250 /* Returns the kind of template specialization we are currently
251 processing, given that it's declaration contained N_CLASS_SCOPES
252 explicit scope qualifications. */
254 tmpl_spec_kind
255 current_tmpl_spec_kind (int n_class_scopes)
257 int n_template_parm_scopes = 0;
258 int seen_specialization_p = 0;
259 int innermost_specialization_p = 0;
260 cp_binding_level *b;
262 /* Scan through the template parameter scopes. */
263 for (b = current_binding_level;
264 b->kind == sk_template_parms;
265 b = b->level_chain)
267 /* If we see a specialization scope inside a parameter scope,
268 then something is wrong. That corresponds to a declaration
269 like:
271 template <class T> template <> ...
273 which is always invalid since [temp.expl.spec] forbids the
274 specialization of a class member template if the enclosing
275 class templates are not explicitly specialized as well. */
276 if (b->explicit_spec_p)
278 if (n_template_parm_scopes == 0)
279 innermost_specialization_p = 1;
280 else
281 seen_specialization_p = 1;
283 else if (seen_specialization_p == 1)
284 return tsk_invalid_member_spec;
286 ++n_template_parm_scopes;
289 /* Handle explicit instantiations. */
290 if (processing_explicit_instantiation)
292 if (n_template_parm_scopes != 0)
293 /* We've seen a template parameter list during an explicit
294 instantiation. For example:
296 template <class T> template void f(int);
298 This is erroneous. */
299 return tsk_invalid_expl_inst;
300 else
301 return tsk_expl_inst;
304 if (n_template_parm_scopes < n_class_scopes)
305 /* We've not seen enough template headers to match all the
306 specialized classes present. For example:
308 template <class T> void R<T>::S<T>::f(int);
310 This is invalid; there needs to be one set of template
311 parameters for each class. */
312 return tsk_insufficient_parms;
313 else if (n_template_parm_scopes == n_class_scopes)
314 /* We're processing a non-template declaration (even though it may
315 be a member of a template class.) For example:
317 template <class T> void S<T>::f(int);
319 The `class T' matches the `S<T>', leaving no template headers
320 corresponding to the `f'. */
321 return tsk_none;
322 else if (n_template_parm_scopes > n_class_scopes + 1)
323 /* We've got too many template headers. For example:
325 template <> template <class T> void f (T);
327 There need to be more enclosing classes. */
328 return tsk_excessive_parms;
329 else
330 /* This must be a template. It's of the form:
332 template <class T> template <class U> void S<T>::f(U);
334 This is a specialization if the innermost level was a
335 specialization; otherwise it's just a definition of the
336 template. */
337 return innermost_specialization_p ? tsk_expl_spec : tsk_template;
340 /* Exit the current scope. */
342 void
343 finish_scope (void)
345 poplevel (0, 0, 0);
348 /* When a label goes out of scope, check to see if that label was used
349 in a valid manner, and issue any appropriate warnings or errors. */
351 static void
352 check_label_used (tree label)
354 if (!processing_template_decl)
356 if (DECL_INITIAL (label) == NULL_TREE)
358 location_t location;
360 error ("label %q+D used but not defined", label);
361 location = input_location;
362 /* FIXME want (LOCATION_FILE (input_location), (line)0) */
363 /* Avoid crashing later. */
364 define_label (location, DECL_NAME (label));
366 else
367 warn_for_unused_label (label);
371 /* Helper function to sort named label entries in a vector by DECL_UID. */
373 static int
374 sort_labels (const void *a, const void *b)
376 tree label1 = *(tree const *) a;
377 tree label2 = *(tree const *) b;
379 /* DECL_UIDs can never be equal. */
380 return DECL_UID (label1) > DECL_UID (label2) ? -1 : +1;
383 /* At the end of a function, all labels declared within the function
384 go out of scope. BLOCK is the top-level block for the
385 function. */
387 static void
388 pop_labels (tree block)
390 if (!named_labels)
391 return;
393 /* We need to add the labels to the block chain, so debug
394 information is emitted. But, we want the order to be stable so
395 need to sort them first. Otherwise the debug output could be
396 randomly ordered. I guess it's mostly stable, unless the hash
397 table implementation changes. */
398 auto_vec<tree, 32> labels (named_labels->elements ());
399 hash_table<named_label_hash>::iterator end (named_labels->end ());
400 for (hash_table<named_label_hash>::iterator iter
401 (named_labels->begin ()); iter != end; ++iter)
403 named_label_entry *ent = *iter;
405 gcc_checking_assert (!ent->outer);
406 if (ent->label_decl)
407 labels.quick_push (ent->label_decl);
408 ggc_free (ent);
410 named_labels = NULL;
411 labels.qsort (sort_labels);
413 while (labels.length ())
415 tree label = labels.pop ();
417 DECL_CHAIN (label) = BLOCK_VARS (block);
418 BLOCK_VARS (block) = label;
420 check_label_used (label);
424 /* At the end of a block with local labels, restore the outer definition. */
426 static void
427 pop_local_label (tree id, tree label)
429 check_label_used (label);
430 named_label_entry **slot = named_labels->find_slot_with_hash
431 (id, IDENTIFIER_HASH_VALUE (id), NO_INSERT);
432 named_label_entry *ent = *slot;
434 if (ent->outer)
435 ent = ent->outer;
436 else
438 ent = ggc_cleared_alloc<named_label_entry> ();
439 ent->name = id;
441 *slot = ent;
444 /* The following two routines are used to interface to Objective-C++.
445 The binding level is purposely treated as an opaque type. */
447 void *
448 objc_get_current_scope (void)
450 return current_binding_level;
453 /* The following routine is used by the NeXT-style SJLJ exceptions;
454 variables get marked 'volatile' so as to not be clobbered by
455 _setjmp()/_longjmp() calls. All variables in the current scope,
456 as well as parent scopes up to (but not including) ENCLOSING_BLK
457 shall be thusly marked. */
459 void
460 objc_mark_locals_volatile (void *enclosing_blk)
462 cp_binding_level *scope;
464 for (scope = current_binding_level;
465 scope && scope != enclosing_blk;
466 scope = scope->level_chain)
468 tree decl;
470 for (decl = scope->names; decl; decl = TREE_CHAIN (decl))
471 objc_volatilize_decl (decl);
473 /* Do not climb up past the current function. */
474 if (scope->kind == sk_function_parms)
475 break;
479 /* True if B is the level for the condition of a constexpr if. */
481 static bool
482 level_for_constexpr_if (cp_binding_level *b)
484 return (b->kind == sk_cond && b->this_entity
485 && TREE_CODE (b->this_entity) == IF_STMT
486 && IF_STMT_CONSTEXPR_P (b->this_entity));
489 /* Update data for defined and undefined labels when leaving a scope. */
492 poplevel_named_label_1 (named_label_entry **slot, cp_binding_level *bl)
494 named_label_entry *ent = *slot;
495 cp_binding_level *obl = bl->level_chain;
497 if (ent->binding_level == bl)
499 tree decl;
501 /* ENT->NAMES_IN_SCOPE may contain a mixture of DECLs and
502 TREE_LISTs representing OVERLOADs, so be careful. */
503 for (decl = ent->names_in_scope; decl; decl = (DECL_P (decl)
504 ? DECL_CHAIN (decl)
505 : TREE_CHAIN (decl)))
506 if (decl_jump_unsafe (decl))
507 vec_safe_push (ent->bad_decls, decl);
509 ent->binding_level = obl;
510 ent->names_in_scope = obl->names;
511 switch (bl->kind)
513 case sk_try:
514 ent->in_try_scope = true;
515 break;
516 case sk_catch:
517 ent->in_catch_scope = true;
518 break;
519 case sk_omp:
520 ent->in_omp_scope = true;
521 break;
522 case sk_transaction:
523 ent->in_transaction_scope = true;
524 break;
525 case sk_block:
526 if (level_for_constexpr_if (bl->level_chain))
527 ent->in_constexpr_if = true;
528 break;
529 default:
530 break;
533 else if (ent->uses)
535 struct named_label_use_entry *use;
537 for (use = ent->uses; use ; use = use->next)
538 if (use->binding_level == bl)
540 use->binding_level = obl;
541 use->names_in_scope = obl->names;
542 if (bl->kind == sk_omp)
543 use->in_omp_scope = true;
547 return 1;
550 /* Saved errorcount to avoid -Wunused-but-set-{parameter,variable} warnings
551 when errors were reported, except for -Werror-unused-but-set-*. */
552 static int unused_but_set_errorcount;
554 /* Exit a binding level.
555 Pop the level off, and restore the state of the identifier-decl mappings
556 that were in effect when this level was entered.
558 If KEEP == 1, this level had explicit declarations, so
559 and create a "block" (a BLOCK node) for the level
560 to record its declarations and subblocks for symbol table output.
562 If FUNCTIONBODY is nonzero, this level is the body of a function,
563 so create a block as if KEEP were set and also clear out all
564 label names.
566 If REVERSE is nonzero, reverse the order of decls before putting
567 them into the BLOCK. */
569 tree
570 poplevel (int keep, int reverse, int functionbody)
572 tree link;
573 /* The chain of decls was accumulated in reverse order.
574 Put it into forward order, just for cleanliness. */
575 tree decls;
576 tree subblocks;
577 tree block;
578 tree decl;
579 int leaving_for_scope;
580 scope_kind kind;
581 unsigned ix;
583 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
584 restart:
586 block = NULL_TREE;
588 gcc_assert (current_binding_level->kind != sk_class
589 && current_binding_level->kind != sk_namespace);
591 if (current_binding_level->kind == sk_cleanup)
592 functionbody = 0;
593 subblocks = functionbody >= 0 ? current_binding_level->blocks : 0;
595 gcc_assert (!vec_safe_length (current_binding_level->class_shadowed));
597 /* We used to use KEEP == 2 to indicate that the new block should go
598 at the beginning of the list of blocks at this binding level,
599 rather than the end. This hack is no longer used. */
600 gcc_assert (keep == 0 || keep == 1);
602 if (current_binding_level->keep)
603 keep = 1;
605 /* Any uses of undefined labels, and any defined labels, now operate
606 under constraints of next binding contour. */
607 if (cfun && !functionbody && named_labels)
608 named_labels->traverse<cp_binding_level *, poplevel_named_label_1>
609 (current_binding_level);
611 /* Get the decls in the order they were written.
612 Usually current_binding_level->names is in reverse order.
613 But parameter decls were previously put in forward order. */
615 decls = current_binding_level->names;
616 if (reverse)
618 decls = nreverse (decls);
619 current_binding_level->names = decls;
622 /* If there were any declarations or structure tags in that level,
623 or if this level is a function body,
624 create a BLOCK to record them for the life of this function. */
625 block = NULL_TREE;
626 /* Avoid function body block if possible. */
627 if (functionbody && subblocks && BLOCK_CHAIN (subblocks) == NULL_TREE)
628 keep = 0;
629 else if (keep == 1 || functionbody)
630 block = make_node (BLOCK);
631 if (block != NULL_TREE)
633 BLOCK_VARS (block) = decls;
634 BLOCK_SUBBLOCKS (block) = subblocks;
637 /* In each subblock, record that this is its superior. */
638 if (keep >= 0)
639 for (link = subblocks; link; link = BLOCK_CHAIN (link))
640 BLOCK_SUPERCONTEXT (link) = block;
642 /* We still support the old for-scope rules, whereby the variables
643 in a init statement were in scope after the for-statement ended.
644 We only use the new rules if flag_new_for_scope is nonzero. */
645 leaving_for_scope
646 = current_binding_level->kind == sk_for && flag_new_for_scope;
648 /* Before we remove the declarations first check for unused variables. */
649 if ((warn_unused_variable || warn_unused_but_set_variable)
650 && current_binding_level->kind != sk_template_parms
651 && !processing_template_decl)
652 for (tree d = get_local_decls (); d; d = TREE_CHAIN (d))
654 /* There are cases where D itself is a TREE_LIST. See in
655 push_local_binding where the list of decls returned by
656 getdecls is built. */
657 decl = TREE_CODE (d) == TREE_LIST ? TREE_VALUE (d) : d;
659 tree type = TREE_TYPE (decl);
660 if (VAR_P (decl)
661 && (! TREE_USED (decl) || !DECL_READ_P (decl))
662 && ! DECL_IN_SYSTEM_HEADER (decl)
663 /* For structured bindings, consider only real variables, not
664 subobjects. */
665 && (DECL_DECOMPOSITION_P (decl) ? !DECL_DECOMP_BASE (decl)
666 : (DECL_NAME (decl) && !DECL_ARTIFICIAL (decl)))
667 && type != error_mark_node
668 && (!CLASS_TYPE_P (type)
669 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
670 || lookup_attribute ("warn_unused",
671 TYPE_ATTRIBUTES (TREE_TYPE (decl)))))
673 if (! TREE_USED (decl))
675 if (!DECL_NAME (decl) && DECL_DECOMPOSITION_P (decl))
676 warning_at (DECL_SOURCE_LOCATION (decl),
677 OPT_Wunused_variable,
678 "unused structured binding declaration");
679 else
680 warning_at (DECL_SOURCE_LOCATION (decl),
681 OPT_Wunused_variable, "unused variable %qD", decl);
683 else if (DECL_CONTEXT (decl) == current_function_decl
684 // For -Wunused-but-set-variable leave references alone.
685 && TREE_CODE (TREE_TYPE (decl)) != REFERENCE_TYPE
686 && errorcount == unused_but_set_errorcount)
688 if (!DECL_NAME (decl) && DECL_DECOMPOSITION_P (decl))
689 warning_at (DECL_SOURCE_LOCATION (decl),
690 OPT_Wunused_but_set_variable, "structured "
691 "binding declaration set but not used");
692 else
693 warning_at (DECL_SOURCE_LOCATION (decl),
694 OPT_Wunused_but_set_variable,
695 "variable %qD set but not used", decl);
696 unused_but_set_errorcount = errorcount;
701 /* Remove declarations for all the DECLs in this level. */
702 for (link = decls; link; link = TREE_CHAIN (link))
704 decl = TREE_CODE (link) == TREE_LIST ? TREE_VALUE (link) : link;
705 tree name = OVL_NAME (decl);
707 if (leaving_for_scope && VAR_P (decl)
708 /* It's hard to make this ARM compatibility hack play nicely with
709 lambdas, and it really isn't necessary in C++11 mode. */
710 && cxx_dialect < cxx11
711 && name)
713 cxx_binding *ob = outer_binding (name,
714 IDENTIFIER_BINDING (name),
715 /*class_p=*/true);
716 tree ns_binding = NULL_TREE;
717 if (!ob)
718 ns_binding = get_namespace_binding (current_namespace, name);
720 if (ob && ob->scope == current_binding_level->level_chain)
721 /* We have something like:
723 int i;
724 for (int i; ;);
726 and we are leaving the `for' scope. There's no reason to
727 keep the binding of the inner `i' in this case. */
729 else if ((ob && (TREE_CODE (ob->value) == TYPE_DECL))
730 || (ns_binding && TREE_CODE (ns_binding) == TYPE_DECL))
731 /* Here, we have something like:
733 typedef int I;
735 void f () {
736 for (int I; ;);
739 We must pop the for-scope binding so we know what's a
740 type and what isn't. */
742 else
744 /* Mark this VAR_DECL as dead so that we can tell we left it
745 there only for backward compatibility. */
746 DECL_DEAD_FOR_LOCAL (link) = 1;
748 /* Keep track of what should have happened when we
749 popped the binding. */
750 if (ob && ob->value)
752 SET_DECL_SHADOWED_FOR_VAR (link, ob->value);
753 DECL_HAS_SHADOWED_FOR_VAR_P (link) = 1;
756 /* Add it to the list of dead variables in the next
757 outermost binding to that we can remove these when we
758 leave that binding. */
759 vec_safe_push (
760 current_binding_level->level_chain->dead_vars_from_for,
761 link);
763 /* Although we don't pop the cxx_binding, we do clear
764 its SCOPE since the scope is going away now. */
765 IDENTIFIER_BINDING (name)->scope
766 = current_binding_level->level_chain;
768 /* Don't remove the binding. */
769 name = NULL_TREE;
772 /* Remove the binding. */
773 if (TREE_CODE (decl) == LABEL_DECL)
774 pop_local_label (name, decl);
775 else
776 pop_local_binding (name, decl);
779 /* Remove declarations for any `for' variables from inner scopes
780 that we kept around. */
781 FOR_EACH_VEC_SAFE_ELT_REVERSE (current_binding_level->dead_vars_from_for,
782 ix, decl)
783 pop_local_binding (DECL_NAME (decl), decl);
785 /* Restore the IDENTIFIER_TYPE_VALUEs. */
786 for (link = current_binding_level->type_shadowed;
787 link; link = TREE_CHAIN (link))
788 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (link), TREE_VALUE (link));
790 /* There may be OVERLOADs (wrapped in TREE_LISTs) on the BLOCK_VARs
791 list if a `using' declaration put them there. The debugging
792 back ends won't understand OVERLOAD, so we remove them here.
793 Because the BLOCK_VARS are (temporarily) shared with
794 CURRENT_BINDING_LEVEL->NAMES we must do this fixup after we have
795 popped all the bindings. Also remove undeduced 'auto' decls,
796 which LTO doesn't understand, and can't have been used by anything. */
797 if (block)
799 tree* d;
801 for (d = &BLOCK_VARS (block); *d; )
803 if (TREE_CODE (*d) == TREE_LIST
804 || (!processing_template_decl
805 && undeduced_auto_decl (*d)))
806 *d = TREE_CHAIN (*d);
807 else
808 d = &DECL_CHAIN (*d);
812 /* If the level being exited is the top level of a function,
813 check over all the labels. */
814 if (functionbody)
816 if (block)
818 /* Since this is the top level block of a function, the vars are
819 the function's parameters. Don't leave them in the BLOCK
820 because they are found in the FUNCTION_DECL instead. */
821 BLOCK_VARS (block) = 0;
822 pop_labels (block);
824 else
825 pop_labels (subblocks);
828 kind = current_binding_level->kind;
829 if (kind == sk_cleanup)
831 tree stmt;
833 /* If this is a temporary binding created for a cleanup, then we'll
834 have pushed a statement list level. Pop that, create a new
835 BIND_EXPR for the block, and insert it into the stream. */
836 stmt = pop_stmt_list (current_binding_level->statement_list);
837 stmt = c_build_bind_expr (input_location, block, stmt);
838 add_stmt (stmt);
841 leave_scope ();
842 if (functionbody)
844 /* The current function is being defined, so its DECL_INITIAL
845 should be error_mark_node. */
846 gcc_assert (DECL_INITIAL (current_function_decl) == error_mark_node);
847 DECL_INITIAL (current_function_decl) = block ? block : subblocks;
848 if (subblocks)
850 if (FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
852 if (BLOCK_SUBBLOCKS (subblocks))
853 BLOCK_OUTER_CURLY_BRACE_P (BLOCK_SUBBLOCKS (subblocks)) = 1;
855 else
856 BLOCK_OUTER_CURLY_BRACE_P (subblocks) = 1;
859 else if (block)
860 current_binding_level->blocks
861 = block_chainon (current_binding_level->blocks, block);
863 /* If we did not make a block for the level just exited,
864 any blocks made for inner levels
865 (since they cannot be recorded as subblocks in that level)
866 must be carried forward so they will later become subblocks
867 of something else. */
868 else if (subblocks)
869 current_binding_level->blocks
870 = block_chainon (current_binding_level->blocks, subblocks);
872 /* Each and every BLOCK node created here in `poplevel' is important
873 (e.g. for proper debugging information) so if we created one
874 earlier, mark it as "used". */
875 if (block)
876 TREE_USED (block) = 1;
878 /* All temporary bindings created for cleanups are popped silently. */
879 if (kind == sk_cleanup)
880 goto restart;
882 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
883 return block;
886 /* Call wrapup_globals_declarations for the globals in NAMESPACE. */
887 /* Diagnose odr-used extern inline variables without definitions
888 in the current TU. */
891 wrapup_namespace_globals ()
893 if (vec<tree, va_gc> *statics = static_decls)
895 tree decl;
896 unsigned int i;
897 FOR_EACH_VEC_ELT (*statics, i, decl)
899 if (warn_unused_function
900 && TREE_CODE (decl) == FUNCTION_DECL
901 && DECL_INITIAL (decl) == 0
902 && DECL_EXTERNAL (decl)
903 && !TREE_PUBLIC (decl)
904 && !DECL_ARTIFICIAL (decl)
905 && !DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl)
906 && !TREE_NO_WARNING (decl))
907 warning_at (DECL_SOURCE_LOCATION (decl),
908 OPT_Wunused_function,
909 "%qF declared %<static%> but never defined", decl);
911 if (VAR_P (decl)
912 && DECL_EXTERNAL (decl)
913 && DECL_INLINE_VAR_P (decl)
914 && DECL_ODR_USED (decl))
915 error_at (DECL_SOURCE_LOCATION (decl),
916 "odr-used inline variable %qD is not defined", decl);
919 /* Clear out the list, so we don't rescan next time. */
920 static_decls = NULL;
922 /* Write out any globals that need to be output. */
923 return wrapup_global_declarations (statics->address (),
924 statics->length ());
926 return 0;
929 /* In C++, you don't have to write `struct S' to refer to `S'; you
930 can just use `S'. We accomplish this by creating a TYPE_DECL as
931 if the user had written `typedef struct S S'. Create and return
932 the TYPE_DECL for TYPE. */
934 tree
935 create_implicit_typedef (tree name, tree type)
937 tree decl;
939 decl = build_decl (input_location, TYPE_DECL, name, type);
940 DECL_ARTIFICIAL (decl) = 1;
941 /* There are other implicit type declarations, like the one *within*
942 a class that allows you to write `S::S'. We must distinguish
943 amongst these. */
944 SET_DECL_IMPLICIT_TYPEDEF_P (decl);
945 TYPE_NAME (type) = decl;
946 TYPE_STUB_DECL (type) = decl;
948 return decl;
951 /* Remember a local name for name-mangling purposes. */
953 static void
954 push_local_name (tree decl)
956 size_t i, nelts;
957 tree t, name;
959 timevar_start (TV_NAME_LOOKUP);
961 name = DECL_NAME (decl);
963 nelts = vec_safe_length (local_names);
964 for (i = 0; i < nelts; i++)
966 t = (*local_names)[i];
967 if (DECL_NAME (t) == name)
969 retrofit_lang_decl (decl);
970 DECL_LANG_SPECIFIC (decl)->u.base.u2sel = 1;
971 if (DECL_DISCRIMINATOR_SET_P (t))
972 DECL_DISCRIMINATOR (decl) = DECL_DISCRIMINATOR (t) + 1;
973 else
974 DECL_DISCRIMINATOR (decl) = 1;
976 (*local_names)[i] = decl;
977 timevar_stop (TV_NAME_LOOKUP);
978 return;
982 vec_safe_push (local_names, decl);
983 timevar_stop (TV_NAME_LOOKUP);
986 /* Subroutine of duplicate_decls: return truthvalue of whether
987 or not types of these decls match.
989 For C++, we must compare the parameter list so that `int' can match
990 `int&' in a parameter position, but `int&' is not confused with
991 `const int&'. */
994 decls_match (tree newdecl, tree olddecl, bool record_versions /* = true */)
996 int types_match;
998 if (newdecl == olddecl)
999 return 1;
1001 if (TREE_CODE (newdecl) != TREE_CODE (olddecl))
1002 /* If the two DECLs are not even the same kind of thing, we're not
1003 interested in their types. */
1004 return 0;
1006 gcc_assert (DECL_P (newdecl));
1008 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1010 tree f1 = TREE_TYPE (newdecl);
1011 tree f2 = TREE_TYPE (olddecl);
1012 tree p1 = TYPE_ARG_TYPES (f1);
1013 tree p2 = TYPE_ARG_TYPES (f2);
1014 tree r2;
1016 /* Specializations of different templates are different functions
1017 even if they have the same type. */
1018 tree t1 = (DECL_USE_TEMPLATE (newdecl)
1019 ? DECL_TI_TEMPLATE (newdecl)
1020 : NULL_TREE);
1021 tree t2 = (DECL_USE_TEMPLATE (olddecl)
1022 ? DECL_TI_TEMPLATE (olddecl)
1023 : NULL_TREE);
1024 if (t1 != t2)
1025 return 0;
1027 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
1028 && ! (DECL_EXTERN_C_P (newdecl)
1029 && DECL_EXTERN_C_P (olddecl)))
1030 return 0;
1032 /* A new declaration doesn't match a built-in one unless it
1033 is also extern "C". */
1034 if (DECL_IS_BUILTIN (olddecl)
1035 && DECL_EXTERN_C_P (olddecl) && !DECL_EXTERN_C_P (newdecl))
1036 return 0;
1038 if (TREE_CODE (f1) != TREE_CODE (f2))
1039 return 0;
1041 /* A declaration with deduced return type should use its pre-deduction
1042 type for declaration matching. */
1043 r2 = fndecl_declared_return_type (olddecl);
1045 if (same_type_p (TREE_TYPE (f1), r2))
1047 if (!prototype_p (f2) && DECL_EXTERN_C_P (olddecl)
1048 && (DECL_BUILT_IN (olddecl)
1049 #ifndef NO_IMPLICIT_EXTERN_C
1050 || (DECL_IN_SYSTEM_HEADER (newdecl) && !DECL_CLASS_SCOPE_P (newdecl))
1051 || (DECL_IN_SYSTEM_HEADER (olddecl) && !DECL_CLASS_SCOPE_P (olddecl))
1052 #endif
1055 types_match = self_promoting_args_p (p1);
1056 if (p1 == void_list_node)
1057 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
1059 #ifndef NO_IMPLICIT_EXTERN_C
1060 else if (!prototype_p (f1)
1061 && (DECL_EXTERN_C_P (olddecl)
1062 && DECL_IN_SYSTEM_HEADER (olddecl)
1063 && !DECL_CLASS_SCOPE_P (olddecl))
1064 && (DECL_EXTERN_C_P (newdecl)
1065 && DECL_IN_SYSTEM_HEADER (newdecl)
1066 && !DECL_CLASS_SCOPE_P (newdecl)))
1068 types_match = self_promoting_args_p (p2);
1069 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
1071 #endif
1072 else
1073 types_match =
1074 compparms (p1, p2)
1075 && type_memfn_rqual (f1) == type_memfn_rqual (f2)
1076 && (TYPE_ATTRIBUTES (TREE_TYPE (newdecl)) == NULL_TREE
1077 || comp_type_attributes (TREE_TYPE (newdecl),
1078 TREE_TYPE (olddecl)) != 0);
1080 else
1081 types_match = 0;
1083 /* The decls dont match if they correspond to two different versions
1084 of the same function. Disallow extern "C" functions to be
1085 versions for now. */
1086 if (types_match
1087 && !DECL_EXTERN_C_P (newdecl)
1088 && !DECL_EXTERN_C_P (olddecl)
1089 && record_versions
1090 && maybe_version_functions (newdecl, olddecl))
1091 return 0;
1093 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1095 tree oldres = DECL_TEMPLATE_RESULT (olddecl);
1096 tree newres = DECL_TEMPLATE_RESULT (newdecl);
1098 if (TREE_CODE (newres) != TREE_CODE (oldres))
1099 return 0;
1101 if (!comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1102 DECL_TEMPLATE_PARMS (olddecl)))
1103 return 0;
1105 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1106 types_match = (same_type_p (TREE_TYPE (oldres), TREE_TYPE (newres))
1107 && equivalently_constrained (olddecl, newdecl));
1108 else
1109 // We don't need to check equivalently_constrained for variable and
1110 // function templates because we check it on the results.
1111 types_match = decls_match (oldres, newres);
1113 else
1115 /* Need to check scope for variable declaration (VAR_DECL).
1116 For typedef (TYPE_DECL), scope is ignored. */
1117 if (VAR_P (newdecl)
1118 && CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
1119 /* [dcl.link]
1120 Two declarations for an object with C language linkage
1121 with the same name (ignoring the namespace that qualify
1122 it) that appear in different namespace scopes refer to
1123 the same object. */
1124 && !(DECL_EXTERN_C_P (olddecl) && DECL_EXTERN_C_P (newdecl)))
1125 return 0;
1127 if (TREE_TYPE (newdecl) == error_mark_node)
1128 types_match = TREE_TYPE (olddecl) == error_mark_node;
1129 else if (TREE_TYPE (olddecl) == NULL_TREE)
1130 types_match = TREE_TYPE (newdecl) == NULL_TREE;
1131 else if (TREE_TYPE (newdecl) == NULL_TREE)
1132 types_match = 0;
1133 else
1134 types_match = comptypes (TREE_TYPE (newdecl),
1135 TREE_TYPE (olddecl),
1136 COMPARE_REDECLARATION);
1139 // Normal functions can be constrained, as can variable partial
1140 // specializations.
1141 if (types_match && VAR_OR_FUNCTION_DECL_P (newdecl))
1142 types_match = equivalently_constrained (newdecl, olddecl);
1144 return types_match;
1147 /* NEWDECL and OLDDECL have identical signatures. If they are
1148 different versions adjust them and return true. */
1150 bool
1151 maybe_version_functions (tree newdecl, tree olddecl)
1153 if (!targetm.target_option.function_versions (newdecl, olddecl))
1154 return false;
1156 bool record = false;
1158 if (!DECL_FUNCTION_VERSIONED (olddecl))
1160 record = true;
1161 DECL_FUNCTION_VERSIONED (olddecl) = 1;
1162 if (DECL_ASSEMBLER_NAME_SET_P (olddecl))
1163 mangle_decl (olddecl);
1166 if (!DECL_FUNCTION_VERSIONED (newdecl))
1168 record = true;
1169 DECL_FUNCTION_VERSIONED (newdecl) = 1;
1170 if (DECL_ASSEMBLER_NAME_SET_P (newdecl))
1171 mangle_decl (newdecl);
1174 /* Only record if at least one was not already versions. */
1175 if (record)
1176 cgraph_node::record_function_versions (olddecl, newdecl);
1178 return true;
1181 /* If NEWDECL is `static' and an `extern' was seen previously,
1182 warn about it. OLDDECL is the previous declaration.
1184 Note that this does not apply to the C++ case of declaring
1185 a variable `extern const' and then later `const'.
1187 Don't complain about built-in functions, since they are beyond
1188 the user's control. */
1190 void
1191 warn_extern_redeclared_static (tree newdecl, tree olddecl)
1193 if (TREE_CODE (newdecl) == TYPE_DECL
1194 || TREE_CODE (newdecl) == TEMPLATE_DECL
1195 || TREE_CODE (newdecl) == CONST_DECL
1196 || TREE_CODE (newdecl) == NAMESPACE_DECL)
1197 return;
1199 /* Don't get confused by static member functions; that's a different
1200 use of `static'. */
1201 if (TREE_CODE (newdecl) == FUNCTION_DECL
1202 && DECL_STATIC_FUNCTION_P (newdecl))
1203 return;
1205 /* If the old declaration was `static', or the new one isn't, then
1206 everything is OK. */
1207 if (DECL_THIS_STATIC (olddecl) || !DECL_THIS_STATIC (newdecl))
1208 return;
1210 /* It's OK to declare a builtin function as `static'. */
1211 if (TREE_CODE (olddecl) == FUNCTION_DECL
1212 && DECL_ARTIFICIAL (olddecl))
1213 return;
1215 if (permerror (DECL_SOURCE_LOCATION (newdecl),
1216 "%qD was declared %<extern%> and later %<static%>", newdecl))
1217 inform (DECL_SOURCE_LOCATION (olddecl),
1218 "previous declaration of %qD", olddecl);
1221 /* NEW_DECL is a redeclaration of OLD_DECL; both are functions or
1222 function templates. If their exception specifications do not
1223 match, issue a diagnostic. */
1225 static void
1226 check_redeclaration_exception_specification (tree new_decl,
1227 tree old_decl)
1229 tree new_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl));
1230 tree old_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl));
1232 /* Two default specs are equivalent, don't force evaluation. */
1233 if (UNEVALUATED_NOEXCEPT_SPEC_P (new_exceptions)
1234 && UNEVALUATED_NOEXCEPT_SPEC_P (old_exceptions))
1235 return;
1237 maybe_instantiate_noexcept (new_decl);
1238 maybe_instantiate_noexcept (old_decl);
1239 new_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl));
1240 old_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl));
1242 /* [except.spec]
1244 If any declaration of a function has an exception-specification,
1245 all declarations, including the definition and an explicit
1246 specialization, of that function shall have an
1247 exception-specification with the same set of type-ids. */
1248 if (! DECL_IS_BUILTIN (old_decl)
1249 && !comp_except_specs (new_exceptions, old_exceptions, ce_normal))
1251 const char *const msg
1252 = G_("declaration of %qF has a different exception specifier");
1253 bool complained = true;
1254 location_t new_loc = DECL_SOURCE_LOCATION (new_decl);
1255 if (DECL_IN_SYSTEM_HEADER (old_decl))
1256 complained = pedwarn (new_loc, OPT_Wsystem_headers, msg, new_decl);
1257 else if (!flag_exceptions)
1258 /* We used to silently permit mismatched eh specs with
1259 -fno-exceptions, so make them a pedwarn now. */
1260 complained = pedwarn (new_loc, OPT_Wpedantic, msg, new_decl);
1261 else
1262 error_at (new_loc, msg, new_decl);
1263 if (complained)
1264 inform (DECL_SOURCE_LOCATION (old_decl),
1265 "from previous declaration %qF", old_decl);
1269 /* Return true if OLD_DECL and NEW_DECL agree on constexprness.
1270 Otherwise issue diagnostics. */
1272 static bool
1273 validate_constexpr_redeclaration (tree old_decl, tree new_decl)
1275 old_decl = STRIP_TEMPLATE (old_decl);
1276 new_decl = STRIP_TEMPLATE (new_decl);
1277 if (!VAR_OR_FUNCTION_DECL_P (old_decl)
1278 || !VAR_OR_FUNCTION_DECL_P (new_decl))
1279 return true;
1280 if (DECL_DECLARED_CONSTEXPR_P (old_decl)
1281 == DECL_DECLARED_CONSTEXPR_P (new_decl))
1282 return true;
1283 if (TREE_CODE (old_decl) == FUNCTION_DECL)
1285 if (DECL_BUILT_IN (old_decl))
1287 /* Hide a built-in declaration. */
1288 DECL_DECLARED_CONSTEXPR_P (old_decl)
1289 = DECL_DECLARED_CONSTEXPR_P (new_decl);
1290 return true;
1292 /* 7.1.5 [dcl.constexpr]
1293 Note: An explicit specialization can differ from the template
1294 declaration with respect to the constexpr specifier. */
1295 if (! DECL_TEMPLATE_SPECIALIZATION (old_decl)
1296 && DECL_TEMPLATE_SPECIALIZATION (new_decl))
1297 return true;
1299 error_at (DECL_SOURCE_LOCATION (new_decl),
1300 "redeclaration %qD differs in %<constexpr%> "
1301 "from previous declaration", new_decl);
1302 inform (DECL_SOURCE_LOCATION (old_decl),
1303 "previous declaration %qD", old_decl);
1304 return false;
1306 return true;
1309 // If OLDDECL and NEWDECL are concept declarations with the same type
1310 // (i.e., and template parameters), but different requirements,
1311 // emit diagnostics and return true. Otherwise, return false.
1312 static inline bool
1313 check_concept_refinement (tree olddecl, tree newdecl)
1315 if (!DECL_DECLARED_CONCEPT_P (olddecl) || !DECL_DECLARED_CONCEPT_P (newdecl))
1316 return false;
1318 tree d1 = DECL_TEMPLATE_RESULT (olddecl);
1319 tree d2 = DECL_TEMPLATE_RESULT (newdecl);
1320 if (TREE_CODE (d1) != TREE_CODE (d2))
1321 return false;
1323 tree t1 = TREE_TYPE (d1);
1324 tree t2 = TREE_TYPE (d2);
1325 if (TREE_CODE (d1) == FUNCTION_DECL)
1327 if (compparms (TYPE_ARG_TYPES (t1), TYPE_ARG_TYPES (t2))
1328 && comp_template_parms (DECL_TEMPLATE_PARMS (olddecl),
1329 DECL_TEMPLATE_PARMS (newdecl))
1330 && !equivalently_constrained (olddecl, newdecl))
1332 error ("cannot specialize concept %q#D", olddecl);
1333 return true;
1336 return false;
1339 /* DECL is a redeclaration of a function or function template. If
1340 it does have default arguments issue a diagnostic. Note: this
1341 function is used to enforce the requirements in C++11 8.3.6 about
1342 no default arguments in redeclarations. */
1344 static void
1345 check_redeclaration_no_default_args (tree decl)
1347 gcc_assert (DECL_DECLARES_FUNCTION_P (decl));
1349 for (tree t = FUNCTION_FIRST_USER_PARMTYPE (decl);
1350 t && t != void_list_node; t = TREE_CHAIN (t))
1351 if (TREE_PURPOSE (t))
1353 permerror (DECL_SOURCE_LOCATION (decl),
1354 "redeclaration of %q#D may not have default "
1355 "arguments", decl);
1356 return;
1360 #define GNU_INLINE_P(fn) (DECL_DECLARED_INLINE_P (fn) \
1361 && lookup_attribute ("gnu_inline", \
1362 DECL_ATTRIBUTES (fn)))
1364 /* If NEWDECL is a redeclaration of OLDDECL, merge the declarations.
1365 If the redeclaration is invalid, a diagnostic is issued, and the
1366 error_mark_node is returned. Otherwise, OLDDECL is returned.
1368 If NEWDECL is not a redeclaration of OLDDECL, NULL_TREE is
1369 returned.
1371 NEWDECL_IS_FRIEND is true if NEWDECL was declared as a friend. */
1373 tree
1374 duplicate_decls (tree newdecl, tree olddecl, bool newdecl_is_friend)
1376 unsigned olddecl_uid = DECL_UID (olddecl);
1377 int olddecl_friend = 0, types_match = 0, hidden_friend = 0;
1378 int new_defines_function = 0;
1379 tree new_template_info;
1381 if (newdecl == olddecl)
1382 return olddecl;
1384 types_match = decls_match (newdecl, olddecl);
1386 /* If either the type of the new decl or the type of the old decl is an
1387 error_mark_node, then that implies that we have already issued an
1388 error (earlier) for some bogus type specification, and in that case,
1389 it is rather pointless to harass the user with yet more error message
1390 about the same declaration, so just pretend the types match here. */
1391 if (TREE_TYPE (newdecl) == error_mark_node
1392 || TREE_TYPE (olddecl) == error_mark_node)
1393 return error_mark_node;
1395 if (UDLIT_OPER_P (DECL_NAME (newdecl))
1396 && UDLIT_OPER_P (DECL_NAME (olddecl)))
1398 if (TREE_CODE (newdecl) == TEMPLATE_DECL
1399 && TREE_CODE (olddecl) != TEMPLATE_DECL
1400 && check_raw_literal_operator (olddecl))
1401 error ("literal operator template %q+D conflicts with"
1402 " raw literal operator %qD", newdecl, olddecl);
1403 else if (TREE_CODE (newdecl) != TEMPLATE_DECL
1404 && TREE_CODE (olddecl) == TEMPLATE_DECL
1405 && check_raw_literal_operator (newdecl))
1406 error ("raw literal operator %q+D conflicts with"
1407 " literal operator template %qD", newdecl, olddecl);
1410 if (DECL_P (olddecl)
1411 && TREE_CODE (newdecl) == FUNCTION_DECL
1412 && TREE_CODE (olddecl) == FUNCTION_DECL
1413 && diagnose_mismatched_attributes (olddecl, newdecl))
1415 if (DECL_INITIAL (olddecl))
1416 inform (DECL_SOURCE_LOCATION (olddecl),
1417 "previous definition of %qD was here", olddecl);
1418 else
1419 inform (DECL_SOURCE_LOCATION (olddecl),
1420 "previous declaration of %qD was here", olddecl);
1423 /* Check for redeclaration and other discrepancies. */
1424 if (TREE_CODE (olddecl) == FUNCTION_DECL
1425 && DECL_ARTIFICIAL (olddecl))
1427 gcc_assert (!DECL_HIDDEN_FRIEND_P (olddecl));
1428 if (TREE_CODE (newdecl) != FUNCTION_DECL)
1430 /* Avoid warnings redeclaring built-ins which have not been
1431 explicitly declared. */
1432 if (DECL_ANTICIPATED (olddecl))
1434 if (TREE_PUBLIC (newdecl)
1435 && CP_DECL_CONTEXT (newdecl) == global_namespace)
1436 warning_at (DECL_SOURCE_LOCATION (newdecl),
1437 OPT_Wbuiltin_declaration_mismatch,
1438 "built-in function %qD declared as non-function",
1439 newdecl);
1440 return NULL_TREE;
1443 /* If you declare a built-in or predefined function name as static,
1444 the old definition is overridden, but optionally warn this was a
1445 bad choice of name. */
1446 if (! TREE_PUBLIC (newdecl))
1448 warning (OPT_Wshadow,
1449 DECL_BUILT_IN (olddecl)
1450 ? G_("shadowing built-in function %q#D")
1451 : G_("shadowing library function %q#D"), olddecl);
1452 /* Discard the old built-in function. */
1453 return NULL_TREE;
1455 /* If the built-in is not ansi, then programs can override
1456 it even globally without an error. */
1457 else if (! DECL_BUILT_IN (olddecl))
1458 warning_at (DECL_SOURCE_LOCATION (newdecl), 0,
1459 "library function %q#D redeclared as non-function %q#D",
1460 olddecl, newdecl);
1461 else
1462 error ("declaration of %q+#D conflicts with built-in "
1463 "declaration %q#D", newdecl, olddecl);
1464 return NULL_TREE;
1466 else if (DECL_OMP_DECLARE_REDUCTION_P (olddecl))
1468 gcc_assert (DECL_OMP_DECLARE_REDUCTION_P (newdecl));
1469 error_at (DECL_SOURCE_LOCATION (newdecl),
1470 "redeclaration of %<pragma omp declare reduction%>");
1471 inform (DECL_SOURCE_LOCATION (olddecl),
1472 "previous %<pragma omp declare reduction%> declaration");
1473 return error_mark_node;
1475 else if (!types_match)
1477 /* Avoid warnings redeclaring built-ins which have not been
1478 explicitly declared. */
1479 if (DECL_ANTICIPATED (olddecl))
1481 tree t1, t2;
1483 /* A new declaration doesn't match a built-in one unless it
1484 is also extern "C". */
1485 gcc_assert (DECL_IS_BUILTIN (olddecl));
1486 gcc_assert (DECL_EXTERN_C_P (olddecl));
1487 if (!DECL_EXTERN_C_P (newdecl))
1488 return NULL_TREE;
1490 for (t1 = TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1491 t2 = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1492 t1 || t2;
1493 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
1495 if (!t1 || !t2)
1496 break;
1497 /* FILE, tm types are not known at the time
1498 we create the builtins. */
1499 for (unsigned i = 0;
1500 i < sizeof (builtin_structptr_types)
1501 / sizeof (builtin_structptr_type);
1502 ++i)
1503 if (TREE_VALUE (t2) == builtin_structptr_types[i].node)
1505 tree t = TREE_VALUE (t1);
1507 if (TYPE_PTR_P (t)
1508 && TYPE_IDENTIFIER (TREE_TYPE (t))
1509 == get_identifier (builtin_structptr_types[i].str)
1510 && compparms (TREE_CHAIN (t1), TREE_CHAIN (t2)))
1512 tree oldargs = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1514 TYPE_ARG_TYPES (TREE_TYPE (olddecl))
1515 = TYPE_ARG_TYPES (TREE_TYPE (newdecl));
1516 types_match = decls_match (newdecl, olddecl);
1517 if (types_match)
1518 return duplicate_decls (newdecl, olddecl,
1519 newdecl_is_friend);
1520 TYPE_ARG_TYPES (TREE_TYPE (olddecl)) = oldargs;
1522 goto next_arg;
1525 if (! same_type_p (TREE_VALUE (t1), TREE_VALUE (t2)))
1526 break;
1527 next_arg:;
1530 warning_at (DECL_SOURCE_LOCATION (newdecl),
1531 OPT_Wbuiltin_declaration_mismatch,
1532 "declaration of %q#D conflicts with built-in "
1533 "declaration %q#D", newdecl, olddecl);
1535 else if ((DECL_EXTERN_C_P (newdecl)
1536 && DECL_EXTERN_C_P (olddecl))
1537 || compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1538 TYPE_ARG_TYPES (TREE_TYPE (olddecl))))
1540 /* A near match; override the builtin. */
1542 if (TREE_PUBLIC (newdecl))
1543 warning_at (DECL_SOURCE_LOCATION (newdecl),
1544 OPT_Wbuiltin_declaration_mismatch,
1545 "new declaration %q#D ambiguates built-in "
1546 "declaration %q#D", newdecl, olddecl);
1547 else
1548 warning (OPT_Wshadow,
1549 DECL_BUILT_IN (olddecl)
1550 ? G_("shadowing built-in function %q#D")
1551 : G_("shadowing library function %q#D"), olddecl);
1553 else
1554 /* Discard the old built-in function. */
1555 return NULL_TREE;
1557 /* Replace the old RTL to avoid problems with inlining. */
1558 COPY_DECL_RTL (newdecl, olddecl);
1560 /* Even if the types match, prefer the new declarations type for
1561 built-ins which have not been explicitly declared, for
1562 exception lists, etc... */
1563 else if (DECL_IS_BUILTIN (olddecl))
1565 tree type = TREE_TYPE (newdecl);
1566 tree attribs = (*targetm.merge_type_attributes)
1567 (TREE_TYPE (olddecl), type);
1569 type = cp_build_type_attribute_variant (type, attribs);
1570 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = type;
1573 /* If a function is explicitly declared "throw ()", propagate that to
1574 the corresponding builtin. */
1575 if (DECL_BUILT_IN_CLASS (olddecl) == BUILT_IN_NORMAL
1576 && DECL_ANTICIPATED (olddecl)
1577 && TREE_NOTHROW (newdecl)
1578 && !TREE_NOTHROW (olddecl))
1580 enum built_in_function fncode = DECL_FUNCTION_CODE (olddecl);
1581 tree tmpdecl = builtin_decl_explicit (fncode);
1582 if (tmpdecl && tmpdecl != olddecl && types_match)
1583 TREE_NOTHROW (tmpdecl) = 1;
1586 /* Whether or not the builtin can throw exceptions has no
1587 bearing on this declarator. */
1588 TREE_NOTHROW (olddecl) = 0;
1590 if (DECL_THIS_STATIC (newdecl) && !DECL_THIS_STATIC (olddecl))
1592 /* If a builtin function is redeclared as `static', merge
1593 the declarations, but make the original one static. */
1594 DECL_THIS_STATIC (olddecl) = 1;
1595 TREE_PUBLIC (olddecl) = 0;
1597 /* Make the old declaration consistent with the new one so
1598 that all remnants of the builtin-ness of this function
1599 will be banished. */
1600 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
1601 COPY_DECL_RTL (newdecl, olddecl);
1604 else if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1606 /* C++ Standard, 3.3, clause 4:
1607 "[Note: a namespace name or a class template name must be unique
1608 in its declarative region (7.3.2, clause 14). ]" */
1609 if (TREE_CODE (olddecl) != NAMESPACE_DECL
1610 && TREE_CODE (newdecl) != NAMESPACE_DECL
1611 && (TREE_CODE (olddecl) != TEMPLATE_DECL
1612 || TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) != TYPE_DECL)
1613 && (TREE_CODE (newdecl) != TEMPLATE_DECL
1614 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != TYPE_DECL))
1616 if ((TREE_CODE (olddecl) == TYPE_DECL && DECL_ARTIFICIAL (olddecl)
1617 && TREE_CODE (newdecl) != TYPE_DECL)
1618 || (TREE_CODE (newdecl) == TYPE_DECL && DECL_ARTIFICIAL (newdecl)
1619 && TREE_CODE (olddecl) != TYPE_DECL))
1621 /* We do nothing special here, because C++ does such nasty
1622 things with TYPE_DECLs. Instead, just let the TYPE_DECL
1623 get shadowed, and know that if we need to find a TYPE_DECL
1624 for a given name, we can look in the IDENTIFIER_TYPE_VALUE
1625 slot of the identifier. */
1626 return NULL_TREE;
1629 if ((TREE_CODE (newdecl) == FUNCTION_DECL
1630 && DECL_FUNCTION_TEMPLATE_P (olddecl))
1631 || (TREE_CODE (olddecl) == FUNCTION_DECL
1632 && DECL_FUNCTION_TEMPLATE_P (newdecl)))
1633 return NULL_TREE;
1636 error ("%q#D redeclared as different kind of symbol", newdecl);
1637 if (TREE_CODE (olddecl) == TREE_LIST)
1638 olddecl = TREE_VALUE (olddecl);
1639 inform (DECL_SOURCE_LOCATION (olddecl),
1640 "previous declaration %q#D", olddecl);
1642 return error_mark_node;
1644 else if (!types_match)
1646 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl))
1647 /* These are certainly not duplicate declarations; they're
1648 from different scopes. */
1649 return NULL_TREE;
1651 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1653 /* The name of a class template may not be declared to refer to
1654 any other template, class, function, object, namespace, value,
1655 or type in the same scope. */
1656 if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == TYPE_DECL
1657 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1659 error ("conflicting declaration of template %q+#D", newdecl);
1660 inform (DECL_SOURCE_LOCATION (olddecl),
1661 "previous declaration %q#D", olddecl);
1662 return error_mark_node;
1664 else if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == FUNCTION_DECL
1665 && TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == FUNCTION_DECL
1666 && compparms (TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl))),
1667 TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (newdecl))))
1668 && comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1669 DECL_TEMPLATE_PARMS (olddecl))
1670 /* Template functions can be disambiguated by
1671 return type. */
1672 && same_type_p (TREE_TYPE (TREE_TYPE (newdecl)),
1673 TREE_TYPE (TREE_TYPE (olddecl)))
1674 // Template functions can also be disambiguated by
1675 // constraints.
1676 && equivalently_constrained (olddecl, newdecl))
1678 error ("ambiguating new declaration %q+#D", newdecl);
1679 inform (DECL_SOURCE_LOCATION (olddecl),
1680 "old declaration %q#D", olddecl);
1682 else if (check_concept_refinement (olddecl, newdecl))
1683 return error_mark_node;
1684 return NULL_TREE;
1686 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1688 if (DECL_EXTERN_C_P (newdecl) && DECL_EXTERN_C_P (olddecl))
1690 error ("conflicting declaration of C function %q+#D",
1691 newdecl);
1692 inform (DECL_SOURCE_LOCATION (olddecl),
1693 "previous declaration %q#D", olddecl);
1694 return NULL_TREE;
1696 /* For function versions, params and types match, but they
1697 are not ambiguous. */
1698 else if ((!DECL_FUNCTION_VERSIONED (newdecl)
1699 && !DECL_FUNCTION_VERSIONED (olddecl))
1700 // The functions have the same parameter types.
1701 && compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1702 TYPE_ARG_TYPES (TREE_TYPE (olddecl)))
1703 // And the same constraints.
1704 && equivalently_constrained (newdecl, olddecl))
1706 error ("ambiguating new declaration of %q+#D", newdecl);
1707 inform (DECL_SOURCE_LOCATION (olddecl),
1708 "old declaration %q#D", olddecl);
1709 return error_mark_node;
1711 else
1712 return NULL_TREE;
1714 else
1716 error ("conflicting declaration %q+#D", newdecl);
1717 inform (DECL_SOURCE_LOCATION (olddecl),
1718 "previous declaration as %q#D", olddecl);
1719 return error_mark_node;
1722 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1723 && ((DECL_TEMPLATE_SPECIALIZATION (olddecl)
1724 && (!DECL_TEMPLATE_INFO (newdecl)
1725 || (DECL_TI_TEMPLATE (newdecl)
1726 != DECL_TI_TEMPLATE (olddecl))))
1727 || (DECL_TEMPLATE_SPECIALIZATION (newdecl)
1728 && (!DECL_TEMPLATE_INFO (olddecl)
1729 || (DECL_TI_TEMPLATE (olddecl)
1730 != DECL_TI_TEMPLATE (newdecl))))))
1731 /* It's OK to have a template specialization and a non-template
1732 with the same type, or to have specializations of two
1733 different templates with the same type. Note that if one is a
1734 specialization, and the other is an instantiation of the same
1735 template, that we do not exit at this point. That situation
1736 can occur if we instantiate a template class, and then
1737 specialize one of its methods. This situation is valid, but
1738 the declarations must be merged in the usual way. */
1739 return NULL_TREE;
1740 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1741 && ((DECL_TEMPLATE_INSTANTIATION (olddecl)
1742 && !DECL_USE_TEMPLATE (newdecl))
1743 || (DECL_TEMPLATE_INSTANTIATION (newdecl)
1744 && !DECL_USE_TEMPLATE (olddecl))))
1745 /* One of the declarations is a template instantiation, and the
1746 other is not a template at all. That's OK. */
1747 return NULL_TREE;
1748 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
1750 /* In [namespace.alias] we have:
1752 In a declarative region, a namespace-alias-definition can be
1753 used to redefine a namespace-alias declared in that declarative
1754 region to refer only to the namespace to which it already
1755 refers.
1757 Therefore, if we encounter a second alias directive for the same
1758 alias, we can just ignore the second directive. */
1759 if (DECL_NAMESPACE_ALIAS (newdecl)
1760 && (DECL_NAMESPACE_ALIAS (newdecl)
1761 == DECL_NAMESPACE_ALIAS (olddecl)))
1762 return olddecl;
1764 /* Leave it to update_binding to merge or report error. */
1765 return NULL_TREE;
1767 else
1769 const char *errmsg = redeclaration_error_message (newdecl, olddecl);
1770 if (errmsg)
1772 error_at (DECL_SOURCE_LOCATION (newdecl), errmsg, newdecl);
1773 if (DECL_NAME (olddecl) != NULL_TREE)
1774 inform (DECL_SOURCE_LOCATION (olddecl),
1775 (DECL_INITIAL (olddecl) && namespace_bindings_p ())
1776 ? G_("%q#D previously defined here")
1777 : G_("%q#D previously declared here"), olddecl);
1778 return error_mark_node;
1780 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1781 && DECL_INITIAL (olddecl) != NULL_TREE
1782 && !prototype_p (TREE_TYPE (olddecl))
1783 && prototype_p (TREE_TYPE (newdecl)))
1785 /* Prototype decl follows defn w/o prototype. */
1786 if (warning_at (DECL_SOURCE_LOCATION (newdecl), 0,
1787 "prototype specified for %q#D", newdecl))
1788 inform (DECL_SOURCE_LOCATION (olddecl),
1789 "previous non-prototype definition here");
1791 else if (VAR_OR_FUNCTION_DECL_P (olddecl)
1792 && DECL_LANGUAGE (newdecl) != DECL_LANGUAGE (olddecl))
1794 /* [dcl.link]
1795 If two declarations of the same function or object
1796 specify different linkage-specifications ..., the program
1797 is ill-formed.... Except for functions with C++ linkage,
1798 a function declaration without a linkage specification
1799 shall not precede the first linkage specification for
1800 that function. A function can be declared without a
1801 linkage specification after an explicit linkage
1802 specification has been seen; the linkage explicitly
1803 specified in the earlier declaration is not affected by
1804 such a function declaration.
1806 DR 563 raises the question why the restrictions on
1807 functions should not also apply to objects. Older
1808 versions of G++ silently ignore the linkage-specification
1809 for this example:
1811 namespace N {
1812 extern int i;
1813 extern "C" int i;
1816 which is clearly wrong. Therefore, we now treat objects
1817 like functions. */
1818 if (current_lang_depth () == 0)
1820 /* There is no explicit linkage-specification, so we use
1821 the linkage from the previous declaration. */
1822 retrofit_lang_decl (newdecl);
1823 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
1825 else
1827 error ("conflicting declaration of %q+#D with %qL linkage",
1828 newdecl, DECL_LANGUAGE (newdecl));
1829 inform (DECL_SOURCE_LOCATION (olddecl),
1830 "previous declaration with %qL linkage",
1831 DECL_LANGUAGE (olddecl));
1835 if (DECL_LANG_SPECIFIC (olddecl) && DECL_USE_TEMPLATE (olddecl))
1837 else if (TREE_CODE (olddecl) == FUNCTION_DECL)
1839 /* Note: free functions, as TEMPLATE_DECLs, are handled below. */
1840 if (DECL_FUNCTION_MEMBER_P (olddecl)
1841 && (/* grokfndecl passes member function templates too
1842 as FUNCTION_DECLs. */
1843 DECL_TEMPLATE_INFO (olddecl)
1844 /* C++11 8.3.6/6.
1845 Default arguments for a member function of a class
1846 template shall be specified on the initial declaration
1847 of the member function within the class template. */
1848 || CLASSTYPE_TEMPLATE_INFO (CP_DECL_CONTEXT (olddecl))))
1849 check_redeclaration_no_default_args (newdecl);
1850 else
1852 tree t1 = FUNCTION_FIRST_USER_PARMTYPE (olddecl);
1853 tree t2 = FUNCTION_FIRST_USER_PARMTYPE (newdecl);
1854 int i = 1;
1856 for (; t1 && t1 != void_list_node;
1857 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2), i++)
1858 if (TREE_PURPOSE (t1) && TREE_PURPOSE (t2))
1860 if (simple_cst_equal (TREE_PURPOSE (t1),
1861 TREE_PURPOSE (t2)) == 1)
1863 if (permerror (input_location,
1864 "default argument given for parameter "
1865 "%d of %q#D", i, newdecl))
1866 inform (DECL_SOURCE_LOCATION (olddecl),
1867 "previous specification in %q#D here",
1868 olddecl);
1870 else
1872 error ("default argument given for parameter %d "
1873 "of %q#D", i, newdecl);
1874 inform (DECL_SOURCE_LOCATION (olddecl),
1875 "previous specification in %q#D here",
1876 olddecl);
1883 /* Do not merge an implicit typedef with an explicit one. In:
1885 class A;
1887 typedef class A A __attribute__ ((foo));
1889 the attribute should apply only to the typedef. */
1890 if (TREE_CODE (olddecl) == TYPE_DECL
1891 && (DECL_IMPLICIT_TYPEDEF_P (olddecl)
1892 || DECL_IMPLICIT_TYPEDEF_P (newdecl)))
1893 return NULL_TREE;
1895 /* If new decl is `static' and an `extern' was seen previously,
1896 warn about it. */
1897 warn_extern_redeclared_static (newdecl, olddecl);
1899 if (!validate_constexpr_redeclaration (olddecl, newdecl))
1900 return error_mark_node;
1902 /* We have committed to returning 1 at this point. */
1903 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1905 /* Now that functions must hold information normally held
1906 by field decls, there is extra work to do so that
1907 declaration information does not get destroyed during
1908 definition. */
1909 if (DECL_VINDEX (olddecl))
1910 DECL_VINDEX (newdecl) = DECL_VINDEX (olddecl);
1911 if (DECL_CONTEXT (olddecl))
1912 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1913 DECL_STATIC_CONSTRUCTOR (newdecl) |= DECL_STATIC_CONSTRUCTOR (olddecl);
1914 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1915 DECL_PURE_VIRTUAL_P (newdecl) |= DECL_PURE_VIRTUAL_P (olddecl);
1916 DECL_VIRTUAL_P (newdecl) |= DECL_VIRTUAL_P (olddecl);
1917 DECL_INVALID_OVERRIDER_P (newdecl) |= DECL_INVALID_OVERRIDER_P (olddecl);
1918 DECL_FINAL_P (newdecl) |= DECL_FINAL_P (olddecl);
1919 DECL_OVERRIDE_P (newdecl) |= DECL_OVERRIDE_P (olddecl);
1920 DECL_THIS_STATIC (newdecl) |= DECL_THIS_STATIC (olddecl);
1921 if (DECL_OVERLOADED_OPERATOR_P (olddecl))
1922 DECL_OVERLOADED_OPERATOR_CODE_RAW (newdecl)
1923 = DECL_OVERLOADED_OPERATOR_CODE_RAW (olddecl);
1924 new_defines_function = DECL_INITIAL (newdecl) != NULL_TREE;
1926 /* Optionally warn about more than one declaration for the same
1927 name, but don't warn about a function declaration followed by a
1928 definition. */
1929 if (warn_redundant_decls && ! DECL_ARTIFICIAL (olddecl)
1930 && !(new_defines_function && DECL_INITIAL (olddecl) == NULL_TREE)
1931 /* Don't warn about extern decl followed by definition. */
1932 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl))
1933 /* Don't warn about friends, let add_friend take care of it. */
1934 && ! (newdecl_is_friend || DECL_FRIEND_P (olddecl))
1935 /* Don't warn about declaration followed by specialization. */
1936 && (! DECL_TEMPLATE_SPECIALIZATION (newdecl)
1937 || DECL_TEMPLATE_SPECIALIZATION (olddecl)))
1939 if (warning_at (DECL_SOURCE_LOCATION (newdecl),
1940 OPT_Wredundant_decls,
1941 "redundant redeclaration of %qD in same scope",
1942 newdecl))
1943 inform (DECL_SOURCE_LOCATION (olddecl),
1944 "previous declaration of %qD", olddecl);
1947 if (!(DECL_TEMPLATE_INSTANTIATION (olddecl)
1948 && DECL_TEMPLATE_SPECIALIZATION (newdecl)))
1950 if (DECL_DELETED_FN (newdecl))
1952 error ("deleted definition of %q+D", newdecl);
1953 inform (DECL_SOURCE_LOCATION (olddecl),
1954 "previous declaration of %qD", olddecl);
1956 DECL_DELETED_FN (newdecl) |= DECL_DELETED_FN (olddecl);
1960 /* Deal with C++: must preserve virtual function table size. */
1961 if (TREE_CODE (olddecl) == TYPE_DECL)
1963 tree newtype = TREE_TYPE (newdecl);
1964 tree oldtype = TREE_TYPE (olddecl);
1966 if (newtype != error_mark_node && oldtype != error_mark_node
1967 && TYPE_LANG_SPECIFIC (newtype) && TYPE_LANG_SPECIFIC (oldtype))
1968 CLASSTYPE_FRIEND_CLASSES (newtype)
1969 = CLASSTYPE_FRIEND_CLASSES (oldtype);
1971 DECL_ORIGINAL_TYPE (newdecl) = DECL_ORIGINAL_TYPE (olddecl);
1974 /* Copy all the DECL_... slots specified in the new decl
1975 except for any that we copy here from the old type. */
1976 DECL_ATTRIBUTES (newdecl)
1977 = (*targetm.merge_decl_attributes) (olddecl, newdecl);
1979 if (DECL_DECLARES_FUNCTION_P (olddecl) && DECL_DECLARES_FUNCTION_P (newdecl))
1981 olddecl_friend = DECL_FRIEND_P (olddecl);
1982 hidden_friend = (DECL_ANTICIPATED (olddecl)
1983 && DECL_HIDDEN_FRIEND_P (olddecl)
1984 && newdecl_is_friend);
1985 if (!hidden_friend)
1987 DECL_ANTICIPATED (olddecl) = 0;
1988 DECL_HIDDEN_FRIEND_P (olddecl) = 0;
1992 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1994 tree old_result;
1995 tree new_result;
1996 old_result = DECL_TEMPLATE_RESULT (olddecl);
1997 new_result = DECL_TEMPLATE_RESULT (newdecl);
1998 TREE_TYPE (olddecl) = TREE_TYPE (old_result);
1999 DECL_TEMPLATE_SPECIALIZATIONS (olddecl)
2000 = chainon (DECL_TEMPLATE_SPECIALIZATIONS (olddecl),
2001 DECL_TEMPLATE_SPECIALIZATIONS (newdecl));
2003 DECL_ATTRIBUTES (old_result)
2004 = (*targetm.merge_decl_attributes) (old_result, new_result);
2006 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
2008 /* Per C++11 8.3.6/4, default arguments cannot be added in later
2009 declarations of a function template. */
2010 if (DECL_SOURCE_LOCATION (newdecl)
2011 != DECL_SOURCE_LOCATION (olddecl))
2012 check_redeclaration_no_default_args (newdecl);
2014 check_default_args (newdecl);
2016 if (GNU_INLINE_P (old_result) != GNU_INLINE_P (new_result)
2017 && DECL_INITIAL (new_result))
2019 if (DECL_INITIAL (old_result))
2020 DECL_UNINLINABLE (old_result) = 1;
2021 else
2022 DECL_UNINLINABLE (old_result) = DECL_UNINLINABLE (new_result);
2023 DECL_EXTERNAL (old_result) = DECL_EXTERNAL (new_result);
2024 DECL_NOT_REALLY_EXTERN (old_result)
2025 = DECL_NOT_REALLY_EXTERN (new_result);
2026 DECL_INTERFACE_KNOWN (old_result)
2027 = DECL_INTERFACE_KNOWN (new_result);
2028 DECL_DECLARED_INLINE_P (old_result)
2029 = DECL_DECLARED_INLINE_P (new_result);
2030 DECL_DISREGARD_INLINE_LIMITS (old_result)
2031 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
2034 else
2036 DECL_DECLARED_INLINE_P (old_result)
2037 |= DECL_DECLARED_INLINE_P (new_result);
2038 DECL_DISREGARD_INLINE_LIMITS (old_result)
2039 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
2040 check_redeclaration_exception_specification (newdecl, olddecl);
2044 /* If the new declaration is a definition, update the file and
2045 line information on the declaration, and also make
2046 the old declaration the same definition. */
2047 if (DECL_INITIAL (new_result) != NULL_TREE)
2049 DECL_SOURCE_LOCATION (olddecl)
2050 = DECL_SOURCE_LOCATION (old_result)
2051 = DECL_SOURCE_LOCATION (newdecl);
2052 DECL_INITIAL (old_result) = DECL_INITIAL (new_result);
2053 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
2055 tree parm;
2056 DECL_ARGUMENTS (old_result)
2057 = DECL_ARGUMENTS (new_result);
2058 for (parm = DECL_ARGUMENTS (old_result); parm;
2059 parm = DECL_CHAIN (parm))
2060 DECL_CONTEXT (parm) = old_result;
2064 return olddecl;
2067 if (types_match)
2069 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2070 check_redeclaration_exception_specification (newdecl, olddecl);
2072 /* Automatically handles default parameters. */
2073 tree oldtype = TREE_TYPE (olddecl);
2074 tree newtype;
2076 /* For typedefs use the old type, as the new type's DECL_NAME points
2077 at newdecl, which will be ggc_freed. */
2078 if (TREE_CODE (newdecl) == TYPE_DECL)
2080 /* But NEWTYPE might have an attribute, honor that. */
2081 tree tem = TREE_TYPE (newdecl);
2082 newtype = oldtype;
2084 if (TYPE_USER_ALIGN (tem))
2086 if (TYPE_ALIGN (tem) > TYPE_ALIGN (newtype))
2087 SET_TYPE_ALIGN (newtype, TYPE_ALIGN (tem));
2088 TYPE_USER_ALIGN (newtype) = true;
2091 /* And remove the new type from the variants list. */
2092 if (TYPE_NAME (TREE_TYPE (newdecl)) == newdecl)
2094 tree remove = TREE_TYPE (newdecl);
2095 for (tree t = TYPE_MAIN_VARIANT (remove); ;
2096 t = TYPE_NEXT_VARIANT (t))
2097 if (TYPE_NEXT_VARIANT (t) == remove)
2099 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (remove);
2100 break;
2104 else
2105 /* Merge the data types specified in the two decls. */
2106 newtype = merge_types (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
2108 if (VAR_P (newdecl))
2110 DECL_THIS_EXTERN (newdecl) |= DECL_THIS_EXTERN (olddecl);
2111 /* For already initialized vars, TREE_READONLY could have been
2112 cleared in cp_finish_decl, because the var needs runtime
2113 initialization or destruction. Make sure not to set
2114 TREE_READONLY on it again. */
2115 if (DECL_INITIALIZED_P (olddecl)
2116 && !DECL_EXTERNAL (olddecl)
2117 && !TREE_READONLY (olddecl))
2118 TREE_READONLY (newdecl) = 0;
2119 DECL_INITIALIZED_P (newdecl) |= DECL_INITIALIZED_P (olddecl);
2120 DECL_NONTRIVIALLY_INITIALIZED_P (newdecl)
2121 |= DECL_NONTRIVIALLY_INITIALIZED_P (olddecl);
2122 if (DECL_DEPENDENT_INIT_P (olddecl))
2123 SET_DECL_DEPENDENT_INIT_P (newdecl, true);
2124 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (newdecl)
2125 |= DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (olddecl);
2126 if (DECL_CLASS_SCOPE_P (olddecl))
2127 DECL_DECLARED_CONSTEXPR_P (newdecl)
2128 |= DECL_DECLARED_CONSTEXPR_P (olddecl);
2130 /* Merge the threadprivate attribute from OLDDECL into NEWDECL. */
2131 if (DECL_LANG_SPECIFIC (olddecl)
2132 && CP_DECL_THREADPRIVATE_P (olddecl))
2134 /* Allocate a LANG_SPECIFIC structure for NEWDECL, if needed. */
2135 retrofit_lang_decl (newdecl);
2136 CP_DECL_THREADPRIVATE_P (newdecl) = 1;
2140 /* An explicit specialization of a function template or of a member
2141 function of a class template can be declared transaction_safe
2142 independently of whether the corresponding template entity is declared
2143 transaction_safe. */
2144 if (flag_tm && TREE_CODE (newdecl) == FUNCTION_DECL
2145 && DECL_TEMPLATE_INSTANTIATION (olddecl)
2146 && DECL_TEMPLATE_SPECIALIZATION (newdecl)
2147 && tx_safe_fn_type_p (newtype)
2148 && !tx_safe_fn_type_p (TREE_TYPE (newdecl)))
2149 newtype = tx_unsafe_fn_variant (newtype);
2151 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = newtype;
2153 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2154 check_default_args (newdecl);
2156 /* Lay the type out, unless already done. */
2157 if (! same_type_p (newtype, oldtype)
2158 && TREE_TYPE (newdecl) != error_mark_node
2159 && !(processing_template_decl && uses_template_parms (newdecl)))
2160 layout_type (TREE_TYPE (newdecl));
2162 if ((VAR_P (newdecl)
2163 || TREE_CODE (newdecl) == PARM_DECL
2164 || TREE_CODE (newdecl) == RESULT_DECL
2165 || TREE_CODE (newdecl) == FIELD_DECL
2166 || TREE_CODE (newdecl) == TYPE_DECL)
2167 && !(processing_template_decl && uses_template_parms (newdecl)))
2168 layout_decl (newdecl, 0);
2170 /* Merge the type qualifiers. */
2171 if (TREE_READONLY (newdecl))
2172 TREE_READONLY (olddecl) = 1;
2173 if (TREE_THIS_VOLATILE (newdecl))
2174 TREE_THIS_VOLATILE (olddecl) = 1;
2175 if (TREE_NOTHROW (newdecl))
2176 TREE_NOTHROW (olddecl) = 1;
2178 /* Merge deprecatedness. */
2179 if (TREE_DEPRECATED (newdecl))
2180 TREE_DEPRECATED (olddecl) = 1;
2182 /* Preserve function specific target and optimization options */
2183 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2185 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl)
2186 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl))
2187 DECL_FUNCTION_SPECIFIC_TARGET (newdecl)
2188 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl);
2190 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl)
2191 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl))
2192 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl)
2193 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl);
2196 /* Merge the initialization information. */
2197 if (DECL_INITIAL (newdecl) == NULL_TREE
2198 && DECL_INITIAL (olddecl) != NULL_TREE)
2200 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2201 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2202 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2204 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
2205 DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl);
2209 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2211 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
2212 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
2213 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
2214 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
2215 TREE_NOTHROW (newdecl) |= TREE_NOTHROW (olddecl);
2216 DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
2217 DECL_IS_OPERATOR_NEW (newdecl) |= DECL_IS_OPERATOR_NEW (olddecl);
2218 DECL_PURE_P (newdecl) |= DECL_PURE_P (olddecl);
2219 TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
2220 DECL_LOOPING_CONST_OR_PURE_P (newdecl)
2221 |= DECL_LOOPING_CONST_OR_PURE_P (olddecl);
2222 /* Keep the old RTL. */
2223 COPY_DECL_RTL (olddecl, newdecl);
2225 else if (VAR_P (newdecl)
2226 && (DECL_SIZE (olddecl) || !DECL_SIZE (newdecl)))
2228 /* Keep the old RTL. We cannot keep the old RTL if the old
2229 declaration was for an incomplete object and the new
2230 declaration is not since many attributes of the RTL will
2231 change. */
2232 COPY_DECL_RTL (olddecl, newdecl);
2235 /* If cannot merge, then use the new type and qualifiers,
2236 and don't preserve the old rtl. */
2237 else
2239 /* Clean out any memory we had of the old declaration. */
2240 tree oldstatic = value_member (olddecl, static_aggregates);
2241 if (oldstatic)
2242 TREE_VALUE (oldstatic) = error_mark_node;
2244 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
2245 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
2246 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
2247 TREE_NOTHROW (olddecl) = TREE_NOTHROW (newdecl);
2248 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
2251 /* Merge the storage class information. */
2252 merge_weak (newdecl, olddecl);
2254 DECL_DEFER_OUTPUT (newdecl) |= DECL_DEFER_OUTPUT (olddecl);
2255 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
2256 TREE_STATIC (olddecl) = TREE_STATIC (newdecl) |= TREE_STATIC (olddecl);
2257 if (! DECL_EXTERNAL (olddecl))
2258 DECL_EXTERNAL (newdecl) = 0;
2259 if (! DECL_COMDAT (olddecl))
2260 DECL_COMDAT (newdecl) = 0;
2262 new_template_info = NULL_TREE;
2263 if (DECL_LANG_SPECIFIC (newdecl) && DECL_LANG_SPECIFIC (olddecl))
2265 bool new_redefines_gnu_inline = false;
2267 if (new_defines_function
2268 && ((DECL_INTERFACE_KNOWN (olddecl)
2269 && TREE_CODE (olddecl) == FUNCTION_DECL)
2270 || (TREE_CODE (olddecl) == TEMPLATE_DECL
2271 && (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl))
2272 == FUNCTION_DECL))))
2274 tree fn = olddecl;
2276 if (TREE_CODE (fn) == TEMPLATE_DECL)
2277 fn = DECL_TEMPLATE_RESULT (olddecl);
2279 new_redefines_gnu_inline = GNU_INLINE_P (fn) && DECL_INITIAL (fn);
2282 if (!new_redefines_gnu_inline)
2284 DECL_INTERFACE_KNOWN (newdecl) |= DECL_INTERFACE_KNOWN (olddecl);
2285 DECL_NOT_REALLY_EXTERN (newdecl) |= DECL_NOT_REALLY_EXTERN (olddecl);
2286 DECL_COMDAT (newdecl) |= DECL_COMDAT (olddecl);
2288 DECL_TEMPLATE_INSTANTIATED (newdecl)
2289 |= DECL_TEMPLATE_INSTANTIATED (olddecl);
2290 DECL_ODR_USED (newdecl) |= DECL_ODR_USED (olddecl);
2292 /* If the OLDDECL is an instantiation and/or specialization,
2293 then the NEWDECL must be too. But, it may not yet be marked
2294 as such if the caller has created NEWDECL, but has not yet
2295 figured out that it is a redeclaration. */
2296 if (!DECL_USE_TEMPLATE (newdecl))
2297 DECL_USE_TEMPLATE (newdecl) = DECL_USE_TEMPLATE (olddecl);
2299 /* Don't really know how much of the language-specific
2300 values we should copy from old to new. */
2301 DECL_IN_AGGR_P (newdecl) = DECL_IN_AGGR_P (olddecl);
2302 DECL_REPO_AVAILABLE_P (newdecl) = DECL_REPO_AVAILABLE_P (olddecl);
2303 DECL_INITIALIZED_IN_CLASS_P (newdecl)
2304 |= DECL_INITIALIZED_IN_CLASS_P (olddecl);
2306 if (LANG_DECL_HAS_MIN (newdecl))
2308 DECL_LANG_SPECIFIC (newdecl)->u.min.u2 =
2309 DECL_LANG_SPECIFIC (olddecl)->u.min.u2;
2310 if (DECL_TEMPLATE_INFO (newdecl))
2312 new_template_info = DECL_TEMPLATE_INFO (newdecl);
2313 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
2314 && DECL_TEMPLATE_SPECIALIZATION (newdecl))
2315 /* Remember the presence of explicit specialization args. */
2316 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (olddecl))
2317 = TINFO_USED_TEMPLATE_ID (new_template_info);
2319 DECL_TEMPLATE_INFO (newdecl) = DECL_TEMPLATE_INFO (olddecl);
2321 /* Only functions have these fields. */
2322 if (DECL_DECLARES_FUNCTION_P (newdecl))
2324 DECL_NONCONVERTING_P (newdecl) = DECL_NONCONVERTING_P (olddecl);
2325 DECL_BEFRIENDING_CLASSES (newdecl)
2326 = chainon (DECL_BEFRIENDING_CLASSES (newdecl),
2327 DECL_BEFRIENDING_CLASSES (olddecl));
2328 /* DECL_THUNKS is only valid for virtual functions,
2329 otherwise it is a DECL_FRIEND_CONTEXT. */
2330 if (DECL_VIRTUAL_P (newdecl))
2331 SET_DECL_THUNKS (newdecl, DECL_THUNKS (olddecl));
2333 /* Only variables have this field. */
2334 else if (VAR_P (newdecl)
2335 && VAR_HAD_UNKNOWN_BOUND (olddecl))
2336 SET_VAR_HAD_UNKNOWN_BOUND (newdecl);
2339 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2341 tree parm;
2343 /* Merge parameter attributes. */
2344 tree oldarg, newarg;
2345 for (oldarg = DECL_ARGUMENTS(olddecl),
2346 newarg = DECL_ARGUMENTS(newdecl);
2347 oldarg && newarg;
2348 oldarg = DECL_CHAIN(oldarg), newarg = DECL_CHAIN(newarg)) {
2349 DECL_ATTRIBUTES (newarg)
2350 = (*targetm.merge_decl_attributes) (oldarg, newarg);
2351 DECL_ATTRIBUTES (oldarg) = DECL_ATTRIBUTES (newarg);
2354 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
2355 && !DECL_TEMPLATE_INSTANTIATION (newdecl))
2357 /* If newdecl is not a specialization, then it is not a
2358 template-related function at all. And that means that we
2359 should have exited above, returning 0. */
2360 gcc_assert (DECL_TEMPLATE_SPECIALIZATION (newdecl));
2362 if (DECL_ODR_USED (olddecl))
2363 /* From [temp.expl.spec]:
2365 If a template, a member template or the member of a class
2366 template is explicitly specialized then that
2367 specialization shall be declared before the first use of
2368 that specialization that would cause an implicit
2369 instantiation to take place, in every translation unit in
2370 which such a use occurs. */
2371 error ("explicit specialization of %qD after first use",
2372 olddecl);
2374 SET_DECL_TEMPLATE_SPECIALIZATION (olddecl);
2375 DECL_COMDAT (newdecl) = (TREE_PUBLIC (newdecl)
2376 && DECL_DECLARED_INLINE_P (newdecl));
2378 /* Don't propagate visibility from the template to the
2379 specialization here. We'll do that in determine_visibility if
2380 appropriate. */
2381 DECL_VISIBILITY_SPECIFIED (olddecl) = 0;
2383 /* [temp.expl.spec/14] We don't inline explicit specialization
2384 just because the primary template says so. */
2386 /* But still keep DECL_DISREGARD_INLINE_LIMITS in sync with
2387 the always_inline attribute. */
2388 if (DECL_DISREGARD_INLINE_LIMITS (olddecl)
2389 && !DECL_DISREGARD_INLINE_LIMITS (newdecl))
2391 if (DECL_DECLARED_INLINE_P (newdecl))
2392 DECL_DISREGARD_INLINE_LIMITS (newdecl) = true;
2393 else
2394 DECL_ATTRIBUTES (newdecl)
2395 = remove_attribute ("always_inline",
2396 DECL_ATTRIBUTES (newdecl));
2399 else if (new_defines_function && DECL_INITIAL (olddecl))
2401 /* Never inline re-defined extern inline functions.
2402 FIXME: this could be better handled by keeping both
2403 function as separate declarations. */
2404 DECL_UNINLINABLE (newdecl) = 1;
2406 else
2408 if (DECL_PENDING_INLINE_P (olddecl))
2410 DECL_PENDING_INLINE_P (newdecl) = 1;
2411 DECL_PENDING_INLINE_INFO (newdecl)
2412 = DECL_PENDING_INLINE_INFO (olddecl);
2414 else if (DECL_PENDING_INLINE_P (newdecl))
2416 else if (DECL_SAVED_FUNCTION_DATA (newdecl) == NULL)
2417 DECL_SAVED_FUNCTION_DATA (newdecl)
2418 = DECL_SAVED_FUNCTION_DATA (olddecl);
2420 DECL_DECLARED_INLINE_P (newdecl) |= DECL_DECLARED_INLINE_P (olddecl);
2422 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
2423 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
2425 DECL_DISREGARD_INLINE_LIMITS (newdecl)
2426 = DECL_DISREGARD_INLINE_LIMITS (olddecl)
2427 = (DECL_DISREGARD_INLINE_LIMITS (newdecl)
2428 || DECL_DISREGARD_INLINE_LIMITS (olddecl));
2431 /* Preserve abstractness on cloned [cd]tors. */
2432 DECL_ABSTRACT_P (newdecl) = DECL_ABSTRACT_P (olddecl);
2434 /* Update newdecl's parms to point at olddecl. */
2435 for (parm = DECL_ARGUMENTS (newdecl); parm;
2436 parm = DECL_CHAIN (parm))
2437 DECL_CONTEXT (parm) = olddecl;
2439 if (! types_match)
2441 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
2442 COPY_DECL_ASSEMBLER_NAME (newdecl, olddecl);
2443 COPY_DECL_RTL (newdecl, olddecl);
2445 if (! types_match || new_defines_function)
2447 /* These need to be copied so that the names are available.
2448 Note that if the types do match, we'll preserve inline
2449 info and other bits, but if not, we won't. */
2450 DECL_ARGUMENTS (olddecl) = DECL_ARGUMENTS (newdecl);
2451 DECL_RESULT (olddecl) = DECL_RESULT (newdecl);
2453 /* If redeclaring a builtin function, it stays built in
2454 if newdecl is a gnu_inline definition, or if newdecl is just
2455 a declaration. */
2456 if (DECL_BUILT_IN (olddecl)
2457 && (new_defines_function ? GNU_INLINE_P (newdecl) : types_match))
2459 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
2460 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2461 /* If we're keeping the built-in definition, keep the rtl,
2462 regardless of declaration matches. */
2463 COPY_DECL_RTL (olddecl, newdecl);
2464 if (DECL_BUILT_IN_CLASS (newdecl) == BUILT_IN_NORMAL)
2466 enum built_in_function fncode = DECL_FUNCTION_CODE (newdecl);
2467 switch (fncode)
2469 /* If a compatible prototype of these builtin functions
2470 is seen, assume the runtime implements it with the
2471 expected semantics. */
2472 case BUILT_IN_STPCPY:
2473 if (builtin_decl_explicit_p (fncode))
2474 set_builtin_decl_implicit_p (fncode, true);
2475 break;
2476 default:
2477 if (builtin_decl_explicit_p (fncode))
2478 set_builtin_decl_declared_p (fncode, true);
2479 break;
2483 copy_attributes_to_builtin (newdecl);
2485 if (new_defines_function)
2486 /* If defining a function declared with other language
2487 linkage, use the previously declared language linkage. */
2488 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
2489 else if (types_match)
2491 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2492 /* Don't clear out the arguments if we're just redeclaring a
2493 function. */
2494 if (DECL_ARGUMENTS (olddecl))
2495 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
2498 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
2499 NAMESPACE_LEVEL (newdecl) = NAMESPACE_LEVEL (olddecl);
2501 /* Now preserve various other info from the definition. */
2502 TREE_ADDRESSABLE (newdecl) = TREE_ADDRESSABLE (olddecl);
2503 TREE_ASM_WRITTEN (newdecl) = TREE_ASM_WRITTEN (olddecl);
2504 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
2505 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
2507 /* Warn about conflicting visibility specifications. */
2508 if (DECL_VISIBILITY_SPECIFIED (olddecl)
2509 && DECL_VISIBILITY_SPECIFIED (newdecl)
2510 && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
2512 if (warning_at (DECL_SOURCE_LOCATION (newdecl), OPT_Wattributes,
2513 "%qD: visibility attribute ignored because it "
2514 "conflicts with previous declaration", newdecl))
2515 inform (DECL_SOURCE_LOCATION (olddecl),
2516 "previous declaration of %qD", olddecl);
2518 /* Choose the declaration which specified visibility. */
2519 if (DECL_VISIBILITY_SPECIFIED (olddecl))
2521 DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
2522 DECL_VISIBILITY_SPECIFIED (newdecl) = 1;
2524 /* Init priority used to be merged from newdecl to olddecl by the memcpy,
2525 so keep this behavior. */
2526 if (VAR_P (newdecl) && DECL_HAS_INIT_PRIORITY_P (newdecl))
2528 SET_DECL_INIT_PRIORITY (olddecl, DECL_INIT_PRIORITY (newdecl));
2529 DECL_HAS_INIT_PRIORITY_P (olddecl) = 1;
2531 /* Likewise for DECL_ALIGN, DECL_USER_ALIGN and DECL_PACKED. */
2532 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
2534 SET_DECL_ALIGN (newdecl, DECL_ALIGN (olddecl));
2535 DECL_USER_ALIGN (newdecl) |= DECL_USER_ALIGN (olddecl);
2537 DECL_USER_ALIGN (olddecl) = DECL_USER_ALIGN (newdecl);
2538 if (DECL_WARN_IF_NOT_ALIGN (olddecl)
2539 > DECL_WARN_IF_NOT_ALIGN (newdecl))
2540 SET_DECL_WARN_IF_NOT_ALIGN (newdecl,
2541 DECL_WARN_IF_NOT_ALIGN (olddecl));
2542 if (TREE_CODE (newdecl) == FIELD_DECL)
2543 DECL_PACKED (olddecl) = DECL_PACKED (newdecl);
2545 /* The DECL_LANG_SPECIFIC information in OLDDECL will be replaced
2546 with that from NEWDECL below. */
2547 if (DECL_LANG_SPECIFIC (olddecl))
2549 gcc_assert (DECL_LANG_SPECIFIC (olddecl)
2550 != DECL_LANG_SPECIFIC (newdecl));
2551 ggc_free (DECL_LANG_SPECIFIC (olddecl));
2554 /* Merge the USED information. */
2555 if (TREE_USED (olddecl))
2556 TREE_USED (newdecl) = 1;
2557 else if (TREE_USED (newdecl))
2558 TREE_USED (olddecl) = 1;
2559 if (VAR_P (newdecl))
2561 if (DECL_READ_P (olddecl))
2562 DECL_READ_P (newdecl) = 1;
2563 else if (DECL_READ_P (newdecl))
2564 DECL_READ_P (olddecl) = 1;
2566 if (DECL_PRESERVE_P (olddecl))
2567 DECL_PRESERVE_P (newdecl) = 1;
2568 else if (DECL_PRESERVE_P (newdecl))
2569 DECL_PRESERVE_P (olddecl) = 1;
2571 /* Merge the DECL_FUNCTION_VERSIONED information. newdecl will be copied
2572 to olddecl and deleted. */
2573 if (TREE_CODE (newdecl) == FUNCTION_DECL
2574 && DECL_FUNCTION_VERSIONED (olddecl))
2576 /* Set the flag for newdecl so that it gets copied to olddecl. */
2577 DECL_FUNCTION_VERSIONED (newdecl) = 1;
2578 /* newdecl will be purged after copying to olddecl and is no longer
2579 a version. */
2580 cgraph_node::delete_function_version_by_decl (newdecl);
2583 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2585 int function_size;
2586 struct symtab_node *snode = symtab_node::get (olddecl);
2588 function_size = sizeof (struct tree_decl_common);
2590 memcpy ((char *) olddecl + sizeof (struct tree_common),
2591 (char *) newdecl + sizeof (struct tree_common),
2592 function_size - sizeof (struct tree_common));
2594 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2595 (char *) newdecl + sizeof (struct tree_decl_common),
2596 sizeof (struct tree_function_decl) - sizeof (struct tree_decl_common));
2598 /* Preserve symtab node mapping. */
2599 olddecl->decl_with_vis.symtab_node = snode;
2601 if (new_template_info)
2602 /* If newdecl is a template instantiation, it is possible that
2603 the following sequence of events has occurred:
2605 o A friend function was declared in a class template. The
2606 class template was instantiated.
2608 o The instantiation of the friend declaration was
2609 recorded on the instantiation list, and is newdecl.
2611 o Later, however, instantiate_class_template called pushdecl
2612 on the newdecl to perform name injection. But, pushdecl in
2613 turn called duplicate_decls when it discovered that another
2614 declaration of a global function with the same name already
2615 existed.
2617 o Here, in duplicate_decls, we decided to clobber newdecl.
2619 If we're going to do that, we'd better make sure that
2620 olddecl, and not newdecl, is on the list of
2621 instantiations so that if we try to do the instantiation
2622 again we won't get the clobbered declaration. */
2623 reregister_specialization (newdecl,
2624 new_template_info,
2625 olddecl);
2627 else
2629 size_t size = tree_code_size (TREE_CODE (newdecl));
2631 memcpy ((char *) olddecl + sizeof (struct tree_common),
2632 (char *) newdecl + sizeof (struct tree_common),
2633 sizeof (struct tree_decl_common) - sizeof (struct tree_common));
2634 switch (TREE_CODE (newdecl))
2636 case LABEL_DECL:
2637 case VAR_DECL:
2638 case RESULT_DECL:
2639 case PARM_DECL:
2640 case FIELD_DECL:
2641 case TYPE_DECL:
2642 case CONST_DECL:
2644 struct symtab_node *snode = NULL;
2646 if (VAR_P (newdecl)
2647 && (TREE_STATIC (olddecl) || TREE_PUBLIC (olddecl)
2648 || DECL_EXTERNAL (olddecl)))
2649 snode = symtab_node::get (olddecl);
2650 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2651 (char *) newdecl + sizeof (struct tree_decl_common),
2652 size - sizeof (struct tree_decl_common)
2653 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
2654 if (VAR_P (newdecl))
2655 olddecl->decl_with_vis.symtab_node = snode;
2657 break;
2658 default:
2659 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2660 (char *) newdecl + sizeof (struct tree_decl_common),
2661 sizeof (struct tree_decl_non_common) - sizeof (struct tree_decl_common)
2662 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
2663 break;
2667 if (VAR_OR_FUNCTION_DECL_P (newdecl))
2669 if (DECL_EXTERNAL (olddecl)
2670 || TREE_PUBLIC (olddecl)
2671 || TREE_STATIC (olddecl))
2673 /* Merge the section attribute.
2674 We want to issue an error if the sections conflict but that must be
2675 done later in decl_attributes since we are called before attributes
2676 are assigned. */
2677 if (DECL_SECTION_NAME (newdecl) != NULL)
2678 set_decl_section_name (olddecl, DECL_SECTION_NAME (newdecl));
2680 if (DECL_ONE_ONLY (newdecl))
2682 struct symtab_node *oldsym, *newsym;
2683 if (TREE_CODE (olddecl) == FUNCTION_DECL)
2684 oldsym = cgraph_node::get_create (olddecl);
2685 else
2686 oldsym = varpool_node::get_create (olddecl);
2687 newsym = symtab_node::get (newdecl);
2688 oldsym->set_comdat_group (newsym->get_comdat_group ());
2692 if (VAR_P (newdecl)
2693 && CP_DECL_THREAD_LOCAL_P (newdecl))
2695 CP_DECL_THREAD_LOCAL_P (olddecl) = true;
2696 if (!processing_template_decl)
2697 set_decl_tls_model (olddecl, DECL_TLS_MODEL (newdecl));
2701 DECL_UID (olddecl) = olddecl_uid;
2702 if (olddecl_friend)
2703 DECL_FRIEND_P (olddecl) = 1;
2704 if (hidden_friend)
2706 DECL_ANTICIPATED (olddecl) = 1;
2707 DECL_HIDDEN_FRIEND_P (olddecl) = 1;
2710 /* NEWDECL contains the merged attribute lists.
2711 Update OLDDECL to be the same. */
2712 DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
2714 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
2715 so that encode_section_info has a chance to look at the new decl
2716 flags and attributes. */
2717 if (DECL_RTL_SET_P (olddecl)
2718 && (TREE_CODE (olddecl) == FUNCTION_DECL
2719 || (VAR_P (olddecl)
2720 && TREE_STATIC (olddecl))))
2721 make_decl_rtl (olddecl);
2723 /* The NEWDECL will no longer be needed. Because every out-of-class
2724 declaration of a member results in a call to duplicate_decls,
2725 freeing these nodes represents in a significant savings.
2727 Before releasing the node, be sore to remove function from symbol
2728 table that might have been inserted there to record comdat group.
2729 Be sure to however do not free DECL_STRUCT_FUNCTION because this
2730 structure is shared in between newdecl and oldecl. */
2731 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2732 DECL_STRUCT_FUNCTION (newdecl) = NULL;
2733 if (VAR_OR_FUNCTION_DECL_P (newdecl))
2735 struct symtab_node *snode = symtab_node::get (newdecl);
2736 if (snode)
2737 snode->remove ();
2740 /* Remove the associated constraints for newdecl, if any, before
2741 reclaiming memory. */
2742 if (flag_concepts)
2743 remove_constraints (newdecl);
2745 ggc_free (newdecl);
2747 return olddecl;
2750 /* Return zero if the declaration NEWDECL is valid
2751 when the declaration OLDDECL (assumed to be for the same name)
2752 has already been seen.
2753 Otherwise return an error message format string with a %s
2754 where the identifier should go. */
2756 static const char *
2757 redeclaration_error_message (tree newdecl, tree olddecl)
2759 if (TREE_CODE (newdecl) == TYPE_DECL)
2761 /* Because C++ can put things into name space for free,
2762 constructs like "typedef struct foo { ... } foo"
2763 would look like an erroneous redeclaration. */
2764 if (same_type_p (TREE_TYPE (newdecl), TREE_TYPE (olddecl)))
2765 return NULL;
2766 else
2767 return G_("redefinition of %q#D");
2769 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2771 /* If this is a pure function, its olddecl will actually be
2772 the original initialization to `0' (which we force to call
2773 abort()). Don't complain about redefinition in this case. */
2774 if (DECL_LANG_SPECIFIC (olddecl) && DECL_PURE_VIRTUAL_P (olddecl)
2775 && DECL_INITIAL (olddecl) == NULL_TREE)
2776 return NULL;
2778 /* If both functions come from different namespaces, this is not
2779 a redeclaration - this is a conflict with a used function. */
2780 if (DECL_NAMESPACE_SCOPE_P (olddecl)
2781 && DECL_CONTEXT (olddecl) != DECL_CONTEXT (newdecl)
2782 && ! decls_match (olddecl, newdecl))
2783 return G_("%qD conflicts with used function");
2785 /* We'll complain about linkage mismatches in
2786 warn_extern_redeclared_static. */
2788 /* Defining the same name twice is no good. */
2789 if (decl_defined_p (olddecl)
2790 && decl_defined_p (newdecl))
2792 if (DECL_NAME (olddecl) == NULL_TREE)
2793 return G_("%q#D not declared in class");
2794 else if (!GNU_INLINE_P (olddecl)
2795 || GNU_INLINE_P (newdecl))
2796 return G_("redefinition of %q#D");
2799 if (DECL_DECLARED_INLINE_P (olddecl) && DECL_DECLARED_INLINE_P (newdecl))
2801 bool olda = GNU_INLINE_P (olddecl);
2802 bool newa = GNU_INLINE_P (newdecl);
2804 if (olda != newa)
2806 if (newa)
2807 return G_("%q+D redeclared inline with "
2808 "%<gnu_inline%> attribute");
2809 else
2810 return G_("%q+D redeclared inline without "
2811 "%<gnu_inline%> attribute");
2815 check_abi_tag_redeclaration
2816 (olddecl, lookup_attribute ("abi_tag", DECL_ATTRIBUTES (olddecl)),
2817 lookup_attribute ("abi_tag", DECL_ATTRIBUTES (newdecl)));
2819 return NULL;
2821 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
2823 tree nt, ot;
2825 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
2827 if (COMPLETE_TYPE_P (TREE_TYPE (newdecl))
2828 && COMPLETE_TYPE_P (TREE_TYPE (olddecl)))
2829 return G_("redefinition of %q#D");
2830 return NULL;
2833 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != FUNCTION_DECL
2834 || (DECL_TEMPLATE_RESULT (newdecl)
2835 == DECL_TEMPLATE_RESULT (olddecl)))
2836 return NULL;
2838 nt = DECL_TEMPLATE_RESULT (newdecl);
2839 if (DECL_TEMPLATE_INFO (nt))
2840 nt = DECL_TEMPLATE_RESULT (template_for_substitution (nt));
2841 ot = DECL_TEMPLATE_RESULT (olddecl);
2842 if (DECL_TEMPLATE_INFO (ot))
2843 ot = DECL_TEMPLATE_RESULT (template_for_substitution (ot));
2844 if (DECL_INITIAL (nt) && DECL_INITIAL (ot)
2845 && (!GNU_INLINE_P (ot) || GNU_INLINE_P (nt)))
2846 return G_("redefinition of %q#D");
2848 if (DECL_DECLARED_INLINE_P (ot) && DECL_DECLARED_INLINE_P (nt))
2850 bool olda = GNU_INLINE_P (ot);
2851 bool newa = GNU_INLINE_P (nt);
2853 if (olda != newa)
2855 if (newa)
2856 return G_("%q+D redeclared inline with "
2857 "%<gnu_inline%> attribute");
2858 else
2859 return G_("%q+D redeclared inline without "
2860 "%<gnu_inline%> attribute");
2864 /* Core issue #226 (C++0x):
2866 If a friend function template declaration specifies a
2867 default template-argument, that declaration shall be a
2868 definition and shall be the only declaration of the
2869 function template in the translation unit. */
2870 if ((cxx_dialect != cxx98)
2871 && TREE_CODE (ot) == FUNCTION_DECL && DECL_FRIEND_P (ot)
2872 && !check_default_tmpl_args (nt, DECL_TEMPLATE_PARMS (newdecl),
2873 /*is_primary=*/true,
2874 /*is_partial=*/false,
2875 /*is_friend_decl=*/2))
2876 return G_("redeclaration of friend %q#D "
2877 "may not have default template arguments");
2879 return NULL;
2881 else if (VAR_P (newdecl)
2882 && CP_DECL_THREAD_LOCAL_P (newdecl) != CP_DECL_THREAD_LOCAL_P (olddecl)
2883 && (! DECL_LANG_SPECIFIC (olddecl)
2884 || ! CP_DECL_THREADPRIVATE_P (olddecl)
2885 || CP_DECL_THREAD_LOCAL_P (newdecl)))
2887 /* Only variables can be thread-local, and all declarations must
2888 agree on this property. */
2889 if (CP_DECL_THREAD_LOCAL_P (newdecl))
2890 return G_("thread-local declaration of %q#D follows "
2891 "non-thread-local declaration");
2892 else
2893 return G_("non-thread-local declaration of %q#D follows "
2894 "thread-local declaration");
2896 else if (toplevel_bindings_p () || DECL_NAMESPACE_SCOPE_P (newdecl))
2898 /* The objects have been declared at namespace scope. If either
2899 is a member of an anonymous union, then this is an invalid
2900 redeclaration. For example:
2902 int i;
2903 union { int i; };
2905 is invalid. */
2906 if ((VAR_P (newdecl) && DECL_ANON_UNION_VAR_P (newdecl))
2907 || (VAR_P (olddecl) && DECL_ANON_UNION_VAR_P (olddecl)))
2908 return G_("redeclaration of %q#D");
2909 /* If at least one declaration is a reference, there is no
2910 conflict. For example:
2912 int i = 3;
2913 extern int i;
2915 is valid. */
2916 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2917 return NULL;
2919 /* Static data member declared outside a class definition
2920 if the variable is defined within the class with constexpr
2921 specifier is declaration rather than definition (and
2922 deprecated). */
2923 if (cxx_dialect >= cxx17
2924 && DECL_CLASS_SCOPE_P (olddecl)
2925 && DECL_DECLARED_CONSTEXPR_P (olddecl)
2926 && !DECL_INITIAL (newdecl))
2928 DECL_EXTERNAL (newdecl) = 1;
2929 /* For now, only warn with explicit -Wdeprecated. */
2930 if (global_options_set.x_warn_deprecated
2931 && warning_at (DECL_SOURCE_LOCATION (newdecl), OPT_Wdeprecated,
2932 "redundant redeclaration of %<constexpr%> static "
2933 "data member %qD", newdecl))
2934 inform (DECL_SOURCE_LOCATION (olddecl),
2935 "previous declaration of %qD", olddecl);
2936 return NULL;
2939 /* Reject two definitions. */
2940 return G_("redefinition of %q#D");
2942 else
2944 /* Objects declared with block scope: */
2945 /* Reject two definitions, and reject a definition
2946 together with an external reference. */
2947 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl)))
2948 return G_("redeclaration of %q#D");
2949 return NULL;
2954 /* Hash and equality functions for the named_label table. */
2956 hashval_t
2957 named_label_hash::hash (const value_type entry)
2959 return IDENTIFIER_HASH_VALUE (entry->name);
2962 bool
2963 named_label_hash::equal (const value_type entry, compare_type name)
2965 return name == entry->name;
2968 /* Look for a label named ID in the current function. If one cannot
2969 be found, create one. Return the named_label_entry, or NULL on
2970 failure. */
2972 static named_label_entry *
2973 lookup_label_1 (tree id, bool making_local_p)
2975 /* You can't use labels at global scope. */
2976 if (current_function_decl == NULL_TREE)
2978 error ("label %qE referenced outside of any function", id);
2979 return NULL;
2982 if (!named_labels)
2983 named_labels = hash_table<named_label_hash>::create_ggc (13);
2985 hashval_t hash = IDENTIFIER_HASH_VALUE (id);
2986 named_label_entry **slot
2987 = named_labels->find_slot_with_hash (id, hash, INSERT);
2988 named_label_entry *old = *slot;
2990 if (old && old->label_decl)
2992 if (!making_local_p)
2993 return old;
2995 if (old->binding_level == current_binding_level)
2997 error ("local label %qE conflicts with existing label", id);
2998 inform (DECL_SOURCE_LOCATION (old->label_decl), "previous label");
2999 return NULL;
3003 /* We are making a new decl, create or reuse the named_label_entry */
3004 named_label_entry *ent = NULL;
3005 if (old && !old->label_decl)
3006 ent = old;
3007 else
3009 ent = ggc_cleared_alloc<named_label_entry> ();
3010 ent->name = id;
3011 ent->outer = old;
3012 *slot = ent;
3015 /* Now create the LABEL_DECL. */
3016 tree decl = build_decl (input_location, LABEL_DECL, id, void_type_node);
3018 DECL_CONTEXT (decl) = current_function_decl;
3019 SET_DECL_MODE (decl, VOIDmode);
3020 if (making_local_p)
3022 C_DECLARED_LABEL_FLAG (decl) = true;
3023 DECL_CHAIN (decl) = current_binding_level->names;
3024 current_binding_level->names = decl;
3027 ent->label_decl = decl;
3029 return ent;
3032 /* Wrapper for lookup_label_1. */
3034 tree
3035 lookup_label (tree id)
3037 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
3038 named_label_entry *ent = lookup_label_1 (id, false);
3039 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
3040 return ent ? ent->label_decl : NULL_TREE;
3043 tree
3044 declare_local_label (tree id)
3046 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
3047 named_label_entry *ent = lookup_label_1 (id, true);
3048 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
3049 return ent ? ent->label_decl : NULL_TREE;
3052 /* Returns nonzero if it is ill-formed to jump past the declaration of
3053 DECL. Returns 2 if it's also a real problem. */
3055 static int
3056 decl_jump_unsafe (tree decl)
3058 /* [stmt.dcl]/3: A program that jumps from a point where a local variable
3059 with automatic storage duration is not in scope to a point where it is
3060 in scope is ill-formed unless the variable has scalar type, class type
3061 with a trivial default constructor and a trivial destructor, a
3062 cv-qualified version of one of these types, or an array of one of the
3063 preceding types and is declared without an initializer (8.5). */
3064 tree type = TREE_TYPE (decl);
3066 if (!VAR_P (decl) || TREE_STATIC (decl)
3067 || type == error_mark_node)
3068 return 0;
3070 if (DECL_NONTRIVIALLY_INITIALIZED_P (decl)
3071 || variably_modified_type_p (type, NULL_TREE))
3072 return 2;
3074 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
3075 return 1;
3077 return 0;
3080 /* A subroutine of check_previous_goto_1 and check_goto to identify a branch
3081 to the user. */
3083 static bool
3084 identify_goto (tree decl, location_t loc, const location_t *locus,
3085 diagnostic_t diag_kind)
3087 bool complained
3088 = emit_diagnostic (diag_kind, loc, 0,
3089 decl ? N_("jump to label %qD")
3090 : N_("jump to case label"), decl);
3091 if (complained && locus)
3092 inform (*locus, " from here");
3093 return complained;
3096 /* Check that a single previously seen jump to a newly defined label
3097 is OK. DECL is the LABEL_DECL or 0; LEVEL is the binding_level for
3098 the jump context; NAMES are the names in scope in LEVEL at the jump
3099 context; LOCUS is the source position of the jump or 0. Returns
3100 true if all is well. */
3102 static bool
3103 check_previous_goto_1 (tree decl, cp_binding_level* level, tree names,
3104 bool exited_omp, const location_t *locus)
3106 cp_binding_level *b;
3107 bool complained = false;
3108 int identified = 0;
3109 bool saw_eh = false, saw_omp = false, saw_tm = false, saw_cxif = false;
3111 if (exited_omp)
3113 complained = identify_goto (decl, input_location, locus, DK_ERROR);
3114 if (complained)
3115 inform (input_location, " exits OpenMP structured block");
3116 saw_omp = true;
3117 identified = 2;
3120 for (b = current_binding_level; b ; b = b->level_chain)
3122 tree new_decls, old_decls = (b == level ? names : NULL_TREE);
3124 for (new_decls = b->names; new_decls != old_decls;
3125 new_decls = (DECL_P (new_decls) ? DECL_CHAIN (new_decls)
3126 : TREE_CHAIN (new_decls)))
3128 int problem = decl_jump_unsafe (new_decls);
3129 if (! problem)
3130 continue;
3132 if (!identified)
3134 complained = identify_goto (decl, input_location, locus,
3135 DK_PERMERROR);
3136 identified = 1;
3138 if (complained)
3140 if (problem > 1)
3141 inform (DECL_SOURCE_LOCATION (new_decls),
3142 " crosses initialization of %q#D", new_decls);
3143 else
3144 inform (DECL_SOURCE_LOCATION (new_decls),
3145 " enters scope of %q#D, which has "
3146 "non-trivial destructor", new_decls);
3150 if (b == level)
3151 break;
3153 const char *inf = NULL;
3154 location_t loc = input_location;
3155 switch (b->kind)
3157 case sk_try:
3158 if (!saw_eh)
3159 inf = N_("enters try block");
3160 saw_eh = true;
3161 break;
3163 case sk_catch:
3164 if (!saw_eh)
3165 inf = N_("enters catch block");
3166 saw_eh = true;
3167 break;
3169 case sk_omp:
3170 if (!saw_omp)
3171 inf = N_("enters OpenMP structured block");
3172 saw_omp = true;
3173 break;
3175 case sk_transaction:
3176 if (!saw_tm)
3177 inf = N_("enters synchronized or atomic statement");
3178 saw_tm = true;
3179 break;
3181 case sk_block:
3182 if (!saw_cxif && level_for_constexpr_if (b->level_chain))
3184 inf = N_("enters constexpr if statement");
3185 loc = EXPR_LOCATION (b->level_chain->this_entity);
3186 saw_cxif = true;
3188 break;
3190 default:
3191 break;
3194 if (inf)
3196 if (identified < 2)
3197 complained = identify_goto (decl, input_location, locus, DK_ERROR);
3198 identified = 2;
3199 if (complained)
3200 inform (loc, " %s", inf);
3204 return !identified;
3207 static void
3208 check_previous_goto (tree decl, struct named_label_use_entry *use)
3210 check_previous_goto_1 (decl, use->binding_level,
3211 use->names_in_scope, use->in_omp_scope,
3212 &use->o_goto_locus);
3215 static bool
3216 check_switch_goto (cp_binding_level* level)
3218 return check_previous_goto_1 (NULL_TREE, level, level->names, false, NULL);
3221 /* Check that a new jump to a label DECL is OK. Called by
3222 finish_goto_stmt. */
3224 void
3225 check_goto (tree decl)
3227 /* We can't know where a computed goto is jumping.
3228 So we assume that it's OK. */
3229 if (TREE_CODE (decl) != LABEL_DECL)
3230 return;
3232 /* We didn't record any information about this label when we created it,
3233 and there's not much point since it's trivial to analyze as a return. */
3234 if (decl == cdtor_label)
3235 return;
3237 hashval_t hash = IDENTIFIER_HASH_VALUE (DECL_NAME (decl));
3238 named_label_entry **slot
3239 = named_labels->find_slot_with_hash (DECL_NAME (decl), hash, NO_INSERT);
3240 named_label_entry *ent = *slot;
3242 /* If the label hasn't been defined yet, defer checking. */
3243 if (! DECL_INITIAL (decl))
3245 /* Don't bother creating another use if the last goto had the
3246 same data, and will therefore create the same set of errors. */
3247 if (ent->uses
3248 && ent->uses->names_in_scope == current_binding_level->names)
3249 return;
3251 named_label_use_entry *new_use
3252 = ggc_alloc<named_label_use_entry> ();
3253 new_use->binding_level = current_binding_level;
3254 new_use->names_in_scope = current_binding_level->names;
3255 new_use->o_goto_locus = input_location;
3256 new_use->in_omp_scope = false;
3258 new_use->next = ent->uses;
3259 ent->uses = new_use;
3260 return;
3263 bool saw_catch = false, complained = false;
3264 int identified = 0;
3265 tree bad;
3266 unsigned ix;
3268 if (ent->in_try_scope || ent->in_catch_scope || ent->in_transaction_scope
3269 || ent->in_constexpr_if
3270 || ent->in_omp_scope || !vec_safe_is_empty (ent->bad_decls))
3272 diagnostic_t diag_kind = DK_PERMERROR;
3273 if (ent->in_try_scope || ent->in_catch_scope || ent->in_constexpr_if
3274 || ent->in_transaction_scope || ent->in_omp_scope)
3275 diag_kind = DK_ERROR;
3276 complained = identify_goto (decl, DECL_SOURCE_LOCATION (decl),
3277 &input_location, diag_kind);
3278 identified = 1 + (diag_kind == DK_ERROR);
3281 FOR_EACH_VEC_SAFE_ELT (ent->bad_decls, ix, bad)
3283 int u = decl_jump_unsafe (bad);
3285 if (u > 1 && DECL_ARTIFICIAL (bad))
3287 /* Can't skip init of __exception_info. */
3288 if (identified == 1)
3290 complained = identify_goto (decl, DECL_SOURCE_LOCATION (decl),
3291 &input_location, DK_ERROR);
3292 identified = 2;
3294 if (complained)
3295 inform (DECL_SOURCE_LOCATION (bad), " enters catch block");
3296 saw_catch = true;
3298 else if (complained)
3300 if (u > 1)
3301 inform (DECL_SOURCE_LOCATION (bad),
3302 " skips initialization of %q#D", bad);
3303 else
3304 inform (DECL_SOURCE_LOCATION (bad),
3305 " enters scope of %q#D which has "
3306 "non-trivial destructor", bad);
3310 if (complained)
3312 if (ent->in_try_scope)
3313 inform (input_location, " enters try block");
3314 else if (ent->in_catch_scope && !saw_catch)
3315 inform (input_location, " enters catch block");
3316 else if (ent->in_transaction_scope)
3317 inform (input_location, " enters synchronized or atomic statement");
3318 else if (ent->in_constexpr_if)
3319 inform (input_location, " enters %<constexpr%> if statement");
3322 if (ent->in_omp_scope)
3324 if (complained)
3325 inform (input_location, " enters OpenMP structured block");
3327 else if (flag_openmp)
3328 for (cp_binding_level *b = current_binding_level; b ; b = b->level_chain)
3330 if (b == ent->binding_level)
3331 break;
3332 if (b->kind == sk_omp)
3334 if (identified < 2)
3336 complained = identify_goto (decl,
3337 DECL_SOURCE_LOCATION (decl),
3338 &input_location, DK_ERROR);
3339 identified = 2;
3341 if (complained)
3342 inform (input_location, " exits OpenMP structured block");
3343 break;
3348 /* Check that a return is ok wrt OpenMP structured blocks.
3349 Called by finish_return_stmt. Returns true if all is well. */
3351 bool
3352 check_omp_return (void)
3354 for (cp_binding_level *b = current_binding_level; b ; b = b->level_chain)
3355 if (b->kind == sk_omp)
3357 error ("invalid exit from OpenMP structured block");
3358 return false;
3360 else if (b->kind == sk_function_parms)
3361 break;
3362 return true;
3365 /* Define a label, specifying the location in the source file.
3366 Return the LABEL_DECL node for the label. */
3368 static tree
3369 define_label_1 (location_t location, tree name)
3371 /* After labels, make any new cleanups in the function go into their
3372 own new (temporary) binding contour. */
3373 for (cp_binding_level *p = current_binding_level;
3374 p->kind != sk_function_parms;
3375 p = p->level_chain)
3376 p->more_cleanups_ok = 0;
3378 named_label_entry *ent = lookup_label_1 (name, false);
3379 tree decl = ent->label_decl;
3381 if (DECL_INITIAL (decl) != NULL_TREE)
3383 error ("duplicate label %qD", decl);
3384 return error_mark_node;
3386 else
3388 /* Mark label as having been defined. */
3389 DECL_INITIAL (decl) = error_mark_node;
3390 /* Say where in the source. */
3391 DECL_SOURCE_LOCATION (decl) = location;
3393 ent->binding_level = current_binding_level;
3394 ent->names_in_scope = current_binding_level->names;
3396 for (named_label_use_entry *use = ent->uses; use; use = use->next)
3397 check_previous_goto (decl, use);
3398 ent->uses = NULL;
3401 return decl;
3404 /* Wrapper for define_label_1. */
3406 tree
3407 define_label (location_t location, tree name)
3409 bool running = timevar_cond_start (TV_NAME_LOOKUP);
3410 tree ret = define_label_1 (location, name);
3411 timevar_cond_stop (TV_NAME_LOOKUP, running);
3412 return ret;
3416 struct cp_switch
3418 cp_binding_level *level;
3419 struct cp_switch *next;
3420 /* The SWITCH_STMT being built. */
3421 tree switch_stmt;
3422 /* A splay-tree mapping the low element of a case range to the high
3423 element, or NULL_TREE if there is no high element. Used to
3424 determine whether or not a new case label duplicates an old case
3425 label. We need a tree, rather than simply a hash table, because
3426 of the GNU case range extension. */
3427 splay_tree cases;
3428 /* Remember whether there was a case value that is outside the
3429 range of the original type of the controlling expression. */
3430 bool outside_range_p;
3431 /* Remember whether a default: case label has been seen. */
3432 bool has_default_p;
3433 /* Remember whether a BREAK_STMT has been seen in this SWITCH_STMT. */
3434 bool break_stmt_seen_p;
3435 /* Set if inside of {FOR,DO,WHILE}_BODY nested inside of a switch,
3436 where BREAK_STMT doesn't belong to the SWITCH_STMT. */
3437 bool in_loop_body_p;
3440 /* A stack of the currently active switch statements. The innermost
3441 switch statement is on the top of the stack. There is no need to
3442 mark the stack for garbage collection because it is only active
3443 during the processing of the body of a function, and we never
3444 collect at that point. */
3446 static struct cp_switch *switch_stack;
3448 /* Called right after a switch-statement condition is parsed.
3449 SWITCH_STMT is the switch statement being parsed. */
3451 void
3452 push_switch (tree switch_stmt)
3454 struct cp_switch *p = XNEW (struct cp_switch);
3455 p->level = current_binding_level;
3456 p->next = switch_stack;
3457 p->switch_stmt = switch_stmt;
3458 p->cases = splay_tree_new (case_compare, NULL, NULL);
3459 p->outside_range_p = false;
3460 p->has_default_p = false;
3461 p->break_stmt_seen_p = false;
3462 p->in_loop_body_p = false;
3463 switch_stack = p;
3466 void
3467 pop_switch (void)
3469 struct cp_switch *cs = switch_stack;
3470 location_t switch_location;
3472 /* Emit warnings as needed. */
3473 switch_location = EXPR_LOC_OR_LOC (cs->switch_stmt, input_location);
3474 const bool bool_cond_p
3475 = (SWITCH_STMT_TYPE (cs->switch_stmt)
3476 && TREE_CODE (SWITCH_STMT_TYPE (cs->switch_stmt)) == BOOLEAN_TYPE);
3477 if (!processing_template_decl)
3478 c_do_switch_warnings (cs->cases, switch_location,
3479 SWITCH_STMT_TYPE (cs->switch_stmt),
3480 SWITCH_STMT_COND (cs->switch_stmt),
3481 bool_cond_p, cs->outside_range_p);
3483 /* For the benefit of block_may_fallthru remember if the switch body
3484 case labels cover all possible values and if there are break; stmts. */
3485 if (cs->has_default_p
3486 || (!processing_template_decl
3487 && c_switch_covers_all_cases_p (cs->cases,
3488 SWITCH_STMT_TYPE (cs->switch_stmt))))
3489 SWITCH_STMT_ALL_CASES_P (cs->switch_stmt) = 1;
3490 if (!cs->break_stmt_seen_p)
3491 SWITCH_STMT_NO_BREAK_P (cs->switch_stmt) = 1;
3492 gcc_assert (!cs->in_loop_body_p);
3493 splay_tree_delete (cs->cases);
3494 switch_stack = switch_stack->next;
3495 free (cs);
3498 /* Note that a BREAK_STMT is about to be added. If it is inside of
3499 a SWITCH_STMT and not inside of a loop body inside of it, note
3500 in switch_stack we've seen a BREAK_STMT. */
3502 void
3503 note_break_stmt (void)
3505 if (switch_stack && !switch_stack->in_loop_body_p)
3506 switch_stack->break_stmt_seen_p = true;
3509 /* Note the start of processing of an iteration statement's body.
3510 The note_break_stmt function will do nothing while processing it.
3511 Return a flag that should be passed to note_iteration_stmt_body_end. */
3513 bool
3514 note_iteration_stmt_body_start (void)
3516 if (!switch_stack)
3517 return false;
3518 bool ret = switch_stack->in_loop_body_p;
3519 switch_stack->in_loop_body_p = true;
3520 return ret;
3523 /* Note the end of processing of an iteration statement's body. */
3525 void
3526 note_iteration_stmt_body_end (bool prev)
3528 if (switch_stack)
3529 switch_stack->in_loop_body_p = prev;
3532 /* Convert a case constant VALUE in a switch to the type TYPE of the switch
3533 condition. Note that if TYPE and VALUE are already integral we don't
3534 really do the conversion because the language-independent
3535 warning/optimization code will work better that way. */
3537 static tree
3538 case_conversion (tree type, tree value)
3540 if (value == NULL_TREE)
3541 return value;
3543 value = mark_rvalue_use (value);
3545 if (cxx_dialect >= cxx11
3546 && (SCOPED_ENUM_P (type)
3547 || !INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (value))))
3549 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
3550 type = type_promotes_to (type);
3551 value = (perform_implicit_conversion_flags
3552 (type, value, tf_warning_or_error,
3553 LOOKUP_IMPLICIT | LOOKUP_NO_NON_INTEGRAL));
3555 return cxx_constant_value (value);
3558 /* Note that we've seen a definition of a case label, and complain if this
3559 is a bad place for one. */
3561 tree
3562 finish_case_label (location_t loc, tree low_value, tree high_value)
3564 tree cond, r;
3565 cp_binding_level *p;
3566 tree type;
3568 if (low_value == NULL_TREE && high_value == NULL_TREE)
3569 switch_stack->has_default_p = true;
3571 if (processing_template_decl)
3573 tree label;
3575 /* For templates, just add the case label; we'll do semantic
3576 analysis at instantiation-time. */
3577 label = build_decl (loc, LABEL_DECL, NULL_TREE, NULL_TREE);
3578 return add_stmt (build_case_label (low_value, high_value, label));
3581 /* Find the condition on which this switch statement depends. */
3582 cond = SWITCH_STMT_COND (switch_stack->switch_stmt);
3583 if (cond && TREE_CODE (cond) == TREE_LIST)
3584 cond = TREE_VALUE (cond);
3586 if (!check_switch_goto (switch_stack->level))
3587 return error_mark_node;
3589 type = SWITCH_STMT_TYPE (switch_stack->switch_stmt);
3591 low_value = case_conversion (type, low_value);
3592 high_value = case_conversion (type, high_value);
3594 r = c_add_case_label (loc, switch_stack->cases, cond, type,
3595 low_value, high_value,
3596 &switch_stack->outside_range_p);
3598 /* After labels, make any new cleanups in the function go into their
3599 own new (temporary) binding contour. */
3600 for (p = current_binding_level;
3601 p->kind != sk_function_parms;
3602 p = p->level_chain)
3603 p->more_cleanups_ok = 0;
3605 return r;
3608 struct typename_info {
3609 tree scope;
3610 tree name;
3611 tree template_id;
3612 bool enum_p;
3613 bool class_p;
3616 struct typename_hasher : ggc_ptr_hash<tree_node>
3618 typedef typename_info *compare_type;
3620 /* Hash a TYPENAME_TYPE. */
3622 static hashval_t
3623 hash (tree t)
3625 hashval_t hash;
3627 hash = (htab_hash_pointer (TYPE_CONTEXT (t))
3628 ^ htab_hash_pointer (TYPE_IDENTIFIER (t)));
3630 return hash;
3633 /* Compare two TYPENAME_TYPEs. */
3635 static bool
3636 equal (tree t1, const typename_info *t2)
3638 return (TYPE_IDENTIFIER (t1) == t2->name
3639 && TYPE_CONTEXT (t1) == t2->scope
3640 && TYPENAME_TYPE_FULLNAME (t1) == t2->template_id
3641 && TYPENAME_IS_ENUM_P (t1) == t2->enum_p
3642 && TYPENAME_IS_CLASS_P (t1) == t2->class_p);
3646 /* Build a TYPENAME_TYPE. If the type is `typename T::t', CONTEXT is
3647 the type of `T', NAME is the IDENTIFIER_NODE for `t'.
3649 Returns the new TYPENAME_TYPE. */
3651 static GTY (()) hash_table<typename_hasher> *typename_htab;
3653 tree
3654 build_typename_type (tree context, tree name, tree fullname,
3655 enum tag_types tag_type)
3657 tree t;
3658 tree d;
3659 typename_info ti;
3660 tree *e;
3661 hashval_t hash;
3663 if (typename_htab == NULL)
3664 typename_htab = hash_table<typename_hasher>::create_ggc (61);
3666 ti.scope = FROB_CONTEXT (context);
3667 ti.name = name;
3668 ti.template_id = fullname;
3669 ti.enum_p = tag_type == enum_type;
3670 ti.class_p = (tag_type == class_type
3671 || tag_type == record_type
3672 || tag_type == union_type);
3673 hash = (htab_hash_pointer (ti.scope)
3674 ^ htab_hash_pointer (ti.name));
3676 /* See if we already have this type. */
3677 e = typename_htab->find_slot_with_hash (&ti, hash, INSERT);
3678 if (*e)
3679 t = *e;
3680 else
3682 /* Build the TYPENAME_TYPE. */
3683 t = cxx_make_type (TYPENAME_TYPE);
3684 TYPE_CONTEXT (t) = ti.scope;
3685 TYPENAME_TYPE_FULLNAME (t) = ti.template_id;
3686 TYPENAME_IS_ENUM_P (t) = ti.enum_p;
3687 TYPENAME_IS_CLASS_P (t) = ti.class_p;
3689 /* Build the corresponding TYPE_DECL. */
3690 d = build_decl (input_location, TYPE_DECL, name, t);
3691 TYPE_NAME (TREE_TYPE (d)) = d;
3692 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
3693 DECL_CONTEXT (d) = FROB_CONTEXT (context);
3694 DECL_ARTIFICIAL (d) = 1;
3696 /* Store it in the hash table. */
3697 *e = t;
3699 /* TYPENAME_TYPEs must always be compared structurally, because
3700 they may or may not resolve down to another type depending on
3701 the currently open classes. */
3702 SET_TYPE_STRUCTURAL_EQUALITY (t);
3705 return t;
3708 /* Resolve `typename CONTEXT::NAME'. TAG_TYPE indicates the tag
3709 provided to name the type. Returns an appropriate type, unless an
3710 error occurs, in which case error_mark_node is returned. If we
3711 locate a non-artificial TYPE_DECL and TF_KEEP_TYPE_DECL is set, we
3712 return that, rather than the _TYPE it corresponds to, in other
3713 cases we look through the type decl. If TF_ERROR is set, complain
3714 about errors, otherwise be quiet. */
3716 tree
3717 make_typename_type (tree context, tree name, enum tag_types tag_type,
3718 tsubst_flags_t complain)
3720 tree fullname;
3721 tree t;
3722 bool want_template;
3724 if (name == error_mark_node
3725 || context == NULL_TREE
3726 || context == error_mark_node)
3727 return error_mark_node;
3729 if (TYPE_P (name))
3731 if (!(TYPE_LANG_SPECIFIC (name)
3732 && (CLASSTYPE_IS_TEMPLATE (name)
3733 || CLASSTYPE_USE_TEMPLATE (name))))
3734 name = TYPE_IDENTIFIER (name);
3735 else
3736 /* Create a TEMPLATE_ID_EXPR for the type. */
3737 name = build_nt (TEMPLATE_ID_EXPR,
3738 CLASSTYPE_TI_TEMPLATE (name),
3739 CLASSTYPE_TI_ARGS (name));
3741 else if (TREE_CODE (name) == TYPE_DECL)
3742 name = DECL_NAME (name);
3744 fullname = name;
3746 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
3748 name = TREE_OPERAND (name, 0);
3749 if (DECL_TYPE_TEMPLATE_P (name))
3750 name = TREE_OPERAND (fullname, 0) = DECL_NAME (name);
3751 if (TREE_CODE (name) != IDENTIFIER_NODE)
3753 if (complain & tf_error)
3754 error ("%qD is not a type", name);
3755 return error_mark_node;
3758 if (TREE_CODE (name) == TEMPLATE_DECL)
3760 if (complain & tf_error)
3761 error ("%qD used without template parameters", name);
3762 return error_mark_node;
3764 gcc_assert (identifier_p (name));
3765 gcc_assert (TYPE_P (context));
3767 if (!MAYBE_CLASS_TYPE_P (context))
3769 if (complain & tf_error)
3770 error ("%q#T is not a class", context);
3771 return error_mark_node;
3774 /* When the CONTEXT is a dependent type, NAME could refer to a
3775 dependent base class of CONTEXT. But look inside it anyway
3776 if CONTEXT is a currently open scope, in case it refers to a
3777 member of the current instantiation or a non-dependent base;
3778 lookup will stop when we hit a dependent base. */
3779 if (!dependent_scope_p (context))
3780 /* We should only set WANT_TYPE when we're a nested typename type.
3781 Then we can give better diagnostics if we find a non-type. */
3782 t = lookup_field (context, name, 2, /*want_type=*/true);
3783 else
3784 t = NULL_TREE;
3786 if ((!t || TREE_CODE (t) == TREE_LIST) && dependent_type_p (context))
3787 return build_typename_type (context, name, fullname, tag_type);
3789 want_template = TREE_CODE (fullname) == TEMPLATE_ID_EXPR;
3791 if (!t)
3793 if (complain & tf_error)
3795 if (!COMPLETE_TYPE_P (context))
3796 cxx_incomplete_type_error (NULL_TREE, context);
3797 else
3798 error (want_template ? G_("no class template named %q#T in %q#T")
3799 : G_("no type named %q#T in %q#T"), name, context);
3801 return error_mark_node;
3804 /* Pull out the template from an injected-class-name (or multiple). */
3805 if (want_template)
3806 t = maybe_get_template_decl_from_type_decl (t);
3808 if (TREE_CODE (t) == TREE_LIST)
3810 if (complain & tf_error)
3812 error ("lookup of %qT in %qT is ambiguous", name, context);
3813 print_candidates (t);
3815 return error_mark_node;
3818 if (want_template && !DECL_TYPE_TEMPLATE_P (t))
3820 if (complain & tf_error)
3821 error ("%<typename %T::%D%> names %q#T, which is not a class template",
3822 context, name, t);
3823 return error_mark_node;
3825 if (!want_template && TREE_CODE (t) != TYPE_DECL)
3827 if (complain & tf_error)
3828 error ("%<typename %T::%D%> names %q#T, which is not a type",
3829 context, name, t);
3830 return error_mark_node;
3833 if (!perform_or_defer_access_check (TYPE_BINFO (context), t, t, complain))
3834 return error_mark_node;
3836 /* If we are currently parsing a template and if T is a typedef accessed
3837 through CONTEXT then we need to remember and check access of T at
3838 template instantiation time. */
3839 add_typedef_to_current_template_for_access_check (t, context, input_location);
3841 if (want_template)
3842 return lookup_template_class (t, TREE_OPERAND (fullname, 1),
3843 NULL_TREE, context,
3844 /*entering_scope=*/0,
3845 complain | tf_user);
3847 if (DECL_ARTIFICIAL (t) || !(complain & tf_keep_type_decl))
3848 t = TREE_TYPE (t);
3850 maybe_record_typedef_use (t);
3852 return t;
3855 /* Resolve `CONTEXT::template NAME'. Returns a TEMPLATE_DECL if the name
3856 can be resolved or an UNBOUND_CLASS_TEMPLATE, unless an error occurs,
3857 in which case error_mark_node is returned.
3859 If PARM_LIST is non-NULL, also make sure that the template parameter
3860 list of TEMPLATE_DECL matches.
3862 If COMPLAIN zero, don't complain about any errors that occur. */
3864 tree
3865 make_unbound_class_template (tree context, tree name, tree parm_list,
3866 tsubst_flags_t complain)
3868 tree t;
3869 tree d;
3871 if (TYPE_P (name))
3872 name = TYPE_IDENTIFIER (name);
3873 else if (DECL_P (name))
3874 name = DECL_NAME (name);
3875 gcc_assert (identifier_p (name));
3877 if (!dependent_type_p (context)
3878 || currently_open_class (context))
3880 tree tmpl = NULL_TREE;
3882 if (MAYBE_CLASS_TYPE_P (context))
3883 tmpl = lookup_field (context, name, 0, false);
3885 if (tmpl && TREE_CODE (tmpl) == TYPE_DECL)
3886 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
3888 if (!tmpl || !DECL_TYPE_TEMPLATE_P (tmpl))
3890 if (complain & tf_error)
3891 error ("no class template named %q#T in %q#T", name, context);
3892 return error_mark_node;
3895 if (parm_list
3896 && !comp_template_parms (DECL_TEMPLATE_PARMS (tmpl), parm_list))
3898 if (complain & tf_error)
3900 error ("template parameters do not match template %qD", tmpl);
3901 inform (DECL_SOURCE_LOCATION (tmpl),
3902 "%qD declared here", tmpl);
3904 return error_mark_node;
3907 if (!perform_or_defer_access_check (TYPE_BINFO (context), tmpl, tmpl,
3908 complain))
3909 return error_mark_node;
3911 return tmpl;
3914 /* Build the UNBOUND_CLASS_TEMPLATE. */
3915 t = cxx_make_type (UNBOUND_CLASS_TEMPLATE);
3916 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
3917 TREE_TYPE (t) = NULL_TREE;
3918 SET_TYPE_STRUCTURAL_EQUALITY (t);
3920 /* Build the corresponding TEMPLATE_DECL. */
3921 d = build_decl (input_location, TEMPLATE_DECL, name, t);
3922 TYPE_NAME (TREE_TYPE (d)) = d;
3923 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
3924 DECL_CONTEXT (d) = FROB_CONTEXT (context);
3925 DECL_ARTIFICIAL (d) = 1;
3926 DECL_TEMPLATE_PARMS (d) = parm_list;
3928 return t;
3933 /* Push the declarations of builtin types into the global namespace.
3934 RID_INDEX is the index of the builtin type in the array
3935 RID_POINTERS. NAME is the name used when looking up the builtin
3936 type. TYPE is the _TYPE node for the builtin type.
3938 The calls to set_global_binding below should be
3939 eliminated. Built-in types should not be looked up name; their
3940 names are keywords that the parser can recognize. However, there
3941 is code in c-common.c that uses identifier_global_value to look up
3942 built-in types by name. */
3944 void
3945 record_builtin_type (enum rid rid_index,
3946 const char* name,
3947 tree type)
3949 tree decl = NULL_TREE;
3951 if (name)
3953 tree tname = get_identifier (name);
3954 tree tdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, tname, type);
3955 DECL_ARTIFICIAL (tdecl) = 1;
3956 set_global_binding (tdecl);
3957 decl = tdecl;
3960 if ((int) rid_index < (int) RID_MAX)
3961 if (tree rname = ridpointers[(int) rid_index])
3962 if (!decl || DECL_NAME (decl) != rname)
3964 tree rdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, rname, type);
3965 DECL_ARTIFICIAL (rdecl) = 1;
3966 set_global_binding (rdecl);
3967 if (!decl)
3968 decl = rdecl;
3971 if (decl)
3973 if (!TYPE_NAME (type))
3974 TYPE_NAME (type) = decl;
3975 debug_hooks->type_decl (decl, 0);
3979 /* Push a type into the namespace so that the back ends ignore it. */
3981 static void
3982 record_unknown_type (tree type, const char* name)
3984 tree decl = pushdecl (build_decl (UNKNOWN_LOCATION,
3985 TYPE_DECL, get_identifier (name), type));
3986 /* Make sure the "unknown type" typedecl gets ignored for debug info. */
3987 DECL_IGNORED_P (decl) = 1;
3988 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
3989 TYPE_SIZE (type) = TYPE_SIZE (void_type_node);
3990 SET_TYPE_ALIGN (type, 1);
3991 TYPE_USER_ALIGN (type) = 0;
3992 SET_TYPE_MODE (type, TYPE_MODE (void_type_node));
3995 /* Create all the predefined identifiers. */
3997 static void
3998 initialize_predefined_identifiers (void)
4000 struct predefined_identifier
4002 const char *name; /* Name. */
4003 tree *node; /* Node to store it in. */
4004 cp_identifier_kind kind; /* Kind of identifier. */
4007 /* A table of identifiers to create at startup. */
4008 static const predefined_identifier predefined_identifiers[] = {
4009 {"C++", &lang_name_cplusplus, cik_normal},
4010 {"C", &lang_name_c, cik_normal},
4011 /* Some of these names have a trailing space so that it is
4012 impossible for them to conflict with names written by users. */
4013 {"__ct ", &ctor_identifier, cik_ctor},
4014 {"__ct_base ", &base_ctor_identifier, cik_ctor},
4015 {"__ct_comp ", &complete_ctor_identifier, cik_ctor},
4016 {"__dt ", &dtor_identifier, cik_dtor},
4017 {"__dt_base ", &base_dtor_identifier, cik_dtor},
4018 {"__dt_comp ", &complete_dtor_identifier, cik_dtor},
4019 {"__dt_del ", &deleting_dtor_identifier, cik_dtor},
4020 {"__conv_op ", &conv_op_identifier, cik_conv_op},
4021 {"__in_chrg", &in_charge_identifier, cik_normal},
4022 {"this", &this_identifier, cik_normal},
4023 {"__delta", &delta_identifier, cik_normal},
4024 {"__pfn", &pfn_identifier, cik_normal},
4025 {"_vptr", &vptr_identifier, cik_normal},
4026 {"__vtt_parm", &vtt_parm_identifier, cik_normal},
4027 {"::", &global_identifier, cik_normal},
4028 {"std", &std_identifier, cik_normal},
4029 /* The demangler expects anonymous namespaces to be called
4030 something starting with '_GLOBAL__N_'. It no longer needs
4031 to be unique to the TU. */
4032 {"_GLOBAL__N_1", &anon_identifier, cik_normal},
4033 {"auto", &auto_identifier, cik_normal},
4034 {"decltype(auto)", &decltype_auto_identifier, cik_normal},
4035 {"initializer_list", &init_list_identifier, cik_normal},
4036 {NULL, NULL, cik_normal}
4039 for (const predefined_identifier *pid = predefined_identifiers;
4040 pid->name; ++pid)
4042 *pid->node = get_identifier (pid->name);
4043 /* Some of these identifiers already have a special kind. */
4044 if (pid->kind != cik_normal)
4045 set_identifier_kind (*pid->node, pid->kind);
4049 /* Create the predefined scalar types of C,
4050 and some nodes representing standard constants (0, 1, (void *)0).
4051 Initialize the global binding level.
4052 Make definitions for built-in primitive functions. */
4054 void
4055 cxx_init_decl_processing (void)
4057 tree void_ftype;
4058 tree void_ftype_ptr;
4060 /* Create all the identifiers we need. */
4061 initialize_predefined_identifiers ();
4063 /* Create the global variables. */
4064 push_to_top_level ();
4066 current_function_decl = NULL_TREE;
4067 current_binding_level = NULL;
4068 /* Enter the global namespace. */
4069 gcc_assert (global_namespace == NULL_TREE);
4070 global_namespace = build_lang_decl (NAMESPACE_DECL, global_identifier,
4071 void_type_node);
4072 TREE_PUBLIC (global_namespace) = 1;
4073 DECL_CONTEXT (global_namespace)
4074 = build_translation_unit_decl (get_identifier (main_input_filename));
4075 /* Remember whether we want the empty class passing ABI change warning
4076 in this TU. */
4077 TRANSLATION_UNIT_WARN_EMPTY_P (DECL_CONTEXT (global_namespace))
4078 = warn_abi && abi_version_crosses (12);
4079 debug_hooks->register_main_translation_unit
4080 (DECL_CONTEXT (global_namespace));
4081 begin_scope (sk_namespace, global_namespace);
4082 current_namespace = global_namespace;
4084 if (flag_visibility_ms_compat)
4085 default_visibility = VISIBILITY_HIDDEN;
4087 /* Initially, C. */
4088 current_lang_name = lang_name_c;
4090 /* Create the `std' namespace. */
4091 push_namespace (std_identifier);
4092 std_node = current_namespace;
4093 pop_namespace ();
4095 flag_noexcept_type = (cxx_dialect >= cxx17);
4096 if (!flag_new_for_scope)
4097 warning (OPT_Wdeprecated, "%<-fno-for-scope%> is deprecated");
4099 c_common_nodes_and_builtins ();
4101 integer_two_node = build_int_cst (NULL_TREE, 2);
4103 /* Guess at the initial static decls size. */
4104 vec_alloc (static_decls, 500);
4106 /* ... and keyed classes. */
4107 vec_alloc (keyed_classes, 100);
4109 record_builtin_type (RID_BOOL, "bool", boolean_type_node);
4110 truthvalue_type_node = boolean_type_node;
4111 truthvalue_false_node = boolean_false_node;
4112 truthvalue_true_node = boolean_true_node;
4114 empty_except_spec = build_tree_list (NULL_TREE, NULL_TREE);
4115 noexcept_true_spec = build_tree_list (boolean_true_node, NULL_TREE);
4116 noexcept_false_spec = build_tree_list (boolean_false_node, NULL_TREE);
4117 noexcept_deferred_spec = build_tree_list (make_node (DEFERRED_NOEXCEPT),
4118 NULL_TREE);
4120 #if 0
4121 record_builtin_type (RID_MAX, NULL, string_type_node);
4122 #endif
4124 delta_type_node = ptrdiff_type_node;
4125 vtable_index_type = ptrdiff_type_node;
4127 vtt_parm_type = build_pointer_type (const_ptr_type_node);
4128 void_ftype = build_function_type_list (void_type_node, NULL_TREE);
4129 void_ftype_ptr = build_function_type_list (void_type_node,
4130 ptr_type_node, NULL_TREE);
4131 void_ftype_ptr
4132 = build_exception_variant (void_ftype_ptr, empty_except_spec);
4134 /* Create the conversion operator marker. This operator's DECL_NAME
4135 is in the identifier table, so we can use identifier equality to
4136 find it. */
4137 conv_op_marker = build_lang_decl (FUNCTION_DECL, conv_op_identifier,
4138 void_ftype);
4140 /* C++ extensions */
4142 unknown_type_node = make_node (LANG_TYPE);
4143 record_unknown_type (unknown_type_node, "unknown type");
4145 /* Indirecting an UNKNOWN_TYPE node yields an UNKNOWN_TYPE node. */
4146 TREE_TYPE (unknown_type_node) = unknown_type_node;
4148 /* Looking up TYPE_POINTER_TO and TYPE_REFERENCE_TO yield the same
4149 result. */
4150 TYPE_POINTER_TO (unknown_type_node) = unknown_type_node;
4151 TYPE_REFERENCE_TO (unknown_type_node) = unknown_type_node;
4153 init_list_type_node = make_node (LANG_TYPE);
4154 record_unknown_type (init_list_type_node, "init list");
4157 /* Make sure we get a unique function type, so we can give
4158 its pointer type a name. (This wins for gdb.) */
4159 tree vfunc_type = make_node (FUNCTION_TYPE);
4160 TREE_TYPE (vfunc_type) = integer_type_node;
4161 TYPE_ARG_TYPES (vfunc_type) = NULL_TREE;
4162 layout_type (vfunc_type);
4164 vtable_entry_type = build_pointer_type (vfunc_type);
4166 record_builtin_type (RID_MAX, "__vtbl_ptr_type", vtable_entry_type);
4168 vtbl_type_node
4169 = build_cplus_array_type (vtable_entry_type, NULL_TREE);
4170 layout_type (vtbl_type_node);
4171 vtbl_type_node = cp_build_qualified_type (vtbl_type_node, TYPE_QUAL_CONST);
4172 record_builtin_type (RID_MAX, NULL, vtbl_type_node);
4173 vtbl_ptr_type_node = build_pointer_type (vtable_entry_type);
4174 layout_type (vtbl_ptr_type_node);
4175 record_builtin_type (RID_MAX, NULL, vtbl_ptr_type_node);
4177 push_namespace (get_identifier ("__cxxabiv1"));
4178 abi_node = current_namespace;
4179 pop_namespace ();
4181 global_type_node = make_node (LANG_TYPE);
4182 record_unknown_type (global_type_node, "global type");
4184 any_targ_node = make_node (LANG_TYPE);
4185 record_unknown_type (any_targ_node, "any type");
4187 /* Now, C++. */
4188 current_lang_name = lang_name_cplusplus;
4190 if (aligned_new_threshold > 1
4191 && !pow2p_hwi (aligned_new_threshold))
4193 error ("-faligned-new=%d is not a power of two", aligned_new_threshold);
4194 aligned_new_threshold = 1;
4196 if (aligned_new_threshold == -1)
4197 aligned_new_threshold = (cxx_dialect >= cxx17) ? 1 : 0;
4198 if (aligned_new_threshold == 1)
4199 aligned_new_threshold = malloc_alignment () / BITS_PER_UNIT;
4202 tree newattrs, extvisattr;
4203 tree newtype, deltype;
4204 tree ptr_ftype_sizetype;
4205 tree new_eh_spec;
4207 ptr_ftype_sizetype
4208 = build_function_type_list (ptr_type_node, size_type_node, NULL_TREE);
4209 if (cxx_dialect == cxx98)
4211 tree bad_alloc_id;
4212 tree bad_alloc_type_node;
4213 tree bad_alloc_decl;
4215 push_namespace (std_identifier);
4216 bad_alloc_id = get_identifier ("bad_alloc");
4217 bad_alloc_type_node = make_class_type (RECORD_TYPE);
4218 TYPE_CONTEXT (bad_alloc_type_node) = current_namespace;
4219 bad_alloc_decl
4220 = create_implicit_typedef (bad_alloc_id, bad_alloc_type_node);
4221 DECL_CONTEXT (bad_alloc_decl) = current_namespace;
4222 pop_namespace ();
4224 new_eh_spec
4225 = add_exception_specifier (NULL_TREE, bad_alloc_type_node, -1);
4227 else
4228 new_eh_spec = noexcept_false_spec;
4230 /* Ensure attribs.c is initialized. */
4231 init_attributes ();
4233 /* Ensure constraint.cc is initialized. */
4234 init_constraint_processing ();
4236 extvisattr = build_tree_list (get_identifier ("externally_visible"),
4237 NULL_TREE);
4238 newattrs = tree_cons (get_identifier ("alloc_size"),
4239 build_tree_list (NULL_TREE, integer_one_node),
4240 extvisattr);
4241 newtype = cp_build_type_attribute_variant (ptr_ftype_sizetype, newattrs);
4242 newtype = build_exception_variant (newtype, new_eh_spec);
4243 deltype = cp_build_type_attribute_variant (void_ftype_ptr, extvisattr);
4244 deltype = build_exception_variant (deltype, empty_except_spec);
4245 tree opnew = push_cp_library_fn (NEW_EXPR, newtype, 0);
4246 DECL_IS_MALLOC (opnew) = 1;
4247 DECL_IS_OPERATOR_NEW (opnew) = 1;
4248 opnew = push_cp_library_fn (VEC_NEW_EXPR, newtype, 0);
4249 DECL_IS_MALLOC (opnew) = 1;
4250 DECL_IS_OPERATOR_NEW (opnew) = 1;
4251 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4252 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4253 if (flag_sized_deallocation)
4255 /* Also push the sized deallocation variants:
4256 void operator delete(void*, std::size_t) throw();
4257 void operator delete[](void*, std::size_t) throw(); */
4258 tree void_ftype_ptr_size
4259 = build_function_type_list (void_type_node, ptr_type_node,
4260 size_type_node, NULL_TREE);
4261 deltype = cp_build_type_attribute_variant (void_ftype_ptr_size,
4262 extvisattr);
4263 deltype = build_exception_variant (deltype, empty_except_spec);
4264 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4265 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4268 if (aligned_new_threshold)
4270 push_namespace (std_identifier);
4271 tree align_id = get_identifier ("align_val_t");
4272 align_type_node = start_enum (align_id, NULL_TREE, size_type_node,
4273 NULL_TREE, /*scoped*/true, NULL);
4274 pop_namespace ();
4276 /* operator new (size_t, align_val_t); */
4277 newtype = build_function_type_list (ptr_type_node, size_type_node,
4278 align_type_node, NULL_TREE);
4279 newtype = cp_build_type_attribute_variant (newtype, newattrs);
4280 newtype = build_exception_variant (newtype, new_eh_spec);
4281 opnew = push_cp_library_fn (NEW_EXPR, newtype, 0);
4282 DECL_IS_MALLOC (opnew) = 1;
4283 DECL_IS_OPERATOR_NEW (opnew) = 1;
4284 opnew = push_cp_library_fn (VEC_NEW_EXPR, newtype, 0);
4285 DECL_IS_MALLOC (opnew) = 1;
4286 DECL_IS_OPERATOR_NEW (opnew) = 1;
4288 /* operator delete (void *, align_val_t); */
4289 deltype = build_function_type_list (void_type_node, ptr_type_node,
4290 align_type_node, NULL_TREE);
4291 deltype = cp_build_type_attribute_variant (deltype, extvisattr);
4292 deltype = build_exception_variant (deltype, empty_except_spec);
4293 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4294 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4296 if (flag_sized_deallocation)
4298 /* operator delete (void *, size_t, align_val_t); */
4299 deltype = build_function_type_list (void_type_node, ptr_type_node,
4300 size_type_node, align_type_node,
4301 NULL_TREE);
4302 deltype = cp_build_type_attribute_variant (deltype, extvisattr);
4303 deltype = build_exception_variant (deltype, empty_except_spec);
4304 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4305 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4309 nullptr_type_node = make_node (NULLPTR_TYPE);
4310 TYPE_SIZE (nullptr_type_node) = bitsize_int (GET_MODE_BITSIZE (ptr_mode));
4311 TYPE_SIZE_UNIT (nullptr_type_node) = size_int (GET_MODE_SIZE (ptr_mode));
4312 TYPE_UNSIGNED (nullptr_type_node) = 1;
4313 TYPE_PRECISION (nullptr_type_node) = GET_MODE_BITSIZE (ptr_mode);
4314 if (abi_version_at_least (9))
4315 SET_TYPE_ALIGN (nullptr_type_node, GET_MODE_ALIGNMENT (ptr_mode));
4316 SET_TYPE_MODE (nullptr_type_node, ptr_mode);
4317 record_builtin_type (RID_MAX, "decltype(nullptr)", nullptr_type_node);
4318 nullptr_node = build_int_cst (nullptr_type_node, 0);
4321 abort_fndecl
4322 = build_library_fn_ptr ("__cxa_pure_virtual", void_ftype,
4323 ECF_NORETURN | ECF_NOTHROW | ECF_COLD);
4325 /* Perform other language dependent initializations. */
4326 init_class_processing ();
4327 init_rtti_processing ();
4328 init_template_processing ();
4330 if (flag_exceptions)
4331 init_exception_processing ();
4333 if (! supports_one_only ())
4334 flag_weak = 0;
4336 make_fname_decl = cp_make_fname_decl;
4337 start_fname_decls ();
4339 /* Show we use EH for cleanups. */
4340 if (flag_exceptions)
4341 using_eh_for_cleanups ();
4344 /* Generate an initializer for a function naming variable from
4345 NAME. NAME may be NULL, to indicate a dependent name. TYPE_P is
4346 filled in with the type of the init. */
4348 tree
4349 cp_fname_init (const char* name, tree *type_p)
4351 tree domain = NULL_TREE;
4352 tree type;
4353 tree init = NULL_TREE;
4354 size_t length = 0;
4356 if (name)
4358 length = strlen (name);
4359 domain = build_index_type (size_int (length));
4360 init = build_string (length + 1, name);
4363 type = cp_build_qualified_type (char_type_node, TYPE_QUAL_CONST);
4364 type = build_cplus_array_type (type, domain);
4366 *type_p = type;
4368 if (init)
4369 TREE_TYPE (init) = type;
4370 else
4371 init = error_mark_node;
4373 return init;
4376 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give
4377 the decl, LOC is the location to give the decl, NAME is the
4378 initialization string and TYPE_DEP indicates whether NAME depended
4379 on the type of the function. We make use of that to detect
4380 __PRETTY_FUNCTION__ inside a template fn. This is being done lazily
4381 at the point of first use, so we mustn't push the decl now. */
4383 static tree
4384 cp_make_fname_decl (location_t loc, tree id, int type_dep)
4386 const char *const name = (type_dep && processing_template_decl
4387 ? NULL : fname_as_string (type_dep));
4388 tree type;
4389 tree init = cp_fname_init (name, &type);
4390 tree decl = build_decl (loc, VAR_DECL, id, type);
4392 if (name)
4393 free (CONST_CAST (char *, name));
4395 TREE_STATIC (decl) = 1;
4396 TREE_READONLY (decl) = 1;
4397 DECL_ARTIFICIAL (decl) = 1;
4399 TREE_USED (decl) = 1;
4401 if (current_function_decl)
4403 DECL_CONTEXT (decl) = current_function_decl;
4404 decl = pushdecl_outermost_localscope (decl);
4405 cp_finish_decl (decl, init, /*init_const_expr_p=*/false, NULL_TREE,
4406 LOOKUP_ONLYCONVERTING);
4408 else
4410 DECL_THIS_STATIC (decl) = true;
4411 pushdecl_top_level_and_finish (decl, init);
4414 return decl;
4417 static tree
4418 builtin_function_1 (tree decl, tree context, bool is_global)
4420 tree id = DECL_NAME (decl);
4421 const char *name = IDENTIFIER_POINTER (id);
4423 retrofit_lang_decl (decl);
4425 DECL_ARTIFICIAL (decl) = 1;
4426 SET_DECL_LANGUAGE (decl, lang_c);
4427 /* Runtime library routines are, by definition, available in an
4428 external shared object. */
4429 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
4430 DECL_VISIBILITY_SPECIFIED (decl) = 1;
4432 DECL_CONTEXT (decl) = context;
4434 /* A function in the user's namespace should have an explicit
4435 declaration before it is used. Mark the built-in function as
4436 anticipated but not actually declared. */
4437 if (name[0] != '_' || name[1] != '_')
4438 DECL_ANTICIPATED (decl) = 1;
4439 else if (strncmp (name + 2, "builtin_", strlen ("builtin_")) != 0)
4441 size_t len = strlen (name);
4443 /* Treat __*_chk fortification functions as anticipated as well,
4444 unless they are __builtin_*. */
4445 if (len > strlen ("___chk")
4446 && memcmp (name + len - strlen ("_chk"),
4447 "_chk", strlen ("_chk") + 1) == 0)
4448 DECL_ANTICIPATED (decl) = 1;
4451 if (is_global)
4452 pushdecl_top_level (decl);
4453 else
4454 pushdecl (decl);
4456 return decl;
4459 tree
4460 cxx_builtin_function (tree decl)
4462 tree id = DECL_NAME (decl);
4463 const char *name = IDENTIFIER_POINTER (id);
4464 /* All builtins that don't begin with an '_' should additionally
4465 go in the 'std' namespace. */
4466 if (name[0] != '_')
4468 tree decl2 = copy_node(decl);
4469 push_namespace (std_identifier);
4470 builtin_function_1 (decl2, std_node, false);
4471 pop_namespace ();
4474 return builtin_function_1 (decl, NULL_TREE, false);
4477 /* Like cxx_builtin_function, but guarantee the function is added to the global
4478 scope. This is to allow function specific options to add new machine
4479 dependent builtins when the target ISA changes via attribute((target(...)))
4480 which saves space on program startup if the program does not use non-generic
4481 ISAs. */
4483 tree
4484 cxx_builtin_function_ext_scope (tree decl)
4487 tree id = DECL_NAME (decl);
4488 const char *name = IDENTIFIER_POINTER (id);
4489 /* All builtins that don't begin with an '_' should additionally
4490 go in the 'std' namespace. */
4491 if (name[0] != '_')
4493 tree decl2 = copy_node(decl);
4494 push_namespace (std_identifier);
4495 builtin_function_1 (decl2, std_node, true);
4496 pop_namespace ();
4499 return builtin_function_1 (decl, NULL_TREE, true);
4502 /* Generate a FUNCTION_DECL with the typical flags for a runtime library
4503 function. Not called directly. */
4505 static tree
4506 build_library_fn (tree name, enum tree_code operator_code, tree type,
4507 int ecf_flags)
4509 tree fn = build_lang_decl (FUNCTION_DECL, name, type);
4510 DECL_EXTERNAL (fn) = 1;
4511 TREE_PUBLIC (fn) = 1;
4512 DECL_ARTIFICIAL (fn) = 1;
4513 DECL_OVERLOADED_OPERATOR_CODE_RAW (fn)
4514 = OVL_OP_INFO (false, operator_code)->ovl_op_code;
4515 SET_DECL_LANGUAGE (fn, lang_c);
4516 /* Runtime library routines are, by definition, available in an
4517 external shared object. */
4518 DECL_VISIBILITY (fn) = VISIBILITY_DEFAULT;
4519 DECL_VISIBILITY_SPECIFIED (fn) = 1;
4520 set_call_expr_flags (fn, ecf_flags);
4521 return fn;
4524 /* Returns the _DECL for a library function with C++ linkage. */
4526 static tree
4527 build_cp_library_fn (tree name, enum tree_code operator_code, tree type,
4528 int ecf_flags)
4530 tree fn = build_library_fn (name, operator_code, type, ecf_flags);
4531 DECL_CONTEXT (fn) = FROB_CONTEXT (current_namespace);
4532 SET_DECL_LANGUAGE (fn, lang_cplusplus);
4533 return fn;
4536 /* Like build_library_fn, but takes a C string instead of an
4537 IDENTIFIER_NODE. */
4539 tree
4540 build_library_fn_ptr (const char* name, tree type, int ecf_flags)
4542 return build_library_fn (get_identifier (name), ERROR_MARK, type, ecf_flags);
4545 /* Like build_cp_library_fn, but takes a C string instead of an
4546 IDENTIFIER_NODE. */
4548 tree
4549 build_cp_library_fn_ptr (const char* name, tree type, int ecf_flags)
4551 return build_cp_library_fn (get_identifier (name), ERROR_MARK, type,
4552 ecf_flags);
4555 /* Like build_library_fn, but also pushes the function so that we will
4556 be able to find it via get_global_binding. Also, the function
4557 may throw exceptions listed in RAISES. */
4559 tree
4560 push_library_fn (tree name, tree type, tree raises, int ecf_flags)
4562 tree fn;
4564 if (raises)
4565 type = build_exception_variant (type, raises);
4567 fn = build_library_fn (name, ERROR_MARK, type, ecf_flags);
4568 pushdecl_top_level (fn);
4569 return fn;
4572 /* Like build_cp_library_fn, but also pushes the function so that it
4573 will be found by normal lookup. */
4575 static tree
4576 push_cp_library_fn (enum tree_code operator_code, tree type,
4577 int ecf_flags)
4579 tree fn = build_cp_library_fn (ovl_op_identifier (false, operator_code),
4580 operator_code, type, ecf_flags);
4581 pushdecl (fn);
4582 if (flag_tm)
4583 apply_tm_attr (fn, get_identifier ("transaction_safe"));
4584 return fn;
4587 /* Like push_library_fn, but takes a TREE_LIST of parm types rather than
4588 a FUNCTION_TYPE. */
4590 tree
4591 push_void_library_fn (tree name, tree parmtypes, int ecf_flags)
4593 tree type = build_function_type (void_type_node, parmtypes);
4594 return push_library_fn (name, type, NULL_TREE, ecf_flags);
4597 /* Like push_library_fn, but also note that this function throws
4598 and does not return. Used for __throw_foo and the like. */
4600 tree
4601 push_throw_library_fn (tree name, tree type)
4603 tree fn = push_library_fn (name, type, NULL_TREE, ECF_NORETURN | ECF_COLD);
4604 return fn;
4607 /* When we call finish_struct for an anonymous union, we create
4608 default copy constructors and such. But, an anonymous union
4609 shouldn't have such things; this function undoes the damage to the
4610 anonymous union type T.
4612 (The reason that we create the synthesized methods is that we don't
4613 distinguish `union { int i; }' from `typedef union { int i; } U'.
4614 The first is an anonymous union; the second is just an ordinary
4615 union type.) */
4617 void
4618 fixup_anonymous_aggr (tree t)
4620 /* Wipe out memory of synthesized methods. */
4621 TYPE_HAS_USER_CONSTRUCTOR (t) = 0;
4622 TYPE_HAS_DEFAULT_CONSTRUCTOR (t) = 0;
4623 TYPE_HAS_COPY_CTOR (t) = 0;
4624 TYPE_HAS_CONST_COPY_CTOR (t) = 0;
4625 TYPE_HAS_COPY_ASSIGN (t) = 0;
4626 TYPE_HAS_CONST_COPY_ASSIGN (t) = 0;
4628 /* Splice the implicitly generated functions out of TYPE_FIELDS. */
4629 for (tree probe, *prev_p = &TYPE_FIELDS (t); (probe = *prev_p);)
4630 if (TREE_CODE (probe) == FUNCTION_DECL && DECL_ARTIFICIAL (probe))
4631 *prev_p = DECL_CHAIN (probe);
4632 else
4633 prev_p = &DECL_CHAIN (probe);
4635 /* Anonymous aggregates cannot have fields with ctors, dtors or complex
4636 assignment operators (because they cannot have these methods themselves).
4637 For anonymous unions this is already checked because they are not allowed
4638 in any union, otherwise we have to check it. */
4639 if (TREE_CODE (t) != UNION_TYPE)
4641 tree field, type;
4643 for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
4644 if (TREE_CODE (field) == FIELD_DECL)
4646 type = TREE_TYPE (field);
4647 if (CLASS_TYPE_P (type))
4649 if (TYPE_NEEDS_CONSTRUCTING (type))
4650 error ("member %q+#D with constructor not allowed "
4651 "in anonymous aggregate", field);
4652 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
4653 error ("member %q+#D with destructor not allowed "
4654 "in anonymous aggregate", field);
4655 if (TYPE_HAS_COMPLEX_COPY_ASSIGN (type))
4656 error ("member %q+#D with copy assignment operator "
4657 "not allowed in anonymous aggregate", field);
4663 /* Warn for an attribute located at LOCATION that appertains to the
4664 class type CLASS_TYPE that has not been properly placed after its
4665 class-key, in it class-specifier. */
4667 void
4668 warn_misplaced_attr_for_class_type (source_location location,
4669 tree class_type)
4671 gcc_assert (OVERLOAD_TYPE_P (class_type));
4673 if (warning_at (location, OPT_Wattributes,
4674 "attribute ignored in declaration "
4675 "of %q#T", class_type))
4676 inform (location,
4677 "attribute for %q#T must follow the %qs keyword",
4678 class_type, class_key_or_enum_as_string (class_type));
4681 /* Make sure that a declaration with no declarator is well-formed, i.e.
4682 just declares a tagged type or anonymous union.
4684 Returns the type declared; or NULL_TREE if none. */
4686 tree
4687 check_tag_decl (cp_decl_specifier_seq *declspecs,
4688 bool explicit_type_instantiation_p)
4690 int saw_friend = decl_spec_seq_has_spec_p (declspecs, ds_friend);
4691 int saw_typedef = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
4692 /* If a class, struct, or enum type is declared by the DECLSPECS
4693 (i.e, if a class-specifier, enum-specifier, or non-typename
4694 elaborated-type-specifier appears in the DECLSPECS),
4695 DECLARED_TYPE is set to the corresponding type. */
4696 tree declared_type = NULL_TREE;
4697 bool error_p = false;
4699 if (declspecs->multiple_types_p)
4700 error ("multiple types in one declaration");
4701 else if (declspecs->redefined_builtin_type)
4703 if (!in_system_header_at (input_location))
4704 permerror (declspecs->locations[ds_redefined_builtin_type_spec],
4705 "redeclaration of C++ built-in type %qT",
4706 declspecs->redefined_builtin_type);
4707 return NULL_TREE;
4710 if (declspecs->type
4711 && TYPE_P (declspecs->type)
4712 && ((TREE_CODE (declspecs->type) != TYPENAME_TYPE
4713 && MAYBE_CLASS_TYPE_P (declspecs->type))
4714 || TREE_CODE (declspecs->type) == ENUMERAL_TYPE))
4715 declared_type = declspecs->type;
4716 else if (declspecs->type == error_mark_node)
4717 error_p = true;
4718 if (declared_type == NULL_TREE && ! saw_friend && !error_p)
4719 permerror (input_location, "declaration does not declare anything");
4720 else if (declared_type != NULL_TREE && type_uses_auto (declared_type))
4722 error_at (declspecs->locations[ds_type_spec],
4723 "%<auto%> can only be specified for variables "
4724 "or function declarations");
4725 return error_mark_node;
4727 /* Check for an anonymous union. */
4728 else if (declared_type && RECORD_OR_UNION_CODE_P (TREE_CODE (declared_type))
4729 && TYPE_UNNAMED_P (declared_type))
4731 /* 7/3 In a simple-declaration, the optional init-declarator-list
4732 can be omitted only when declaring a class (clause 9) or
4733 enumeration (7.2), that is, when the decl-specifier-seq contains
4734 either a class-specifier, an elaborated-type-specifier with
4735 a class-key (9.1), or an enum-specifier. In these cases and
4736 whenever a class-specifier or enum-specifier is present in the
4737 decl-specifier-seq, the identifiers in these specifiers are among
4738 the names being declared by the declaration (as class-name,
4739 enum-names, or enumerators, depending on the syntax). In such
4740 cases, and except for the declaration of an unnamed bit-field (9.6),
4741 the decl-specifier-seq shall introduce one or more names into the
4742 program, or shall redeclare a name introduced by a previous
4743 declaration. [Example:
4744 enum { }; // ill-formed
4745 typedef class { }; // ill-formed
4746 --end example] */
4747 if (saw_typedef)
4749 error ("missing type-name in typedef-declaration");
4750 return NULL_TREE;
4752 /* Anonymous unions are objects, so they can have specifiers. */;
4753 SET_ANON_AGGR_TYPE_P (declared_type);
4755 if (TREE_CODE (declared_type) != UNION_TYPE
4756 && !in_system_header_at (input_location))
4757 pedwarn (input_location, OPT_Wpedantic, "ISO C++ prohibits anonymous structs");
4760 else
4762 if (decl_spec_seq_has_spec_p (declspecs, ds_inline))
4763 error_at (declspecs->locations[ds_inline],
4764 "%<inline%> can only be specified for functions");
4765 else if (decl_spec_seq_has_spec_p (declspecs, ds_virtual))
4766 error_at (declspecs->locations[ds_virtual],
4767 "%<virtual%> can only be specified for functions");
4768 else if (saw_friend
4769 && (!current_class_type
4770 || current_scope () != current_class_type))
4771 error_at (declspecs->locations[ds_friend],
4772 "%<friend%> can only be specified inside a class");
4773 else if (decl_spec_seq_has_spec_p (declspecs, ds_explicit))
4774 error_at (declspecs->locations[ds_explicit],
4775 "%<explicit%> can only be specified for constructors");
4776 else if (declspecs->storage_class)
4777 error_at (declspecs->locations[ds_storage_class],
4778 "a storage class can only be specified for objects "
4779 "and functions");
4780 else if (decl_spec_seq_has_spec_p (declspecs, ds_const))
4781 error_at (declspecs->locations[ds_const],
4782 "%<const%> can only be specified for objects and "
4783 "functions");
4784 else if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
4785 error_at (declspecs->locations[ds_volatile],
4786 "%<volatile%> can only be specified for objects and "
4787 "functions");
4788 else if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
4789 error_at (declspecs->locations[ds_restrict],
4790 "%<__restrict%> can only be specified for objects and "
4791 "functions");
4792 else if (decl_spec_seq_has_spec_p (declspecs, ds_thread))
4793 error_at (declspecs->locations[ds_thread],
4794 "%<__thread%> can only be specified for objects "
4795 "and functions");
4796 else if (saw_typedef)
4797 warning_at (declspecs->locations[ds_typedef], 0,
4798 "%<typedef%> was ignored in this declaration");
4799 else if (decl_spec_seq_has_spec_p (declspecs, ds_constexpr))
4800 error_at (declspecs->locations[ds_constexpr],
4801 "%<constexpr%> cannot be used for type declarations");
4804 if (declspecs->attributes && warn_attributes && declared_type)
4806 location_t loc;
4807 if (!CLASS_TYPE_P (declared_type)
4808 || !CLASSTYPE_TEMPLATE_INSTANTIATION (declared_type))
4809 /* For a non-template class, use the name location. */
4810 loc = location_of (declared_type);
4811 else
4812 /* For a template class (an explicit instantiation), use the
4813 current location. */
4814 loc = input_location;
4816 if (explicit_type_instantiation_p)
4817 /* [dcl.attr.grammar]/4:
4819 No attribute-specifier-seq shall appertain to an explicit
4820 instantiation. */
4822 if (warning_at (loc, OPT_Wattributes,
4823 "attribute ignored in explicit instantiation %q#T",
4824 declared_type))
4825 inform (loc,
4826 "no attribute can be applied to "
4827 "an explicit instantiation");
4829 else
4830 warn_misplaced_attr_for_class_type (loc, declared_type);
4833 return declared_type;
4836 /* Called when a declaration is seen that contains no names to declare.
4837 If its type is a reference to a structure, union or enum inherited
4838 from a containing scope, shadow that tag name for the current scope
4839 with a forward reference.
4840 If its type defines a new named structure or union
4841 or defines an enum, it is valid but we need not do anything here.
4842 Otherwise, it is an error.
4844 C++: may have to grok the declspecs to learn about static,
4845 complain for anonymous unions.
4847 Returns the TYPE declared -- or NULL_TREE if none. */
4849 tree
4850 shadow_tag (cp_decl_specifier_seq *declspecs)
4852 tree t = check_tag_decl (declspecs,
4853 /*explicit_type_instantiation_p=*/false);
4855 if (!t)
4856 return NULL_TREE;
4858 if (maybe_process_partial_specialization (t) == error_mark_node)
4859 return NULL_TREE;
4861 /* This is where the variables in an anonymous union are
4862 declared. An anonymous union declaration looks like:
4863 union { ... } ;
4864 because there is no declarator after the union, the parser
4865 sends that declaration here. */
4866 if (ANON_AGGR_TYPE_P (t))
4868 fixup_anonymous_aggr (t);
4870 if (TYPE_FIELDS (t))
4872 tree decl = grokdeclarator (/*declarator=*/NULL,
4873 declspecs, NORMAL, 0, NULL);
4874 finish_anon_union (decl);
4878 return t;
4881 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
4883 tree
4884 groktypename (cp_decl_specifier_seq *type_specifiers,
4885 const cp_declarator *declarator,
4886 bool is_template_arg)
4888 tree attrs;
4889 tree type;
4890 enum decl_context context
4891 = is_template_arg ? TEMPLATE_TYPE_ARG : TYPENAME;
4892 attrs = type_specifiers->attributes;
4893 type_specifiers->attributes = NULL_TREE;
4894 type = grokdeclarator (declarator, type_specifiers, context, 0, &attrs);
4895 if (attrs && type != error_mark_node)
4897 if (CLASS_TYPE_P (type))
4898 warning (OPT_Wattributes, "ignoring attributes applied to class type %qT "
4899 "outside of definition", type);
4900 else if (MAYBE_CLASS_TYPE_P (type))
4901 /* A template type parameter or other dependent type. */
4902 warning (OPT_Wattributes, "ignoring attributes applied to dependent "
4903 "type %qT without an associated declaration", type);
4904 else
4905 cplus_decl_attributes (&type, attrs, 0);
4907 return type;
4910 /* Process a DECLARATOR for a function-scope variable declaration,
4911 namespace-scope variable declaration, or function declaration.
4912 (Function definitions go through start_function; class member
4913 declarations appearing in the body of the class go through
4914 grokfield.) The DECL corresponding to the DECLARATOR is returned.
4915 If an error occurs, the error_mark_node is returned instead.
4917 DECLSPECS are the decl-specifiers for the declaration. INITIALIZED is
4918 SD_INITIALIZED if an explicit initializer is present, or SD_DEFAULTED
4919 for an explicitly defaulted function, or SD_DELETED for an explicitly
4920 deleted function, but 0 (SD_UNINITIALIZED) if this is a variable
4921 implicitly initialized via a default constructor. ATTRIBUTES and
4922 PREFIX_ATTRIBUTES are GNU attributes associated with this declaration.
4924 The scope represented by the context of the returned DECL is pushed
4925 (if it is not the global namespace) and is assigned to
4926 *PUSHED_SCOPE_P. The caller is then responsible for calling
4927 pop_scope on *PUSHED_SCOPE_P if it is set. */
4929 tree
4930 start_decl (const cp_declarator *declarator,
4931 cp_decl_specifier_seq *declspecs,
4932 int initialized,
4933 tree attributes,
4934 tree prefix_attributes,
4935 tree *pushed_scope_p)
4937 tree decl;
4938 tree context;
4939 bool was_public;
4940 int flags;
4941 bool alias;
4943 *pushed_scope_p = NULL_TREE;
4945 /* An object declared as __attribute__((deprecated)) suppresses
4946 warnings of uses of other deprecated items. */
4947 if (lookup_attribute ("deprecated", attributes))
4948 deprecated_state = DEPRECATED_SUPPRESS;
4950 attributes = chainon (attributes, prefix_attributes);
4952 decl = grokdeclarator (declarator, declspecs, NORMAL, initialized,
4953 &attributes);
4955 deprecated_state = DEPRECATED_NORMAL;
4957 if (decl == NULL_TREE || VOID_TYPE_P (decl)
4958 || decl == error_mark_node)
4959 return error_mark_node;
4961 context = CP_DECL_CONTEXT (decl);
4962 if (context != global_namespace)
4963 *pushed_scope_p = push_scope (context);
4965 /* Is it valid for this decl to have an initializer at all?
4966 If not, set INITIALIZED to zero, which will indirectly
4967 tell `cp_finish_decl' to ignore the initializer once it is parsed. */
4968 if (initialized
4969 && TREE_CODE (decl) == TYPE_DECL)
4971 error ("typedef %qD is initialized (use decltype instead)", decl);
4972 return error_mark_node;
4975 if (initialized)
4977 if (! toplevel_bindings_p ()
4978 && DECL_EXTERNAL (decl))
4979 warning (0, "declaration of %q#D has %<extern%> and is initialized",
4980 decl);
4981 DECL_EXTERNAL (decl) = 0;
4982 if (toplevel_bindings_p ())
4983 TREE_STATIC (decl) = 1;
4985 alias = lookup_attribute ("alias", DECL_ATTRIBUTES (decl)) != 0;
4987 if (alias && TREE_CODE (decl) == FUNCTION_DECL)
4988 record_key_method_defined (decl);
4990 /* If this is a typedef that names the class for linkage purposes
4991 (7.1.3p8), apply any attributes directly to the type. */
4992 if (TREE_CODE (decl) == TYPE_DECL
4993 && OVERLOAD_TYPE_P (TREE_TYPE (decl))
4994 && decl == TYPE_NAME (TYPE_MAIN_VARIANT (TREE_TYPE (decl))))
4995 flags = ATTR_FLAG_TYPE_IN_PLACE;
4996 else
4997 flags = 0;
4999 /* Set attributes here so if duplicate decl, will have proper attributes. */
5000 cplus_decl_attributes (&decl, attributes, flags);
5002 /* Dllimported symbols cannot be defined. Static data members (which
5003 can be initialized in-class and dllimported) go through grokfield,
5004 not here, so we don't need to exclude those decls when checking for
5005 a definition. */
5006 if (initialized && DECL_DLLIMPORT_P (decl))
5008 error ("definition of %q#D is marked %<dllimport%>", decl);
5009 DECL_DLLIMPORT_P (decl) = 0;
5012 /* If #pragma weak was used, mark the decl weak now. */
5013 if (!processing_template_decl)
5014 maybe_apply_pragma_weak (decl);
5016 if (TREE_CODE (decl) == FUNCTION_DECL
5017 && DECL_DECLARED_INLINE_P (decl)
5018 && DECL_UNINLINABLE (decl)
5019 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
5020 warning_at (DECL_SOURCE_LOCATION (decl), 0,
5021 "inline function %qD given attribute noinline", decl);
5023 if (TYPE_P (context) && COMPLETE_TYPE_P (complete_type (context)))
5025 bool this_tmpl = (processing_template_decl
5026 > template_class_depth (context));
5027 if (VAR_P (decl))
5029 tree field = lookup_field (context, DECL_NAME (decl), 0, false);
5030 if (field == NULL_TREE
5031 || !(VAR_P (field) || variable_template_p (field)))
5032 error ("%q+#D is not a static data member of %q#T", decl, context);
5033 else if (variable_template_p (field) && !this_tmpl)
5035 if (DECL_LANG_SPECIFIC (decl)
5036 && DECL_TEMPLATE_SPECIALIZATION (decl))
5037 /* OK, specialization was already checked. */;
5038 else
5040 error_at (DECL_SOURCE_LOCATION (decl),
5041 "non-member-template declaration of %qD", decl);
5042 inform (DECL_SOURCE_LOCATION (field), "does not match "
5043 "member template declaration here");
5044 return error_mark_node;
5047 else
5049 if (variable_template_p (field))
5050 field = DECL_TEMPLATE_RESULT (field);
5052 if (DECL_CONTEXT (field) != context)
5054 if (!same_type_p (DECL_CONTEXT (field), context))
5055 permerror (input_location, "ISO C++ does not permit %<%T::%D%> "
5056 "to be defined as %<%T::%D%>",
5057 DECL_CONTEXT (field), DECL_NAME (decl),
5058 context, DECL_NAME (decl));
5059 DECL_CONTEXT (decl) = DECL_CONTEXT (field);
5061 /* Static data member are tricky; an in-class initialization
5062 still doesn't provide a definition, so the in-class
5063 declaration will have DECL_EXTERNAL set, but will have an
5064 initialization. Thus, duplicate_decls won't warn
5065 about this situation, and so we check here. */
5066 if (initialized && DECL_INITIALIZED_IN_CLASS_P (field))
5067 error ("duplicate initialization of %qD", decl);
5068 field = duplicate_decls (decl, field,
5069 /*newdecl_is_friend=*/false);
5070 if (field == error_mark_node)
5071 return error_mark_node;
5072 else if (field)
5073 decl = field;
5076 else
5078 tree field = check_classfn (context, decl,
5079 this_tmpl
5080 ? current_template_parms
5081 : NULL_TREE);
5082 if (field && field != error_mark_node
5083 && duplicate_decls (decl, field,
5084 /*newdecl_is_friend=*/false))
5085 decl = field;
5088 /* cp_finish_decl sets DECL_EXTERNAL if DECL_IN_AGGR_P is set. */
5089 DECL_IN_AGGR_P (decl) = 0;
5090 /* Do not mark DECL as an explicit specialization if it was not
5091 already marked as an instantiation; a declaration should
5092 never be marked as a specialization unless we know what
5093 template is being specialized. */
5094 if (DECL_LANG_SPECIFIC (decl) && DECL_USE_TEMPLATE (decl))
5096 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
5097 if (TREE_CODE (decl) == FUNCTION_DECL)
5098 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
5099 && DECL_DECLARED_INLINE_P (decl));
5100 else
5101 DECL_COMDAT (decl) = false;
5103 /* [temp.expl.spec] An explicit specialization of a static data
5104 member of a template is a definition if the declaration
5105 includes an initializer; otherwise, it is a declaration.
5107 We check for processing_specialization so this only applies
5108 to the new specialization syntax. */
5109 if (!initialized && processing_specialization)
5110 DECL_EXTERNAL (decl) = 1;
5113 if (DECL_EXTERNAL (decl) && ! DECL_TEMPLATE_SPECIALIZATION (decl)
5114 /* Aliases are definitions. */
5115 && !alias)
5116 permerror (input_location, "declaration of %q#D outside of class is not definition",
5117 decl);
5120 was_public = TREE_PUBLIC (decl);
5122 /* Enter this declaration into the symbol table. Don't push the plain
5123 VAR_DECL for a variable template. */
5124 if (!template_parm_scope_p ()
5125 || !VAR_P (decl))
5126 decl = maybe_push_decl (decl);
5128 if (processing_template_decl)
5129 decl = push_template_decl (decl);
5130 if (decl == error_mark_node)
5131 return error_mark_node;
5133 if (VAR_P (decl)
5134 && DECL_NAMESPACE_SCOPE_P (decl) && !TREE_PUBLIC (decl) && !was_public
5135 && !DECL_THIS_STATIC (decl) && !DECL_ARTIFICIAL (decl))
5137 /* This is a const variable with implicit 'static'. Set
5138 DECL_THIS_STATIC so we can tell it from variables that are
5139 !TREE_PUBLIC because of the anonymous namespace. */
5140 gcc_assert (CP_TYPE_CONST_P (TREE_TYPE (decl)) || errorcount);
5141 DECL_THIS_STATIC (decl) = 1;
5144 if (current_function_decl && VAR_P (decl)
5145 && DECL_DECLARED_CONSTEXPR_P (current_function_decl))
5147 bool ok = false;
5148 if (CP_DECL_THREAD_LOCAL_P (decl))
5149 error ("%qD declared %<thread_local%> in %<constexpr%> function",
5150 decl);
5151 else if (TREE_STATIC (decl))
5152 error ("%qD declared %<static%> in %<constexpr%> function", decl);
5153 else
5154 ok = true;
5155 if (!ok)
5156 cp_function_chain->invalid_constexpr = true;
5159 if (!processing_template_decl && VAR_P (decl))
5160 start_decl_1 (decl, initialized);
5162 return decl;
5165 /* Process the declaration of a variable DECL. INITIALIZED is true
5166 iff DECL is explicitly initialized. (INITIALIZED is false if the
5167 variable is initialized via an implicitly-called constructor.)
5168 This function must be called for ordinary variables (including, for
5169 example, implicit instantiations of templates), but must not be
5170 called for template declarations. */
5172 void
5173 start_decl_1 (tree decl, bool initialized)
5175 tree type;
5176 bool complete_p;
5177 bool aggregate_definition_p;
5179 gcc_assert (!processing_template_decl);
5181 if (error_operand_p (decl))
5182 return;
5184 gcc_assert (VAR_P (decl));
5186 type = TREE_TYPE (decl);
5187 complete_p = COMPLETE_TYPE_P (type);
5188 aggregate_definition_p = MAYBE_CLASS_TYPE_P (type) && !DECL_EXTERNAL (decl);
5190 /* If an explicit initializer is present, or if this is a definition
5191 of an aggregate, then we need a complete type at this point.
5192 (Scalars are always complete types, so there is nothing to
5193 check.) This code just sets COMPLETE_P; errors (if necessary)
5194 are issued below. */
5195 if ((initialized || aggregate_definition_p)
5196 && !complete_p
5197 && COMPLETE_TYPE_P (complete_type (type)))
5199 complete_p = true;
5200 /* We will not yet have set TREE_READONLY on DECL if the type
5201 was "const", but incomplete, before this point. But, now, we
5202 have a complete type, so we can try again. */
5203 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
5206 if (initialized)
5207 /* Is it valid for this decl to have an initializer at all? */
5209 /* Don't allow initializations for incomplete types except for
5210 arrays which might be completed by the initialization. */
5211 if (complete_p)
5212 ; /* A complete type is ok. */
5213 else if (type_uses_auto (type))
5214 ; /* An auto type is ok. */
5215 else if (TREE_CODE (type) != ARRAY_TYPE)
5217 error ("variable %q#D has initializer but incomplete type", decl);
5218 type = TREE_TYPE (decl) = error_mark_node;
5220 else if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (type))))
5222 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
5223 error ("elements of array %q#D have incomplete type", decl);
5224 /* else we already gave an error in start_decl. */
5227 else if (aggregate_definition_p && !complete_p)
5229 if (type_uses_auto (type))
5230 gcc_assert (CLASS_PLACEHOLDER_TEMPLATE (type));
5231 else
5233 error ("aggregate %q#D has incomplete type and cannot be defined",
5234 decl);
5235 /* Change the type so that assemble_variable will give
5236 DECL an rtl we can live with: (mem (const_int 0)). */
5237 type = TREE_TYPE (decl) = error_mark_node;
5241 /* Create a new scope to hold this declaration if necessary.
5242 Whether or not a new scope is necessary cannot be determined
5243 until after the type has been completed; if the type is a
5244 specialization of a class template it is not until after
5245 instantiation has occurred that TYPE_HAS_NONTRIVIAL_DESTRUCTOR
5246 will be set correctly. */
5247 maybe_push_cleanup_level (type);
5250 /* Handle initialization of references. DECL, TYPE, and INIT have the
5251 same meaning as in cp_finish_decl. *CLEANUP must be NULL on entry,
5252 but will be set to a new CLEANUP_STMT if a temporary is created
5253 that must be destroyed subsequently.
5255 Returns an initializer expression to use to initialize DECL, or
5256 NULL if the initialization can be performed statically.
5258 Quotes on semantics can be found in ARM 8.4.3. */
5260 static tree
5261 grok_reference_init (tree decl, tree type, tree init, int flags)
5263 if (init == NULL_TREE)
5265 if ((DECL_LANG_SPECIFIC (decl) == 0
5266 || DECL_IN_AGGR_P (decl) == 0)
5267 && ! DECL_THIS_EXTERN (decl))
5268 error ("%qD declared as reference but not initialized", decl);
5269 return NULL_TREE;
5272 if (TREE_CODE (init) == TREE_LIST)
5273 init = build_x_compound_expr_from_list (init, ELK_INIT,
5274 tf_warning_or_error);
5276 tree ttype = TREE_TYPE (type);
5277 if (TREE_CODE (ttype) != ARRAY_TYPE
5278 && TREE_CODE (TREE_TYPE (init)) == ARRAY_TYPE)
5279 /* Note: default conversion is only called in very special cases. */
5280 init = decay_conversion (init, tf_warning_or_error);
5282 /* check_initializer handles this for non-reference variables, but for
5283 references we need to do it here or the initializer will get the
5284 incomplete array type and confuse later calls to
5285 cp_complete_array_type. */
5286 if (TREE_CODE (ttype) == ARRAY_TYPE
5287 && TYPE_DOMAIN (ttype) == NULL_TREE
5288 && (BRACE_ENCLOSED_INITIALIZER_P (init)
5289 || TREE_CODE (init) == STRING_CST))
5291 cp_complete_array_type (&ttype, init, false);
5292 if (ttype != TREE_TYPE (type))
5293 type = cp_build_reference_type (ttype, TYPE_REF_IS_RVALUE (type));
5296 /* Convert INIT to the reference type TYPE. This may involve the
5297 creation of a temporary, whose lifetime must be the same as that
5298 of the reference. If so, a DECL_EXPR for the temporary will be
5299 added just after the DECL_EXPR for DECL. That's why we don't set
5300 DECL_INITIAL for local references (instead assigning to them
5301 explicitly); we need to allow the temporary to be initialized
5302 first. */
5303 return initialize_reference (type, init, flags,
5304 tf_warning_or_error);
5307 /* Designated initializers in arrays are not supported in GNU C++.
5308 The parser cannot detect this error since it does not know whether
5309 a given brace-enclosed initializer is for a class type or for an
5310 array. This function checks that CE does not use a designated
5311 initializer. If it does, an error is issued. Returns true if CE
5312 is valid, i.e., does not have a designated initializer. */
5314 bool
5315 check_array_designated_initializer (constructor_elt *ce,
5316 unsigned HOST_WIDE_INT index)
5318 /* Designated initializers for array elements are not supported. */
5319 if (ce->index)
5321 /* The parser only allows identifiers as designated
5322 initializers. */
5323 if (ce->index == error_mark_node)
5325 error ("name used in a GNU-style designated "
5326 "initializer for an array");
5327 return false;
5329 else if (identifier_p (ce->index))
5331 error ("name %qD used in a GNU-style designated "
5332 "initializer for an array", ce->index);
5333 return false;
5336 tree ce_index = build_expr_type_conversion (WANT_INT | WANT_ENUM,
5337 ce->index, true);
5338 if (ce_index
5339 && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (ce_index))
5340 && (TREE_CODE (ce_index = maybe_constant_value (ce_index))
5341 == INTEGER_CST))
5343 /* A C99 designator is OK if it matches the current index. */
5344 if (wi::to_wide (ce_index) == index)
5345 return true;
5346 else
5347 sorry ("non-trivial designated initializers not supported");
5349 else
5350 error ("C99 designator %qE is not an integral constant-expression",
5351 ce->index);
5353 return false;
5356 return true;
5359 /* When parsing `int a[] = {1, 2};' we don't know the size of the
5360 array until we finish parsing the initializer. If that's the
5361 situation we're in, update DECL accordingly. */
5363 static void
5364 maybe_deduce_size_from_array_init (tree decl, tree init)
5366 tree type = TREE_TYPE (decl);
5368 if (TREE_CODE (type) == ARRAY_TYPE
5369 && TYPE_DOMAIN (type) == NULL_TREE
5370 && TREE_CODE (decl) != TYPE_DECL)
5372 /* do_default is really a C-ism to deal with tentative definitions.
5373 But let's leave it here to ease the eventual merge. */
5374 int do_default = !DECL_EXTERNAL (decl);
5375 tree initializer = init ? init : DECL_INITIAL (decl);
5376 int failure = 0;
5378 /* Check that there are no designated initializers in INIT, as
5379 those are not supported in GNU C++, and as the middle-end
5380 will crash if presented with a non-numeric designated
5381 initializer. */
5382 if (initializer && BRACE_ENCLOSED_INITIALIZER_P (initializer))
5384 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initializer);
5385 constructor_elt *ce;
5386 HOST_WIDE_INT i;
5387 FOR_EACH_VEC_SAFE_ELT (v, i, ce)
5388 if (!check_array_designated_initializer (ce, i))
5389 failure = 1;
5392 if (!failure)
5394 failure = cp_complete_array_type (&TREE_TYPE (decl), initializer,
5395 do_default);
5396 if (failure == 1)
5398 error_at (EXPR_LOC_OR_LOC (initializer,
5399 DECL_SOURCE_LOCATION (decl)),
5400 "initializer fails to determine size of %qD", decl);
5402 else if (failure == 2)
5404 if (do_default)
5406 error_at (DECL_SOURCE_LOCATION (decl),
5407 "array size missing in %qD", decl);
5409 /* If a `static' var's size isn't known, make it extern as
5410 well as static, so it does not get allocated. If it's not
5411 `static', then don't mark it extern; finish_incomplete_decl
5412 will give it a default size and it will get allocated. */
5413 else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
5414 DECL_EXTERNAL (decl) = 1;
5416 else if (failure == 3)
5418 error_at (DECL_SOURCE_LOCATION (decl),
5419 "zero-size array %qD", decl);
5423 cp_apply_type_quals_to_decl (cp_type_quals (TREE_TYPE (decl)), decl);
5425 relayout_decl (decl);
5429 /* Set DECL_SIZE, DECL_ALIGN, etc. for DECL (a VAR_DECL), and issue
5430 any appropriate error messages regarding the layout. */
5432 static void
5433 layout_var_decl (tree decl)
5435 tree type;
5437 type = TREE_TYPE (decl);
5438 if (type == error_mark_node)
5439 return;
5441 /* If we haven't already laid out this declaration, do so now.
5442 Note that we must not call complete type for an external object
5443 because it's type might involve templates that we are not
5444 supposed to instantiate yet. (And it's perfectly valid to say
5445 `extern X x' for some incomplete type `X'.) */
5446 if (!DECL_EXTERNAL (decl))
5447 complete_type (type);
5448 if (!DECL_SIZE (decl)
5449 && TREE_TYPE (decl) != error_mark_node
5450 && complete_or_array_type_p (type))
5451 layout_decl (decl, 0);
5453 if (!DECL_EXTERNAL (decl) && DECL_SIZE (decl) == NULL_TREE)
5455 /* An automatic variable with an incomplete type: that is an error.
5456 Don't talk about array types here, since we took care of that
5457 message in grokdeclarator. */
5458 error_at (DECL_SOURCE_LOCATION (decl),
5459 "storage size of %qD isn%'t known", decl);
5460 TREE_TYPE (decl) = error_mark_node;
5462 #if 0
5463 /* Keep this code around in case we later want to control debug info
5464 based on whether a type is "used". (jason 1999-11-11) */
5466 else if (!DECL_EXTERNAL (decl) && MAYBE_CLASS_TYPE_P (ttype))
5467 /* Let debugger know it should output info for this type. */
5468 note_debug_info_needed (ttype);
5470 if (TREE_STATIC (decl) && DECL_CLASS_SCOPE_P (decl))
5471 note_debug_info_needed (DECL_CONTEXT (decl));
5472 #endif
5474 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
5475 && DECL_SIZE (decl) != NULL_TREE
5476 && ! TREE_CONSTANT (DECL_SIZE (decl)))
5478 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
5479 constant_expression_warning (DECL_SIZE (decl));
5480 else
5482 error_at (DECL_SOURCE_LOCATION (decl),
5483 "storage size of %qD isn%'t constant", decl);
5484 TREE_TYPE (decl) = error_mark_node;
5489 /* If a local static variable is declared in an inline function, or if
5490 we have a weak definition, we must endeavor to create only one
5491 instance of the variable at link-time. */
5493 void
5494 maybe_commonize_var (tree decl)
5496 /* Static data in a function with comdat linkage also has comdat
5497 linkage. */
5498 if ((TREE_STATIC (decl)
5499 /* Don't mess with __FUNCTION__. */
5500 && ! DECL_ARTIFICIAL (decl)
5501 && DECL_FUNCTION_SCOPE_P (decl)
5502 && vague_linkage_p (DECL_CONTEXT (decl)))
5503 || (TREE_PUBLIC (decl) && DECL_INLINE_VAR_P (decl)))
5505 if (flag_weak)
5507 /* With weak symbols, we simply make the variable COMDAT;
5508 that will cause copies in multiple translations units to
5509 be merged. */
5510 comdat_linkage (decl);
5512 else
5514 if (DECL_INITIAL (decl) == NULL_TREE
5515 || DECL_INITIAL (decl) == error_mark_node)
5517 /* Without weak symbols, we can use COMMON to merge
5518 uninitialized variables. */
5519 TREE_PUBLIC (decl) = 1;
5520 DECL_COMMON (decl) = 1;
5522 else
5524 /* While for initialized variables, we must use internal
5525 linkage -- which means that multiple copies will not
5526 be merged. */
5527 TREE_PUBLIC (decl) = 0;
5528 DECL_COMMON (decl) = 0;
5529 const char *msg;
5530 if (DECL_INLINE_VAR_P (decl))
5531 msg = G_("sorry: semantics of inline variable "
5532 "%q#D are wrong (you%'ll wind up with "
5533 "multiple copies)");
5534 else
5535 msg = G_("sorry: semantics of inline function "
5536 "static data %q#D are wrong (you%'ll wind "
5537 "up with multiple copies)");
5538 if (warning_at (DECL_SOURCE_LOCATION (decl), 0,
5539 msg, decl))
5540 inform (DECL_SOURCE_LOCATION (decl),
5541 "you can work around this by removing the initializer");
5547 /* Issue an error message if DECL is an uninitialized const variable.
5548 CONSTEXPR_CONTEXT_P is true when the function is called in a constexpr
5549 context from potential_constant_expression. Returns true if all is well,
5550 false otherwise. */
5552 bool
5553 check_for_uninitialized_const_var (tree decl, bool constexpr_context_p,
5554 tsubst_flags_t complain)
5556 tree type = strip_array_types (TREE_TYPE (decl));
5558 /* ``Unless explicitly declared extern, a const object does not have
5559 external linkage and must be initialized. ($8.4; $12.1)'' ARM
5560 7.1.6 */
5561 if (VAR_P (decl)
5562 && TREE_CODE (type) != REFERENCE_TYPE
5563 && (constexpr_context_p
5564 || CP_TYPE_CONST_P (type) || var_in_constexpr_fn (decl))
5565 && !DECL_NONTRIVIALLY_INITIALIZED_P (decl))
5567 tree field = default_init_uninitialized_part (type);
5568 if (!field)
5569 return true;
5571 if (!constexpr_context_p)
5573 if (CP_TYPE_CONST_P (type))
5575 if (complain & tf_error)
5576 permerror (DECL_SOURCE_LOCATION (decl),
5577 "uninitialized const %qD", decl);
5579 else
5581 if (!is_instantiation_of_constexpr (current_function_decl)
5582 && (complain & tf_error))
5583 error_at (DECL_SOURCE_LOCATION (decl),
5584 "uninitialized variable %qD in %<constexpr%> "
5585 "function", decl);
5586 cp_function_chain->invalid_constexpr = true;
5589 else if (complain & tf_error)
5590 error_at (DECL_SOURCE_LOCATION (decl),
5591 "uninitialized variable %qD in %<constexpr%> context",
5592 decl);
5594 if (CLASS_TYPE_P (type) && (complain & tf_error))
5596 tree defaulted_ctor;
5598 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)),
5599 "%q#T has no user-provided default constructor", type);
5600 defaulted_ctor = in_class_defaulted_default_constructor (type);
5601 if (defaulted_ctor)
5602 inform (DECL_SOURCE_LOCATION (defaulted_ctor),
5603 "constructor is not user-provided because it is "
5604 "explicitly defaulted in the class body");
5605 inform (DECL_SOURCE_LOCATION (field),
5606 "and the implicitly-defined constructor does not "
5607 "initialize %q#D", field);
5610 return false;
5613 return true;
5616 /* Structure holding the current initializer being processed by reshape_init.
5617 CUR is a pointer to the current element being processed, END is a pointer
5618 after the last element present in the initializer. */
5619 struct reshape_iter
5621 constructor_elt *cur;
5622 constructor_elt *end;
5625 static tree reshape_init_r (tree, reshape_iter *, bool, tsubst_flags_t);
5627 /* FIELD is a FIELD_DECL or NULL. In the former case, the value
5628 returned is the next FIELD_DECL (possibly FIELD itself) that can be
5629 initialized. If there are no more such fields, the return value
5630 will be NULL. */
5632 tree
5633 next_initializable_field (tree field)
5635 while (field
5636 && (TREE_CODE (field) != FIELD_DECL
5637 || (DECL_C_BIT_FIELD (field) && !DECL_NAME (field))
5638 || (DECL_ARTIFICIAL (field)
5639 && !(cxx_dialect >= cxx17 && DECL_FIELD_IS_BASE (field)))))
5640 field = DECL_CHAIN (field);
5642 return field;
5645 /* Return true for [dcl.init.list] direct-list-initialization from
5646 single element of enumeration with a fixed underlying type. */
5648 bool
5649 is_direct_enum_init (tree type, tree init)
5651 if (cxx_dialect >= cxx17
5652 && TREE_CODE (type) == ENUMERAL_TYPE
5653 && ENUM_FIXED_UNDERLYING_TYPE_P (type)
5654 && TREE_CODE (init) == CONSTRUCTOR
5655 && CONSTRUCTOR_IS_DIRECT_INIT (init)
5656 && CONSTRUCTOR_NELTS (init) == 1)
5657 return true;
5658 return false;
5661 /* Subroutine of reshape_init_array and reshape_init_vector, which does
5662 the actual work. ELT_TYPE is the element type of the array. MAX_INDEX is an
5663 INTEGER_CST representing the size of the array minus one (the maximum index),
5664 or NULL_TREE if the array was declared without specifying the size. D is
5665 the iterator within the constructor. */
5667 static tree
5668 reshape_init_array_1 (tree elt_type, tree max_index, reshape_iter *d,
5669 tsubst_flags_t complain)
5671 tree new_init;
5672 bool sized_array_p = (max_index && TREE_CONSTANT (max_index));
5673 unsigned HOST_WIDE_INT max_index_cst = 0;
5674 unsigned HOST_WIDE_INT index;
5676 /* The initializer for an array is always a CONSTRUCTOR. */
5677 new_init = build_constructor (init_list_type_node, NULL);
5679 if (sized_array_p)
5681 /* Minus 1 is used for zero sized arrays. */
5682 if (integer_all_onesp (max_index))
5683 return new_init;
5685 if (tree_fits_uhwi_p (max_index))
5686 max_index_cst = tree_to_uhwi (max_index);
5687 /* sizetype is sign extended, not zero extended. */
5688 else
5689 max_index_cst = tree_to_uhwi (fold_convert (size_type_node, max_index));
5692 /* Loop until there are no more initializers. */
5693 for (index = 0;
5694 d->cur != d->end && (!sized_array_p || index <= max_index_cst);
5695 ++index)
5697 tree elt_init;
5698 constructor_elt *old_cur = d->cur;
5700 check_array_designated_initializer (d->cur, index);
5701 elt_init = reshape_init_r (elt_type, d, /*first_initializer_p=*/false,
5702 complain);
5703 if (elt_init == error_mark_node)
5704 return error_mark_node;
5705 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init),
5706 size_int (index), elt_init);
5707 if (!TREE_CONSTANT (elt_init))
5708 TREE_CONSTANT (new_init) = false;
5710 /* This can happen with an invalid initializer (c++/54501). */
5711 if (d->cur == old_cur && !sized_array_p)
5712 break;
5715 return new_init;
5718 /* Subroutine of reshape_init_r, processes the initializers for arrays.
5719 Parameters are the same of reshape_init_r. */
5721 static tree
5722 reshape_init_array (tree type, reshape_iter *d, tsubst_flags_t complain)
5724 tree max_index = NULL_TREE;
5726 gcc_assert (TREE_CODE (type) == ARRAY_TYPE);
5728 if (TYPE_DOMAIN (type))
5729 max_index = array_type_nelts (type);
5731 return reshape_init_array_1 (TREE_TYPE (type), max_index, d, complain);
5734 /* Subroutine of reshape_init_r, processes the initializers for vectors.
5735 Parameters are the same of reshape_init_r. */
5737 static tree
5738 reshape_init_vector (tree type, reshape_iter *d, tsubst_flags_t complain)
5740 tree max_index = NULL_TREE;
5742 gcc_assert (VECTOR_TYPE_P (type));
5744 if (COMPOUND_LITERAL_P (d->cur->value))
5746 tree value = d->cur->value;
5747 if (!same_type_p (TREE_TYPE (value), type))
5749 if (complain & tf_error)
5750 error ("invalid type %qT as initializer for a vector of type %qT",
5751 TREE_TYPE (d->cur->value), type);
5752 value = error_mark_node;
5754 ++d->cur;
5755 return value;
5758 /* For a vector, we initialize it as an array of the appropriate size. */
5759 if (VECTOR_TYPE_P (type))
5760 max_index = size_int (TYPE_VECTOR_SUBPARTS (type) - 1);
5762 return reshape_init_array_1 (TREE_TYPE (type), max_index, d, complain);
5765 /* Subroutine of reshape_init_r, processes the initializers for classes
5766 or union. Parameters are the same of reshape_init_r. */
5768 static tree
5769 reshape_init_class (tree type, reshape_iter *d, bool first_initializer_p,
5770 tsubst_flags_t complain)
5772 tree field;
5773 tree new_init;
5775 gcc_assert (CLASS_TYPE_P (type));
5777 /* The initializer for a class is always a CONSTRUCTOR. */
5778 new_init = build_constructor (init_list_type_node, NULL);
5779 field = next_initializable_field (TYPE_FIELDS (type));
5781 if (!field)
5783 /* [dcl.init.aggr]
5785 An initializer for an aggregate member that is an
5786 empty class shall have the form of an empty
5787 initializer-list {}. */
5788 if (!first_initializer_p)
5790 if (complain & tf_error)
5791 error ("initializer for %qT must be brace-enclosed", type);
5792 return error_mark_node;
5794 return new_init;
5797 /* Loop through the initializable fields, gathering initializers. */
5798 while (d->cur != d->end)
5800 tree field_init;
5801 constructor_elt *old_cur = d->cur;
5803 /* Handle designated initializers, as an extension. */
5804 if (d->cur->index)
5806 if (d->cur->index == error_mark_node)
5807 return error_mark_node;
5809 if (TREE_CODE (d->cur->index) == FIELD_DECL)
5810 /* We already reshaped this. */
5811 gcc_assert (d->cur->index == field);
5812 else if (TREE_CODE (d->cur->index) == IDENTIFIER_NODE)
5813 field = get_class_binding (type, d->cur->index, false);
5814 else
5816 if (complain & tf_error)
5817 error ("%<[%E] =%> used in a GNU-style designated initializer"
5818 " for class %qT", d->cur->index, type);
5819 return error_mark_node;
5822 if (!field || TREE_CODE (field) != FIELD_DECL)
5824 if (complain & tf_error)
5825 error ("%qT has no non-static data member named %qD", type,
5826 d->cur->index);
5827 return error_mark_node;
5831 /* If we processed all the member of the class, we are done. */
5832 if (!field)
5833 break;
5835 field_init = reshape_init_r (TREE_TYPE (field), d,
5836 /*first_initializer_p=*/false, complain);
5837 if (field_init == error_mark_node)
5838 return error_mark_node;
5840 if (d->cur == old_cur && d->cur->index)
5842 /* This can happen with an invalid initializer for a flexible
5843 array member (c++/54441). */
5844 if (complain & tf_error)
5845 error ("invalid initializer for %q#D", field);
5846 return error_mark_node;
5849 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init), field, field_init);
5851 /* [dcl.init.aggr]
5853 When a union is initialized with a brace-enclosed
5854 initializer, the braces shall only contain an
5855 initializer for the first member of the union. */
5856 if (TREE_CODE (type) == UNION_TYPE)
5857 break;
5859 field = next_initializable_field (DECL_CHAIN (field));
5862 return new_init;
5865 /* Subroutine of reshape_init_r. We're in a context where C99 initializer
5866 designators are not valid; either complain or return true to indicate
5867 that reshape_init_r should return error_mark_node. */
5869 static bool
5870 has_designator_problem (reshape_iter *d, tsubst_flags_t complain)
5872 if (d->cur->index)
5874 if (complain & tf_error)
5875 error ("C99 designator %qE outside aggregate initializer",
5876 d->cur->index);
5877 else
5878 return true;
5880 return false;
5883 /* Subroutine of reshape_init, which processes a single initializer (part of
5884 a CONSTRUCTOR). TYPE is the type of the variable being initialized, D is the
5885 iterator within the CONSTRUCTOR which points to the initializer to process.
5886 FIRST_INITIALIZER_P is true if this is the first initializer of the
5887 outermost CONSTRUCTOR node. */
5889 static tree
5890 reshape_init_r (tree type, reshape_iter *d, bool first_initializer_p,
5891 tsubst_flags_t complain)
5893 tree init = d->cur->value;
5895 if (error_operand_p (init))
5896 return error_mark_node;
5898 if (first_initializer_p && !CP_AGGREGATE_TYPE_P (type)
5899 && has_designator_problem (d, complain))
5900 return error_mark_node;
5902 if (TREE_CODE (type) == COMPLEX_TYPE)
5904 /* A complex type can be initialized from one or two initializers,
5905 but braces are not elided. */
5906 d->cur++;
5907 if (BRACE_ENCLOSED_INITIALIZER_P (init))
5909 if (CONSTRUCTOR_NELTS (init) > 2)
5911 if (complain & tf_error)
5912 error ("too many initializers for %qT", type);
5913 else
5914 return error_mark_node;
5917 else if (first_initializer_p && d->cur != d->end)
5919 vec<constructor_elt, va_gc> *v = 0;
5920 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, init);
5921 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, d->cur->value);
5922 if (has_designator_problem (d, complain))
5923 return error_mark_node;
5924 d->cur++;
5925 init = build_constructor (init_list_type_node, v);
5927 return init;
5930 /* A non-aggregate type is always initialized with a single
5931 initializer. */
5932 if (!CP_AGGREGATE_TYPE_P (type))
5934 /* It is invalid to initialize a non-aggregate type with a
5935 brace-enclosed initializer before C++0x.
5936 We need to check for BRACE_ENCLOSED_INITIALIZER_P here because
5937 of g++.old-deja/g++.mike/p7626.C: a pointer-to-member constant is
5938 a CONSTRUCTOR (with a record type). */
5939 if (TREE_CODE (init) == CONSTRUCTOR
5940 /* Don't complain about a capture-init. */
5941 && !CONSTRUCTOR_IS_DIRECT_INIT (init)
5942 && BRACE_ENCLOSED_INITIALIZER_P (init)) /* p7626.C */
5944 if (SCALAR_TYPE_P (type))
5946 if (cxx_dialect < cxx11
5947 /* Isn't value-initialization. */
5948 || CONSTRUCTOR_NELTS (init) > 0)
5950 if (complain & tf_error)
5951 error ("braces around scalar initializer for type %qT",
5952 type);
5953 init = error_mark_node;
5956 else
5957 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
5960 d->cur++;
5961 return init;
5964 /* "If T is a class type and the initializer list has a single element of
5965 type cv U, where U is T or a class derived from T, the object is
5966 initialized from that element." Even if T is an aggregate. */
5967 if (cxx_dialect >= cxx11 && (CLASS_TYPE_P (type) || VECTOR_TYPE_P (type))
5968 && first_initializer_p
5969 && d->end - d->cur == 1
5970 && reference_related_p (type, TREE_TYPE (init)))
5972 d->cur++;
5973 return init;
5976 /* [dcl.init.aggr]
5978 All implicit type conversions (clause _conv_) are considered when
5979 initializing the aggregate member with an initializer from an
5980 initializer-list. If the initializer can initialize a member,
5981 the member is initialized. Otherwise, if the member is itself a
5982 non-empty subaggregate, brace elision is assumed and the
5983 initializer is considered for the initialization of the first
5984 member of the subaggregate. */
5985 if (TREE_CODE (init) != CONSTRUCTOR
5986 /* But don't try this for the first initializer, since that would be
5987 looking through the outermost braces; A a2 = { a1 }; is not a
5988 valid aggregate initialization. */
5989 && !first_initializer_p
5990 && (same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (init))
5991 || can_convert_arg (type, TREE_TYPE (init), init, LOOKUP_NORMAL,
5992 complain)))
5994 d->cur++;
5995 return init;
5998 /* [dcl.init.string]
6000 A char array (whether plain char, signed char, or unsigned char)
6001 can be initialized by a string-literal (optionally enclosed in
6002 braces); a wchar_t array can be initialized by a wide
6003 string-literal (optionally enclosed in braces). */
6004 if (TREE_CODE (type) == ARRAY_TYPE
6005 && char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (type))))
6007 tree str_init = init;
6009 /* Strip one level of braces if and only if they enclose a single
6010 element (as allowed by [dcl.init.string]). */
6011 if (!first_initializer_p
6012 && TREE_CODE (str_init) == CONSTRUCTOR
6013 && CONSTRUCTOR_NELTS (str_init) == 1)
6015 str_init = (*CONSTRUCTOR_ELTS (str_init))[0].value;
6018 /* If it's a string literal, then it's the initializer for the array
6019 as a whole. Otherwise, continue with normal initialization for
6020 array types (one value per array element). */
6021 if (TREE_CODE (str_init) == STRING_CST)
6023 if (has_designator_problem (d, complain))
6024 return error_mark_node;
6025 d->cur++;
6026 return str_init;
6030 /* The following cases are about aggregates. If we are not within a full
6031 initializer already, and there is not a CONSTRUCTOR, it means that there
6032 is a missing set of braces (that is, we are processing the case for
6033 which reshape_init exists). */
6034 if (!first_initializer_p)
6036 if (TREE_CODE (init) == CONSTRUCTOR)
6038 if (TREE_TYPE (init) && TYPE_PTRMEMFUNC_P (TREE_TYPE (init)))
6039 /* There is no need to reshape pointer-to-member function
6040 initializers, as they are always constructed correctly
6041 by the front end. */
6043 else if (COMPOUND_LITERAL_P (init))
6044 /* For a nested compound literal, there is no need to reshape since
6045 brace elision is not allowed. Even if we decided to allow it,
6046 we should add a call to reshape_init in finish_compound_literal,
6047 before calling digest_init, so changing this code would still
6048 not be necessary. */
6049 gcc_assert (!BRACE_ENCLOSED_INITIALIZER_P (init));
6050 else
6052 ++d->cur;
6053 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
6054 return reshape_init (type, init, complain);
6058 if (complain & tf_warning)
6059 warning (OPT_Wmissing_braces,
6060 "missing braces around initializer for %qT",
6061 type);
6064 /* Dispatch to specialized routines. */
6065 if (CLASS_TYPE_P (type))
6066 return reshape_init_class (type, d, first_initializer_p, complain);
6067 else if (TREE_CODE (type) == ARRAY_TYPE)
6068 return reshape_init_array (type, d, complain);
6069 else if (VECTOR_TYPE_P (type))
6070 return reshape_init_vector (type, d, complain);
6071 else
6072 gcc_unreachable();
6075 /* Undo the brace-elision allowed by [dcl.init.aggr] in a
6076 brace-enclosed aggregate initializer.
6078 INIT is the CONSTRUCTOR containing the list of initializers describing
6079 a brace-enclosed initializer for an entity of the indicated aggregate TYPE.
6080 It may not presently match the shape of the TYPE; for example:
6082 struct S { int a; int b; };
6083 struct S a[] = { 1, 2, 3, 4 };
6085 Here INIT will hold a vector of four elements, rather than a
6086 vector of two elements, each itself a vector of two elements. This
6087 routine transforms INIT from the former form into the latter. The
6088 revised CONSTRUCTOR node is returned. */
6090 tree
6091 reshape_init (tree type, tree init, tsubst_flags_t complain)
6093 vec<constructor_elt, va_gc> *v;
6094 reshape_iter d;
6095 tree new_init;
6097 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
6099 v = CONSTRUCTOR_ELTS (init);
6101 /* An empty constructor does not need reshaping, and it is always a valid
6102 initializer. */
6103 if (vec_safe_is_empty (v))
6104 return init;
6106 /* Handle [dcl.init.list] direct-list-initialization from
6107 single element of enumeration with a fixed underlying type. */
6108 if (is_direct_enum_init (type, init))
6110 tree elt = CONSTRUCTOR_ELT (init, 0)->value;
6111 type = cv_unqualified (type);
6112 if (check_narrowing (ENUM_UNDERLYING_TYPE (type), elt, complain))
6114 warning_sentinel w (warn_useless_cast);
6115 warning_sentinel w2 (warn_ignored_qualifiers);
6116 return cp_build_c_cast (type, elt, tf_warning_or_error);
6118 else
6119 return error_mark_node;
6122 /* Recurse on this CONSTRUCTOR. */
6123 d.cur = &(*v)[0];
6124 d.end = d.cur + v->length ();
6126 new_init = reshape_init_r (type, &d, true, complain);
6127 if (new_init == error_mark_node)
6128 return error_mark_node;
6130 /* Make sure all the element of the constructor were used. Otherwise,
6131 issue an error about exceeding initializers. */
6132 if (d.cur != d.end)
6134 if (complain & tf_error)
6135 error ("too many initializers for %qT", type);
6136 return error_mark_node;
6139 if (CONSTRUCTOR_IS_DIRECT_INIT (init)
6140 && BRACE_ENCLOSED_INITIALIZER_P (new_init))
6141 CONSTRUCTOR_IS_DIRECT_INIT (new_init) = true;
6143 return new_init;
6146 /* Verify array initializer. Returns true if errors have been reported. */
6148 bool
6149 check_array_initializer (tree decl, tree type, tree init)
6151 tree element_type = TREE_TYPE (type);
6153 /* The array type itself need not be complete, because the
6154 initializer may tell us how many elements are in the array.
6155 But, the elements of the array must be complete. */
6156 if (!COMPLETE_TYPE_P (complete_type (element_type)))
6158 if (decl)
6159 error_at (DECL_SOURCE_LOCATION (decl),
6160 "elements of array %q#D have incomplete type", decl);
6161 else
6162 error ("elements of array %q#T have incomplete type", type);
6163 return true;
6165 /* A compound literal can't have variable size. */
6166 if (init && !decl
6167 && ((COMPLETE_TYPE_P (type) && !TREE_CONSTANT (TYPE_SIZE (type)))
6168 || !TREE_CONSTANT (TYPE_SIZE (element_type))))
6170 error ("variable-sized compound literal");
6171 return true;
6173 return false;
6176 /* Subroutine of check_initializer; args are passed down from that function.
6177 Set stmts_are_full_exprs_p to 1 across a call to build_aggr_init. */
6179 static tree
6180 build_aggr_init_full_exprs (tree decl, tree init, int flags)
6183 gcc_assert (stmts_are_full_exprs_p ());
6184 return build_aggr_init (decl, init, flags, tf_warning_or_error);
6187 /* Verify INIT (the initializer for DECL), and record the
6188 initialization in DECL_INITIAL, if appropriate. CLEANUP is as for
6189 grok_reference_init.
6191 If the return value is non-NULL, it is an expression that must be
6192 evaluated dynamically to initialize DECL. */
6194 static tree
6195 check_initializer (tree decl, tree init, int flags, vec<tree, va_gc> **cleanups)
6197 tree type = TREE_TYPE (decl);
6198 tree init_code = NULL;
6199 tree core_type;
6201 /* Things that are going to be initialized need to have complete
6202 type. */
6203 TREE_TYPE (decl) = type = complete_type (TREE_TYPE (decl));
6205 if (DECL_HAS_VALUE_EXPR_P (decl))
6207 /* A variable with DECL_HAS_VALUE_EXPR_P set is just a placeholder,
6208 it doesn't have storage to be initialized. */
6209 gcc_assert (init == NULL_TREE);
6210 return NULL_TREE;
6213 if (type == error_mark_node)
6214 /* We will have already complained. */
6215 return NULL_TREE;
6217 if (TREE_CODE (type) == ARRAY_TYPE)
6219 if (check_array_initializer (decl, type, init))
6220 return NULL_TREE;
6222 else if (!COMPLETE_TYPE_P (type))
6224 error_at (DECL_SOURCE_LOCATION (decl),
6225 "%q#D has incomplete type", decl);
6226 TREE_TYPE (decl) = error_mark_node;
6227 return NULL_TREE;
6229 else
6230 /* There is no way to make a variable-sized class type in GNU C++. */
6231 gcc_assert (TREE_CONSTANT (TYPE_SIZE (type)));
6233 if (init && BRACE_ENCLOSED_INITIALIZER_P (init))
6235 int init_len = CONSTRUCTOR_NELTS (init);
6236 if (SCALAR_TYPE_P (type))
6238 if (init_len == 0)
6240 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
6241 init = build_zero_init (type, NULL_TREE, false);
6243 else if (init_len != 1 && TREE_CODE (type) != COMPLEX_TYPE)
6245 error_at (EXPR_LOC_OR_LOC (init, DECL_SOURCE_LOCATION (decl)),
6246 "scalar object %qD requires one element in "
6247 "initializer", decl);
6248 TREE_TYPE (decl) = error_mark_node;
6249 return NULL_TREE;
6254 if (TREE_CODE (decl) == CONST_DECL)
6256 gcc_assert (TREE_CODE (type) != REFERENCE_TYPE);
6258 DECL_INITIAL (decl) = init;
6260 gcc_assert (init != NULL_TREE);
6261 init = NULL_TREE;
6263 else if (!init && DECL_REALLY_EXTERN (decl))
6265 else if (init || type_build_ctor_call (type)
6266 || TREE_CODE (type) == REFERENCE_TYPE)
6268 if (TREE_CODE (type) == REFERENCE_TYPE)
6270 init = grok_reference_init (decl, type, init, flags);
6271 flags |= LOOKUP_ALREADY_DIGESTED;
6273 else if (!init)
6274 check_for_uninitialized_const_var (decl, /*constexpr_context_p=*/false,
6275 tf_warning_or_error);
6276 /* Do not reshape constructors of vectors (they don't need to be
6277 reshaped. */
6278 else if (BRACE_ENCLOSED_INITIALIZER_P (init))
6280 if (is_std_init_list (type))
6282 init = perform_implicit_conversion (type, init,
6283 tf_warning_or_error);
6284 flags |= LOOKUP_ALREADY_DIGESTED;
6286 else if (TYPE_NON_AGGREGATE_CLASS (type))
6288 /* Don't reshape if the class has constructors. */
6289 if (cxx_dialect == cxx98)
6290 error_at (EXPR_LOC_OR_LOC (init, DECL_SOURCE_LOCATION (decl)),
6291 "in C++98 %qD must be initialized by "
6292 "constructor, not by %<{...}%>",
6293 decl);
6295 else if (VECTOR_TYPE_P (type) && TYPE_VECTOR_OPAQUE (type))
6297 error ("opaque vector types cannot be initialized");
6298 init = error_mark_node;
6300 else
6302 init = reshape_init (type, init, tf_warning_or_error);
6303 flags |= LOOKUP_NO_NARROWING;
6306 else if (TREE_CODE (init) == TREE_LIST
6307 && TREE_TYPE (init) != unknown_type_node
6308 && !MAYBE_CLASS_TYPE_P (type))
6310 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
6312 /* We get here with code like `int a (2);' */
6313 init = build_x_compound_expr_from_list (init, ELK_INIT,
6314 tf_warning_or_error);
6317 /* If DECL has an array type without a specific bound, deduce the
6318 array size from the initializer. */
6319 maybe_deduce_size_from_array_init (decl, init);
6320 type = TREE_TYPE (decl);
6321 if (type == error_mark_node)
6322 return NULL_TREE;
6324 if (((type_build_ctor_call (type) || CLASS_TYPE_P (type))
6325 && !(flags & LOOKUP_ALREADY_DIGESTED)
6326 && !(init && BRACE_ENCLOSED_INITIALIZER_P (init)
6327 && CP_AGGREGATE_TYPE_P (type)
6328 && (CLASS_TYPE_P (type)
6329 || !TYPE_NEEDS_CONSTRUCTING (type)
6330 || type_has_extended_temps (type))))
6331 || (DECL_DECOMPOSITION_P (decl) && TREE_CODE (type) == ARRAY_TYPE))
6333 init_code = build_aggr_init_full_exprs (decl, init, flags);
6335 /* A constructor call is a non-trivial initializer even if
6336 it isn't explicitly written. */
6337 if (TREE_SIDE_EFFECTS (init_code))
6338 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = true;
6340 /* If this is a constexpr initializer, expand_default_init will
6341 have returned an INIT_EXPR rather than a CALL_EXPR. In that
6342 case, pull the initializer back out and pass it down into
6343 store_init_value. */
6344 while (TREE_CODE (init_code) == EXPR_STMT
6345 || TREE_CODE (init_code) == CONVERT_EXPR)
6346 init_code = TREE_OPERAND (init_code, 0);
6347 if (TREE_CODE (init_code) == INIT_EXPR)
6349 init = TREE_OPERAND (init_code, 1);
6350 init_code = NULL_TREE;
6351 /* Don't call digest_init; it's unnecessary and will complain
6352 about aggregate initialization of non-aggregate classes. */
6353 flags |= LOOKUP_ALREADY_DIGESTED;
6355 else if (DECL_DECLARED_CONSTEXPR_P (decl))
6357 /* Declared constexpr, but no suitable initializer; massage
6358 init appropriately so we can pass it into store_init_value
6359 for the error. */
6360 if (CLASS_TYPE_P (type)
6361 && (!init || TREE_CODE (init) == TREE_LIST))
6363 init = build_functional_cast (type, init, tf_none);
6364 if (TREE_CODE (init) == TARGET_EXPR)
6365 TARGET_EXPR_DIRECT_INIT_P (init) = true;
6367 init_code = NULL_TREE;
6369 else
6370 init = NULL_TREE;
6373 if (init && TREE_CODE (init) != TREE_VEC)
6375 /* In aggregate initialization of a variable, each element
6376 initialization is a full-expression because there is no
6377 enclosing expression. */
6378 gcc_assert (stmts_are_full_exprs_p ());
6380 init_code = store_init_value (decl, init, cleanups, flags);
6382 if (pedantic && TREE_CODE (type) == ARRAY_TYPE
6383 && DECL_INITIAL (decl)
6384 && TREE_CODE (DECL_INITIAL (decl)) == STRING_CST
6385 && PAREN_STRING_LITERAL_P (DECL_INITIAL (decl)))
6386 warning_at (EXPR_LOC_OR_LOC (DECL_INITIAL (decl),
6387 DECL_SOURCE_LOCATION (decl)),
6388 0, "array %qD initialized by parenthesized "
6389 "string literal %qE",
6390 decl, DECL_INITIAL (decl));
6391 init = NULL;
6394 else
6396 if (CLASS_TYPE_P (core_type = strip_array_types (type))
6397 && (CLASSTYPE_READONLY_FIELDS_NEED_INIT (core_type)
6398 || CLASSTYPE_REF_FIELDS_NEED_INIT (core_type)))
6399 diagnose_uninitialized_cst_or_ref_member (core_type, /*using_new=*/false,
6400 /*complain=*/true);
6402 check_for_uninitialized_const_var (decl, /*constexpr_context_p=*/false,
6403 tf_warning_or_error);
6406 if (init && init != error_mark_node)
6407 init_code = build2 (INIT_EXPR, type, decl, init);
6409 if (init_code)
6411 /* We might have set these in cp_finish_decl. */
6412 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = false;
6413 TREE_CONSTANT (decl) = false;
6416 if (init_code
6417 && (DECL_IN_AGGR_P (decl) && !DECL_VAR_DECLARED_INLINE_P (decl)))
6419 static int explained = 0;
6421 if (cxx_dialect < cxx11)
6422 error ("initializer invalid for static member with constructor");
6423 else if (cxx_dialect < cxx17)
6424 error ("non-constant in-class initialization invalid for static "
6425 "member %qD", decl);
6426 else
6427 error ("non-constant in-class initialization invalid for non-inline "
6428 "static member %qD", decl);
6429 if (!explained)
6431 inform (input_location,
6432 "(an out of class initialization is required)");
6433 explained = 1;
6435 return NULL_TREE;
6438 return init_code;
6441 /* If DECL is not a local variable, give it RTL. */
6443 static void
6444 make_rtl_for_nonlocal_decl (tree decl, tree init, const char* asmspec)
6446 int toplev = toplevel_bindings_p ();
6447 int defer_p;
6449 /* Set the DECL_ASSEMBLER_NAME for the object. */
6450 if (asmspec)
6452 /* The `register' keyword, when used together with an
6453 asm-specification, indicates that the variable should be
6454 placed in a particular register. */
6455 if (VAR_P (decl) && DECL_REGISTER (decl))
6457 set_user_assembler_name (decl, asmspec);
6458 DECL_HARD_REGISTER (decl) = 1;
6460 else
6462 if (TREE_CODE (decl) == FUNCTION_DECL
6463 && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
6464 set_builtin_user_assembler_name (decl, asmspec);
6465 set_user_assembler_name (decl, asmspec);
6469 /* Handle non-variables up front. */
6470 if (!VAR_P (decl))
6472 rest_of_decl_compilation (decl, toplev, at_eof);
6473 return;
6476 /* If we see a class member here, it should be a static data
6477 member. */
6478 if (DECL_LANG_SPECIFIC (decl) && DECL_IN_AGGR_P (decl))
6480 gcc_assert (TREE_STATIC (decl));
6481 /* An in-class declaration of a static data member should be
6482 external; it is only a declaration, and not a definition. */
6483 if (init == NULL_TREE)
6484 gcc_assert (DECL_EXTERNAL (decl)
6485 || !TREE_PUBLIC (decl)
6486 || DECL_INLINE_VAR_P (decl));
6489 /* We don't create any RTL for local variables. */
6490 if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
6491 return;
6493 /* We defer emission of local statics until the corresponding
6494 DECL_EXPR is expanded. But with constexpr its function might never
6495 be expanded, so go ahead and tell cgraph about the variable now. */
6496 defer_p = ((DECL_FUNCTION_SCOPE_P (decl)
6497 && !var_in_maybe_constexpr_fn (decl))
6498 || DECL_VIRTUAL_P (decl));
6500 /* Defer template instantiations. */
6501 if (DECL_LANG_SPECIFIC (decl)
6502 && DECL_IMPLICIT_INSTANTIATION (decl))
6503 defer_p = 1;
6505 /* If we're not deferring, go ahead and assemble the variable. */
6506 if (!defer_p)
6507 rest_of_decl_compilation (decl, toplev, at_eof);
6510 /* walk_tree helper for wrap_temporary_cleanups, below. */
6512 static tree
6513 wrap_cleanups_r (tree *stmt_p, int *walk_subtrees, void *data)
6515 /* Stop at types or full-expression boundaries. */
6516 if (TYPE_P (*stmt_p)
6517 || TREE_CODE (*stmt_p) == CLEANUP_POINT_EXPR)
6519 *walk_subtrees = 0;
6520 return NULL_TREE;
6523 if (TREE_CODE (*stmt_p) == TARGET_EXPR)
6525 tree guard = (tree)data;
6526 tree tcleanup = TARGET_EXPR_CLEANUP (*stmt_p);
6528 tcleanup = build2 (TRY_CATCH_EXPR, void_type_node, tcleanup, guard);
6529 /* Tell honor_protect_cleanup_actions to handle this as a separate
6530 cleanup. */
6531 TRY_CATCH_IS_CLEANUP (tcleanup) = 1;
6533 TARGET_EXPR_CLEANUP (*stmt_p) = tcleanup;
6536 return NULL_TREE;
6539 /* We're initializing a local variable which has a cleanup GUARD. If there
6540 are any temporaries used in the initializer INIT of this variable, we
6541 need to wrap their cleanups with TRY_CATCH_EXPR (, GUARD) so that the
6542 variable will be cleaned up properly if one of them throws.
6544 Unfortunately, there's no way to express this properly in terms of
6545 nesting, as the regions for the temporaries overlap the region for the
6546 variable itself; if there are two temporaries, the variable needs to be
6547 the first thing destroyed if either of them throws. However, we only
6548 want to run the variable's cleanup if it actually got constructed. So
6549 we need to guard the temporary cleanups with the variable's cleanup if
6550 they are run on the normal path, but not if they are run on the
6551 exceptional path. We implement this by telling
6552 honor_protect_cleanup_actions to strip the variable cleanup from the
6553 exceptional path. */
6555 static void
6556 wrap_temporary_cleanups (tree init, tree guard)
6558 cp_walk_tree_without_duplicates (&init, wrap_cleanups_r, (void *)guard);
6561 /* Generate code to initialize DECL (a local variable). */
6563 static void
6564 initialize_local_var (tree decl, tree init)
6566 tree type = TREE_TYPE (decl);
6567 tree cleanup;
6568 int already_used;
6570 gcc_assert (VAR_P (decl)
6571 || TREE_CODE (decl) == RESULT_DECL);
6572 gcc_assert (!TREE_STATIC (decl));
6574 if (DECL_SIZE (decl) == NULL_TREE)
6576 /* If we used it already as memory, it must stay in memory. */
6577 DECL_INITIAL (decl) = NULL_TREE;
6578 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
6579 return;
6582 if (type == error_mark_node)
6583 return;
6585 /* Compute and store the initial value. */
6586 already_used = TREE_USED (decl) || TREE_USED (type);
6587 if (TREE_USED (type))
6588 DECL_READ_P (decl) = 1;
6590 /* Generate a cleanup, if necessary. */
6591 cleanup = cxx_maybe_build_cleanup (decl, tf_warning_or_error);
6593 /* Perform the initialization. */
6594 if (init)
6596 tree rinit = (TREE_CODE (init) == INIT_EXPR
6597 ? TREE_OPERAND (init, 1) : NULL_TREE);
6598 if (rinit && !TREE_SIDE_EFFECTS (rinit))
6600 /* Stick simple initializers in DECL_INITIAL so that
6601 -Wno-init-self works (c++/34772). */
6602 gcc_assert (TREE_OPERAND (init, 0) == decl);
6603 DECL_INITIAL (decl) = rinit;
6605 if (warn_init_self && TREE_CODE (type) == REFERENCE_TYPE)
6607 STRIP_NOPS (rinit);
6608 if (rinit == decl)
6609 warning_at (DECL_SOURCE_LOCATION (decl),
6610 OPT_Winit_self,
6611 "reference %qD is initialized with itself", decl);
6614 else
6616 int saved_stmts_are_full_exprs_p;
6618 /* If we're only initializing a single object, guard the
6619 destructors of any temporaries used in its initializer with
6620 its destructor. This isn't right for arrays because each
6621 element initialization is a full-expression. */
6622 if (cleanup && TREE_CODE (type) != ARRAY_TYPE)
6623 wrap_temporary_cleanups (init, cleanup);
6625 gcc_assert (building_stmt_list_p ());
6626 saved_stmts_are_full_exprs_p = stmts_are_full_exprs_p ();
6627 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
6628 finish_expr_stmt (init);
6629 current_stmt_tree ()->stmts_are_full_exprs_p =
6630 saved_stmts_are_full_exprs_p;
6634 /* Set this to 0 so we can tell whether an aggregate which was
6635 initialized was ever used. Don't do this if it has a
6636 destructor, so we don't complain about the 'resource
6637 allocation is initialization' idiom. Now set
6638 attribute((unused)) on types so decls of that type will be
6639 marked used. (see TREE_USED, above.) */
6640 if (TYPE_NEEDS_CONSTRUCTING (type)
6641 && ! already_used
6642 && TYPE_HAS_TRIVIAL_DESTRUCTOR (type)
6643 && DECL_NAME (decl))
6644 TREE_USED (decl) = 0;
6645 else if (already_used)
6646 TREE_USED (decl) = 1;
6648 if (cleanup)
6649 finish_decl_cleanup (decl, cleanup);
6652 /* DECL is a VAR_DECL for a compiler-generated variable with static
6653 storage duration (like a virtual table) whose initializer is a
6654 compile-time constant. Initialize the variable and provide it to the
6655 back end. */
6657 void
6658 initialize_artificial_var (tree decl, vec<constructor_elt, va_gc> *v)
6660 tree init;
6661 gcc_assert (DECL_ARTIFICIAL (decl));
6662 init = build_constructor (TREE_TYPE (decl), v);
6663 gcc_assert (TREE_CODE (init) == CONSTRUCTOR);
6664 DECL_INITIAL (decl) = init;
6665 DECL_INITIALIZED_P (decl) = 1;
6666 determine_visibility (decl);
6667 layout_var_decl (decl);
6668 maybe_commonize_var (decl);
6669 make_rtl_for_nonlocal_decl (decl, init, /*asmspec=*/NULL);
6672 /* INIT is the initializer for a variable, as represented by the
6673 parser. Returns true iff INIT is value-dependent. */
6675 static bool
6676 value_dependent_init_p (tree init)
6678 if (TREE_CODE (init) == TREE_LIST)
6679 /* A parenthesized initializer, e.g.: int i (3, 2); ? */
6680 return any_value_dependent_elements_p (init);
6681 else if (TREE_CODE (init) == CONSTRUCTOR)
6682 /* A brace-enclosed initializer, e.g.: int i = { 3 }; ? */
6684 if (dependent_type_p (TREE_TYPE (init)))
6685 return true;
6687 vec<constructor_elt, va_gc> *elts;
6688 size_t nelts;
6689 size_t i;
6691 elts = CONSTRUCTOR_ELTS (init);
6692 nelts = vec_safe_length (elts);
6693 for (i = 0; i < nelts; ++i)
6694 if (value_dependent_init_p ((*elts)[i].value))
6695 return true;
6697 else
6698 /* It must be a simple expression, e.g., int i = 3; */
6699 return value_dependent_expression_p (init);
6701 return false;
6704 // Returns true if a DECL is VAR_DECL with the concept specifier.
6705 static inline bool
6706 is_concept_var (tree decl)
6708 return (VAR_P (decl)
6709 // Not all variables have DECL_LANG_SPECIFIC.
6710 && DECL_LANG_SPECIFIC (decl)
6711 && DECL_DECLARED_CONCEPT_P (decl));
6714 /* A helper function to be called via walk_tree. If any label exists
6715 under *TP, it is (going to be) forced. Set has_forced_label_in_static. */
6717 static tree
6718 notice_forced_label_r (tree *tp, int *walk_subtrees, void *)
6720 if (TYPE_P (*tp))
6721 *walk_subtrees = 0;
6722 if (TREE_CODE (*tp) == LABEL_DECL)
6723 cfun->has_forced_label_in_static = 1;
6724 return NULL_TREE;
6727 /* Finish processing of a declaration;
6728 install its line number and initial value.
6729 If the length of an array type is not known before,
6730 it must be determined now, from the initial value, or it is an error.
6732 INIT is the initializer (if any) for DECL. If INIT_CONST_EXPR_P is
6733 true, then INIT is an integral constant expression.
6735 FLAGS is LOOKUP_ONLYCONVERTING if the = init syntax was used, else 0
6736 if the (init) syntax was used. */
6738 void
6739 cp_finish_decl (tree decl, tree init, bool init_const_expr_p,
6740 tree asmspec_tree, int flags)
6742 tree type;
6743 vec<tree, va_gc> *cleanups = NULL;
6744 const char *asmspec = NULL;
6745 int was_readonly = 0;
6746 bool var_definition_p = false;
6747 tree auto_node;
6749 if (decl == error_mark_node)
6750 return;
6751 else if (! decl)
6753 if (init)
6754 error ("assignment (not initialization) in declaration");
6755 return;
6758 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
6759 /* Parameters are handled by store_parm_decls, not cp_finish_decl. */
6760 gcc_assert (TREE_CODE (decl) != PARM_DECL);
6762 type = TREE_TYPE (decl);
6763 if (type == error_mark_node)
6764 return;
6766 /* Warn about register storage specifiers except when in GNU global
6767 or local register variable extension. */
6768 if (VAR_P (decl) && DECL_REGISTER (decl) && asmspec_tree == NULL_TREE)
6770 if (cxx_dialect >= cxx17)
6771 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
6772 "ISO C++17 does not allow %<register%> storage "
6773 "class specifier");
6774 else
6775 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
6776 "%<register%> storage class specifier used");
6779 /* If a name was specified, get the string. */
6780 if (at_namespace_scope_p ())
6781 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
6782 if (asmspec_tree && asmspec_tree != error_mark_node)
6783 asmspec = TREE_STRING_POINTER (asmspec_tree);
6785 if (current_class_type
6786 && CP_DECL_CONTEXT (decl) == current_class_type
6787 && TYPE_BEING_DEFINED (current_class_type)
6788 && !CLASSTYPE_TEMPLATE_INSTANTIATION (current_class_type)
6789 && (DECL_INITIAL (decl) || init))
6790 DECL_INITIALIZED_IN_CLASS_P (decl) = 1;
6792 if (TREE_CODE (decl) != FUNCTION_DECL
6793 && (auto_node = type_uses_auto (type)))
6795 tree d_init;
6796 if (init == NULL_TREE)
6798 if (DECL_LANG_SPECIFIC (decl)
6799 && DECL_TEMPLATE_INSTANTIATION (decl)
6800 && !DECL_TEMPLATE_INSTANTIATED (decl))
6802 /* init is null because we're deferring instantiating the
6803 initializer until we need it. Well, we need it now. */
6804 instantiate_decl (decl, /*defer_ok*/true, /*expl*/false);
6805 return;
6808 gcc_assert (CLASS_PLACEHOLDER_TEMPLATE (auto_node));
6810 d_init = init;
6811 if (d_init)
6813 if (TREE_CODE (d_init) == TREE_LIST
6814 && !CLASS_PLACEHOLDER_TEMPLATE (auto_node))
6815 d_init = build_x_compound_expr_from_list (d_init, ELK_INIT,
6816 tf_warning_or_error);
6817 d_init = resolve_nondeduced_context (d_init, tf_warning_or_error);
6819 enum auto_deduction_context adc = adc_variable_type;
6820 if (VAR_P (decl) && DECL_DECOMPOSITION_P (decl))
6821 adc = adc_decomp_type;
6822 type = TREE_TYPE (decl) = do_auto_deduction (type, d_init, auto_node,
6823 tf_warning_or_error, adc,
6824 NULL_TREE, flags);
6825 if (type == error_mark_node)
6826 return;
6827 if (TREE_CODE (type) == FUNCTION_TYPE)
6829 error ("initializer for %<decltype(auto) %D%> has function type "
6830 "(did you forget the %<()%> ?)", decl);
6831 TREE_TYPE (decl) = error_mark_node;
6832 return;
6834 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
6837 if (ensure_literal_type_for_constexpr_object (decl)
6838 == error_mark_node)
6840 DECL_DECLARED_CONSTEXPR_P (decl) = 0;
6841 return;
6844 if (VAR_P (decl)
6845 && DECL_CLASS_SCOPE_P (decl)
6846 && DECL_INITIALIZED_IN_CLASS_P (decl))
6847 check_static_variable_definition (decl, type);
6849 if (init && TREE_CODE (decl) == FUNCTION_DECL)
6851 tree clone;
6852 if (init == ridpointers[(int)RID_DELETE])
6854 /* FIXME check this is 1st decl. */
6855 DECL_DELETED_FN (decl) = 1;
6856 DECL_DECLARED_INLINE_P (decl) = 1;
6857 DECL_INITIAL (decl) = error_mark_node;
6858 FOR_EACH_CLONE (clone, decl)
6860 DECL_DELETED_FN (clone) = 1;
6861 DECL_DECLARED_INLINE_P (clone) = 1;
6862 DECL_INITIAL (clone) = error_mark_node;
6864 init = NULL_TREE;
6866 else if (init == ridpointers[(int)RID_DEFAULT])
6868 if (defaultable_fn_check (decl))
6869 DECL_DEFAULTED_FN (decl) = 1;
6870 else
6871 DECL_INITIAL (decl) = NULL_TREE;
6875 if (init && VAR_P (decl))
6877 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = 1;
6878 /* If DECL is a reference, then we want to know whether init is a
6879 reference constant; init_const_expr_p as passed tells us whether
6880 it's an rvalue constant. */
6881 if (TREE_CODE (type) == REFERENCE_TYPE)
6882 init_const_expr_p = potential_constant_expression (init);
6883 if (init_const_expr_p)
6885 /* Set these flags now for templates. We'll update the flags in
6886 store_init_value for instantiations. */
6887 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = 1;
6888 if (decl_maybe_constant_var_p (decl)
6889 /* FIXME setting TREE_CONSTANT on refs breaks the back end. */
6890 && TREE_CODE (type) != REFERENCE_TYPE)
6891 TREE_CONSTANT (decl) = 1;
6895 if (processing_template_decl)
6897 bool type_dependent_p;
6899 /* Add this declaration to the statement-tree. */
6900 if (at_function_scope_p ())
6901 add_decl_expr (decl);
6903 type_dependent_p = dependent_type_p (type);
6905 if (check_for_bare_parameter_packs (init))
6907 init = NULL_TREE;
6908 DECL_INITIAL (decl) = NULL_TREE;
6911 /* Generally, initializers in templates are expanded when the
6912 template is instantiated. But, if DECL is a variable constant
6913 then it can be used in future constant expressions, so its value
6914 must be available. */
6916 bool dep_init = false;
6918 if (!VAR_P (decl) || type_dependent_p)
6919 /* We can't do anything if the decl has dependent type. */;
6920 else if (!init && is_concept_var (decl))
6921 error ("variable concept has no initializer");
6922 else if (init
6923 && init_const_expr_p
6924 && TREE_CODE (type) != REFERENCE_TYPE
6925 && decl_maybe_constant_var_p (decl)
6926 && !(dep_init = value_dependent_init_p (init)))
6928 /* This variable seems to be a non-dependent constant, so process
6929 its initializer. If check_initializer returns non-null the
6930 initialization wasn't constant after all. */
6931 tree init_code;
6932 cleanups = make_tree_vector ();
6933 init_code = check_initializer (decl, init, flags, &cleanups);
6934 if (init_code == NULL_TREE)
6935 init = NULL_TREE;
6936 release_tree_vector (cleanups);
6938 else if (!DECL_PRETTY_FUNCTION_P (decl))
6940 /* Deduce array size even if the initializer is dependent. */
6941 maybe_deduce_size_from_array_init (decl, init);
6942 /* And complain about multiple initializers. */
6943 if (init && TREE_CODE (init) == TREE_LIST && TREE_CHAIN (init)
6944 && !MAYBE_CLASS_TYPE_P (type))
6945 init = build_x_compound_expr_from_list (init, ELK_INIT,
6946 tf_warning_or_error);
6949 if (init)
6950 DECL_INITIAL (decl) = init;
6951 if (dep_init)
6953 retrofit_lang_decl (decl);
6954 SET_DECL_DEPENDENT_INIT_P (decl, true);
6956 return;
6959 /* Just store non-static data member initializers for later. */
6960 if (init && TREE_CODE (decl) == FIELD_DECL)
6961 DECL_INITIAL (decl) = init;
6963 /* Take care of TYPE_DECLs up front. */
6964 if (TREE_CODE (decl) == TYPE_DECL)
6966 if (type != error_mark_node
6967 && MAYBE_CLASS_TYPE_P (type) && DECL_NAME (decl))
6969 if (TREE_TYPE (DECL_NAME (decl)) && TREE_TYPE (decl) != type)
6970 warning (0, "shadowing previous type declaration of %q#D", decl);
6971 set_identifier_type_value (DECL_NAME (decl), decl);
6974 /* If we have installed this as the canonical typedef for this
6975 type, and that type has not been defined yet, delay emitting
6976 the debug information for it, as we will emit it later. */
6977 if (TYPE_MAIN_DECL (TREE_TYPE (decl)) == decl
6978 && !COMPLETE_TYPE_P (TREE_TYPE (decl)))
6979 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
6981 rest_of_decl_compilation (decl, DECL_FILE_SCOPE_P (decl),
6982 at_eof);
6983 return;
6986 /* A reference will be modified here, as it is initialized. */
6987 if (! DECL_EXTERNAL (decl)
6988 && TREE_READONLY (decl)
6989 && TREE_CODE (type) == REFERENCE_TYPE)
6991 was_readonly = 1;
6992 TREE_READONLY (decl) = 0;
6995 if (VAR_P (decl))
6997 /* If this is a local variable that will need a mangled name,
6998 register it now. We must do this before processing the
6999 initializer for the variable, since the initialization might
7000 require a guard variable, and since the mangled name of the
7001 guard variable will depend on the mangled name of this
7002 variable. */
7003 if (DECL_FUNCTION_SCOPE_P (decl)
7004 && TREE_STATIC (decl)
7005 && !DECL_ARTIFICIAL (decl))
7007 push_local_name (decl);
7008 /* Normally has_forced_label_in_static is set during GIMPLE
7009 lowering, but [cd]tors are never actually compiled directly.
7010 We need to set this early so we can deal with the label
7011 address extension. */
7012 if ((DECL_CONSTRUCTOR_P (current_function_decl)
7013 || DECL_DESTRUCTOR_P (current_function_decl))
7014 && init)
7016 walk_tree (&init, notice_forced_label_r, NULL, NULL);
7017 add_local_decl (cfun, decl);
7019 /* And make sure it's in the symbol table for
7020 c_parse_final_cleanups to find. */
7021 varpool_node::get_create (decl);
7024 /* Convert the initializer to the type of DECL, if we have not
7025 already initialized DECL. */
7026 if (!DECL_INITIALIZED_P (decl)
7027 /* If !DECL_EXTERNAL then DECL is being defined. In the
7028 case of a static data member initialized inside the
7029 class-specifier, there can be an initializer even if DECL
7030 is *not* defined. */
7031 && (!DECL_EXTERNAL (decl) || init))
7033 cleanups = make_tree_vector ();
7034 init = check_initializer (decl, init, flags, &cleanups);
7036 /* Handle:
7038 [dcl.init]
7040 The memory occupied by any object of static storage
7041 duration is zero-initialized at program startup before
7042 any other initialization takes place.
7044 We cannot create an appropriate initializer until after
7045 the type of DECL is finalized. If DECL_INITIAL is set,
7046 then the DECL is statically initialized, and any
7047 necessary zero-initialization has already been performed. */
7048 if (TREE_STATIC (decl) && !DECL_INITIAL (decl))
7049 DECL_INITIAL (decl) = build_zero_init (TREE_TYPE (decl),
7050 /*nelts=*/NULL_TREE,
7051 /*static_storage_p=*/true);
7052 /* Remember that the initialization for this variable has
7053 taken place. */
7054 DECL_INITIALIZED_P (decl) = 1;
7055 /* This declaration is the definition of this variable,
7056 unless we are initializing a static data member within
7057 the class specifier. */
7058 if (!DECL_EXTERNAL (decl))
7059 var_definition_p = true;
7061 /* If the variable has an array type, lay out the type, even if
7062 there is no initializer. It is valid to index through the
7063 array, and we must get TYPE_ALIGN set correctly on the array
7064 type. */
7065 else if (TREE_CODE (type) == ARRAY_TYPE)
7066 layout_type (type);
7068 if (TREE_STATIC (decl)
7069 && !at_function_scope_p ()
7070 && current_function_decl == NULL)
7071 /* So decl is a global variable or a static member of a
7072 non local class. Record the types it uses
7073 so that we can decide later to emit debug info for them. */
7074 record_types_used_by_current_var_decl (decl);
7077 /* Add this declaration to the statement-tree. This needs to happen
7078 after the call to check_initializer so that the DECL_EXPR for a
7079 reference temp is added before the DECL_EXPR for the reference itself. */
7080 if (DECL_FUNCTION_SCOPE_P (decl))
7082 /* If we're building a variable sized type, and we might be
7083 reachable other than via the top of the current binding
7084 level, then create a new BIND_EXPR so that we deallocate
7085 the object at the right time. */
7086 if (VAR_P (decl)
7087 && DECL_SIZE (decl)
7088 && !TREE_CONSTANT (DECL_SIZE (decl))
7089 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list))
7091 tree bind;
7092 bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
7093 TREE_SIDE_EFFECTS (bind) = 1;
7094 add_stmt (bind);
7095 BIND_EXPR_BODY (bind) = push_stmt_list ();
7097 add_decl_expr (decl);
7100 /* Let the middle end know about variables and functions -- but not
7101 static data members in uninstantiated class templates. */
7102 if (VAR_OR_FUNCTION_DECL_P (decl))
7104 if (VAR_P (decl))
7106 layout_var_decl (decl);
7107 maybe_commonize_var (decl);
7110 /* This needs to happen after the linkage is set. */
7111 determine_visibility (decl);
7113 if (var_definition_p && TREE_STATIC (decl))
7115 /* If a TREE_READONLY variable needs initialization
7116 at runtime, it is no longer readonly and we need to
7117 avoid MEM_READONLY_P being set on RTL created for it. */
7118 if (init)
7120 if (TREE_READONLY (decl))
7121 TREE_READONLY (decl) = 0;
7122 was_readonly = 0;
7124 else if (was_readonly)
7125 TREE_READONLY (decl) = 1;
7127 /* Likewise if it needs destruction. */
7128 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
7129 TREE_READONLY (decl) = 0;
7132 make_rtl_for_nonlocal_decl (decl, init, asmspec);
7134 /* Check for abstractness of the type. Notice that there is no
7135 need to strip array types here since the check for those types
7136 is already done within create_array_type_for_decl. */
7137 abstract_virtuals_error (decl, type);
7139 if (TREE_TYPE (decl) == error_mark_node)
7140 /* No initialization required. */
7142 else if (TREE_CODE (decl) == FUNCTION_DECL)
7144 if (init)
7146 if (init == ridpointers[(int)RID_DEFAULT])
7148 /* An out-of-class default definition is defined at
7149 the point where it is explicitly defaulted. */
7150 if (DECL_DELETED_FN (decl))
7151 maybe_explain_implicit_delete (decl);
7152 else if (DECL_INITIAL (decl) == error_mark_node)
7153 synthesize_method (decl);
7155 else
7156 error ("function %q#D is initialized like a variable", decl);
7158 /* else no initialization required. */
7160 else if (DECL_EXTERNAL (decl)
7161 && ! (DECL_LANG_SPECIFIC (decl)
7162 && DECL_NOT_REALLY_EXTERN (decl)))
7164 if (init)
7165 DECL_INITIAL (decl) = init;
7167 /* A variable definition. */
7168 else if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
7169 /* Initialize the local variable. */
7170 initialize_local_var (decl, init);
7172 /* If a variable is defined, and then a subsequent
7173 definition with external linkage is encountered, we will
7174 get here twice for the same variable. We want to avoid
7175 calling expand_static_init more than once. For variables
7176 that are not static data members, we can call
7177 expand_static_init only when we actually process the
7178 initializer. It is not legal to redeclare a static data
7179 member, so this issue does not arise in that case. */
7180 else if (var_definition_p && TREE_STATIC (decl))
7181 expand_static_init (decl, init);
7184 /* If a CLEANUP_STMT was created to destroy a temporary bound to a
7185 reference, insert it in the statement-tree now. */
7186 if (cleanups)
7188 unsigned i; tree t;
7189 FOR_EACH_VEC_ELT (*cleanups, i, t)
7190 push_cleanup (decl, t, false);
7191 release_tree_vector (cleanups);
7194 if (was_readonly)
7195 TREE_READONLY (decl) = 1;
7197 invoke_plugin_callbacks (PLUGIN_FINISH_DECL, decl);
7200 /* For class TYPE return itself or some its bases that contain
7201 any direct non-static data members. Return error_mark_node if an
7202 error has been diagnosed. */
7204 static tree
7205 find_decomp_class_base (location_t loc, tree type, tree ret)
7207 bool member_seen = false;
7208 for (tree field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
7209 if (TREE_CODE (field) != FIELD_DECL
7210 || DECL_ARTIFICIAL (field)
7211 || (DECL_C_BIT_FIELD (field) && !DECL_NAME (field)))
7212 continue;
7213 else if (ret)
7214 return type;
7215 else if (ANON_AGGR_TYPE_P (TREE_TYPE (field)))
7217 if (TREE_CODE (TREE_TYPE (field)) == RECORD_TYPE)
7218 error_at (loc, "cannot decompose class type %qT because it has an "
7219 "anonymous struct member", type);
7220 else
7221 error_at (loc, "cannot decompose class type %qT because it has an "
7222 "anonymous union member", type);
7223 inform (DECL_SOURCE_LOCATION (field), "declared here");
7224 return error_mark_node;
7226 else if (TREE_PRIVATE (field) || TREE_PROTECTED (field))
7228 error_at (loc, "cannot decompose non-public member %qD of %qT",
7229 field, type);
7230 inform (DECL_SOURCE_LOCATION (field),
7231 TREE_PRIVATE (field)
7232 ? G_("declared private here")
7233 : G_("declared protected here"));
7234 return error_mark_node;
7236 else
7237 member_seen = true;
7239 tree base_binfo, binfo;
7240 tree orig_ret = ret;
7241 int i;
7242 if (member_seen)
7243 ret = type;
7244 for (binfo = TYPE_BINFO (type), i = 0;
7245 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
7247 tree t = find_decomp_class_base (loc, TREE_TYPE (base_binfo), ret);
7248 if (t == error_mark_node)
7249 return error_mark_node;
7250 if (t != NULL_TREE && t != ret)
7252 if (ret == type)
7254 error_at (loc, "cannot decompose class type %qT: both it and "
7255 "its base class %qT have non-static data members",
7256 type, t);
7257 return error_mark_node;
7259 else if (orig_ret != NULL_TREE)
7260 return t;
7261 else if (ret != NULL_TREE)
7263 error_at (loc, "cannot decompose class type %qT: its base "
7264 "classes %qT and %qT have non-static data "
7265 "members", type, ret, t);
7266 return error_mark_node;
7268 else
7269 ret = t;
7272 return ret;
7275 /* Return std::tuple_size<TYPE>::value. */
7277 static tree
7278 get_tuple_size (tree type)
7280 tree args = make_tree_vec (1);
7281 TREE_VEC_ELT (args, 0) = type;
7282 tree inst = lookup_template_class (get_identifier ("tuple_size"), args,
7283 /*in_decl*/NULL_TREE,
7284 /*context*/std_node,
7285 /*entering_scope*/false, tf_none);
7286 inst = complete_type (inst);
7287 if (inst == error_mark_node || !COMPLETE_TYPE_P (inst))
7288 return NULL_TREE;
7289 tree val = lookup_qualified_name (inst, get_identifier ("value"),
7290 /*type*/false, /*complain*/false);
7291 if (TREE_CODE (val) == VAR_DECL || TREE_CODE (val) == CONST_DECL)
7292 val = maybe_constant_value (val);
7293 if (TREE_CODE (val) == INTEGER_CST)
7294 return val;
7295 else
7296 return error_mark_node;
7299 /* Return std::tuple_element<I,TYPE>::type. */
7301 static tree
7302 get_tuple_element_type (tree type, unsigned i)
7304 tree args = make_tree_vec (2);
7305 TREE_VEC_ELT (args, 0) = build_int_cst (integer_type_node, i);
7306 TREE_VEC_ELT (args, 1) = type;
7307 tree inst = lookup_template_class (get_identifier ("tuple_element"), args,
7308 /*in_decl*/NULL_TREE,
7309 /*context*/std_node,
7310 /*entering_scope*/false,
7311 tf_warning_or_error);
7312 return make_typename_type (inst, get_identifier ("type"),
7313 none_type, tf_warning_or_error);
7316 /* Return e.get<i>() or get<i>(e). */
7318 static tree
7319 get_tuple_decomp_init (tree decl, unsigned i)
7321 tree get_id = get_identifier ("get");
7322 tree targs = make_tree_vec (1);
7323 TREE_VEC_ELT (targs, 0) = build_int_cst (integer_type_node, i);
7325 tree etype = TREE_TYPE (decl);
7326 tree e = convert_from_reference (decl);
7328 /* [The id-expression] e is an lvalue if the type of the entity e is an
7329 lvalue reference and an xvalue otherwise. */
7330 if (TREE_CODE (etype) != REFERENCE_TYPE
7331 || TYPE_REF_IS_RVALUE (etype))
7332 e = move (e);
7334 tree fns = lookup_qualified_name (TREE_TYPE (e), get_id,
7335 /*type*/false, /*complain*/false);
7336 if (fns != error_mark_node)
7338 fns = lookup_template_function (fns, targs);
7339 return build_new_method_call (e, fns, /*args*/NULL,
7340 /*path*/NULL_TREE, LOOKUP_NORMAL,
7341 /*fn_p*/NULL, tf_warning_or_error);
7343 else
7345 vec<tree,va_gc> *args = make_tree_vector_single (e);
7346 fns = lookup_template_function (get_id, targs);
7347 fns = perform_koenig_lookup (fns, args, tf_warning_or_error);
7348 return finish_call_expr (fns, &args, /*novirt*/false,
7349 /*koenig*/true, tf_warning_or_error);
7353 /* It's impossible to recover the decltype of a tuple decomposition variable
7354 based on the actual type of the variable, so store it in a hash table. */
7356 static GTY((cache)) tree_cache_map *decomp_type_table;
7357 static void
7358 store_decomp_type (tree v, tree t)
7360 if (!decomp_type_table)
7361 decomp_type_table = tree_cache_map::create_ggc (13);
7362 decomp_type_table->put (v, t);
7365 tree
7366 lookup_decomp_type (tree v)
7368 return *decomp_type_table->get (v);
7371 /* Mangle a decomposition declaration if needed. Arguments like
7372 in cp_finish_decomp. */
7374 void
7375 cp_maybe_mangle_decomp (tree decl, tree first, unsigned int count)
7377 if (!processing_template_decl
7378 && !error_operand_p (decl)
7379 && DECL_NAMESPACE_SCOPE_P (decl))
7381 auto_vec<tree, 16> v;
7382 v.safe_grow (count);
7383 tree d = first;
7384 for (unsigned int i = 0; i < count; i++, d = DECL_CHAIN (d))
7385 v[count - i - 1] = d;
7386 SET_DECL_ASSEMBLER_NAME (decl, mangle_decomp (decl, v));
7390 /* Finish a decomposition declaration. DECL is the underlying declaration
7391 "e", FIRST is the head of a chain of decls for the individual identifiers
7392 chained through DECL_CHAIN in reverse order and COUNT is the number of
7393 those decls. */
7395 void
7396 cp_finish_decomp (tree decl, tree first, unsigned int count)
7398 if (error_operand_p (decl))
7400 error_out:
7401 while (count--)
7403 TREE_TYPE (first) = error_mark_node;
7404 if (DECL_HAS_VALUE_EXPR_P (first))
7406 SET_DECL_VALUE_EXPR (first, NULL_TREE);
7407 DECL_HAS_VALUE_EXPR_P (first) = 0;
7409 first = DECL_CHAIN (first);
7411 if (DECL_P (decl) && DECL_NAMESPACE_SCOPE_P (decl))
7412 SET_DECL_ASSEMBLER_NAME (decl, get_identifier ("<decomp>"));
7413 return;
7416 location_t loc = DECL_SOURCE_LOCATION (decl);
7417 if (type_dependent_expression_p (decl)
7418 /* This happens for range for when not in templates.
7419 Still add the DECL_VALUE_EXPRs for later processing. */
7420 || (!processing_template_decl
7421 && type_uses_auto (TREE_TYPE (decl))))
7423 for (unsigned int i = 0; i < count; i++)
7425 if (!DECL_HAS_VALUE_EXPR_P (first))
7427 tree v = build_nt (ARRAY_REF, decl,
7428 size_int (count - i - 1),
7429 NULL_TREE, NULL_TREE);
7430 SET_DECL_VALUE_EXPR (first, v);
7431 DECL_HAS_VALUE_EXPR_P (first) = 1;
7433 if (processing_template_decl)
7434 fit_decomposition_lang_decl (first, decl);
7435 first = DECL_CHAIN (first);
7437 return;
7440 auto_vec<tree, 16> v;
7441 v.safe_grow (count);
7442 tree d = first;
7443 for (unsigned int i = 0; i < count; i++, d = DECL_CHAIN (d))
7445 v[count - i - 1] = d;
7446 fit_decomposition_lang_decl (d, decl);
7449 tree type = TREE_TYPE (decl);
7450 tree dexp = decl;
7452 if (TREE_CODE (type) == REFERENCE_TYPE)
7454 dexp = convert_from_reference (dexp);
7455 type = complete_type (TREE_TYPE (type));
7456 if (type == error_mark_node)
7457 goto error_out;
7458 if (!COMPLETE_TYPE_P (type))
7460 error_at (loc, "structured binding refers to incomplete type %qT",
7461 type);
7462 goto error_out;
7466 tree eltype = NULL_TREE;
7467 unsigned HOST_WIDE_INT eltscnt = 0;
7468 if (TREE_CODE (type) == ARRAY_TYPE)
7470 tree nelts;
7471 nelts = array_type_nelts_top (type);
7472 if (nelts == error_mark_node)
7473 goto error_out;
7474 if (!tree_fits_uhwi_p (nelts))
7476 error_at (loc, "cannot decompose variable length array %qT", type);
7477 goto error_out;
7479 eltscnt = tree_to_uhwi (nelts);
7480 if (count != eltscnt)
7482 cnt_mismatch:
7483 if (count > eltscnt)
7484 error_n (loc, count,
7485 "%u name provided for structured binding",
7486 "%u names provided for structured binding", count);
7487 else
7488 error_n (loc, count,
7489 "only %u name provided for structured binding",
7490 "only %u names provided for structured binding", count);
7491 /* Some languages have special plural rules even for large values,
7492 but it is periodic with period of 10, 100, 1000 etc. */
7493 inform_n (loc, eltscnt > INT_MAX
7494 ? (eltscnt % 1000000) + 1000000 : eltscnt,
7495 "while %qT decomposes into %wu element",
7496 "while %qT decomposes into %wu elements",
7497 type, eltscnt);
7498 goto error_out;
7500 eltype = TREE_TYPE (type);
7501 for (unsigned int i = 0; i < count; i++)
7503 TREE_TYPE (v[i]) = eltype;
7504 layout_decl (v[i], 0);
7505 if (processing_template_decl)
7506 continue;
7507 tree t = unshare_expr (dexp);
7508 t = build4_loc (DECL_SOURCE_LOCATION (v[i]), ARRAY_REF,
7509 eltype, t, size_int (i), NULL_TREE,
7510 NULL_TREE);
7511 SET_DECL_VALUE_EXPR (v[i], t);
7512 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
7515 /* 2 GNU extensions. */
7516 else if (TREE_CODE (type) == COMPLEX_TYPE)
7518 eltscnt = 2;
7519 if (count != eltscnt)
7520 goto cnt_mismatch;
7521 eltype = cp_build_qualified_type (TREE_TYPE (type), TYPE_QUALS (type));
7522 for (unsigned int i = 0; i < count; i++)
7524 TREE_TYPE (v[i]) = eltype;
7525 layout_decl (v[i], 0);
7526 if (processing_template_decl)
7527 continue;
7528 tree t = unshare_expr (dexp);
7529 t = build1_loc (DECL_SOURCE_LOCATION (v[i]),
7530 i ? IMAGPART_EXPR : REALPART_EXPR, eltype,
7532 SET_DECL_VALUE_EXPR (v[i], t);
7533 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
7536 else if (TREE_CODE (type) == VECTOR_TYPE)
7538 if (!TYPE_VECTOR_SUBPARTS (type).is_constant (&eltscnt))
7540 error_at (loc, "cannot decompose variable length vector %qT", type);
7541 goto error_out;
7543 if (count != eltscnt)
7544 goto cnt_mismatch;
7545 eltype = cp_build_qualified_type (TREE_TYPE (type), TYPE_QUALS (type));
7546 for (unsigned int i = 0; i < count; i++)
7548 TREE_TYPE (v[i]) = eltype;
7549 layout_decl (v[i], 0);
7550 if (processing_template_decl)
7551 continue;
7552 tree t = unshare_expr (dexp);
7553 convert_vector_to_array_for_subscript (DECL_SOURCE_LOCATION (v[i]),
7554 &t, size_int (i));
7555 t = build4_loc (DECL_SOURCE_LOCATION (v[i]), ARRAY_REF,
7556 eltype, t, size_int (i), NULL_TREE,
7557 NULL_TREE);
7558 SET_DECL_VALUE_EXPR (v[i], t);
7559 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
7562 else if (tree tsize = get_tuple_size (type))
7564 if (tsize == error_mark_node)
7566 error_at (loc, "%<std::tuple_size<%T>::value%> is not an integral "
7567 "constant expression", type);
7568 goto error_out;
7570 if (!tree_fits_uhwi_p (tsize))
7572 error_n (loc, count,
7573 "%u name provided for structured binding",
7574 "%u names provided for structured binding", count);
7575 inform (loc, "while %qT decomposes into %E elements",
7576 type, tsize);
7577 goto error_out;
7579 eltscnt = tree_to_uhwi (tsize);
7580 if (count != eltscnt)
7581 goto cnt_mismatch;
7582 int save_read = DECL_READ_P (decl);
7583 for (unsigned i = 0; i < count; ++i)
7585 location_t sloc = input_location;
7586 location_t dloc = DECL_SOURCE_LOCATION (v[i]);
7588 input_location = dloc;
7589 tree init = get_tuple_decomp_init (decl, i);
7590 tree eltype = (init == error_mark_node ? error_mark_node
7591 : get_tuple_element_type (type, i));
7592 input_location = sloc;
7594 if (init == error_mark_node || eltype == error_mark_node)
7596 inform (dloc, "in initialization of structured binding "
7597 "variable %qD", v[i]);
7598 goto error_out;
7600 /* Save the decltype away before reference collapse. */
7601 store_decomp_type (v[i], eltype);
7602 eltype = cp_build_reference_type (eltype, !lvalue_p (init));
7603 TREE_TYPE (v[i]) = eltype;
7604 layout_decl (v[i], 0);
7605 if (DECL_HAS_VALUE_EXPR_P (v[i]))
7607 /* In this case the names are variables, not just proxies. */
7608 SET_DECL_VALUE_EXPR (v[i], NULL_TREE);
7609 DECL_HAS_VALUE_EXPR_P (v[i]) = 0;
7611 if (!processing_template_decl)
7612 cp_finish_decl (v[i], init, /*constexpr*/false,
7613 /*asm*/NULL_TREE, LOOKUP_NORMAL);
7615 /* Ignore reads from the underlying decl performed during initialization
7616 of the individual variables. If those will be read, we'll mark
7617 the underlying decl as read at that point. */
7618 DECL_READ_P (decl) = save_read;
7620 else if (TREE_CODE (type) == UNION_TYPE)
7622 error_at (loc, "cannot decompose union type %qT", type);
7623 goto error_out;
7625 else if (!CLASS_TYPE_P (type))
7627 error_at (loc, "cannot decompose non-array non-class type %qT", type);
7628 goto error_out;
7630 else if (LAMBDA_TYPE_P (type))
7632 error_at (loc, "cannot decompose lambda closure type %qT", type);
7633 goto error_out;
7635 else
7637 tree btype = find_decomp_class_base (loc, type, NULL_TREE);
7638 if (btype == error_mark_node)
7639 goto error_out;
7640 else if (btype == NULL_TREE)
7642 error_at (loc, "cannot decompose class type %qT without non-static "
7643 "data members", type);
7644 goto error_out;
7646 for (tree field = TYPE_FIELDS (btype); field; field = TREE_CHAIN (field))
7647 if (TREE_CODE (field) != FIELD_DECL
7648 || DECL_ARTIFICIAL (field)
7649 || (DECL_C_BIT_FIELD (field) && !DECL_NAME (field)))
7650 continue;
7651 else
7652 eltscnt++;
7653 if (count != eltscnt)
7654 goto cnt_mismatch;
7655 tree t = dexp;
7656 if (type != btype)
7658 t = convert_to_base (t, btype, /*check_access*/true,
7659 /*nonnull*/false, tf_warning_or_error);
7660 type = btype;
7662 unsigned int i = 0;
7663 for (tree field = TYPE_FIELDS (btype); field; field = TREE_CHAIN (field))
7664 if (TREE_CODE (field) != FIELD_DECL
7665 || DECL_ARTIFICIAL (field)
7666 || (DECL_C_BIT_FIELD (field) && !DECL_NAME (field)))
7667 continue;
7668 else
7670 tree tt = finish_non_static_data_member (field, unshare_expr (t),
7671 NULL_TREE);
7672 if (REFERENCE_REF_P (tt))
7673 tt = TREE_OPERAND (tt, 0);
7674 TREE_TYPE (v[i]) = TREE_TYPE (tt);
7675 layout_decl (v[i], 0);
7676 if (!processing_template_decl)
7678 SET_DECL_VALUE_EXPR (v[i], tt);
7679 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
7681 i++;
7684 if (processing_template_decl)
7686 for (unsigned int i = 0; i < count; i++)
7687 if (!DECL_HAS_VALUE_EXPR_P (v[i]))
7689 tree a = build_nt (ARRAY_REF, decl, size_int (i),
7690 NULL_TREE, NULL_TREE);
7691 SET_DECL_VALUE_EXPR (v[i], a);
7692 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
7697 /* Returns a declaration for a VAR_DECL as if:
7699 extern "C" TYPE NAME;
7701 had been seen. Used to create compiler-generated global
7702 variables. */
7704 static tree
7705 declare_global_var (tree name, tree type)
7707 tree decl;
7709 push_to_top_level ();
7710 decl = build_decl (input_location, VAR_DECL, name, type);
7711 TREE_PUBLIC (decl) = 1;
7712 DECL_EXTERNAL (decl) = 1;
7713 DECL_ARTIFICIAL (decl) = 1;
7714 DECL_CONTEXT (decl) = FROB_CONTEXT (global_namespace);
7715 /* If the user has explicitly declared this variable (perhaps
7716 because the code we are compiling is part of a low-level runtime
7717 library), then it is possible that our declaration will be merged
7718 with theirs by pushdecl. */
7719 decl = pushdecl (decl);
7720 cp_finish_decl (decl, NULL_TREE, false, NULL_TREE, 0);
7721 pop_from_top_level ();
7723 return decl;
7726 /* Returns the type for the argument to "__cxa_atexit" (or "atexit",
7727 if "__cxa_atexit" is not being used) corresponding to the function
7728 to be called when the program exits. */
7730 static tree
7731 get_atexit_fn_ptr_type (void)
7733 tree fn_type;
7735 if (!atexit_fn_ptr_type_node)
7737 tree arg_type;
7738 if (flag_use_cxa_atexit
7739 && !targetm.cxx.use_atexit_for_cxa_atexit ())
7740 /* The parameter to "__cxa_atexit" is "void (*)(void *)". */
7741 arg_type = ptr_type_node;
7742 else
7743 /* The parameter to "atexit" is "void (*)(void)". */
7744 arg_type = NULL_TREE;
7746 fn_type = build_function_type_list (void_type_node,
7747 arg_type, NULL_TREE);
7748 atexit_fn_ptr_type_node = build_pointer_type (fn_type);
7751 return atexit_fn_ptr_type_node;
7754 /* Returns a pointer to the `atexit' function. Note that if
7755 FLAG_USE_CXA_ATEXIT is nonzero, then this will actually be the new
7756 `__cxa_atexit' function specified in the IA64 C++ ABI. */
7758 static tree
7759 get_atexit_node (void)
7761 tree atexit_fndecl;
7762 tree fn_type;
7763 tree fn_ptr_type;
7764 const char *name;
7765 bool use_aeabi_atexit;
7767 if (atexit_node)
7768 return atexit_node;
7770 if (flag_use_cxa_atexit && !targetm.cxx.use_atexit_for_cxa_atexit ())
7772 /* The declaration for `__cxa_atexit' is:
7774 int __cxa_atexit (void (*)(void *), void *, void *)
7776 We build up the argument types and then the function type
7777 itself. */
7778 tree argtype0, argtype1, argtype2;
7780 use_aeabi_atexit = targetm.cxx.use_aeabi_atexit ();
7781 /* First, build the pointer-to-function type for the first
7782 argument. */
7783 fn_ptr_type = get_atexit_fn_ptr_type ();
7784 /* Then, build the rest of the argument types. */
7785 argtype2 = ptr_type_node;
7786 if (use_aeabi_atexit)
7788 argtype1 = fn_ptr_type;
7789 argtype0 = ptr_type_node;
7791 else
7793 argtype1 = ptr_type_node;
7794 argtype0 = fn_ptr_type;
7796 /* And the final __cxa_atexit type. */
7797 fn_type = build_function_type_list (integer_type_node,
7798 argtype0, argtype1, argtype2,
7799 NULL_TREE);
7800 if (use_aeabi_atexit)
7801 name = "__aeabi_atexit";
7802 else
7803 name = "__cxa_atexit";
7805 else
7807 /* The declaration for `atexit' is:
7809 int atexit (void (*)());
7811 We build up the argument types and then the function type
7812 itself. */
7813 fn_ptr_type = get_atexit_fn_ptr_type ();
7814 /* Build the final atexit type. */
7815 fn_type = build_function_type_list (integer_type_node,
7816 fn_ptr_type, NULL_TREE);
7817 name = "atexit";
7820 /* Now, build the function declaration. */
7821 push_lang_context (lang_name_c);
7822 atexit_fndecl = build_library_fn_ptr (name, fn_type, ECF_LEAF | ECF_NOTHROW);
7823 mark_used (atexit_fndecl);
7824 pop_lang_context ();
7825 atexit_node = decay_conversion (atexit_fndecl, tf_warning_or_error);
7827 return atexit_node;
7830 /* Like get_atexit_node, but for thread-local cleanups. */
7832 static tree
7833 get_thread_atexit_node (void)
7835 /* The declaration for `__cxa_thread_atexit' is:
7837 int __cxa_thread_atexit (void (*)(void *), void *, void *) */
7838 tree fn_type = build_function_type_list (integer_type_node,
7839 get_atexit_fn_ptr_type (),
7840 ptr_type_node, ptr_type_node,
7841 NULL_TREE);
7843 /* Now, build the function declaration. */
7844 tree atexit_fndecl = build_library_fn_ptr ("__cxa_thread_atexit", fn_type,
7845 ECF_LEAF | ECF_NOTHROW);
7846 return decay_conversion (atexit_fndecl, tf_warning_or_error);
7849 /* Returns the __dso_handle VAR_DECL. */
7851 static tree
7852 get_dso_handle_node (void)
7854 if (dso_handle_node)
7855 return dso_handle_node;
7857 /* Declare the variable. */
7858 dso_handle_node = declare_global_var (get_identifier ("__dso_handle"),
7859 ptr_type_node);
7861 #ifdef HAVE_GAS_HIDDEN
7862 if (dso_handle_node != error_mark_node)
7864 DECL_VISIBILITY (dso_handle_node) = VISIBILITY_HIDDEN;
7865 DECL_VISIBILITY_SPECIFIED (dso_handle_node) = 1;
7867 #endif
7869 return dso_handle_node;
7872 /* Begin a new function with internal linkage whose job will be simply
7873 to destroy some particular variable. */
7875 static GTY(()) int start_cleanup_cnt;
7877 static tree
7878 start_cleanup_fn (void)
7880 char name[32];
7881 tree fntype;
7882 tree fndecl;
7883 bool use_cxa_atexit = flag_use_cxa_atexit
7884 && !targetm.cxx.use_atexit_for_cxa_atexit ();
7886 push_to_top_level ();
7888 /* No need to mangle this. */
7889 push_lang_context (lang_name_c);
7891 /* Build the name of the function. */
7892 sprintf (name, "__tcf_%d", start_cleanup_cnt++);
7893 /* Build the function declaration. */
7894 fntype = TREE_TYPE (get_atexit_fn_ptr_type ());
7895 fndecl = build_lang_decl (FUNCTION_DECL, get_identifier (name), fntype);
7896 /* It's a function with internal linkage, generated by the
7897 compiler. */
7898 TREE_PUBLIC (fndecl) = 0;
7899 DECL_ARTIFICIAL (fndecl) = 1;
7900 /* Make the function `inline' so that it is only emitted if it is
7901 actually needed. It is unlikely that it will be inlined, since
7902 it is only called via a function pointer, but we avoid unnecessary
7903 emissions this way. */
7904 DECL_DECLARED_INLINE_P (fndecl) = 1;
7905 DECL_INTERFACE_KNOWN (fndecl) = 1;
7906 /* Build the parameter. */
7907 if (use_cxa_atexit)
7909 tree parmdecl = cp_build_parm_decl (fndecl, NULL_TREE, ptr_type_node);
7910 TREE_USED (parmdecl) = 1;
7911 DECL_READ_P (parmdecl) = 1;
7912 DECL_ARGUMENTS (fndecl) = parmdecl;
7915 pushdecl (fndecl);
7916 start_preparsed_function (fndecl, NULL_TREE, SF_PRE_PARSED);
7918 pop_lang_context ();
7920 return current_function_decl;
7923 /* Finish the cleanup function begun by start_cleanup_fn. */
7925 static void
7926 end_cleanup_fn (void)
7928 expand_or_defer_fn (finish_function (/*inline_p=*/false));
7930 pop_from_top_level ();
7933 /* Generate code to handle the destruction of DECL, an object with
7934 static storage duration. */
7936 tree
7937 register_dtor_fn (tree decl)
7939 tree cleanup;
7940 tree addr;
7941 tree compound_stmt;
7942 tree fcall;
7943 tree type;
7944 bool ob_parm, dso_parm, use_dtor;
7945 tree arg0, arg1, arg2;
7946 tree atex_node;
7948 type = TREE_TYPE (decl);
7949 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
7950 return void_node;
7952 /* If we're using "__cxa_atexit" (or "__cxa_thread_atexit" or
7953 "__aeabi_atexit"), and DECL is a class object, we can just pass the
7954 destructor to "__cxa_atexit"; we don't have to build a temporary
7955 function to do the cleanup. */
7956 dso_parm = (flag_use_cxa_atexit
7957 && !targetm.cxx.use_atexit_for_cxa_atexit ());
7958 ob_parm = (CP_DECL_THREAD_LOCAL_P (decl) || dso_parm);
7959 use_dtor = ob_parm && CLASS_TYPE_P (type);
7960 if (use_dtor)
7962 cleanup = get_class_binding (type, complete_dtor_identifier);
7964 /* Make sure it is accessible. */
7965 perform_or_defer_access_check (TYPE_BINFO (type), cleanup, cleanup,
7966 tf_warning_or_error);
7968 else
7970 /* Call build_cleanup before we enter the anonymous function so
7971 that any access checks will be done relative to the current
7972 scope, rather than the scope of the anonymous function. */
7973 build_cleanup (decl);
7975 /* Now start the function. */
7976 cleanup = start_cleanup_fn ();
7978 /* Now, recompute the cleanup. It may contain SAVE_EXPRs that refer
7979 to the original function, rather than the anonymous one. That
7980 will make the back end think that nested functions are in use,
7981 which causes confusion. */
7982 push_deferring_access_checks (dk_no_check);
7983 fcall = build_cleanup (decl);
7984 pop_deferring_access_checks ();
7986 /* Create the body of the anonymous function. */
7987 compound_stmt = begin_compound_stmt (BCS_FN_BODY);
7988 finish_expr_stmt (fcall);
7989 finish_compound_stmt (compound_stmt);
7990 end_cleanup_fn ();
7993 /* Call atexit with the cleanup function. */
7994 mark_used (cleanup);
7995 cleanup = build_address (cleanup);
7997 if (CP_DECL_THREAD_LOCAL_P (decl))
7998 atex_node = get_thread_atexit_node ();
7999 else
8000 atex_node = get_atexit_node ();
8002 if (use_dtor)
8004 /* We must convert CLEANUP to the type that "__cxa_atexit"
8005 expects. */
8006 cleanup = build_nop (get_atexit_fn_ptr_type (), cleanup);
8007 /* "__cxa_atexit" will pass the address of DECL to the
8008 cleanup function. */
8009 mark_used (decl);
8010 addr = build_address (decl);
8011 /* The declared type of the parameter to "__cxa_atexit" is
8012 "void *". For plain "T*", we could just let the
8013 machinery in cp_build_function_call convert it -- but if the
8014 type is "cv-qualified T *", then we need to convert it
8015 before passing it in, to avoid spurious errors. */
8016 addr = build_nop (ptr_type_node, addr);
8018 else
8019 /* Since the cleanup functions we build ignore the address
8020 they're given, there's no reason to pass the actual address
8021 in, and, in general, it's cheaper to pass NULL than any
8022 other value. */
8023 addr = null_pointer_node;
8025 if (dso_parm)
8026 arg2 = cp_build_addr_expr (get_dso_handle_node (),
8027 tf_warning_or_error);
8028 else if (ob_parm)
8029 /* Just pass NULL to the dso handle parm if we don't actually
8030 have a DSO handle on this target. */
8031 arg2 = null_pointer_node;
8032 else
8033 arg2 = NULL_TREE;
8035 if (ob_parm)
8037 if (!CP_DECL_THREAD_LOCAL_P (decl)
8038 && targetm.cxx.use_aeabi_atexit ())
8040 arg1 = cleanup;
8041 arg0 = addr;
8043 else
8045 arg1 = addr;
8046 arg0 = cleanup;
8049 else
8051 arg0 = cleanup;
8052 arg1 = NULL_TREE;
8054 return cp_build_function_call_nary (atex_node, tf_warning_or_error,
8055 arg0, arg1, arg2, NULL_TREE);
8058 /* DECL is a VAR_DECL with static storage duration. INIT, if present,
8059 is its initializer. Generate code to handle the construction
8060 and destruction of DECL. */
8062 static void
8063 expand_static_init (tree decl, tree init)
8065 gcc_assert (VAR_P (decl));
8066 gcc_assert (TREE_STATIC (decl));
8068 /* Some variables require no dynamic initialization. */
8069 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
8071 /* Make sure the destructor is callable. */
8072 cxx_maybe_build_cleanup (decl, tf_warning_or_error);
8073 if (!init)
8074 return;
8077 if (CP_DECL_THREAD_LOCAL_P (decl) && DECL_GNU_TLS_P (decl)
8078 && !DECL_FUNCTION_SCOPE_P (decl))
8080 if (init)
8081 error ("non-local variable %qD declared %<__thread%> "
8082 "needs dynamic initialization", decl);
8083 else
8084 error ("non-local variable %qD declared %<__thread%> "
8085 "has a non-trivial destructor", decl);
8086 static bool informed;
8087 if (!informed)
8089 inform (DECL_SOURCE_LOCATION (decl),
8090 "C++11 %<thread_local%> allows dynamic initialization "
8091 "and destruction");
8092 informed = true;
8094 return;
8097 if (DECL_FUNCTION_SCOPE_P (decl))
8099 /* Emit code to perform this initialization but once. */
8100 tree if_stmt = NULL_TREE, inner_if_stmt = NULL_TREE;
8101 tree then_clause = NULL_TREE, inner_then_clause = NULL_TREE;
8102 tree guard, guard_addr;
8103 tree flag, begin;
8104 /* We don't need thread-safety code for thread-local vars. */
8105 bool thread_guard = (flag_threadsafe_statics
8106 && !CP_DECL_THREAD_LOCAL_P (decl));
8108 /* Emit code to perform this initialization but once. This code
8109 looks like:
8111 static <type> guard;
8112 if (!__atomic_load (guard.first_byte)) {
8113 if (__cxa_guard_acquire (&guard)) {
8114 bool flag = false;
8115 try {
8116 // Do initialization.
8117 flag = true; __cxa_guard_release (&guard);
8118 // Register variable for destruction at end of program.
8119 } catch {
8120 if (!flag) __cxa_guard_abort (&guard);
8125 Note that the `flag' variable is only set to 1 *after* the
8126 initialization is complete. This ensures that an exception,
8127 thrown during the construction, will cause the variable to
8128 reinitialized when we pass through this code again, as per:
8130 [stmt.dcl]
8132 If the initialization exits by throwing an exception, the
8133 initialization is not complete, so it will be tried again
8134 the next time control enters the declaration.
8136 This process should be thread-safe, too; multiple threads
8137 should not be able to initialize the variable more than
8138 once. */
8140 /* Create the guard variable. */
8141 guard = get_guard (decl);
8143 /* Begin the conditional initialization. */
8144 if_stmt = begin_if_stmt ();
8146 finish_if_stmt_cond (get_guard_cond (guard, thread_guard), if_stmt);
8147 then_clause = begin_compound_stmt (BCS_NO_SCOPE);
8149 if (thread_guard)
8151 tree vfntype = NULL_TREE;
8152 tree acquire_name, release_name, abort_name;
8153 tree acquire_fn, release_fn, abort_fn;
8154 guard_addr = build_address (guard);
8156 acquire_name = get_identifier ("__cxa_guard_acquire");
8157 release_name = get_identifier ("__cxa_guard_release");
8158 abort_name = get_identifier ("__cxa_guard_abort");
8159 acquire_fn = get_global_binding (acquire_name);
8160 release_fn = get_global_binding (release_name);
8161 abort_fn = get_global_binding (abort_name);
8162 if (!acquire_fn)
8163 acquire_fn = push_library_fn
8164 (acquire_name, build_function_type_list (integer_type_node,
8165 TREE_TYPE (guard_addr),
8166 NULL_TREE),
8167 NULL_TREE, ECF_NOTHROW | ECF_LEAF);
8168 if (!release_fn || !abort_fn)
8169 vfntype = build_function_type_list (void_type_node,
8170 TREE_TYPE (guard_addr),
8171 NULL_TREE);
8172 if (!release_fn)
8173 release_fn = push_library_fn (release_name, vfntype, NULL_TREE,
8174 ECF_NOTHROW | ECF_LEAF);
8175 if (!abort_fn)
8176 abort_fn = push_library_fn (abort_name, vfntype, NULL_TREE,
8177 ECF_NOTHROW | ECF_LEAF);
8179 inner_if_stmt = begin_if_stmt ();
8180 finish_if_stmt_cond (build_call_n (acquire_fn, 1, guard_addr),
8181 inner_if_stmt);
8183 inner_then_clause = begin_compound_stmt (BCS_NO_SCOPE);
8184 begin = get_target_expr (boolean_false_node);
8185 flag = TARGET_EXPR_SLOT (begin);
8187 TARGET_EXPR_CLEANUP (begin)
8188 = build3 (COND_EXPR, void_type_node, flag,
8189 void_node,
8190 build_call_n (abort_fn, 1, guard_addr));
8191 CLEANUP_EH_ONLY (begin) = 1;
8193 /* Do the initialization itself. */
8194 init = add_stmt_to_compound (begin, init);
8195 init = add_stmt_to_compound
8196 (init, build2 (MODIFY_EXPR, void_type_node, flag, boolean_true_node));
8197 init = add_stmt_to_compound
8198 (init, build_call_n (release_fn, 1, guard_addr));
8200 else
8201 init = add_stmt_to_compound (init, set_guard (guard));
8203 /* Use atexit to register a function for destroying this static
8204 variable. */
8205 init = add_stmt_to_compound (init, register_dtor_fn (decl));
8207 finish_expr_stmt (init);
8209 if (thread_guard)
8211 finish_compound_stmt (inner_then_clause);
8212 finish_then_clause (inner_if_stmt);
8213 finish_if_stmt (inner_if_stmt);
8216 finish_compound_stmt (then_clause);
8217 finish_then_clause (if_stmt);
8218 finish_if_stmt (if_stmt);
8220 else if (CP_DECL_THREAD_LOCAL_P (decl))
8221 tls_aggregates = tree_cons (init, decl, tls_aggregates);
8222 else
8223 static_aggregates = tree_cons (init, decl, static_aggregates);
8227 /* Make TYPE a complete type based on INITIAL_VALUE.
8228 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
8229 2 if there was no information (in which case assume 0 if DO_DEFAULT),
8230 3 if the initializer list is empty (in pedantic mode). */
8233 cp_complete_array_type (tree *ptype, tree initial_value, bool do_default)
8235 int failure;
8236 tree type, elt_type;
8238 /* Don't get confused by a CONSTRUCTOR for some other type. */
8239 if (initial_value && TREE_CODE (initial_value) == CONSTRUCTOR
8240 && !BRACE_ENCLOSED_INITIALIZER_P (initial_value)
8241 && TREE_CODE (TREE_TYPE (initial_value)) != ARRAY_TYPE)
8242 return 1;
8244 if (initial_value)
8246 unsigned HOST_WIDE_INT i;
8247 tree value;
8249 /* An array of character type can be initialized from a
8250 brace-enclosed string constant.
8252 FIXME: this code is duplicated from reshape_init. Probably
8253 we should just call reshape_init here? */
8254 if (char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (*ptype)))
8255 && TREE_CODE (initial_value) == CONSTRUCTOR
8256 && !vec_safe_is_empty (CONSTRUCTOR_ELTS (initial_value)))
8258 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initial_value);
8259 tree value = (*v)[0].value;
8261 if (TREE_CODE (value) == STRING_CST
8262 && v->length () == 1)
8263 initial_value = value;
8266 /* If any of the elements are parameter packs, we can't actually
8267 complete this type now because the array size is dependent. */
8268 if (TREE_CODE (initial_value) == CONSTRUCTOR)
8270 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (initial_value),
8271 i, value)
8273 if (PACK_EXPANSION_P (value))
8274 return 0;
8279 failure = complete_array_type (ptype, initial_value, do_default);
8281 /* We can create the array before the element type is complete, which
8282 means that we didn't have these two bits set in the original type
8283 either. In completing the type, we are expected to propagate these
8284 bits. See also complete_type which does the same thing for arrays
8285 of fixed size. */
8286 type = *ptype;
8287 if (TYPE_DOMAIN (type))
8289 elt_type = TREE_TYPE (type);
8290 TYPE_NEEDS_CONSTRUCTING (type) = TYPE_NEEDS_CONSTRUCTING (elt_type);
8291 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
8292 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (elt_type);
8295 return failure;
8298 /* As above, but either give an error or reject zero-size arrays, depending
8299 on COMPLAIN. */
8302 cp_complete_array_type_or_error (tree *ptype, tree initial_value,
8303 bool do_default, tsubst_flags_t complain)
8305 int failure;
8306 bool sfinae = !(complain & tf_error);
8307 /* In SFINAE context we can't be lenient about zero-size arrays. */
8308 if (sfinae)
8309 ++pedantic;
8310 failure = cp_complete_array_type (ptype, initial_value, do_default);
8311 if (sfinae)
8312 --pedantic;
8313 if (failure)
8315 if (sfinae)
8316 /* Not an error. */;
8317 else if (failure == 1)
8318 error ("initializer fails to determine size of %qT", *ptype);
8319 else if (failure == 2)
8321 if (do_default)
8322 error ("array size missing in %qT", *ptype);
8324 else if (failure == 3)
8325 error ("zero-size array %qT", *ptype);
8326 *ptype = error_mark_node;
8328 return failure;
8331 /* Return zero if something is declared to be a member of type
8332 CTYPE when in the context of CUR_TYPE. STRING is the error
8333 message to print in that case. Otherwise, quietly return 1. */
8335 static int
8336 member_function_or_else (tree ctype, tree cur_type, enum overload_flags flags)
8338 if (ctype && ctype != cur_type)
8340 if (flags == DTOR_FLAG)
8341 error ("destructor for alien class %qT cannot be a member", ctype);
8342 else
8343 error ("constructor for alien class %qT cannot be a member", ctype);
8344 return 0;
8346 return 1;
8349 /* Subroutine of `grokdeclarator'. */
8351 /* Generate errors possibly applicable for a given set of specifiers.
8352 This is for ARM $7.1.2. */
8354 static void
8355 bad_specifiers (tree object,
8356 enum bad_spec_place type,
8357 int virtualp,
8358 int quals,
8359 int inlinep,
8360 int friendp,
8361 int raises)
8363 switch (type)
8365 case BSP_VAR:
8366 if (virtualp)
8367 error ("%qD declared as a %<virtual%> variable", object);
8368 if (quals)
8369 error ("%<const%> and %<volatile%> function specifiers on "
8370 "%qD invalid in variable declaration", object);
8371 break;
8372 case BSP_PARM:
8373 if (virtualp)
8374 error ("%qD declared as a %<virtual%> parameter", object);
8375 if (inlinep)
8376 error ("%qD declared as an %<inline%> parameter", object);
8377 if (quals)
8378 error ("%<const%> and %<volatile%> function specifiers on "
8379 "%qD invalid in parameter declaration", object);
8380 break;
8381 case BSP_TYPE:
8382 if (virtualp)
8383 error ("%qD declared as a %<virtual%> type", object);
8384 if (inlinep)
8385 error ("%qD declared as an %<inline%> type", object);
8386 if (quals)
8387 error ("%<const%> and %<volatile%> function specifiers on "
8388 "%qD invalid in type declaration", object);
8389 break;
8390 case BSP_FIELD:
8391 if (virtualp)
8392 error ("%qD declared as a %<virtual%> field", object);
8393 if (inlinep)
8394 error ("%qD declared as an %<inline%> field", object);
8395 if (quals)
8396 error ("%<const%> and %<volatile%> function specifiers on "
8397 "%qD invalid in field declaration", object);
8398 break;
8399 default:
8400 gcc_unreachable();
8402 if (friendp)
8403 error ("%q+D declared as a friend", object);
8404 if (raises
8405 && !flag_noexcept_type
8406 && (TREE_CODE (object) == TYPE_DECL
8407 || (!TYPE_PTRFN_P (TREE_TYPE (object))
8408 && !TYPE_REFFN_P (TREE_TYPE (object))
8409 && !TYPE_PTRMEMFUNC_P (TREE_TYPE (object)))))
8410 error ("%q+D declared with an exception specification", object);
8413 /* DECL is a member function or static data member and is presently
8414 being defined. Check that the definition is taking place in a
8415 valid namespace. */
8417 static void
8418 check_class_member_definition_namespace (tree decl)
8420 /* These checks only apply to member functions and static data
8421 members. */
8422 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl));
8423 /* We check for problems with specializations in pt.c in
8424 check_specialization_namespace, where we can issue better
8425 diagnostics. */
8426 if (processing_specialization)
8427 return;
8428 /* We check this in check_explicit_instantiation_namespace. */
8429 if (processing_explicit_instantiation)
8430 return;
8431 /* [class.mfct]
8433 A member function definition that appears outside of the
8434 class definition shall appear in a namespace scope enclosing
8435 the class definition.
8437 [class.static.data]
8439 The definition for a static data member shall appear in a
8440 namespace scope enclosing the member's class definition. */
8441 if (!is_ancestor (current_namespace, DECL_CONTEXT (decl)))
8442 permerror (input_location, "definition of %qD is not in namespace enclosing %qT",
8443 decl, DECL_CONTEXT (decl));
8446 /* Build a PARM_DECL for the "this" parameter of FN. TYPE is the
8447 METHOD_TYPE for a non-static member function; QUALS are the
8448 cv-qualifiers that apply to the function. */
8450 tree
8451 build_this_parm (tree fn, tree type, cp_cv_quals quals)
8453 tree this_type;
8454 tree qual_type;
8455 tree parm;
8456 cp_cv_quals this_quals;
8458 if (CLASS_TYPE_P (type))
8460 this_type
8461 = cp_build_qualified_type (type, quals & ~TYPE_QUAL_RESTRICT);
8462 this_type = build_pointer_type (this_type);
8464 else
8465 this_type = type_of_this_parm (type);
8466 /* The `this' parameter is implicitly `const'; it cannot be
8467 assigned to. */
8468 this_quals = (quals & TYPE_QUAL_RESTRICT) | TYPE_QUAL_CONST;
8469 qual_type = cp_build_qualified_type (this_type, this_quals);
8470 parm = build_artificial_parm (fn, this_identifier, qual_type);
8471 cp_apply_type_quals_to_decl (this_quals, parm);
8472 return parm;
8475 /* DECL is a static member function. Complain if it was declared
8476 with function-cv-quals. */
8478 static void
8479 check_static_quals (tree decl, cp_cv_quals quals)
8481 if (quals != TYPE_UNQUALIFIED)
8482 error ("static member function %q#D declared with type qualifiers",
8483 decl);
8486 // Check that FN takes no arguments and returns bool.
8487 static void
8488 check_concept_fn (tree fn)
8490 // A constraint is nullary.
8491 if (DECL_ARGUMENTS (fn))
8492 error ("concept %q#D declared with function parameters", fn);
8494 // The declared return type of the concept shall be bool, and
8495 // it shall not be deduced from it definition.
8496 tree type = TREE_TYPE (TREE_TYPE (fn));
8497 if (is_auto (type))
8498 error ("concept %q#D declared with a deduced return type", fn);
8499 else if (type != boolean_type_node)
8500 error ("concept %q#D with non-%<bool%> return type %qT", fn, type);
8503 /* Helper function. Replace the temporary this parameter injected
8504 during cp_finish_omp_declare_simd with the real this parameter. */
8506 static tree
8507 declare_simd_adjust_this (tree *tp, int *walk_subtrees, void *data)
8509 tree this_parm = (tree) data;
8510 if (TREE_CODE (*tp) == PARM_DECL
8511 && DECL_NAME (*tp) == this_identifier
8512 && *tp != this_parm)
8513 *tp = this_parm;
8514 else if (TYPE_P (*tp))
8515 *walk_subtrees = 0;
8516 return NULL_TREE;
8519 /* CTYPE is class type, or null if non-class.
8520 TYPE is type this FUNCTION_DECL should have, either FUNCTION_TYPE
8521 or METHOD_TYPE.
8522 DECLARATOR is the function's name.
8523 PARMS is a chain of PARM_DECLs for the function.
8524 VIRTUALP is truthvalue of whether the function is virtual or not.
8525 FLAGS are to be passed through to `grokclassfn'.
8526 QUALS are qualifiers indicating whether the function is `const'
8527 or `volatile'.
8528 RAISES is a list of exceptions that this function can raise.
8529 CHECK is 1 if we must find this method in CTYPE, 0 if we should
8530 not look, and -1 if we should not call `grokclassfn' at all.
8532 SFK is the kind of special function (if any) for the new function.
8534 Returns `NULL_TREE' if something goes wrong, after issuing
8535 applicable error messages. */
8537 static tree
8538 grokfndecl (tree ctype,
8539 tree type,
8540 tree declarator,
8541 tree parms,
8542 tree orig_declarator,
8543 tree decl_reqs,
8544 int virtualp,
8545 enum overload_flags flags,
8546 cp_cv_quals quals,
8547 cp_ref_qualifier rqual,
8548 tree raises,
8549 int check,
8550 int friendp,
8551 int publicp,
8552 int inlinep,
8553 bool deletedp,
8554 special_function_kind sfk,
8555 bool funcdef_flag,
8556 int template_count,
8557 tree in_namespace,
8558 tree* attrlist,
8559 location_t location)
8561 tree decl;
8562 int staticp = ctype && TREE_CODE (type) == FUNCTION_TYPE;
8563 tree t;
8565 // Was the concept specifier present?
8566 bool concept_p = inlinep & 4;
8568 // Concept declarations must have a corresponding definition.
8569 if (concept_p && !funcdef_flag)
8571 error ("concept %qD has no definition", declarator);
8572 return NULL_TREE;
8575 if (rqual)
8576 type = build_ref_qualified_type (type, rqual);
8577 if (raises)
8578 type = build_exception_variant (type, raises);
8580 decl = build_lang_decl (FUNCTION_DECL, declarator, type);
8582 /* Set the constraints on the declaration. */
8583 if (flag_concepts)
8585 tree tmpl_reqs = NULL_TREE;
8586 if (processing_template_decl > template_class_depth (ctype))
8587 tmpl_reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
8589 /* Adjust the required expression into a constraint. */
8590 if (decl_reqs)
8591 decl_reqs = normalize_expression (decl_reqs);
8593 tree ci = build_constraints (tmpl_reqs, decl_reqs);
8594 set_constraints (decl, ci);
8597 /* If we have an explicit location, use it, otherwise use whatever
8598 build_lang_decl used (probably input_location). */
8599 if (location != UNKNOWN_LOCATION)
8600 DECL_SOURCE_LOCATION (decl) = location;
8602 if (TREE_CODE (type) == METHOD_TYPE)
8604 tree parm = build_this_parm (decl, type, quals);
8605 DECL_CHAIN (parm) = parms;
8606 parms = parm;
8608 /* Allocate space to hold the vptr bit if needed. */
8609 SET_DECL_ALIGN (decl, MINIMUM_METHOD_BOUNDARY);
8612 DECL_ARGUMENTS (decl) = parms;
8613 for (t = parms; t; t = DECL_CHAIN (t))
8614 DECL_CONTEXT (t) = decl;
8616 /* Propagate volatile out from type to decl. */
8617 if (TYPE_VOLATILE (type))
8618 TREE_THIS_VOLATILE (decl) = 1;
8620 /* Setup decl according to sfk. */
8621 switch (sfk)
8623 case sfk_constructor:
8624 case sfk_copy_constructor:
8625 case sfk_move_constructor:
8626 DECL_CXX_CONSTRUCTOR_P (decl) = 1;
8627 DECL_NAME (decl) = ctor_identifier;
8628 break;
8629 case sfk_destructor:
8630 DECL_CXX_DESTRUCTOR_P (decl) = 1;
8631 DECL_NAME (decl) = dtor_identifier;
8632 break;
8633 default:
8634 break;
8637 if (friendp && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)
8639 if (funcdef_flag)
8640 error ("defining explicit specialization %qD in friend declaration",
8641 orig_declarator);
8642 else
8644 tree fns = TREE_OPERAND (orig_declarator, 0);
8645 tree args = TREE_OPERAND (orig_declarator, 1);
8647 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
8649 /* Something like `template <class T> friend void f<T>()'. */
8650 error ("invalid use of template-id %qD in declaration "
8651 "of primary template",
8652 orig_declarator);
8653 return NULL_TREE;
8657 /* A friend declaration of the form friend void f<>(). Record
8658 the information in the TEMPLATE_ID_EXPR. */
8659 SET_DECL_IMPLICIT_INSTANTIATION (decl);
8661 gcc_assert (identifier_p (fns) || TREE_CODE (fns) == OVERLOAD);
8662 DECL_TEMPLATE_INFO (decl) = build_template_info (fns, args);
8664 for (t = TYPE_ARG_TYPES (TREE_TYPE (decl)); t; t = TREE_CHAIN (t))
8665 if (TREE_PURPOSE (t)
8666 && TREE_CODE (TREE_PURPOSE (t)) == DEFAULT_ARG)
8668 error ("default arguments are not allowed in declaration "
8669 "of friend template specialization %qD",
8670 decl);
8671 return NULL_TREE;
8674 if (inlinep & 1)
8676 error ("%<inline%> is not allowed in declaration of friend "
8677 "template specialization %qD",
8678 decl);
8679 return NULL_TREE;
8684 /* If this decl has namespace scope, set that up. */
8685 if (in_namespace)
8686 set_decl_namespace (decl, in_namespace, friendp);
8687 else if (!ctype)
8688 DECL_CONTEXT (decl) = FROB_CONTEXT (current_decl_namespace ());
8690 /* `main' and builtins have implicit 'C' linkage. */
8691 if (ctype == NULL_TREE
8692 && DECL_FILE_SCOPE_P (decl)
8693 && current_lang_name == lang_name_cplusplus
8694 && (MAIN_NAME_P (declarator)
8695 || (IDENTIFIER_LENGTH (declarator) > 10
8696 && IDENTIFIER_POINTER (declarator)[0] == '_'
8697 && IDENTIFIER_POINTER (declarator)[1] == '_'
8698 && strncmp (IDENTIFIER_POINTER (declarator)+2,
8699 "builtin_", 8) == 0)
8700 || (targetcm.cxx_implicit_extern_c
8701 && (targetcm.cxx_implicit_extern_c
8702 (IDENTIFIER_POINTER (declarator))))))
8703 SET_DECL_LANGUAGE (decl, lang_c);
8705 /* Should probably propagate const out from type to decl I bet (mrs). */
8706 if (staticp)
8708 DECL_STATIC_FUNCTION_P (decl) = 1;
8709 DECL_CONTEXT (decl) = ctype;
8712 if (deletedp)
8713 DECL_DELETED_FN (decl) = 1;
8715 if (ctype)
8717 DECL_CONTEXT (decl) = ctype;
8718 if (funcdef_flag)
8719 check_class_member_definition_namespace (decl);
8722 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
8724 if (PROCESSING_REAL_TEMPLATE_DECL_P())
8725 error ("cannot declare %<::main%> to be a template");
8726 if (inlinep & 1)
8727 error ("cannot declare %<::main%> to be inline");
8728 if (inlinep & 2)
8729 error ("cannot declare %<::main%> to be %<constexpr%>");
8730 if (!publicp)
8731 error ("cannot declare %<::main%> to be static");
8732 inlinep = 0;
8733 publicp = 1;
8736 /* Members of anonymous types and local classes have no linkage; make
8737 them internal. If a typedef is made later, this will be changed. */
8738 if (ctype && (!TREE_PUBLIC (TYPE_MAIN_DECL (ctype))
8739 || decl_function_context (TYPE_MAIN_DECL (ctype))))
8740 publicp = 0;
8742 if (publicp && cxx_dialect == cxx98)
8744 /* [basic.link]: A name with no linkage (notably, the name of a class
8745 or enumeration declared in a local scope) shall not be used to
8746 declare an entity with linkage.
8748 DR 757 relaxes this restriction for C++0x. */
8749 no_linkage_error (decl);
8752 TREE_PUBLIC (decl) = publicp;
8753 if (! publicp)
8755 DECL_INTERFACE_KNOWN (decl) = 1;
8756 DECL_NOT_REALLY_EXTERN (decl) = 1;
8759 /* If the declaration was declared inline, mark it as such. */
8760 if (inlinep)
8762 DECL_DECLARED_INLINE_P (decl) = 1;
8763 if (publicp)
8764 DECL_COMDAT (decl) = 1;
8766 if (inlinep & 2)
8767 DECL_DECLARED_CONSTEXPR_P (decl) = true;
8769 // If the concept declaration specifier was found, check
8770 // that the declaration satisfies the necessary requirements.
8771 if (concept_p)
8773 DECL_DECLARED_CONCEPT_P (decl) = true;
8774 check_concept_fn (decl);
8777 DECL_EXTERNAL (decl) = 1;
8778 if (TREE_CODE (type) == FUNCTION_TYPE)
8780 if (quals || rqual)
8781 TREE_TYPE (decl) = apply_memfn_quals (TREE_TYPE (decl),
8782 TYPE_UNQUALIFIED,
8783 REF_QUAL_NONE);
8785 if (quals)
8787 error (ctype
8788 ? G_("static member function %qD cannot have cv-qualifier")
8789 : G_("non-member function %qD cannot have cv-qualifier"),
8790 decl);
8791 quals = TYPE_UNQUALIFIED;
8794 if (rqual)
8796 error (ctype
8797 ? G_("static member function %qD cannot have ref-qualifier")
8798 : G_("non-member function %qD cannot have ref-qualifier"),
8799 decl);
8800 rqual = REF_QUAL_NONE;
8804 if (deduction_guide_p (decl))
8806 if (!DECL_NAMESPACE_SCOPE_P (decl))
8808 error_at (location, "deduction guide %qD must be declared at "
8809 "namespace scope", decl);
8810 return NULL_TREE;
8812 if (funcdef_flag)
8813 error_at (location,
8814 "deduction guide %qD must not have a function body", decl);
8816 else if (IDENTIFIER_ANY_OP_P (DECL_NAME (decl))
8817 && !grok_op_properties (decl, /*complain=*/true))
8818 return NULL_TREE;
8819 else if (UDLIT_OPER_P (DECL_NAME (decl)))
8821 bool long_long_unsigned_p;
8822 bool long_double_p;
8823 const char *suffix = NULL;
8824 /* [over.literal]/6: Literal operators shall not have C linkage. */
8825 if (DECL_LANGUAGE (decl) == lang_c)
8827 error ("literal operator with C linkage");
8828 maybe_show_extern_c_location ();
8829 return NULL_TREE;
8832 if (DECL_NAMESPACE_SCOPE_P (decl))
8834 if (!check_literal_operator_args (decl, &long_long_unsigned_p,
8835 &long_double_p))
8837 error ("%qD has invalid argument list", decl);
8838 return NULL_TREE;
8841 suffix = UDLIT_OP_SUFFIX (DECL_NAME (decl));
8842 if (long_long_unsigned_p)
8844 if (cpp_interpret_int_suffix (parse_in, suffix, strlen (suffix)))
8845 warning (0, "integer suffix %qs"
8846 " shadowed by implementation", suffix);
8848 else if (long_double_p)
8850 if (cpp_interpret_float_suffix (parse_in, suffix, strlen (suffix)))
8851 warning (0, "floating point suffix %qs"
8852 " shadowed by implementation", suffix);
8855 else
8857 error ("%qD must be a non-member function", decl);
8858 return NULL_TREE;
8862 if (funcdef_flag)
8863 /* Make the init_value nonzero so pushdecl knows this is not
8864 tentative. error_mark_node is replaced later with the BLOCK. */
8865 DECL_INITIAL (decl) = error_mark_node;
8867 if (TYPE_NOTHROW_P (type) || nothrow_libfn_p (decl))
8868 TREE_NOTHROW (decl) = 1;
8870 if (flag_openmp || flag_openmp_simd)
8872 /* Adjust "omp declare simd" attributes. */
8873 tree ods = lookup_attribute ("omp declare simd", *attrlist);
8874 if (ods)
8876 tree attr;
8877 for (attr = ods; attr;
8878 attr = lookup_attribute ("omp declare simd", TREE_CHAIN (attr)))
8880 if (TREE_CODE (type) == METHOD_TYPE)
8881 walk_tree (&TREE_VALUE (attr), declare_simd_adjust_this,
8882 DECL_ARGUMENTS (decl), NULL);
8883 if (TREE_VALUE (attr) != NULL_TREE)
8885 tree cl = TREE_VALUE (TREE_VALUE (attr));
8886 cl = c_omp_declare_simd_clauses_to_numbers
8887 (DECL_ARGUMENTS (decl), cl);
8888 if (cl)
8889 TREE_VALUE (TREE_VALUE (attr)) = cl;
8890 else
8891 TREE_VALUE (attr) = NULL_TREE;
8897 /* Caller will do the rest of this. */
8898 if (check < 0)
8899 return decl;
8901 if (ctype != NULL_TREE)
8902 grokclassfn (ctype, decl, flags);
8904 /* 12.4/3 */
8905 if (cxx_dialect >= cxx11
8906 && DECL_DESTRUCTOR_P (decl)
8907 && !TYPE_BEING_DEFINED (DECL_CONTEXT (decl))
8908 && !processing_template_decl)
8909 deduce_noexcept_on_destructor (decl);
8911 decl = check_explicit_specialization (orig_declarator, decl,
8912 template_count,
8913 2 * funcdef_flag +
8914 4 * (friendp != 0) +
8915 8 * concept_p);
8916 if (decl == error_mark_node)
8917 return NULL_TREE;
8919 if (DECL_STATIC_FUNCTION_P (decl))
8920 check_static_quals (decl, quals);
8922 if (attrlist)
8924 cplus_decl_attributes (&decl, *attrlist, 0);
8925 *attrlist = NULL_TREE;
8928 /* Check main's type after attributes have been applied. */
8929 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
8931 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
8932 integer_type_node))
8934 tree oldtypeargs = TYPE_ARG_TYPES (TREE_TYPE (decl));
8935 tree newtype;
8936 error ("%<::main%> must return %<int%>");
8937 newtype = build_function_type (integer_type_node, oldtypeargs);
8938 TREE_TYPE (decl) = newtype;
8940 if (warn_main)
8941 check_main_parameter_types (decl);
8944 if (ctype != NULL_TREE && check)
8946 tree old_decl = check_classfn (ctype, decl,
8947 (processing_template_decl
8948 > template_class_depth (ctype))
8949 ? current_template_parms
8950 : NULL_TREE);
8952 if (old_decl == error_mark_node)
8953 return NULL_TREE;
8955 if (old_decl)
8957 tree ok;
8958 tree pushed_scope;
8960 if (TREE_CODE (old_decl) == TEMPLATE_DECL)
8961 /* Because grokfndecl is always supposed to return a
8962 FUNCTION_DECL, we pull out the DECL_TEMPLATE_RESULT
8963 here. We depend on our callers to figure out that its
8964 really a template that's being returned. */
8965 old_decl = DECL_TEMPLATE_RESULT (old_decl);
8967 if (DECL_STATIC_FUNCTION_P (old_decl)
8968 && TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE)
8970 /* Remove the `this' parm added by grokclassfn. */
8971 revert_static_member_fn (decl);
8972 check_static_quals (decl, quals);
8974 if (DECL_ARTIFICIAL (old_decl))
8976 error ("definition of implicitly-declared %qD", old_decl);
8977 return NULL_TREE;
8979 else if (DECL_DEFAULTED_FN (old_decl))
8981 error ("definition of explicitly-defaulted %q+D", decl);
8982 inform (DECL_SOURCE_LOCATION (old_decl),
8983 "%q#D explicitly defaulted here", old_decl);
8984 return NULL_TREE;
8987 /* Since we've smashed OLD_DECL to its
8988 DECL_TEMPLATE_RESULT, we must do the same to DECL. */
8989 if (TREE_CODE (decl) == TEMPLATE_DECL)
8990 decl = DECL_TEMPLATE_RESULT (decl);
8992 /* Attempt to merge the declarations. This can fail, in
8993 the case of some invalid specialization declarations. */
8994 pushed_scope = push_scope (ctype);
8995 ok = duplicate_decls (decl, old_decl, friendp);
8996 if (pushed_scope)
8997 pop_scope (pushed_scope);
8998 if (!ok)
9000 error ("no %q#D member function declared in class %qT",
9001 decl, ctype);
9002 return NULL_TREE;
9004 if (ok == error_mark_node)
9005 return NULL_TREE;
9006 return old_decl;
9010 if (DECL_CONSTRUCTOR_P (decl) && !grok_ctor_properties (ctype, decl))
9011 return NULL_TREE;
9013 if (ctype == NULL_TREE || check)
9014 return decl;
9016 if (virtualp)
9017 DECL_VIRTUAL_P (decl) = 1;
9019 return decl;
9022 /* decl is a FUNCTION_DECL.
9023 specifiers are the parsed virt-specifiers.
9025 Set flags to reflect the virt-specifiers.
9027 Returns decl. */
9029 static tree
9030 set_virt_specifiers (tree decl, cp_virt_specifiers specifiers)
9032 if (decl == NULL_TREE)
9033 return decl;
9034 if (specifiers & VIRT_SPEC_OVERRIDE)
9035 DECL_OVERRIDE_P (decl) = 1;
9036 if (specifiers & VIRT_SPEC_FINAL)
9037 DECL_FINAL_P (decl) = 1;
9038 return decl;
9041 /* DECL is a VAR_DECL for a static data member. Set flags to reflect
9042 the linkage that DECL will receive in the object file. */
9044 static void
9045 set_linkage_for_static_data_member (tree decl)
9047 /* A static data member always has static storage duration and
9048 external linkage. Note that static data members are forbidden in
9049 local classes -- the only situation in which a class has
9050 non-external linkage. */
9051 TREE_PUBLIC (decl) = 1;
9052 TREE_STATIC (decl) = 1;
9053 /* For non-template classes, static data members are always put
9054 out in exactly those files where they are defined, just as
9055 with ordinary namespace-scope variables. */
9056 if (!processing_template_decl)
9057 DECL_INTERFACE_KNOWN (decl) = 1;
9060 /* Create a VAR_DECL named NAME with the indicated TYPE.
9062 If SCOPE is non-NULL, it is the class type or namespace containing
9063 the variable. If SCOPE is NULL, the variable should is created in
9064 the innermost enclosing scope. */
9066 static tree
9067 grokvardecl (tree type,
9068 tree name,
9069 tree orig_declarator,
9070 const cp_decl_specifier_seq *declspecs,
9071 int initialized,
9072 int type_quals,
9073 int inlinep,
9074 bool conceptp,
9075 int template_count,
9076 tree scope)
9078 tree decl;
9079 tree explicit_scope;
9081 gcc_assert (!name || identifier_p (name));
9083 bool constp = (type_quals & TYPE_QUAL_CONST) != 0;
9084 bool volatilep = (type_quals & TYPE_QUAL_VOLATILE) != 0;
9086 /* Compute the scope in which to place the variable, but remember
9087 whether or not that scope was explicitly specified by the user. */
9088 explicit_scope = scope;
9089 if (!scope)
9091 /* An explicit "extern" specifier indicates a namespace-scope
9092 variable. */
9093 if (declspecs->storage_class == sc_extern)
9094 scope = current_decl_namespace ();
9095 else if (!at_function_scope_p ())
9096 scope = current_scope ();
9099 if (scope
9100 && (/* If the variable is a namespace-scope variable declared in a
9101 template, we need DECL_LANG_SPECIFIC. */
9102 (TREE_CODE (scope) == NAMESPACE_DECL && processing_template_decl)
9103 /* Similarly for namespace-scope variables with language linkage
9104 other than C++. */
9105 || (TREE_CODE (scope) == NAMESPACE_DECL
9106 && current_lang_name != lang_name_cplusplus)
9107 /* Similarly for static data members. */
9108 || TYPE_P (scope)
9109 /* Similarly for explicit specializations. */
9110 || (orig_declarator
9111 && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)))
9112 decl = build_lang_decl (VAR_DECL, name, type);
9113 else
9114 decl = build_decl (input_location, VAR_DECL, name, type);
9116 if (explicit_scope && TREE_CODE (explicit_scope) == NAMESPACE_DECL)
9117 set_decl_namespace (decl, explicit_scope, 0);
9118 else
9119 DECL_CONTEXT (decl) = FROB_CONTEXT (scope);
9121 if (declspecs->storage_class == sc_extern)
9123 DECL_THIS_EXTERN (decl) = 1;
9124 DECL_EXTERNAL (decl) = !initialized;
9127 if (DECL_CLASS_SCOPE_P (decl))
9129 set_linkage_for_static_data_member (decl);
9130 /* This function is only called with out-of-class definitions. */
9131 DECL_EXTERNAL (decl) = 0;
9132 check_class_member_definition_namespace (decl);
9134 /* At top level, either `static' or no s.c. makes a definition
9135 (perhaps tentative), and absence of `static' makes it public. */
9136 else if (toplevel_bindings_p ())
9138 TREE_PUBLIC (decl) = (declspecs->storage_class != sc_static
9139 && (DECL_THIS_EXTERN (decl)
9140 || ! constp
9141 || volatilep
9142 || inlinep));
9143 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
9145 /* Not at top level, only `static' makes a static definition. */
9146 else
9148 TREE_STATIC (decl) = declspecs->storage_class == sc_static;
9149 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
9152 if (decl_spec_seq_has_spec_p (declspecs, ds_thread))
9154 if (DECL_EXTERNAL (decl) || TREE_STATIC (decl))
9156 CP_DECL_THREAD_LOCAL_P (decl) = true;
9157 if (!processing_template_decl)
9158 set_decl_tls_model (decl, decl_default_tls_model (decl));
9160 if (declspecs->gnu_thread_keyword_p)
9161 SET_DECL_GNU_TLS_P (decl);
9164 /* If the type of the decl has no linkage, make sure that we'll
9165 notice that in mark_used. */
9166 if (cxx_dialect > cxx98
9167 && decl_linkage (decl) != lk_none
9168 && DECL_LANG_SPECIFIC (decl) == NULL
9169 && !DECL_EXTERN_C_P (decl)
9170 && no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/false))
9171 retrofit_lang_decl (decl);
9173 if (TREE_PUBLIC (decl))
9175 /* [basic.link]: A name with no linkage (notably, the name of a class
9176 or enumeration declared in a local scope) shall not be used to
9177 declare an entity with linkage.
9179 DR 757 relaxes this restriction for C++0x. */
9180 if (cxx_dialect < cxx11)
9181 no_linkage_error (decl);
9183 else
9184 DECL_INTERFACE_KNOWN (decl) = 1;
9186 if (DECL_NAME (decl)
9187 && MAIN_NAME_P (DECL_NAME (decl))
9188 && scope == global_namespace)
9189 error ("cannot declare %<::main%> to be a global variable");
9191 /* Check that the variable can be safely declared as a concept.
9192 Note that this also forbids explicit specializations. */
9193 if (conceptp)
9195 if (!processing_template_decl)
9197 error ("a non-template variable cannot be %<concept%>");
9198 return NULL_TREE;
9200 else
9201 DECL_DECLARED_CONCEPT_P (decl) = true;
9202 if (!same_type_ignoring_top_level_qualifiers_p (type, boolean_type_node))
9203 error_at (declspecs->locations[ds_type_spec],
9204 "concept must have type %<bool%>");
9206 else if (flag_concepts
9207 && processing_template_decl > template_class_depth (scope))
9209 tree reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
9210 tree ci = build_constraints (reqs, NULL_TREE);
9211 set_constraints (decl, ci);
9214 // Handle explicit specializations and instantiations of variable templates.
9215 if (orig_declarator)
9216 decl = check_explicit_specialization (orig_declarator, decl,
9217 template_count, conceptp * 8);
9219 return decl != error_mark_node ? decl : NULL_TREE;
9222 /* Create and return a canonical pointer to member function type, for
9223 TYPE, which is a POINTER_TYPE to a METHOD_TYPE. */
9225 tree
9226 build_ptrmemfunc_type (tree type)
9228 tree field, fields;
9229 tree t;
9231 if (type == error_mark_node)
9232 return type;
9234 /* Make sure that we always have the unqualified pointer-to-member
9235 type first. */
9236 if (cp_cv_quals quals = cp_type_quals (type))
9238 tree unqual = build_ptrmemfunc_type (TYPE_MAIN_VARIANT (type));
9239 return cp_build_qualified_type (unqual, quals);
9242 /* If a canonical type already exists for this type, use it. We use
9243 this method instead of type_hash_canon, because it only does a
9244 simple equality check on the list of field members. */
9246 t = TYPE_PTRMEMFUNC_TYPE (type);
9247 if (t)
9248 return t;
9250 t = make_node (RECORD_TYPE);
9252 /* Let the front end know this is a pointer to member function. */
9253 TYPE_PTRMEMFUNC_FLAG (t) = 1;
9255 field = build_decl (input_location, FIELD_DECL, pfn_identifier, type);
9256 fields = field;
9258 field = build_decl (input_location, FIELD_DECL, delta_identifier,
9259 delta_type_node);
9260 DECL_CHAIN (field) = fields;
9261 fields = field;
9263 finish_builtin_struct (t, "__ptrmemfunc_type", fields, ptr_type_node);
9265 /* Zap out the name so that the back end will give us the debugging
9266 information for this anonymous RECORD_TYPE. */
9267 TYPE_NAME (t) = NULL_TREE;
9269 /* Cache this pointer-to-member type so that we can find it again
9270 later. */
9271 TYPE_PTRMEMFUNC_TYPE (type) = t;
9273 if (TYPE_STRUCTURAL_EQUALITY_P (type))
9274 SET_TYPE_STRUCTURAL_EQUALITY (t);
9275 else if (TYPE_CANONICAL (type) != type)
9276 TYPE_CANONICAL (t) = build_ptrmemfunc_type (TYPE_CANONICAL (type));
9278 return t;
9281 /* Create and return a pointer to data member type. */
9283 tree
9284 build_ptrmem_type (tree class_type, tree member_type)
9286 if (TREE_CODE (member_type) == METHOD_TYPE)
9288 cp_cv_quals quals = type_memfn_quals (member_type);
9289 cp_ref_qualifier rqual = type_memfn_rqual (member_type);
9290 member_type = build_memfn_type (member_type, class_type, quals, rqual);
9291 return build_ptrmemfunc_type (build_pointer_type (member_type));
9293 else
9295 gcc_assert (TREE_CODE (member_type) != FUNCTION_TYPE);
9296 return build_offset_type (class_type, member_type);
9300 /* DECL is a VAR_DECL defined in-class, whose TYPE is also given.
9301 Check to see that the definition is valid. Issue appropriate error
9302 messages. Return 1 if the definition is particularly bad, or 0
9303 otherwise. */
9305 static int
9306 check_static_variable_definition (tree decl, tree type)
9308 /* Avoid redundant diagnostics on out-of-class definitions. */
9309 if (!current_class_type || !TYPE_BEING_DEFINED (current_class_type))
9310 return 0;
9311 /* Can't check yet if we don't know the type. */
9312 if (dependent_type_p (type))
9313 return 0;
9314 /* If DECL is declared constexpr, we'll do the appropriate checks
9315 in check_initializer. Similarly for inline static data members. */
9316 if (DECL_P (decl)
9317 && (DECL_DECLARED_CONSTEXPR_P (decl)
9318 || DECL_VAR_DECLARED_INLINE_P (decl)))
9319 return 0;
9320 else if (cxx_dialect >= cxx11 && !INTEGRAL_OR_ENUMERATION_TYPE_P (type))
9322 if (!COMPLETE_TYPE_P (type))
9323 error_at (DECL_SOURCE_LOCATION (decl),
9324 "in-class initialization of static data member %q#D of "
9325 "incomplete type", decl);
9326 else if (literal_type_p (type))
9327 permerror (DECL_SOURCE_LOCATION (decl),
9328 "%<constexpr%> needed for in-class initialization of "
9329 "static data member %q#D of non-integral type", decl);
9330 else
9331 error_at (DECL_SOURCE_LOCATION (decl),
9332 "in-class initialization of static data member %q#D of "
9333 "non-literal type", decl);
9334 return 1;
9337 /* Motion 10 at San Diego: If a static const integral data member is
9338 initialized with an integral constant expression, the initializer
9339 may appear either in the declaration (within the class), or in
9340 the definition, but not both. If it appears in the class, the
9341 member is a member constant. The file-scope definition is always
9342 required. */
9343 if (!ARITHMETIC_TYPE_P (type) && TREE_CODE (type) != ENUMERAL_TYPE)
9345 error_at (DECL_SOURCE_LOCATION (decl),
9346 "invalid in-class initialization of static data member "
9347 "of non-integral type %qT",
9348 type);
9349 return 1;
9351 else if (!CP_TYPE_CONST_P (type))
9352 error_at (DECL_SOURCE_LOCATION (decl),
9353 "ISO C++ forbids in-class initialization of non-const "
9354 "static member %qD",
9355 decl);
9356 else if (!INTEGRAL_OR_ENUMERATION_TYPE_P (type))
9357 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wpedantic,
9358 "ISO C++ forbids initialization of member constant "
9359 "%qD of non-integral type %qT", decl, type);
9361 return 0;
9364 /* *expr_p is part of the TYPE_SIZE of a variably-sized array. If any
9365 SAVE_EXPRs in *expr_p wrap expressions with side-effects, break those
9366 expressions out into temporary variables so that walk_tree doesn't
9367 step into them (c++/15764). */
9369 static tree
9370 stabilize_save_expr_r (tree *expr_p, int *walk_subtrees, void *data)
9372 hash_set<tree> *pset = (hash_set<tree> *)data;
9373 tree expr = *expr_p;
9374 if (TREE_CODE (expr) == SAVE_EXPR)
9376 tree op = TREE_OPERAND (expr, 0);
9377 cp_walk_tree (&op, stabilize_save_expr_r, data, pset);
9378 if (TREE_SIDE_EFFECTS (op))
9379 TREE_OPERAND (expr, 0) = get_temp_regvar (TREE_TYPE (op), op);
9380 *walk_subtrees = 0;
9382 else if (!EXPR_P (expr) || !TREE_SIDE_EFFECTS (expr))
9383 *walk_subtrees = 0;
9384 return NULL;
9387 /* Entry point for the above. */
9389 static void
9390 stabilize_vla_size (tree size)
9392 hash_set<tree> pset;
9393 /* Break out any function calls into temporary variables. */
9394 cp_walk_tree (&size, stabilize_save_expr_r, &pset, &pset);
9397 /* Reduce a SIZEOF_EXPR to its value. */
9399 tree
9400 fold_sizeof_expr (tree t)
9402 tree r;
9403 if (SIZEOF_EXPR_TYPE_P (t))
9404 r = cxx_sizeof_or_alignof_type (TREE_TYPE (TREE_OPERAND (t, 0)),
9405 SIZEOF_EXPR, false);
9406 else if (TYPE_P (TREE_OPERAND (t, 0)))
9407 r = cxx_sizeof_or_alignof_type (TREE_OPERAND (t, 0), SIZEOF_EXPR,
9408 false);
9409 else
9410 r = cxx_sizeof_or_alignof_expr (TREE_OPERAND (t, 0), SIZEOF_EXPR,
9411 false);
9412 if (r == error_mark_node)
9413 r = size_one_node;
9414 return r;
9417 /* Given the SIZE (i.e., number of elements) in an array, compute
9418 an appropriate index type for the array. If non-NULL, NAME is
9419 the name of the entity being declared. */
9421 tree
9422 compute_array_index_type (tree name, tree size, tsubst_flags_t complain)
9424 tree itype;
9425 tree osize = size;
9427 if (error_operand_p (size))
9428 return error_mark_node;
9430 if (!type_dependent_expression_p (size))
9432 tree type = TREE_TYPE (size);
9434 size = mark_rvalue_use (size);
9436 if (cxx_dialect < cxx11 && TREE_CODE (size) == NOP_EXPR
9437 && TREE_SIDE_EFFECTS (size))
9438 /* In C++98, we mark a non-constant array bound with a magic
9439 NOP_EXPR with TREE_SIDE_EFFECTS; don't fold in that case. */;
9440 else
9442 size = instantiate_non_dependent_expr_sfinae (size, complain);
9444 if (CLASS_TYPE_P (type)
9445 && CLASSTYPE_LITERAL_P (type))
9447 size = build_expr_type_conversion (WANT_INT, size, true);
9448 if (!size)
9450 if (!(complain & tf_error))
9451 return error_mark_node;
9452 if (name)
9453 error ("size of array %qD has non-integral type %qT",
9454 name, type);
9455 else
9456 error ("size of array has non-integral type %qT", type);
9457 size = integer_one_node;
9459 if (size == error_mark_node)
9460 return error_mark_node;
9461 type = TREE_TYPE (size);
9464 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
9465 size = maybe_constant_value (size);
9467 if (!TREE_CONSTANT (size))
9468 size = osize;
9471 if (error_operand_p (size))
9472 return error_mark_node;
9474 /* The array bound must be an integer type. */
9475 if (!INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
9477 if (!(complain & tf_error))
9478 return error_mark_node;
9479 if (name)
9480 error ("size of array %qD has non-integral type %qT", name, type);
9481 else
9482 error ("size of array has non-integral type %qT", type);
9483 size = integer_one_node;
9484 type = TREE_TYPE (size);
9488 /* A type is dependent if it is...an array type constructed from any
9489 dependent type or whose size is specified by a constant expression
9490 that is value-dependent. */
9491 /* We can only call value_dependent_expression_p on integral constant
9492 expressions; treat non-constant expressions as dependent, too. */
9493 if (processing_template_decl
9494 && (type_dependent_expression_p (size)
9495 || !TREE_CONSTANT (size) || value_dependent_expression_p (size)))
9497 /* We cannot do any checking for a SIZE that isn't known to be
9498 constant. Just build the index type and mark that it requires
9499 structural equality checks. */
9500 itype = build_index_type (build_min (MINUS_EXPR, sizetype,
9501 size, size_one_node));
9502 TYPE_DEPENDENT_P (itype) = 1;
9503 TYPE_DEPENDENT_P_VALID (itype) = 1;
9504 SET_TYPE_STRUCTURAL_EQUALITY (itype);
9505 return itype;
9508 if (TREE_CODE (size) != INTEGER_CST)
9510 tree folded = cp_fully_fold (size);
9511 if (TREE_CODE (folded) == INTEGER_CST)
9512 pedwarn (location_of (size), OPT_Wpedantic,
9513 "size of array is not an integral constant-expression");
9514 /* Use the folded result for VLAs, too; it will have resolved
9515 SIZEOF_EXPR. */
9516 size = folded;
9519 /* Normally, the array-bound will be a constant. */
9520 if (TREE_CODE (size) == INTEGER_CST)
9522 /* Check to see if the array bound overflowed. Make that an
9523 error, no matter how generous we're being. */
9524 constant_expression_error (size);
9526 /* An array must have a positive number of elements. */
9527 if (tree_int_cst_lt (size, integer_zero_node))
9529 if (!(complain & tf_error))
9530 return error_mark_node;
9531 if (name)
9532 error ("size of array %qD is negative", name);
9533 else
9534 error ("size of array is negative");
9535 size = integer_one_node;
9537 /* As an extension we allow zero-sized arrays. */
9538 else if (integer_zerop (size))
9540 if (!(complain & tf_error))
9541 /* We must fail if performing argument deduction (as
9542 indicated by the state of complain), so that
9543 another substitution can be found. */
9544 return error_mark_node;
9545 else if (in_system_header_at (input_location))
9546 /* Allow them in system headers because glibc uses them. */;
9547 else if (name)
9548 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids zero-size array %qD", name);
9549 else
9550 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids zero-size array");
9553 else if (TREE_CONSTANT (size)
9554 /* We don't allow VLAs at non-function scopes, or during
9555 tentative template substitution. */
9556 || !at_function_scope_p ()
9557 || !(complain & tf_error))
9559 if (!(complain & tf_error))
9560 return error_mark_node;
9561 /* `(int) &fn' is not a valid array bound. */
9562 if (name)
9563 error ("size of array %qD is not an integral constant-expression",
9564 name);
9565 else
9566 error ("size of array is not an integral constant-expression");
9567 size = integer_one_node;
9569 else if (pedantic && warn_vla != 0)
9571 if (name)
9572 pedwarn (input_location, OPT_Wvla, "ISO C++ forbids variable length array %qD", name);
9573 else
9574 pedwarn (input_location, OPT_Wvla, "ISO C++ forbids variable length array");
9576 else if (warn_vla > 0)
9578 if (name)
9579 warning (OPT_Wvla,
9580 "variable length array %qD is used", name);
9581 else
9582 warning (OPT_Wvla,
9583 "variable length array is used");
9586 if (processing_template_decl && !TREE_CONSTANT (size))
9587 /* A variable sized array. */
9588 itype = build_min (MINUS_EXPR, sizetype, size, integer_one_node);
9589 else
9591 /* Compute the index of the largest element in the array. It is
9592 one less than the number of elements in the array. We save
9593 and restore PROCESSING_TEMPLATE_DECL so that computations in
9594 cp_build_binary_op will be appropriately folded. */
9596 processing_template_decl_sentinel s;
9597 itype = cp_build_binary_op (input_location,
9598 MINUS_EXPR,
9599 cp_convert (ssizetype, size, complain),
9600 cp_convert (ssizetype, integer_one_node,
9601 complain),
9602 complain);
9603 itype = maybe_constant_value (itype);
9606 if (!TREE_CONSTANT (itype))
9608 /* A variable sized array. */
9609 itype = variable_size (itype);
9611 stabilize_vla_size (itype);
9613 if (sanitize_flags_p (SANITIZE_VLA)
9614 && current_function_decl != NULL_TREE)
9616 /* We have to add 1 -- in the ubsan routine we generate
9617 LE_EXPR rather than LT_EXPR. */
9618 tree t = fold_build2 (PLUS_EXPR, TREE_TYPE (itype), itype,
9619 build_one_cst (TREE_TYPE (itype)));
9620 t = ubsan_instrument_vla (input_location, t);
9621 finish_expr_stmt (t);
9624 /* Make sure that there was no overflow when creating to a signed
9625 index type. (For example, on a 32-bit machine, an array with
9626 size 2^32 - 1 is too big.) */
9627 else if (TREE_CODE (itype) == INTEGER_CST
9628 && TREE_OVERFLOW (itype))
9630 if (!(complain & tf_error))
9631 return error_mark_node;
9632 error ("overflow in array dimension");
9633 TREE_OVERFLOW (itype) = 0;
9637 /* Create and return the appropriate index type. */
9638 itype = build_index_type (itype);
9640 /* If the index type were dependent, we would have returned early, so
9641 remember that it isn't. */
9642 TYPE_DEPENDENT_P (itype) = 0;
9643 TYPE_DEPENDENT_P_VALID (itype) = 1;
9644 return itype;
9647 /* Returns the scope (if any) in which the entity declared by
9648 DECLARATOR will be located. If the entity was declared with an
9649 unqualified name, NULL_TREE is returned. */
9651 tree
9652 get_scope_of_declarator (const cp_declarator *declarator)
9654 while (declarator && declarator->kind != cdk_id)
9655 declarator = declarator->declarator;
9657 /* If the declarator-id is a SCOPE_REF, the scope in which the
9658 declaration occurs is the first operand. */
9659 if (declarator
9660 && declarator->u.id.qualifying_scope)
9661 return declarator->u.id.qualifying_scope;
9663 /* Otherwise, the declarator is not a qualified name; the entity will
9664 be declared in the current scope. */
9665 return NULL_TREE;
9668 /* Returns an ARRAY_TYPE for an array with SIZE elements of the
9669 indicated TYPE. If non-NULL, NAME is the NAME of the declaration
9670 with this type. */
9672 static tree
9673 create_array_type_for_decl (tree name, tree type, tree size)
9675 tree itype = NULL_TREE;
9677 /* If things have already gone awry, bail now. */
9678 if (type == error_mark_node || size == error_mark_node)
9679 return error_mark_node;
9681 /* 8.3.4/1: If the type of the identifier of D contains the auto
9682 type-specifier, the program is ill-formed. */
9683 if (type_uses_auto (type))
9685 error ("%qD declared as array of %qT", name, type);
9686 return error_mark_node;
9689 /* If there are some types which cannot be array elements,
9690 issue an error-message and return. */
9691 switch (TREE_CODE (type))
9693 case VOID_TYPE:
9694 if (name)
9695 error ("declaration of %qD as array of void", name);
9696 else
9697 error ("creating array of void");
9698 return error_mark_node;
9700 case FUNCTION_TYPE:
9701 if (name)
9702 error ("declaration of %qD as array of functions", name);
9703 else
9704 error ("creating array of functions");
9705 return error_mark_node;
9707 case REFERENCE_TYPE:
9708 if (name)
9709 error ("declaration of %qD as array of references", name);
9710 else
9711 error ("creating array of references");
9712 return error_mark_node;
9714 case METHOD_TYPE:
9715 if (name)
9716 error ("declaration of %qD as array of function members", name);
9717 else
9718 error ("creating array of function members");
9719 return error_mark_node;
9721 default:
9722 break;
9725 /* [dcl.array]
9727 The constant expressions that specify the bounds of the arrays
9728 can be omitted only for the first member of the sequence. */
9729 if (TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type))
9731 if (name)
9732 error ("declaration of %qD as multidimensional array must "
9733 "have bounds for all dimensions except the first",
9734 name);
9735 else
9736 error ("multidimensional array must have bounds for all "
9737 "dimensions except the first");
9739 return error_mark_node;
9742 /* Figure out the index type for the array. */
9743 if (size)
9744 itype = compute_array_index_type (name, size, tf_warning_or_error);
9746 /* [dcl.array]
9747 T is called the array element type; this type shall not be [...] an
9748 abstract class type. */
9749 abstract_virtuals_error (name, type);
9751 return build_cplus_array_type (type, itype);
9754 /* Returns the smallest location != UNKNOWN_LOCATION among the
9755 three stored in LOCATIONS[ds_const], LOCATIONS[ds_volatile],
9756 and LOCATIONS[ds_restrict]. */
9758 static location_t
9759 smallest_type_quals_location (int type_quals, const location_t* locations)
9761 location_t loc = UNKNOWN_LOCATION;
9763 if (type_quals & TYPE_QUAL_CONST)
9764 loc = locations[ds_const];
9766 if ((type_quals & TYPE_QUAL_VOLATILE)
9767 && (loc == UNKNOWN_LOCATION || locations[ds_volatile] < loc))
9768 loc = locations[ds_volatile];
9770 if ((type_quals & TYPE_QUAL_RESTRICT)
9771 && (loc == UNKNOWN_LOCATION || locations[ds_restrict] < loc))
9772 loc = locations[ds_restrict];
9774 return loc;
9777 /* Check that it's OK to declare a function with the indicated TYPE
9778 and TYPE_QUALS. SFK indicates the kind of special function (if any)
9779 that this function is. OPTYPE is the type given in a conversion
9780 operator declaration, or the class type for a constructor/destructor.
9781 Returns the actual return type of the function; that may be different
9782 than TYPE if an error occurs, or for certain special functions. */
9784 static tree
9785 check_special_function_return_type (special_function_kind sfk,
9786 tree type,
9787 tree optype,
9788 int type_quals,
9789 const location_t* locations)
9791 switch (sfk)
9793 case sfk_constructor:
9794 if (type)
9795 error ("return type specification for constructor invalid");
9796 else if (type_quals != TYPE_UNQUALIFIED)
9797 error_at (smallest_type_quals_location (type_quals, locations),
9798 "qualifiers are not allowed on constructor declaration");
9800 if (targetm.cxx.cdtor_returns_this ())
9801 type = build_pointer_type (optype);
9802 else
9803 type = void_type_node;
9804 break;
9806 case sfk_destructor:
9807 if (type)
9808 error ("return type specification for destructor invalid");
9809 else if (type_quals != TYPE_UNQUALIFIED)
9810 error_at (smallest_type_quals_location (type_quals, locations),
9811 "qualifiers are not allowed on destructor declaration");
9813 /* We can't use the proper return type here because we run into
9814 problems with ambiguous bases and covariant returns. */
9815 if (targetm.cxx.cdtor_returns_this ())
9816 type = build_pointer_type (void_type_node);
9817 else
9818 type = void_type_node;
9819 break;
9821 case sfk_conversion:
9822 if (type)
9823 error ("return type specified for %<operator %T%>", optype);
9824 else if (type_quals != TYPE_UNQUALIFIED)
9825 error_at (smallest_type_quals_location (type_quals, locations),
9826 "qualifiers are not allowed on declaration of "
9827 "%<operator %T%>", optype);
9829 type = optype;
9830 break;
9832 case sfk_deduction_guide:
9833 if (type)
9834 error ("return type specified for deduction guide");
9835 else if (type_quals != TYPE_UNQUALIFIED)
9836 error_at (smallest_type_quals_location (type_quals, locations),
9837 "qualifiers are not allowed on declaration of "
9838 "deduction guide");
9839 type = make_template_placeholder (CLASSTYPE_TI_TEMPLATE (optype));
9840 for (int i = 0; i < ds_last; ++i)
9841 if (i != ds_explicit && locations[i])
9842 error_at (locations[i],
9843 "decl-specifier in declaration of deduction guide");
9844 break;
9846 default:
9847 gcc_unreachable ();
9850 return type;
9853 /* A variable or data member (whose unqualified name is IDENTIFIER)
9854 has been declared with the indicated TYPE. If the TYPE is not
9855 acceptable, issue an error message and return a type to use for
9856 error-recovery purposes. */
9858 tree
9859 check_var_type (tree identifier, tree type)
9861 if (VOID_TYPE_P (type))
9863 if (!identifier)
9864 error ("unnamed variable or field declared void");
9865 else if (identifier_p (identifier))
9867 gcc_assert (!IDENTIFIER_ANY_OP_P (identifier));
9868 error ("variable or field %qE declared void", identifier);
9870 else
9871 error ("variable or field declared void");
9872 type = error_mark_node;
9875 return type;
9878 /* Handle declaring DECL as an inline variable. */
9880 static void
9881 mark_inline_variable (tree decl)
9883 bool inlinep = true;
9884 if (! toplevel_bindings_p ())
9886 error ("%<inline%> specifier invalid for variable "
9887 "%qD declared at block scope", decl);
9888 inlinep = false;
9890 else if (cxx_dialect < cxx17)
9891 pedwarn (DECL_SOURCE_LOCATION (decl), 0,
9892 "inline variables are only available "
9893 "with -std=c++17 or -std=gnu++17");
9894 if (inlinep)
9896 retrofit_lang_decl (decl);
9897 SET_DECL_VAR_DECLARED_INLINE_P (decl);
9902 /* Assign a typedef-given name to a class or enumeration type declared
9903 as anonymous at first. This was split out of grokdeclarator
9904 because it is also used in libcc1. */
9906 void
9907 name_unnamed_type (tree type, tree decl)
9909 gcc_assert (TYPE_UNNAMED_P (type));
9911 /* Replace the anonymous name with the real name everywhere. */
9912 for (tree t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
9914 if (anon_aggrname_p (TYPE_IDENTIFIER (t)))
9915 /* We do not rename the debug info representing the
9916 unnamed tagged type because the standard says in
9917 [dcl.typedef] that the naming applies only for
9918 linkage purposes. */
9919 /*debug_hooks->set_name (t, decl);*/
9920 TYPE_NAME (t) = decl;
9923 if (TYPE_LANG_SPECIFIC (type))
9924 TYPE_WAS_UNNAMED (type) = 1;
9926 /* If this is a typedef within a template class, the nested
9927 type is a (non-primary) template. The name for the
9928 template needs updating as well. */
9929 if (TYPE_LANG_SPECIFIC (type) && CLASSTYPE_TEMPLATE_INFO (type))
9930 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type))
9931 = TYPE_IDENTIFIER (type);
9933 /* Adjust linkage now that we aren't unnamed anymore. */
9934 reset_type_linkage (type);
9936 /* FIXME remangle member functions; member functions of a
9937 type with external linkage have external linkage. */
9939 /* Check that our job is done, and that it would fail if we
9940 attempted to do it again. */
9941 gcc_assert (!TYPE_UNNAMED_P (type));
9944 /* Given declspecs and a declarator (abstract or otherwise), determine
9945 the name and type of the object declared and construct a DECL node
9946 for it.
9948 DECLSPECS points to the representation of declaration-specifier
9949 sequence that precedes declarator.
9951 DECL_CONTEXT says which syntactic context this declaration is in:
9952 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
9953 FUNCDEF for a function definition. Like NORMAL but a few different
9954 error messages in each case. Return value may be zero meaning
9955 this definition is too screwy to try to parse.
9956 MEMFUNCDEF for a function definition. Like FUNCDEF but prepares to
9957 handle member functions (which have FIELD context).
9958 Return value may be zero meaning this definition is too screwy to
9959 try to parse.
9960 PARM for a parameter declaration (either within a function prototype
9961 or before a function body). Make a PARM_DECL, or return void_type_node.
9962 TPARM for a template parameter declaration.
9963 CATCHPARM for a parameter declaration before a catch clause.
9964 TYPENAME if for a typename (in a cast or sizeof).
9965 Don't make a DECL node; just return the ..._TYPE node.
9966 FIELD for a struct or union field; make a FIELD_DECL.
9967 BITFIELD for a field with specified width.
9969 INITIALIZED is as for start_decl.
9971 ATTRLIST is a pointer to the list of attributes, which may be NULL
9972 if there are none; *ATTRLIST may be modified if attributes from inside
9973 the declarator should be applied to the declaration.
9975 When this function is called, scoping variables (such as
9976 CURRENT_CLASS_TYPE) should reflect the scope in which the
9977 declaration occurs, not the scope in which the new declaration will
9978 be placed. For example, on:
9980 void S::f() { ... }
9982 when grokdeclarator is called for `S::f', the CURRENT_CLASS_TYPE
9983 should not be `S'.
9985 Returns a DECL (if a declarator is present), a TYPE (if there is no
9986 declarator, in cases like "struct S;"), or the ERROR_MARK_NODE if an
9987 error occurs. */
9989 tree
9990 grokdeclarator (const cp_declarator *declarator,
9991 cp_decl_specifier_seq *declspecs,
9992 enum decl_context decl_context,
9993 int initialized,
9994 tree* attrlist)
9996 tree type = NULL_TREE;
9997 int longlong = 0;
9998 int explicit_intN = 0;
9999 int virtualp, explicitp, friendp, inlinep, staticp;
10000 int explicit_int = 0;
10001 int explicit_char = 0;
10002 int defaulted_int = 0;
10004 tree typedef_decl = NULL_TREE;
10005 const char *name = NULL;
10006 tree typedef_type = NULL_TREE;
10007 /* True if this declarator is a function definition. */
10008 bool funcdef_flag = false;
10009 cp_declarator_kind innermost_code = cdk_error;
10010 int bitfield = 0;
10011 #if 0
10012 /* See the code below that used this. */
10013 tree decl_attr = NULL_TREE;
10014 #endif
10016 /* Keep track of what sort of function is being processed
10017 so that we can warn about default return values, or explicit
10018 return values which do not match prescribed defaults. */
10019 special_function_kind sfk = sfk_none;
10021 tree dname = NULL_TREE;
10022 tree ctor_return_type = NULL_TREE;
10023 enum overload_flags flags = NO_SPECIAL;
10024 /* cv-qualifiers that apply to the declarator, for a declaration of
10025 a member function. */
10026 cp_cv_quals memfn_quals = TYPE_UNQUALIFIED;
10027 /* virt-specifiers that apply to the declarator, for a declaration of
10028 a member function. */
10029 cp_virt_specifiers virt_specifiers = VIRT_SPEC_UNSPECIFIED;
10030 /* ref-qualifier that applies to the declarator, for a declaration of
10031 a member function. */
10032 cp_ref_qualifier rqual = REF_QUAL_NONE;
10033 /* cv-qualifiers that apply to the type specified by the DECLSPECS. */
10034 int type_quals = TYPE_UNQUALIFIED;
10035 tree raises = NULL_TREE;
10036 int template_count = 0;
10037 tree returned_attrs = NULL_TREE;
10038 tree parms = NULL_TREE;
10039 const cp_declarator *id_declarator;
10040 /* The unqualified name of the declarator; either an
10041 IDENTIFIER_NODE, BIT_NOT_EXPR, or TEMPLATE_ID_EXPR. */
10042 tree unqualified_id;
10043 /* The class type, if any, in which this entity is located,
10044 or NULL_TREE if none. Note that this value may be different from
10045 the current class type; for example if an attempt is made to declare
10046 "A::f" inside "B", this value will be "A". */
10047 tree ctype = current_class_type;
10048 /* The NAMESPACE_DECL for the namespace in which this entity is
10049 located. If an unqualified name is used to declare the entity,
10050 this value will be NULL_TREE, even if the entity is located at
10051 namespace scope. */
10052 tree in_namespace = NULL_TREE;
10053 cp_storage_class storage_class;
10054 bool unsigned_p, signed_p, short_p, long_p, thread_p;
10055 bool type_was_error_mark_node = false;
10056 bool parameter_pack_p = declarator ? declarator->parameter_pack_p : false;
10057 bool template_type_arg = false;
10058 bool template_parm_flag = false;
10059 bool typedef_p = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
10060 bool constexpr_p = decl_spec_seq_has_spec_p (declspecs, ds_constexpr);
10061 bool late_return_type_p = false;
10062 bool array_parameter_p = false;
10063 source_location saved_loc = input_location;
10064 tree reqs = NULL_TREE;
10066 signed_p = decl_spec_seq_has_spec_p (declspecs, ds_signed);
10067 unsigned_p = decl_spec_seq_has_spec_p (declspecs, ds_unsigned);
10068 short_p = decl_spec_seq_has_spec_p (declspecs, ds_short);
10069 long_p = decl_spec_seq_has_spec_p (declspecs, ds_long);
10070 longlong = decl_spec_seq_has_spec_p (declspecs, ds_long_long);
10071 explicit_intN = declspecs->explicit_intN_p;
10072 thread_p = decl_spec_seq_has_spec_p (declspecs, ds_thread);
10074 // Was concept_p specified? Note that ds_concept
10075 // implies ds_constexpr!
10076 bool concept_p = decl_spec_seq_has_spec_p (declspecs, ds_concept);
10077 if (concept_p)
10078 constexpr_p = true;
10080 if (decl_spec_seq_has_spec_p (declspecs, ds_const))
10081 type_quals |= TYPE_QUAL_CONST;
10082 if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
10083 type_quals |= TYPE_QUAL_VOLATILE;
10084 if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
10085 type_quals |= TYPE_QUAL_RESTRICT;
10087 if (decl_context == FUNCDEF)
10088 funcdef_flag = true, decl_context = NORMAL;
10089 else if (decl_context == MEMFUNCDEF)
10090 funcdef_flag = true, decl_context = FIELD;
10091 else if (decl_context == BITFIELD)
10092 bitfield = 1, decl_context = FIELD;
10093 else if (decl_context == TEMPLATE_TYPE_ARG)
10094 template_type_arg = true, decl_context = TYPENAME;
10095 else if (decl_context == TPARM)
10096 template_parm_flag = true, decl_context = PARM;
10098 if (initialized > 1)
10099 funcdef_flag = true;
10101 location_t typespec_loc = smallest_type_quals_location (type_quals,
10102 declspecs->locations);
10103 if (typespec_loc == UNKNOWN_LOCATION)
10104 typespec_loc = declspecs->locations[ds_type_spec];
10105 if (typespec_loc == UNKNOWN_LOCATION)
10106 typespec_loc = input_location;
10108 /* Look inside a declarator for the name being declared
10109 and get it as a string, for an error message. */
10110 for (id_declarator = declarator;
10111 id_declarator;
10112 id_declarator = id_declarator->declarator)
10114 if (id_declarator->kind != cdk_id)
10115 innermost_code = id_declarator->kind;
10117 switch (id_declarator->kind)
10119 case cdk_function:
10120 if (id_declarator->declarator
10121 && id_declarator->declarator->kind == cdk_id)
10123 sfk = id_declarator->declarator->u.id.sfk;
10124 if (sfk == sfk_destructor)
10125 flags = DTOR_FLAG;
10127 break;
10129 case cdk_id:
10131 tree qualifying_scope = id_declarator->u.id.qualifying_scope;
10132 tree decl = id_declarator->u.id.unqualified_name;
10133 if (!decl)
10134 break;
10135 if (qualifying_scope)
10137 if (at_function_scope_p ())
10139 /* [dcl.meaning]
10141 A declarator-id shall not be qualified except
10142 for ...
10144 None of the cases are permitted in block
10145 scope. */
10146 if (qualifying_scope == global_namespace)
10147 error ("invalid use of qualified-name %<::%D%>",
10148 decl);
10149 else if (TYPE_P (qualifying_scope))
10150 error ("invalid use of qualified-name %<%T::%D%>",
10151 qualifying_scope, decl);
10152 else
10153 error ("invalid use of qualified-name %<%D::%D%>",
10154 qualifying_scope, decl);
10155 return error_mark_node;
10157 else if (TYPE_P (qualifying_scope))
10159 ctype = qualifying_scope;
10160 if (!MAYBE_CLASS_TYPE_P (ctype))
10162 error ("%q#T is not a class or a namespace", ctype);
10163 ctype = NULL_TREE;
10165 else if (innermost_code != cdk_function
10166 && current_class_type
10167 && !uniquely_derived_from_p (ctype,
10168 current_class_type))
10170 error ("invalid use of qualified-name %<%T::%D%>",
10171 qualifying_scope, decl);
10172 return error_mark_node;
10175 else if (TREE_CODE (qualifying_scope) == NAMESPACE_DECL)
10176 in_namespace = qualifying_scope;
10178 switch (TREE_CODE (decl))
10180 case BIT_NOT_EXPR:
10182 if (innermost_code != cdk_function)
10184 error ("declaration of %qD as non-function", decl);
10185 return error_mark_node;
10187 else if (!qualifying_scope
10188 && !(current_class_type && at_class_scope_p ()))
10190 error ("declaration of %qD as non-member", decl);
10191 return error_mark_node;
10194 tree type = TREE_OPERAND (decl, 0);
10195 if (TYPE_P (type))
10196 type = constructor_name (type);
10197 name = identifier_to_locale (IDENTIFIER_POINTER (type));
10198 dname = decl;
10200 break;
10202 case TEMPLATE_ID_EXPR:
10204 tree fns = TREE_OPERAND (decl, 0);
10206 dname = fns;
10207 if (!identifier_p (dname))
10208 dname = OVL_NAME (dname);
10210 /* Fall through. */
10212 case IDENTIFIER_NODE:
10213 if (identifier_p (decl))
10214 dname = decl;
10216 if (IDENTIFIER_KEYWORD_P (dname))
10218 error ("declarator-id missing; using reserved word %qD",
10219 dname);
10220 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
10222 else if (!IDENTIFIER_CONV_OP_P (dname))
10223 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
10224 else
10226 gcc_assert (flags == NO_SPECIAL);
10227 flags = TYPENAME_FLAG;
10228 sfk = sfk_conversion;
10229 tree glob = get_global_binding (dname);
10230 if (glob && TREE_CODE (glob) == TYPE_DECL)
10231 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
10232 else
10233 name = "<invalid operator>";
10235 break;
10237 default:
10238 gcc_unreachable ();
10240 break;
10243 case cdk_array:
10244 case cdk_pointer:
10245 case cdk_reference:
10246 case cdk_ptrmem:
10247 break;
10249 case cdk_decomp:
10250 name = "structured binding";
10251 break;
10253 case cdk_error:
10254 return error_mark_node;
10256 default:
10257 gcc_unreachable ();
10259 if (id_declarator->kind == cdk_id)
10260 break;
10263 /* [dcl.fct.edf]
10265 The declarator in a function-definition shall have the form
10266 D1 ( parameter-declaration-clause) ... */
10267 if (funcdef_flag && innermost_code != cdk_function)
10269 error ("function definition does not declare parameters");
10270 return error_mark_node;
10273 if (flags == TYPENAME_FLAG
10274 && innermost_code != cdk_function
10275 && ! (ctype && !declspecs->any_specifiers_p))
10277 error ("declaration of %qD as non-function", dname);
10278 return error_mark_node;
10281 if (dname && identifier_p (dname))
10283 if (UDLIT_OPER_P (dname)
10284 && innermost_code != cdk_function)
10286 error ("declaration of %qD as non-function", dname);
10287 return error_mark_node;
10290 if (IDENTIFIER_ANY_OP_P (dname))
10292 if (typedef_p)
10294 error ("declaration of %qD as %<typedef%>", dname);
10295 return error_mark_node;
10297 else if (decl_context == PARM || decl_context == CATCHPARM)
10299 error ("declaration of %qD as parameter", dname);
10300 return error_mark_node;
10305 /* Anything declared one level down from the top level
10306 must be one of the parameters of a function
10307 (because the body is at least two levels down). */
10309 /* This heuristic cannot be applied to C++ nodes! Fixed, however,
10310 by not allowing C++ class definitions to specify their parameters
10311 with xdecls (must be spec.d in the parmlist).
10313 Since we now wait to push a class scope until we are sure that
10314 we are in a legitimate method context, we must set oldcname
10315 explicitly (since current_class_name is not yet alive).
10317 We also want to avoid calling this a PARM if it is in a namespace. */
10319 if (decl_context == NORMAL && !toplevel_bindings_p ())
10321 cp_binding_level *b = current_binding_level;
10322 current_binding_level = b->level_chain;
10323 if (current_binding_level != 0 && toplevel_bindings_p ())
10324 decl_context = PARM;
10325 current_binding_level = b;
10328 if (name == NULL)
10329 name = decl_context == PARM ? "parameter" : "type name";
10331 if (concept_p && typedef_p)
10333 error ("%<concept%> cannot appear in a typedef declaration");
10334 return error_mark_node;
10337 if (constexpr_p && typedef_p)
10339 error ("%<constexpr%> cannot appear in a typedef declaration");
10340 return error_mark_node;
10343 /* If there were multiple types specified in the decl-specifier-seq,
10344 issue an error message. */
10345 if (declspecs->multiple_types_p)
10347 error ("two or more data types in declaration of %qs", name);
10348 return error_mark_node;
10351 if (declspecs->conflicting_specifiers_p)
10353 error ("conflicting specifiers in declaration of %qs", name);
10354 return error_mark_node;
10357 /* Extract the basic type from the decl-specifier-seq. */
10358 type = declspecs->type;
10359 if (type == error_mark_node)
10361 type = NULL_TREE;
10362 type_was_error_mark_node = true;
10364 /* If the entire declaration is itself tagged as deprecated then
10365 suppress reports of deprecated items. */
10366 if (type && TREE_DEPRECATED (type)
10367 && deprecated_state != DEPRECATED_SUPPRESS)
10368 warn_deprecated_use (type, NULL_TREE);
10369 if (type && TREE_CODE (type) == TYPE_DECL)
10371 typedef_decl = type;
10372 type = TREE_TYPE (typedef_decl);
10373 if (TREE_DEPRECATED (type)
10374 && DECL_ARTIFICIAL (typedef_decl)
10375 && deprecated_state != DEPRECATED_SUPPRESS)
10376 warn_deprecated_use (type, NULL_TREE);
10378 /* No type at all: default to `int', and set DEFAULTED_INT
10379 because it was not a user-defined typedef. */
10380 if (type == NULL_TREE)
10382 if (signed_p || unsigned_p || long_p || short_p)
10384 /* These imply 'int'. */
10385 type = integer_type_node;
10386 defaulted_int = 1;
10388 /* If we just have "complex", it is equivalent to "complex double". */
10389 else if (!longlong && !explicit_intN
10390 && decl_spec_seq_has_spec_p (declspecs, ds_complex))
10392 type = double_type_node;
10393 pedwarn (declspecs->locations[ds_complex], OPT_Wpedantic,
10394 "ISO C++ does not support plain %<complex%> meaning "
10395 "%<double complex%>");
10398 /* Gather flags. */
10399 explicit_int = declspecs->explicit_int_p;
10400 explicit_char = declspecs->explicit_char_p;
10402 #if 0
10403 /* See the code below that used this. */
10404 if (typedef_decl)
10405 decl_attr = DECL_ATTRIBUTES (typedef_decl);
10406 #endif
10407 typedef_type = type;
10409 if (sfk == sfk_conversion || sfk == sfk_deduction_guide)
10410 ctor_return_type = TREE_TYPE (dname);
10411 else
10412 ctor_return_type = ctype;
10414 if (sfk != sfk_none)
10416 type = check_special_function_return_type (sfk, type,
10417 ctor_return_type,
10418 type_quals,
10419 declspecs->locations);
10420 type_quals = TYPE_UNQUALIFIED;
10422 else if (type == NULL_TREE)
10424 int is_main;
10426 explicit_int = -1;
10428 /* We handle `main' specially here, because 'main () { }' is so
10429 common. With no options, it is allowed. With -Wreturn-type,
10430 it is a warning. It is only an error with -pedantic-errors. */
10431 is_main = (funcdef_flag
10432 && dname && identifier_p (dname)
10433 && MAIN_NAME_P (dname)
10434 && ctype == NULL_TREE
10435 && in_namespace == NULL_TREE
10436 && current_namespace == global_namespace);
10438 if (type_was_error_mark_node)
10439 /* We've already issued an error, don't complain more. */;
10440 else if (in_system_header_at (input_location) || flag_ms_extensions)
10441 /* Allow it, sigh. */;
10442 else if (! is_main)
10443 permerror (input_location, "ISO C++ forbids declaration of %qs with no type", name);
10444 else if (pedantic)
10445 pedwarn (input_location, OPT_Wpedantic,
10446 "ISO C++ forbids declaration of %qs with no type", name);
10447 else
10448 warning (OPT_Wreturn_type,
10449 "ISO C++ forbids declaration of %qs with no type", name);
10451 if (type_was_error_mark_node && template_parm_flag)
10452 /* FIXME we should be able to propagate the error_mark_node as is
10453 for other contexts too. */
10454 type = error_mark_node;
10455 else
10456 type = integer_type_node;
10459 ctype = NULL_TREE;
10461 if (explicit_intN)
10463 if (! int_n_enabled_p[declspecs->int_n_idx])
10465 error ("%<__int%d%> is not supported by this target",
10466 int_n_data[declspecs->int_n_idx].bitsize);
10467 explicit_intN = false;
10469 else if (pedantic && ! in_system_header_at (input_location))
10470 pedwarn (input_location, OPT_Wpedantic,
10471 "ISO C++ does not support %<__int%d%> for %qs",
10472 int_n_data[declspecs->int_n_idx].bitsize, name);
10475 /* Now process the modifiers that were specified
10476 and check for invalid combinations. */
10478 /* Long double is a special combination. */
10479 if (long_p && !longlong && TYPE_MAIN_VARIANT (type) == double_type_node)
10481 long_p = false;
10482 type = cp_build_qualified_type (long_double_type_node,
10483 cp_type_quals (type));
10486 /* Check all other uses of type modifiers. */
10488 if (unsigned_p || signed_p || long_p || short_p)
10490 int ok = 0;
10492 if ((signed_p || unsigned_p) && TREE_CODE (type) != INTEGER_TYPE)
10493 error ("%<signed%> or %<unsigned%> invalid for %qs", name);
10494 else if (signed_p && unsigned_p)
10495 error ("%<signed%> and %<unsigned%> specified together for %qs", name);
10496 else if (longlong && TREE_CODE (type) != INTEGER_TYPE)
10497 error ("%<long long%> invalid for %qs", name);
10498 else if (long_p && TREE_CODE (type) == REAL_TYPE)
10499 error ("%<long%> invalid for %qs", name);
10500 else if (short_p && TREE_CODE (type) == REAL_TYPE)
10501 error ("%<short%> invalid for %qs", name);
10502 else if ((long_p || short_p) && TREE_CODE (type) != INTEGER_TYPE)
10503 error ("%<long%> or %<short%> invalid for %qs", name);
10504 else if ((long_p || short_p || explicit_char || explicit_int) && explicit_intN)
10505 error ("%<long%>, %<int%>, %<short%>, or %<char%> invalid for %qs", name);
10506 else if ((long_p || short_p) && explicit_char)
10507 error ("%<long%> or %<short%> specified with char for %qs", name);
10508 else if (long_p && short_p)
10509 error ("%<long%> and %<short%> specified together for %qs", name);
10510 else if (type == char16_type_node || type == char32_type_node)
10512 if (signed_p || unsigned_p)
10513 error ("%<signed%> or %<unsigned%> invalid for %qs", name);
10514 else if (short_p || long_p)
10515 error ("%<short%> or %<long%> invalid for %qs", name);
10517 else
10519 ok = 1;
10520 if (!explicit_int && !defaulted_int && !explicit_char && !explicit_intN && pedantic)
10522 pedwarn (input_location, OPT_Wpedantic,
10523 "long, short, signed or unsigned used invalidly for %qs",
10524 name);
10525 if (flag_pedantic_errors)
10526 ok = 0;
10530 /* Discard the type modifiers if they are invalid. */
10531 if (! ok)
10533 unsigned_p = false;
10534 signed_p = false;
10535 long_p = false;
10536 short_p = false;
10537 longlong = 0;
10541 /* Decide whether an integer type is signed or not.
10542 Optionally treat bitfields as signed by default. */
10543 if (unsigned_p
10544 /* [class.bit]
10546 It is implementation-defined whether a plain (neither
10547 explicitly signed or unsigned) char, short, int, or long
10548 bit-field is signed or unsigned.
10550 Naturally, we extend this to long long as well. Note that
10551 this does not include wchar_t. */
10552 || (bitfield && !flag_signed_bitfields
10553 && !signed_p
10554 /* A typedef for plain `int' without `signed' can be
10555 controlled just like plain `int', but a typedef for
10556 `signed int' cannot be so controlled. */
10557 && !(typedef_decl
10558 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl))
10559 && TREE_CODE (type) == INTEGER_TYPE
10560 && !same_type_p (TYPE_MAIN_VARIANT (type), wchar_type_node)))
10562 if (explicit_intN)
10563 type = int_n_trees[declspecs->int_n_idx].unsigned_type;
10564 else if (longlong)
10565 type = long_long_unsigned_type_node;
10566 else if (long_p)
10567 type = long_unsigned_type_node;
10568 else if (short_p)
10569 type = short_unsigned_type_node;
10570 else if (type == char_type_node)
10571 type = unsigned_char_type_node;
10572 else if (typedef_decl)
10573 type = unsigned_type_for (type);
10574 else
10575 type = unsigned_type_node;
10577 else if (signed_p && type == char_type_node)
10578 type = signed_char_type_node;
10579 else if (explicit_intN)
10580 type = int_n_trees[declspecs->int_n_idx].signed_type;
10581 else if (longlong)
10582 type = long_long_integer_type_node;
10583 else if (long_p)
10584 type = long_integer_type_node;
10585 else if (short_p)
10586 type = short_integer_type_node;
10588 if (decl_spec_seq_has_spec_p (declspecs, ds_complex))
10590 if (TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
10591 error ("complex invalid for %qs", name);
10592 /* If a modifier is specified, the resulting complex is the complex
10593 form of TYPE. E.g, "complex short" is "complex short int". */
10594 else if (type == integer_type_node)
10595 type = complex_integer_type_node;
10596 else if (type == float_type_node)
10597 type = complex_float_type_node;
10598 else if (type == double_type_node)
10599 type = complex_double_type_node;
10600 else if (type == long_double_type_node)
10601 type = complex_long_double_type_node;
10602 else
10603 type = build_complex_type (type);
10606 /* If we're using the injected-class-name to form a compound type or a
10607 declaration, replace it with the underlying class so we don't get
10608 redundant typedefs in the debug output. But if we are returning the
10609 type unchanged, leave it alone so that it's available to
10610 maybe_get_template_decl_from_type_decl. */
10611 if (CLASS_TYPE_P (type)
10612 && DECL_SELF_REFERENCE_P (TYPE_NAME (type))
10613 && type == TREE_TYPE (TYPE_NAME (type))
10614 && (declarator || type_quals))
10615 type = DECL_ORIGINAL_TYPE (TYPE_NAME (type));
10617 type_quals |= cp_type_quals (type);
10618 type = cp_build_qualified_type_real
10619 (type, type_quals, ((((typedef_decl && !DECL_ARTIFICIAL (typedef_decl))
10620 || declspecs->decltype_p)
10621 ? tf_ignore_bad_quals : 0) | tf_warning_or_error));
10622 /* We might have ignored or rejected some of the qualifiers. */
10623 type_quals = cp_type_quals (type);
10625 if (cxx_dialect >= cxx17 && type && is_auto (type)
10626 && innermost_code != cdk_function
10627 && id_declarator && declarator != id_declarator)
10628 if (tree tmpl = CLASS_PLACEHOLDER_TEMPLATE (type))
10630 error_at (typespec_loc, "template placeholder type %qT must be followed "
10631 "by a simple declarator-id", type);
10632 inform (DECL_SOURCE_LOCATION (tmpl), "%qD declared here", tmpl);
10635 staticp = 0;
10636 inlinep = decl_spec_seq_has_spec_p (declspecs, ds_inline);
10637 virtualp = decl_spec_seq_has_spec_p (declspecs, ds_virtual);
10638 explicitp = decl_spec_seq_has_spec_p (declspecs, ds_explicit);
10640 storage_class = declspecs->storage_class;
10641 if (storage_class == sc_static)
10642 staticp = 1 + (decl_context == FIELD);
10644 if (virtualp)
10646 if (staticp == 2)
10648 error ("member %qD cannot be declared both %<virtual%> "
10649 "and %<static%>", dname);
10650 storage_class = sc_none;
10651 staticp = 0;
10653 if (constexpr_p)
10654 error ("member %qD cannot be declared both %<virtual%> "
10655 "and %<constexpr%>", dname);
10657 friendp = decl_spec_seq_has_spec_p (declspecs, ds_friend);
10659 /* Issue errors about use of storage classes for parameters. */
10660 if (decl_context == PARM)
10662 if (typedef_p)
10664 error ("typedef declaration invalid in parameter declaration");
10665 return error_mark_node;
10667 else if (template_parm_flag && storage_class != sc_none)
10669 error ("storage class specified for template parameter %qs", name);
10670 return error_mark_node;
10672 else if (storage_class == sc_static
10673 || storage_class == sc_extern
10674 || thread_p)
10675 error ("storage class specifiers invalid in parameter declarations");
10677 /* Function parameters cannot be concept. */
10678 if (concept_p)
10679 error ("a parameter cannot be declared %<concept%>");
10680 /* Function parameters cannot be constexpr. If we saw one, moan
10681 and pretend it wasn't there. */
10682 else if (constexpr_p)
10684 error ("a parameter cannot be declared %<constexpr%>");
10685 constexpr_p = 0;
10689 /* Give error if `virtual' is used outside of class declaration. */
10690 if (virtualp
10691 && (current_class_name == NULL_TREE || decl_context != FIELD))
10693 error_at (declspecs->locations[ds_virtual],
10694 "%<virtual%> outside class declaration");
10695 virtualp = 0;
10698 if (innermost_code == cdk_decomp)
10700 location_t loc = (declarator->kind == cdk_reference
10701 ? declarator->declarator->id_loc : declarator->id_loc);
10702 if (inlinep)
10703 error_at (declspecs->locations[ds_inline],
10704 "structured binding declaration cannot be %<inline%>");
10705 if (typedef_p)
10706 error_at (declspecs->locations[ds_typedef],
10707 "structured binding declaration cannot be %<typedef%>");
10708 if (constexpr_p)
10709 error_at (declspecs->locations[ds_constexpr], "structured "
10710 "binding declaration cannot be %<constexpr%>");
10711 if (thread_p)
10712 error_at (declspecs->locations[ds_thread],
10713 "structured binding declaration cannot be %qs",
10714 declspecs->gnu_thread_keyword_p
10715 ? "__thread" : "thread_local");
10716 if (concept_p)
10717 error_at (declspecs->locations[ds_concept],
10718 "structured binding declaration cannot be %<concept%>");
10719 switch (storage_class)
10721 case sc_none:
10722 break;
10723 case sc_register:
10724 error_at (loc, "structured binding declaration cannot be "
10725 "%<register%>");
10726 break;
10727 case sc_static:
10728 error_at (loc, "structured binding declaration cannot be "
10729 "%<static%>");
10730 break;
10731 case sc_extern:
10732 error_at (loc, "structured binding declaration cannot be "
10733 "%<extern%>");
10734 break;
10735 case sc_mutable:
10736 error_at (loc, "structured binding declaration cannot be "
10737 "%<mutable%>");
10738 break;
10739 case sc_auto:
10740 error_at (loc, "structured binding declaration cannot be "
10741 "C++98 %<auto%>");
10742 break;
10743 default:
10744 gcc_unreachable ();
10746 if (TREE_CODE (type) != TEMPLATE_TYPE_PARM
10747 || TYPE_IDENTIFIER (type) != auto_identifier)
10749 if (type != error_mark_node)
10751 error_at (loc, "structured binding declaration cannot have "
10752 "type %qT", type);
10753 inform (loc,
10754 "type must be cv-qualified %<auto%> or reference to "
10755 "cv-qualified %<auto%>");
10757 type = build_qualified_type (make_auto (), type_quals);
10758 declspecs->type = type;
10760 inlinep = 0;
10761 typedef_p = 0;
10762 constexpr_p = 0;
10763 thread_p = 0;
10764 concept_p = 0;
10765 storage_class = sc_none;
10766 staticp = 0;
10767 declspecs->storage_class = sc_none;
10768 declspecs->locations[ds_thread] = UNKNOWN_LOCATION;
10771 /* Static anonymous unions are dealt with here. */
10772 if (staticp && decl_context == TYPENAME
10773 && declspecs->type
10774 && ANON_AGGR_TYPE_P (declspecs->type))
10775 decl_context = FIELD;
10777 /* Warn about storage classes that are invalid for certain
10778 kinds of declarations (parameters, typenames, etc.). */
10779 if (thread_p
10780 && ((storage_class
10781 && storage_class != sc_extern
10782 && storage_class != sc_static)
10783 || typedef_p))
10785 error ("multiple storage classes in declaration of %qs", name);
10786 thread_p = false;
10788 if (decl_context != NORMAL
10789 && ((storage_class != sc_none
10790 && storage_class != sc_mutable)
10791 || thread_p))
10793 if ((decl_context == PARM || decl_context == CATCHPARM)
10794 && (storage_class == sc_register
10795 || storage_class == sc_auto))
10797 else if (typedef_p)
10799 else if (decl_context == FIELD
10800 /* C++ allows static class elements. */
10801 && storage_class == sc_static)
10802 /* C++ also allows inlines and signed and unsigned elements,
10803 but in those cases we don't come in here. */
10805 else
10807 if (decl_context == FIELD)
10808 error ("storage class specified for %qs", name);
10809 else
10811 if (decl_context == PARM || decl_context == CATCHPARM)
10812 error ("storage class specified for parameter %qs", name);
10813 else
10814 error ("storage class specified for typename");
10816 if (storage_class == sc_register
10817 || storage_class == sc_auto
10818 || storage_class == sc_extern
10819 || thread_p)
10820 storage_class = sc_none;
10823 else if (storage_class == sc_extern && funcdef_flag
10824 && ! toplevel_bindings_p ())
10825 error ("nested function %qs declared %<extern%>", name);
10826 else if (toplevel_bindings_p ())
10828 if (storage_class == sc_auto)
10829 error ("top-level declaration of %qs specifies %<auto%>", name);
10831 else if (thread_p
10832 && storage_class != sc_extern
10833 && storage_class != sc_static)
10835 if (declspecs->gnu_thread_keyword_p)
10836 pedwarn (input_location, 0, "function-scope %qs implicitly auto and "
10837 "declared %<__thread%>", name);
10839 /* When thread_local is applied to a variable of block scope the
10840 storage-class-specifier static is implied if it does not appear
10841 explicitly. */
10842 storage_class = declspecs->storage_class = sc_static;
10843 staticp = 1;
10846 if (storage_class && friendp)
10848 error ("storage class specifiers invalid in friend function declarations");
10849 storage_class = sc_none;
10850 staticp = 0;
10853 if (!id_declarator)
10854 unqualified_id = NULL_TREE;
10855 else
10857 unqualified_id = id_declarator->u.id.unqualified_name;
10858 switch (TREE_CODE (unqualified_id))
10860 case BIT_NOT_EXPR:
10861 unqualified_id = TREE_OPERAND (unqualified_id, 0);
10862 if (TYPE_P (unqualified_id))
10863 unqualified_id = constructor_name (unqualified_id);
10864 break;
10866 case IDENTIFIER_NODE:
10867 case TEMPLATE_ID_EXPR:
10868 break;
10870 default:
10871 gcc_unreachable ();
10875 if (declspecs->std_attributes)
10877 /* Apply the c++11 attributes to the type preceding them. */
10878 input_location = declspecs->locations[ds_std_attribute];
10879 decl_attributes (&type, declspecs->std_attributes, 0);
10880 input_location = saved_loc;
10883 /* Determine the type of the entity declared by recurring on the
10884 declarator. */
10885 for (; declarator; declarator = declarator->declarator)
10887 const cp_declarator *inner_declarator;
10888 tree attrs;
10890 if (type == error_mark_node)
10891 return error_mark_node;
10893 attrs = declarator->attributes;
10894 if (attrs)
10896 int attr_flags;
10898 attr_flags = 0;
10899 if (declarator == NULL || declarator->kind == cdk_id)
10900 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
10901 if (declarator->kind == cdk_function)
10902 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
10903 if (declarator->kind == cdk_array)
10904 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
10905 returned_attrs = decl_attributes (&type,
10906 chainon (returned_attrs, attrs),
10907 attr_flags);
10910 inner_declarator = declarator->declarator;
10912 /* We don't want to warn in parameter context because we don't
10913 yet know if the parse will succeed, and this might turn out
10914 to be a constructor call. */
10915 if (decl_context != PARM
10916 && decl_context != TYPENAME
10917 && !typedef_p
10918 && declarator->parenthesized != UNKNOWN_LOCATION
10919 /* If the type is class-like and the inner name used a
10920 global namespace qualifier, we need the parens.
10921 Unfortunately all we can tell is whether a qualified name
10922 was used or not. */
10923 && !(inner_declarator
10924 && inner_declarator->kind == cdk_id
10925 && inner_declarator->u.id.qualifying_scope
10926 && (MAYBE_CLASS_TYPE_P (type)
10927 || TREE_CODE (type) == ENUMERAL_TYPE)))
10928 warning_at (declarator->parenthesized, OPT_Wparentheses,
10929 "unnecessary parentheses in declaration of %qs", name);
10930 if (declarator->kind == cdk_id || declarator->kind == cdk_decomp)
10931 break;
10933 switch (declarator->kind)
10935 case cdk_array:
10936 type = create_array_type_for_decl (dname, type,
10937 declarator->u.array.bounds);
10938 if (!valid_array_size_p (input_location, type, dname))
10939 type = error_mark_node;
10941 if (declarator->std_attributes)
10942 /* [dcl.array]/1:
10944 The optional attribute-specifier-seq appertains to the
10945 array. */
10946 returned_attrs = chainon (returned_attrs,
10947 declarator->std_attributes);
10948 break;
10950 case cdk_function:
10952 tree arg_types;
10953 int funcdecl_p;
10955 /* Declaring a function type. */
10957 input_location = declspecs->locations[ds_type_spec];
10958 abstract_virtuals_error (ACU_RETURN, type);
10959 input_location = saved_loc;
10961 /* Pick up type qualifiers which should be applied to `this'. */
10962 memfn_quals = declarator->u.function.qualifiers;
10963 /* Pick up virt-specifiers. */
10964 virt_specifiers = declarator->u.function.virt_specifiers;
10965 /* And ref-qualifier, too */
10966 rqual = declarator->u.function.ref_qualifier;
10967 /* And tx-qualifier. */
10968 tree tx_qual = declarator->u.function.tx_qualifier;
10969 /* Pick up the exception specifications. */
10970 raises = declarator->u.function.exception_specification;
10971 /* If the exception-specification is ill-formed, let's pretend
10972 there wasn't one. */
10973 if (raises == error_mark_node)
10974 raises = NULL_TREE;
10976 if (reqs)
10977 error_at (location_of (reqs), "requires-clause on return type");
10978 reqs = declarator->u.function.requires_clause;
10980 /* Say it's a definition only for the CALL_EXPR
10981 closest to the identifier. */
10982 funcdecl_p = inner_declarator && inner_declarator->kind == cdk_id;
10984 /* Handle a late-specified return type. */
10985 tree late_return_type = declarator->u.function.late_return_type;
10986 if (funcdecl_p)
10988 if (tree auto_node = type_uses_auto (type))
10990 if (!late_return_type)
10992 if (current_class_type
10993 && LAMBDA_TYPE_P (current_class_type))
10994 /* OK for C++11 lambdas. */;
10995 else if (cxx_dialect < cxx14)
10997 error ("%qs function uses "
10998 "%<auto%> type specifier without trailing "
10999 "return type", name);
11000 inform (input_location, "deduced return type "
11001 "only available with -std=c++14 or "
11002 "-std=gnu++14");
11004 else if (virtualp)
11006 error ("virtual function cannot "
11007 "have deduced return type");
11008 virtualp = false;
11011 else if (!is_auto (type) && sfk != sfk_conversion)
11013 error ("%qs function with trailing return type has"
11014 " %qT as its type rather than plain %<auto%>",
11015 name, type);
11016 return error_mark_node;
11018 if (tree tmpl = CLASS_PLACEHOLDER_TEMPLATE (auto_node))
11020 if (!late_return_type)
11022 if (dguide_name_p (unqualified_id))
11023 error_at (declarator->id_loc, "deduction guide "
11024 "for %qT must have trailing return "
11025 "type", TREE_TYPE (tmpl));
11026 else
11027 error_at (declarator->id_loc, "deduced class "
11028 "type %qT in function return type",
11029 type);
11030 inform (DECL_SOURCE_LOCATION (tmpl),
11031 "%qD declared here", tmpl);
11033 else if (CLASS_TYPE_P (late_return_type)
11034 && CLASSTYPE_TEMPLATE_INFO (late_return_type)
11035 && (CLASSTYPE_TI_TEMPLATE (late_return_type)
11036 == tmpl))
11037 /* OK */;
11038 else
11039 error ("trailing return type %qT of deduction guide "
11040 "is not a specialization of %qT",
11041 late_return_type, TREE_TYPE (tmpl));
11044 else if (late_return_type
11045 && sfk != sfk_conversion)
11047 if (cxx_dialect < cxx11)
11048 /* Not using maybe_warn_cpp0x because this should
11049 always be an error. */
11050 error ("trailing return type only available with "
11051 "-std=c++11 or -std=gnu++11");
11052 else
11053 error ("%qs function with trailing return type not "
11054 "declared with %<auto%> type specifier", name);
11055 return error_mark_node;
11058 type = splice_late_return_type (type, late_return_type);
11059 if (type == error_mark_node)
11060 return error_mark_node;
11062 if (late_return_type)
11064 late_return_type_p = true;
11065 type_quals = cp_type_quals (type);
11068 if (type_quals != TYPE_UNQUALIFIED)
11070 if (SCALAR_TYPE_P (type) || VOID_TYPE_P (type))
11071 warning_at (typespec_loc, OPT_Wignored_qualifiers, "type "
11072 "qualifiers ignored on function return type");
11073 /* We now know that the TYPE_QUALS don't apply to the
11074 decl, but to its return type. */
11075 type_quals = TYPE_UNQUALIFIED;
11078 /* Error about some types functions can't return. */
11080 if (TREE_CODE (type) == FUNCTION_TYPE)
11082 error_at (typespec_loc, "%qs declared as function returning "
11083 "a function", name);
11084 return error_mark_node;
11086 if (TREE_CODE (type) == ARRAY_TYPE)
11088 error_at (typespec_loc, "%qs declared as function returning "
11089 "an array", name);
11090 return error_mark_node;
11093 if (ctype == NULL_TREE
11094 && decl_context == FIELD
11095 && funcdecl_p
11096 && friendp == 0)
11097 ctype = current_class_type;
11099 if (ctype && (sfk == sfk_constructor
11100 || sfk == sfk_destructor))
11102 /* We are within a class's scope. If our declarator name
11103 is the same as the class name, and we are defining
11104 a function, then it is a constructor/destructor, and
11105 therefore returns a void type. */
11107 /* ISO C++ 12.4/2. A destructor may not be declared
11108 const or volatile. A destructor may not be static.
11109 A destructor may not be declared with ref-qualifier.
11111 ISO C++ 12.1. A constructor may not be declared
11112 const or volatile. A constructor may not be
11113 virtual. A constructor may not be static.
11114 A constructor may not be declared with ref-qualifier. */
11115 if (staticp == 2)
11116 error ((flags == DTOR_FLAG)
11117 ? G_("destructor cannot be static member function")
11118 : G_("constructor cannot be static member function"));
11119 if (memfn_quals)
11121 error ((flags == DTOR_FLAG)
11122 ? G_("destructors may not be cv-qualified")
11123 : G_("constructors may not be cv-qualified"));
11124 memfn_quals = TYPE_UNQUALIFIED;
11127 if (rqual)
11129 maybe_warn_cpp0x (CPP0X_REF_QUALIFIER);
11130 error ((flags == DTOR_FLAG)
11131 ? G_("destructors may not be ref-qualified")
11132 : G_("constructors may not be ref-qualified"));
11133 rqual = REF_QUAL_NONE;
11136 if (decl_context == FIELD
11137 && !member_function_or_else (ctype,
11138 current_class_type,
11139 flags))
11140 return error_mark_node;
11142 if (flags != DTOR_FLAG)
11144 /* It's a constructor. */
11145 if (explicitp == 1)
11146 explicitp = 2;
11147 if (virtualp)
11149 permerror (input_location,
11150 "constructors cannot be declared %<virtual%>");
11151 virtualp = 0;
11153 if (decl_context == FIELD
11154 && sfk != sfk_constructor)
11155 return error_mark_node;
11157 if (decl_context == FIELD)
11158 staticp = 0;
11160 else if (friendp)
11162 if (virtualp)
11164 /* Cannot be both friend and virtual. */
11165 error ("virtual functions cannot be friends");
11166 friendp = 0;
11168 if (decl_context == NORMAL)
11169 error ("friend declaration not in class definition");
11170 if (current_function_decl && funcdef_flag)
11171 error ("can%'t define friend function %qs in a local "
11172 "class definition",
11173 name);
11175 else if (ctype && sfk == sfk_conversion)
11177 if (explicitp == 1)
11179 maybe_warn_cpp0x (CPP0X_EXPLICIT_CONVERSION);
11180 explicitp = 2;
11182 if (late_return_type_p)
11183 error ("a conversion function cannot have a trailing return type");
11185 else if (sfk == sfk_deduction_guide)
11187 if (explicitp == 1)
11188 explicitp = 2;
11191 arg_types = grokparms (declarator->u.function.parameters,
11192 &parms);
11194 if (inner_declarator
11195 && inner_declarator->kind == cdk_id
11196 && inner_declarator->u.id.sfk == sfk_destructor
11197 && arg_types != void_list_node)
11199 error ("destructors may not have parameters");
11200 arg_types = void_list_node;
11201 parms = NULL_TREE;
11204 type = build_function_type (type, arg_types);
11206 tree attrs = declarator->std_attributes;
11207 if (tx_qual)
11209 tree att = build_tree_list (tx_qual, NULL_TREE);
11210 /* transaction_safe applies to the type, but
11211 transaction_safe_dynamic applies to the function. */
11212 if (is_attribute_p ("transaction_safe", tx_qual))
11213 attrs = chainon (attrs, att);
11214 else
11215 returned_attrs = chainon (returned_attrs, att);
11217 if (attrs)
11218 /* [dcl.fct]/2:
11220 The optional attribute-specifier-seq appertains to
11221 the function type. */
11222 decl_attributes (&type, attrs, 0);
11224 if (raises)
11225 type = build_exception_variant (type, raises);
11227 break;
11229 case cdk_pointer:
11230 case cdk_reference:
11231 case cdk_ptrmem:
11232 /* Filter out pointers-to-references and references-to-references.
11233 We can get these if a TYPE_DECL is used. */
11235 if (TREE_CODE (type) == REFERENCE_TYPE)
11237 if (declarator->kind != cdk_reference)
11239 error ("cannot declare pointer to %q#T", type);
11240 type = TREE_TYPE (type);
11243 /* In C++0x, we allow reference to reference declarations
11244 that occur indirectly through typedefs [7.1.3/8 dcl.typedef]
11245 and template type arguments [14.3.1/4 temp.arg.type]. The
11246 check for direct reference to reference declarations, which
11247 are still forbidden, occurs below. Reasoning behind the change
11248 can be found in DR106, DR540, and the rvalue reference
11249 proposals. */
11250 else if (cxx_dialect == cxx98)
11252 error ("cannot declare reference to %q#T", type);
11253 type = TREE_TYPE (type);
11256 else if (VOID_TYPE_P (type))
11258 if (declarator->kind == cdk_reference)
11259 error ("cannot declare reference to %q#T", type);
11260 else if (declarator->kind == cdk_ptrmem)
11261 error ("cannot declare pointer to %q#T member", type);
11264 /* We now know that the TYPE_QUALS don't apply to the decl,
11265 but to the target of the pointer. */
11266 type_quals = TYPE_UNQUALIFIED;
11268 /* This code used to handle METHOD_TYPE, but I don't think it's
11269 possible to get it here anymore. */
11270 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
11271 if (declarator->kind == cdk_ptrmem
11272 && TREE_CODE (type) == FUNCTION_TYPE)
11274 memfn_quals |= type_memfn_quals (type);
11275 type = build_memfn_type (type,
11276 declarator->u.pointer.class_type,
11277 memfn_quals,
11278 rqual);
11279 if (type == error_mark_node)
11280 return error_mark_node;
11282 rqual = REF_QUAL_NONE;
11283 memfn_quals = TYPE_UNQUALIFIED;
11286 if (TREE_CODE (type) == FUNCTION_TYPE
11287 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
11288 || type_memfn_rqual (type) != REF_QUAL_NONE))
11289 error (declarator->kind == cdk_reference
11290 ? G_("cannot declare reference to qualified function type %qT")
11291 : G_("cannot declare pointer to qualified function type %qT"),
11292 type);
11294 /* When the pointed-to type involves components of variable size,
11295 care must be taken to ensure that the size evaluation code is
11296 emitted early enough to dominate all the possible later uses
11297 and late enough for the variables on which it depends to have
11298 been assigned.
11300 This is expected to happen automatically when the pointed-to
11301 type has a name/declaration of it's own, but special attention
11302 is required if the type is anonymous.
11304 We handle the NORMAL and FIELD contexts here by inserting a
11305 dummy statement that just evaluates the size at a safe point
11306 and ensures it is not deferred until e.g. within a deeper
11307 conditional context (c++/43555).
11309 We expect nothing to be needed here for PARM or TYPENAME.
11310 Evaluating the size at this point for TYPENAME would
11311 actually be incorrect, as we might be in the middle of an
11312 expression with side effects on the pointed-to type size
11313 "arguments" prior to the pointer declaration point and the
11314 size evaluation could end up prior to the side effects. */
11316 if (!TYPE_NAME (type)
11317 && (decl_context == NORMAL || decl_context == FIELD)
11318 && at_function_scope_p ()
11319 && variably_modified_type_p (type, NULL_TREE))
11321 TYPE_NAME (type) = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
11322 NULL_TREE, type);
11323 add_decl_expr (TYPE_NAME (type));
11326 if (declarator->kind == cdk_reference)
11328 /* In C++0x, the type we are creating a reference to might be
11329 a typedef which is itself a reference type. In that case,
11330 we follow the reference collapsing rules in
11331 [7.1.3/8 dcl.typedef] to create the final reference type:
11333 "If a typedef TD names a type that is a reference to a type
11334 T, an attempt to create the type 'lvalue reference to cv TD'
11335 creates the type 'lvalue reference to T,' while an attempt
11336 to create the type "rvalue reference to cv TD' creates the
11337 type TD."
11339 if (VOID_TYPE_P (type))
11340 /* We already gave an error. */;
11341 else if (TREE_CODE (type) == REFERENCE_TYPE)
11343 if (declarator->u.reference.rvalue_ref)
11344 /* Leave type alone. */;
11345 else
11346 type = cp_build_reference_type (TREE_TYPE (type), false);
11348 else
11349 type = cp_build_reference_type
11350 (type, declarator->u.reference.rvalue_ref);
11352 /* In C++0x, we need this check for direct reference to
11353 reference declarations, which are forbidden by
11354 [8.3.2/5 dcl.ref]. Reference to reference declarations
11355 are only allowed indirectly through typedefs and template
11356 type arguments. Example:
11358 void foo(int & &); // invalid ref-to-ref decl
11360 typedef int & int_ref;
11361 void foo(int_ref &); // valid ref-to-ref decl
11363 if (inner_declarator && inner_declarator->kind == cdk_reference)
11364 error ("cannot declare reference to %q#T, which is not "
11365 "a typedef or a template type argument", type);
11367 else if (TREE_CODE (type) == METHOD_TYPE)
11368 type = build_ptrmemfunc_type (build_pointer_type (type));
11369 else if (declarator->kind == cdk_ptrmem)
11371 gcc_assert (TREE_CODE (declarator->u.pointer.class_type)
11372 != NAMESPACE_DECL);
11373 if (declarator->u.pointer.class_type == error_mark_node)
11374 /* We will already have complained. */
11375 type = error_mark_node;
11376 else
11377 type = build_ptrmem_type (declarator->u.pointer.class_type,
11378 type);
11380 else
11381 type = build_pointer_type (type);
11383 /* Process a list of type modifier keywords (such as
11384 const or volatile) that were given inside the `*' or `&'. */
11386 if (declarator->u.pointer.qualifiers)
11388 type
11389 = cp_build_qualified_type (type,
11390 declarator->u.pointer.qualifiers);
11391 type_quals = cp_type_quals (type);
11394 /* Apply C++11 attributes to the pointer, and not to the
11395 type pointed to. This is unlike what is done for GNU
11396 attributes above. It is to comply with [dcl.ptr]/1:
11398 [the optional attribute-specifier-seq (7.6.1) appertains
11399 to the pointer and not to the object pointed to]. */
11400 if (declarator->std_attributes)
11401 decl_attributes (&type, declarator->std_attributes,
11404 ctype = NULL_TREE;
11405 break;
11407 case cdk_error:
11408 break;
11410 default:
11411 gcc_unreachable ();
11415 /* A `constexpr' specifier used in an object declaration declares
11416 the object as `const'. */
11417 if (constexpr_p && innermost_code != cdk_function)
11419 /* DR1688 says that a `constexpr' specifier in combination with
11420 `volatile' is valid. */
11422 if (TREE_CODE (type) != REFERENCE_TYPE)
11424 type_quals |= TYPE_QUAL_CONST;
11425 type = cp_build_qualified_type (type, type_quals);
11429 if (unqualified_id && TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR
11430 && TREE_CODE (type) != FUNCTION_TYPE
11431 && TREE_CODE (type) != METHOD_TYPE
11432 && !variable_template_p (TREE_OPERAND (unqualified_id, 0)))
11434 error ("template-id %qD used as a declarator",
11435 unqualified_id);
11436 unqualified_id = dname;
11439 /* If TYPE is a FUNCTION_TYPE, but the function name was explicitly
11440 qualified with a class-name, turn it into a METHOD_TYPE, unless
11441 we know that the function is static. We take advantage of this
11442 opportunity to do other processing that pertains to entities
11443 explicitly declared to be class members. Note that if DECLARATOR
11444 is non-NULL, we know it is a cdk_id declarator; otherwise, we
11445 would not have exited the loop above. */
11446 if (declarator
11447 && declarator->kind == cdk_id
11448 && declarator->u.id.qualifying_scope
11449 && MAYBE_CLASS_TYPE_P (declarator->u.id.qualifying_scope))
11451 ctype = declarator->u.id.qualifying_scope;
11452 ctype = TYPE_MAIN_VARIANT (ctype);
11453 template_count = num_template_headers_for_class (ctype);
11455 if (ctype == current_class_type)
11457 if (friendp)
11459 permerror (input_location, "member functions are implicitly "
11460 "friends of their class");
11461 friendp = 0;
11463 else
11464 permerror (declarator->id_loc,
11465 "extra qualification %<%T::%> on member %qs",
11466 ctype, name);
11468 else if (/* If the qualifying type is already complete, then we
11469 can skip the following checks. */
11470 !COMPLETE_TYPE_P (ctype)
11471 && (/* If the function is being defined, then
11472 qualifying type must certainly be complete. */
11473 funcdef_flag
11474 /* A friend declaration of "T::f" is OK, even if
11475 "T" is a template parameter. But, if this
11476 function is not a friend, the qualifying type
11477 must be a class. */
11478 || (!friendp && !CLASS_TYPE_P (ctype))
11479 /* For a declaration, the type need not be
11480 complete, if either it is dependent (since there
11481 is no meaningful definition of complete in that
11482 case) or the qualifying class is currently being
11483 defined. */
11484 || !(dependent_type_p (ctype)
11485 || currently_open_class (ctype)))
11486 /* Check that the qualifying type is complete. */
11487 && !complete_type_or_else (ctype, NULL_TREE))
11488 return error_mark_node;
11489 else if (TREE_CODE (type) == FUNCTION_TYPE)
11491 if (current_class_type
11492 && (!friendp || funcdef_flag || initialized))
11494 error (funcdef_flag || initialized
11495 ? G_("cannot define member function %<%T::%s%> "
11496 "within %qT")
11497 : G_("cannot declare member function %<%T::%s%> "
11498 "within %qT"),
11499 ctype, name, current_class_type);
11500 return error_mark_node;
11503 else if (typedef_p && current_class_type)
11505 error ("cannot declare member %<%T::%s%> within %qT",
11506 ctype, name, current_class_type);
11507 return error_mark_node;
11511 if (ctype == NULL_TREE && decl_context == FIELD && friendp == 0)
11512 ctype = current_class_type;
11514 /* Now TYPE has the actual type. */
11516 if (returned_attrs)
11518 if (attrlist)
11519 *attrlist = chainon (returned_attrs, *attrlist);
11520 else
11521 attrlist = &returned_attrs;
11524 if (declarator
11525 && declarator->kind == cdk_id
11526 && declarator->std_attributes
11527 && attrlist != NULL)
11529 /* [dcl.meaning]/1: The optional attribute-specifier-seq following
11530 a declarator-id appertains to the entity that is declared. */
11531 if (declarator->std_attributes != error_mark_node)
11532 *attrlist = chainon (*attrlist, declarator->std_attributes);
11533 else
11534 /* We should have already diagnosed the issue (c++/78344). */
11535 gcc_assert (seen_error ());
11538 /* Handle parameter packs. */
11539 if (parameter_pack_p)
11541 if (decl_context == PARM)
11542 /* Turn the type into a pack expansion.*/
11543 type = make_pack_expansion (type);
11544 else
11545 error ("non-parameter %qs cannot be a parameter pack", name);
11548 if ((decl_context == FIELD || decl_context == PARM)
11549 && !processing_template_decl
11550 && variably_modified_type_p (type, NULL_TREE))
11552 if (decl_context == FIELD)
11553 error ("data member may not have variably modified type %qT", type);
11554 else
11555 error ("parameter may not have variably modified type %qT", type);
11556 type = error_mark_node;
11559 if (explicitp == 1 || (explicitp && friendp))
11561 /* [dcl.fct.spec] (C++11) The explicit specifier shall be used only
11562 in the declaration of a constructor or conversion function within
11563 a class definition. */
11564 if (!current_class_type)
11565 error_at (declspecs->locations[ds_explicit],
11566 "%<explicit%> outside class declaration");
11567 else if (friendp)
11568 error_at (declspecs->locations[ds_explicit],
11569 "%<explicit%> in friend declaration");
11570 else
11571 error_at (declspecs->locations[ds_explicit],
11572 "only declarations of constructors and conversion operators "
11573 "can be %<explicit%>");
11574 explicitp = 0;
11577 if (storage_class == sc_mutable)
11579 if (decl_context != FIELD || friendp)
11581 error ("non-member %qs cannot be declared %<mutable%>", name);
11582 storage_class = sc_none;
11584 else if (decl_context == TYPENAME || typedef_p)
11586 error ("non-object member %qs cannot be declared %<mutable%>", name);
11587 storage_class = sc_none;
11589 else if (TREE_CODE (type) == FUNCTION_TYPE
11590 || TREE_CODE (type) == METHOD_TYPE)
11592 error ("function %qs cannot be declared %<mutable%>", name);
11593 storage_class = sc_none;
11595 else if (staticp)
11597 error ("static %qs cannot be declared %<mutable%>", name);
11598 storage_class = sc_none;
11600 else if (type_quals & TYPE_QUAL_CONST)
11602 error ("const %qs cannot be declared %<mutable%>", name);
11603 storage_class = sc_none;
11605 else if (TREE_CODE (type) == REFERENCE_TYPE)
11607 permerror (input_location, "reference %qs cannot be declared "
11608 "%<mutable%>", name);
11609 storage_class = sc_none;
11613 /* If this is declaring a typedef name, return a TYPE_DECL. */
11614 if (typedef_p && decl_context != TYPENAME)
11616 tree decl;
11618 /* This declaration:
11620 typedef void f(int) const;
11622 declares a function type which is not a member of any
11623 particular class, but which is cv-qualified; for
11624 example "f S::*" declares a pointer to a const-qualified
11625 member function of S. We record the cv-qualification in the
11626 function type. */
11627 if ((rqual || memfn_quals) && TREE_CODE (type) == FUNCTION_TYPE)
11629 type = apply_memfn_quals (type, memfn_quals, rqual);
11631 /* We have now dealt with these qualifiers. */
11632 memfn_quals = TYPE_UNQUALIFIED;
11633 rqual = REF_QUAL_NONE;
11636 if (type_uses_auto (type))
11638 error ("typedef declared %<auto%>");
11639 type = error_mark_node;
11642 if (reqs)
11643 error_at (location_of (reqs), "requires-clause on typedef");
11645 if (decl_context == FIELD)
11646 decl = build_lang_decl (TYPE_DECL, unqualified_id, type);
11647 else
11648 decl = build_decl (input_location, TYPE_DECL, unqualified_id, type);
11649 if (id_declarator && declarator->u.id.qualifying_scope) {
11650 error_at (DECL_SOURCE_LOCATION (decl),
11651 "typedef name may not be a nested-name-specifier");
11652 TREE_TYPE (decl) = error_mark_node;
11655 if (decl_context != FIELD)
11657 if (!current_function_decl)
11658 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
11659 else if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (current_function_decl)
11660 || (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P
11661 (current_function_decl)))
11662 /* The TYPE_DECL is "abstract" because there will be
11663 clones of this constructor/destructor, and there will
11664 be copies of this TYPE_DECL generated in those
11665 clones. The decloning optimization (for space) may
11666 revert this subsequently if it determines that
11667 the clones should share a common implementation. */
11668 DECL_ABSTRACT_P (decl) = true;
11670 else if (current_class_type
11671 && constructor_name_p (unqualified_id, current_class_type))
11672 permerror (input_location, "ISO C++ forbids nested type %qD with same name "
11673 "as enclosing class",
11674 unqualified_id);
11676 /* If the user declares "typedef struct {...} foo" then the
11677 struct will have an anonymous name. Fill that name in now.
11678 Nothing can refer to it, so nothing needs know about the name
11679 change. */
11680 if (type != error_mark_node
11681 && unqualified_id
11682 && TYPE_NAME (type)
11683 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
11684 && TYPE_UNNAMED_P (type)
11685 && declspecs->type_definition_p
11686 && attributes_naming_typedef_ok (*attrlist)
11687 && cp_type_quals (type) == TYPE_UNQUALIFIED)
11688 name_unnamed_type (type, decl);
11690 if (signed_p
11691 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
11692 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
11694 bad_specifiers (decl, BSP_TYPE, virtualp,
11695 memfn_quals != TYPE_UNQUALIFIED,
11696 inlinep, friendp, raises != NULL_TREE);
11698 if (decl_spec_seq_has_spec_p (declspecs, ds_alias))
11699 /* Acknowledge that this was written:
11700 `using analias = atype;'. */
11701 TYPE_DECL_ALIAS_P (decl) = 1;
11703 return decl;
11706 /* Detect the case of an array type of unspecified size
11707 which came, as such, direct from a typedef name.
11708 We must copy the type, so that the array's domain can be
11709 individually set by the object's initializer. */
11711 if (type && typedef_type
11712 && TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type)
11713 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type))
11714 type = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
11716 /* Detect where we're using a typedef of function type to declare a
11717 function. PARMS will not be set, so we must create it now. */
11719 if (type == typedef_type && TREE_CODE (type) == FUNCTION_TYPE)
11721 tree decls = NULL_TREE;
11722 tree args;
11724 for (args = TYPE_ARG_TYPES (type);
11725 args && args != void_list_node;
11726 args = TREE_CHAIN (args))
11728 tree decl = cp_build_parm_decl (NULL_TREE, NULL_TREE,
11729 TREE_VALUE (args));
11731 DECL_CHAIN (decl) = decls;
11732 decls = decl;
11735 parms = nreverse (decls);
11737 if (decl_context != TYPENAME)
11739 /* The qualifiers on the function type become the qualifiers on
11740 the non-static member function. */
11741 memfn_quals |= type_memfn_quals (type);
11742 rqual = type_memfn_rqual (type);
11743 type_quals = TYPE_UNQUALIFIED;
11747 /* If this is a type name (such as, in a cast or sizeof),
11748 compute the type and return it now. */
11750 if (decl_context == TYPENAME)
11752 /* Note that here we don't care about type_quals. */
11754 /* Special case: "friend class foo" looks like a TYPENAME context. */
11755 if (friendp)
11757 if (inlinep)
11759 error ("%<inline%> specified for friend class declaration");
11760 inlinep = 0;
11763 if (!current_aggr)
11765 /* Don't allow friend declaration without a class-key. */
11766 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
11767 permerror (input_location, "template parameters cannot be friends");
11768 else if (TREE_CODE (type) == TYPENAME_TYPE)
11769 permerror (input_location, "friend declaration requires class-key, "
11770 "i.e. %<friend class %T::%D%>",
11771 TYPE_CONTEXT (type), TYPENAME_TYPE_FULLNAME (type));
11772 else
11773 permerror (input_location, "friend declaration requires class-key, "
11774 "i.e. %<friend %#T%>",
11775 type);
11778 /* Only try to do this stuff if we didn't already give up. */
11779 if (type != integer_type_node)
11781 /* A friendly class? */
11782 if (current_class_type)
11783 make_friend_class (current_class_type, TYPE_MAIN_VARIANT (type),
11784 /*complain=*/true);
11785 else
11786 error ("trying to make class %qT a friend of global scope",
11787 type);
11789 type = void_type_node;
11792 else if (memfn_quals || rqual)
11794 if (ctype == NULL_TREE
11795 && TREE_CODE (type) == METHOD_TYPE)
11796 ctype = TYPE_METHOD_BASETYPE (type);
11798 if (ctype)
11799 type = build_memfn_type (type, ctype, memfn_quals, rqual);
11800 /* Core issue #547: need to allow this in template type args.
11801 Allow it in general in C++11 for alias-declarations. */
11802 else if ((template_type_arg || cxx_dialect >= cxx11)
11803 && TREE_CODE (type) == FUNCTION_TYPE)
11804 type = apply_memfn_quals (type, memfn_quals, rqual);
11805 else
11806 error ("invalid qualifiers on non-member function type");
11809 if (reqs)
11810 error_at (location_of (reqs), "requires-clause on type-id");
11812 return type;
11814 else if (unqualified_id == NULL_TREE && decl_context != PARM
11815 && decl_context != CATCHPARM
11816 && TREE_CODE (type) != UNION_TYPE
11817 && ! bitfield
11818 && innermost_code != cdk_decomp)
11820 error ("abstract declarator %qT used as declaration", type);
11821 return error_mark_node;
11824 if (!FUNC_OR_METHOD_TYPE_P (type))
11826 /* Only functions may be declared using an operator-function-id. */
11827 if (dname && IDENTIFIER_ANY_OP_P (dname))
11829 error ("declaration of %qD as non-function", dname);
11830 return error_mark_node;
11833 if (reqs)
11834 error_at (location_of (reqs),
11835 "requires-clause on declaration of non-function type %qT",
11836 type);
11839 /* We don't check parameter types here because we can emit a better
11840 error message later. */
11841 if (decl_context != PARM)
11843 type = check_var_type (unqualified_id, type);
11844 if (type == error_mark_node)
11845 return error_mark_node;
11848 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
11849 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
11851 if (decl_context == PARM || decl_context == CATCHPARM)
11853 if (ctype || in_namespace)
11854 error ("cannot use %<::%> in parameter declaration");
11856 if (type_uses_auto (type)
11857 && !(cxx_dialect >= cxx17 && template_parm_flag))
11859 if (cxx_dialect >= cxx14)
11860 error ("%<auto%> parameter not permitted in this context");
11861 else
11862 error ("parameter declared %<auto%>");
11863 type = error_mark_node;
11866 /* A parameter declared as an array of T is really a pointer to T.
11867 One declared as a function is really a pointer to a function.
11868 One declared as a member is really a pointer to member. */
11870 if (TREE_CODE (type) == ARRAY_TYPE)
11872 /* Transfer const-ness of array into that of type pointed to. */
11873 type = build_pointer_type (TREE_TYPE (type));
11874 type_quals = TYPE_UNQUALIFIED;
11875 array_parameter_p = true;
11877 else if (TREE_CODE (type) == FUNCTION_TYPE)
11878 type = build_pointer_type (type);
11881 if (ctype && TREE_CODE (type) == FUNCTION_TYPE && staticp < 2
11882 && !(identifier_p (unqualified_id)
11883 && IDENTIFIER_NEWDEL_OP_P (unqualified_id)))
11885 cp_cv_quals real_quals = memfn_quals;
11886 if (cxx_dialect < cxx14 && constexpr_p
11887 && sfk != sfk_constructor && sfk != sfk_destructor)
11888 real_quals |= TYPE_QUAL_CONST;
11889 type = build_memfn_type (type, ctype, real_quals, rqual);
11893 tree decl = NULL_TREE;
11895 if (decl_context == PARM)
11897 decl = cp_build_parm_decl (NULL_TREE, unqualified_id, type);
11898 DECL_ARRAY_PARAMETER_P (decl) = array_parameter_p;
11900 bad_specifiers (decl, BSP_PARM, virtualp,
11901 memfn_quals != TYPE_UNQUALIFIED,
11902 inlinep, friendp, raises != NULL_TREE);
11904 else if (decl_context == FIELD)
11906 if (!staticp && !friendp && TREE_CODE (type) != METHOD_TYPE)
11907 if (tree auto_node = type_uses_auto (type))
11909 location_t loc = declspecs->locations[ds_type_spec];
11910 if (CLASS_PLACEHOLDER_TEMPLATE (auto_node))
11911 error_at (loc, "invalid use of template-name %qE without an "
11912 "argument list",
11913 CLASS_PLACEHOLDER_TEMPLATE (auto_node));
11914 else
11915 error_at (loc, "non-static data member declared with "
11916 "placeholder %qT", auto_node);
11917 type = error_mark_node;
11920 /* The C99 flexible array extension. */
11921 if (!staticp && TREE_CODE (type) == ARRAY_TYPE
11922 && TYPE_DOMAIN (type) == NULL_TREE)
11924 if (ctype
11925 && (TREE_CODE (ctype) == UNION_TYPE
11926 || TREE_CODE (ctype) == QUAL_UNION_TYPE))
11928 error ("flexible array member in union");
11929 type = error_mark_node;
11931 else
11933 /* Array is a flexible member. */
11934 if (in_system_header_at (input_location))
11935 /* Do not warn on flexible array members in system
11936 headers because glibc uses them. */;
11937 else if (name)
11938 pedwarn (input_location, OPT_Wpedantic,
11939 "ISO C++ forbids flexible array member %qs", name);
11940 else
11941 pedwarn (input_location, OPT_Wpedantic,
11942 "ISO C++ forbids flexible array members");
11944 /* Flexible array member has a null domain. */
11945 type = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
11949 if (type == error_mark_node)
11951 /* Happens when declaring arrays of sizes which
11952 are error_mark_node, for example. */
11953 decl = NULL_TREE;
11955 else if (in_namespace && !friendp)
11957 /* Something like struct S { int N::j; }; */
11958 error ("invalid use of %<::%>");
11959 return error_mark_node;
11961 else if (TREE_CODE (type) == FUNCTION_TYPE
11962 || TREE_CODE (type) == METHOD_TYPE)
11964 int publicp = 0;
11965 tree function_context;
11967 if (friendp == 0)
11969 /* This should never happen in pure C++ (the check
11970 could be an assert). It could happen in
11971 Objective-C++ if someone writes invalid code that
11972 uses a function declaration for an instance
11973 variable or property (instance variables and
11974 properties are parsed as FIELD_DECLs, but they are
11975 part of an Objective-C class, not a C++ class).
11976 That code is invalid and is caught by this
11977 check. */
11978 if (!ctype)
11980 error ("declaration of function %qD in invalid context",
11981 unqualified_id);
11982 return error_mark_node;
11985 /* ``A union may [ ... ] not [ have ] virtual functions.''
11986 ARM 9.5 */
11987 if (virtualp && TREE_CODE (ctype) == UNION_TYPE)
11989 error ("function %qD declared %<virtual%> inside a union",
11990 unqualified_id);
11991 return error_mark_node;
11994 if (virtualp
11995 && identifier_p (unqualified_id)
11996 && IDENTIFIER_NEWDEL_OP_P (unqualified_id))
11998 error ("%qD cannot be declared %<virtual%>, since it "
11999 "is always static", unqualified_id);
12000 virtualp = 0;
12004 /* Check that the name used for a destructor makes sense. */
12005 if (sfk == sfk_destructor)
12007 tree uqname = id_declarator->u.id.unqualified_name;
12009 if (!ctype)
12011 gcc_assert (friendp);
12012 error ("expected qualified name in friend declaration "
12013 "for destructor %qD", uqname);
12014 return error_mark_node;
12017 if (!check_dtor_name (ctype, TREE_OPERAND (uqname, 0)))
12019 error ("declaration of %qD as member of %qT",
12020 uqname, ctype);
12021 return error_mark_node;
12023 if (concept_p)
12025 error ("a destructor cannot be %<concept%>");
12026 return error_mark_node;
12028 if (constexpr_p)
12030 error ("a destructor cannot be %<constexpr%>");
12031 return error_mark_node;
12034 else if (sfk == sfk_constructor && friendp && !ctype)
12036 error ("expected qualified name in friend declaration "
12037 "for constructor %qD",
12038 id_declarator->u.id.unqualified_name);
12039 return error_mark_node;
12041 if (sfk == sfk_constructor)
12042 if (concept_p)
12044 error ("a constructor cannot be %<concept%>");
12045 return error_mark_node;
12047 if (concept_p)
12049 error ("a concept cannot be a member function");
12050 concept_p = false;
12053 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
12055 tree tmpl = TREE_OPERAND (unqualified_id, 0);
12056 if (variable_template_p (tmpl))
12058 error ("specialization of variable template %qD "
12059 "declared as function", tmpl);
12060 inform (DECL_SOURCE_LOCATION (tmpl),
12061 "variable template declared here");
12062 return error_mark_node;
12066 /* Tell grokfndecl if it needs to set TREE_PUBLIC on the node. */
12067 function_context = (ctype != NULL_TREE) ?
12068 decl_function_context (TYPE_MAIN_DECL (ctype)) : NULL_TREE;
12069 publicp = (! friendp || ! staticp)
12070 && function_context == NULL_TREE;
12072 if (late_return_type_p)
12073 TYPE_HAS_LATE_RETURN_TYPE (type) = 1;
12075 decl = grokfndecl (ctype, type,
12076 TREE_CODE (unqualified_id) != TEMPLATE_ID_EXPR
12077 ? unqualified_id : dname,
12078 parms,
12079 unqualified_id,
12080 reqs,
12081 virtualp, flags, memfn_quals, rqual, raises,
12082 friendp ? -1 : 0, friendp, publicp,
12083 inlinep | (2 * constexpr_p) | (4 * concept_p),
12084 initialized == SD_DELETED, sfk,
12085 funcdef_flag, template_count, in_namespace,
12086 attrlist, declarator->id_loc);
12087 decl = set_virt_specifiers (decl, virt_specifiers);
12088 if (decl == NULL_TREE)
12089 return error_mark_node;
12090 #if 0
12091 /* This clobbers the attrs stored in `decl' from `attrlist'. */
12092 /* The decl and setting of decl_attr is also turned off. */
12093 decl = build_decl_attribute_variant (decl, decl_attr);
12094 #endif
12096 /* [class.conv.ctor]
12098 A constructor declared without the function-specifier
12099 explicit that can be called with a single parameter
12100 specifies a conversion from the type of its first
12101 parameter to the type of its class. Such a constructor
12102 is called a converting constructor. */
12103 if (explicitp == 2)
12104 DECL_NONCONVERTING_P (decl) = 1;
12106 else if (!staticp && !dependent_type_p (type)
12107 && !COMPLETE_TYPE_P (complete_type (type))
12108 && (!complete_or_array_type_p (type)
12109 || initialized == 0))
12111 if (TREE_CODE (type) != ARRAY_TYPE
12112 || !COMPLETE_TYPE_P (TREE_TYPE (type)))
12114 if (unqualified_id)
12116 error ("field %qD has incomplete type %qT",
12117 unqualified_id, type);
12118 cxx_incomplete_type_inform (strip_array_types (type));
12120 else
12121 error ("name %qT has incomplete type", type);
12123 type = error_mark_node;
12124 decl = NULL_TREE;
12127 else
12129 if (friendp)
12131 error ("%qE is neither function nor member function; "
12132 "cannot be declared friend", unqualified_id);
12133 friendp = 0;
12135 decl = NULL_TREE;
12138 if (friendp)
12140 /* Friends are treated specially. */
12141 if (ctype == current_class_type)
12142 ; /* We already issued a permerror. */
12143 else if (decl && DECL_NAME (decl))
12145 if (template_class_depth (current_class_type) == 0)
12147 decl = check_explicit_specialization
12148 (unqualified_id, decl, template_count,
12149 2 * funcdef_flag + 4);
12150 if (decl == error_mark_node)
12151 return error_mark_node;
12154 decl = do_friend (ctype, unqualified_id, decl,
12155 *attrlist, flags,
12156 funcdef_flag);
12157 return decl;
12159 else
12160 return error_mark_node;
12163 /* Structure field. It may not be a function, except for C++. */
12165 if (decl == NULL_TREE)
12167 if (staticp)
12169 /* C++ allows static class members. All other work
12170 for this is done by grokfield. */
12171 decl = build_lang_decl_loc (declarator
12172 ? declarator->id_loc
12173 : input_location,
12174 VAR_DECL, unqualified_id, type);
12175 set_linkage_for_static_data_member (decl);
12176 if (concept_p)
12177 error ("static data member %qE declared %<concept%>",
12178 unqualified_id);
12179 else if (constexpr_p && !initialized)
12181 error ("%<constexpr%> static data member %qD must have an "
12182 "initializer", decl);
12183 constexpr_p = false;
12186 if (inlinep)
12187 mark_inline_variable (decl);
12189 if (!DECL_VAR_DECLARED_INLINE_P (decl)
12190 && !(cxx_dialect >= cxx17 && constexpr_p))
12191 /* Even if there is an in-class initialization, DECL
12192 is considered undefined until an out-of-class
12193 definition is provided, unless this is an inline
12194 variable. */
12195 DECL_EXTERNAL (decl) = 1;
12197 if (thread_p)
12199 CP_DECL_THREAD_LOCAL_P (decl) = true;
12200 if (!processing_template_decl)
12201 set_decl_tls_model (decl, decl_default_tls_model (decl));
12202 if (declspecs->gnu_thread_keyword_p)
12203 SET_DECL_GNU_TLS_P (decl);
12206 else
12208 if (concept_p)
12209 error ("non-static data member %qE declared %<concept%>",
12210 unqualified_id);
12211 else if (constexpr_p)
12213 error ("non-static data member %qE declared %<constexpr%>",
12214 unqualified_id);
12215 constexpr_p = false;
12217 decl = build_decl (input_location,
12218 FIELD_DECL, unqualified_id, type);
12219 DECL_NONADDRESSABLE_P (decl) = bitfield;
12220 if (bitfield && !unqualified_id)
12222 TREE_NO_WARNING (decl) = 1;
12223 DECL_PADDING_P (decl) = 1;
12226 if (storage_class == sc_mutable)
12228 DECL_MUTABLE_P (decl) = 1;
12229 storage_class = sc_none;
12232 if (initialized)
12234 /* An attempt is being made to initialize a non-static
12235 member. This is new in C++11. */
12236 maybe_warn_cpp0x (CPP0X_NSDMI);
12238 /* If this has been parsed with static storage class, but
12239 errors forced staticp to be cleared, ensure NSDMI is
12240 not present. */
12241 if (declspecs->storage_class == sc_static)
12242 DECL_INITIAL (decl) = error_mark_node;
12246 bad_specifiers (decl, BSP_FIELD, virtualp,
12247 memfn_quals != TYPE_UNQUALIFIED,
12248 staticp ? false : inlinep, friendp,
12249 raises != NULL_TREE);
12252 else if (TREE_CODE (type) == FUNCTION_TYPE
12253 || TREE_CODE (type) == METHOD_TYPE)
12255 tree original_name;
12256 int publicp = 0;
12258 if (!unqualified_id)
12259 return error_mark_node;
12261 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
12262 original_name = dname;
12263 else
12264 original_name = unqualified_id;
12265 // FIXME:gcc_assert (original_name == dname);
12267 if (storage_class == sc_auto)
12268 error ("storage class %<auto%> invalid for function %qs", name);
12269 else if (storage_class == sc_register)
12270 error ("storage class %<register%> invalid for function %qs", name);
12271 else if (thread_p)
12273 if (declspecs->gnu_thread_keyword_p)
12274 error ("storage class %<__thread%> invalid for function %qs",
12275 name);
12276 else
12277 error ("storage class %<thread_local%> invalid for function %qs",
12278 name);
12281 if (virt_specifiers)
12282 error ("virt-specifiers in %qs not allowed outside a class definition", name);
12283 /* Function declaration not at top level.
12284 Storage classes other than `extern' are not allowed
12285 and `extern' makes no difference. */
12286 if (! toplevel_bindings_p ()
12287 && (storage_class == sc_static
12288 || decl_spec_seq_has_spec_p (declspecs, ds_inline))
12289 && pedantic)
12291 if (storage_class == sc_static)
12292 pedwarn (input_location, OPT_Wpedantic,
12293 "%<static%> specifier invalid for function %qs "
12294 "declared out of global scope", name);
12295 else
12296 pedwarn (input_location, OPT_Wpedantic,
12297 "%<inline%> specifier invalid for function %qs "
12298 "declared out of global scope", name);
12301 if (ctype == NULL_TREE)
12303 if (virtualp)
12305 error ("virtual non-class function %qs", name);
12306 virtualp = 0;
12308 else if (sfk == sfk_constructor
12309 || sfk == sfk_destructor)
12311 error (funcdef_flag
12312 ? G_("%qs defined in a non-class scope")
12313 : G_("%qs declared in a non-class scope"), name);
12314 sfk = sfk_none;
12318 /* Record whether the function is public. */
12319 publicp = (ctype != NULL_TREE
12320 || storage_class != sc_static);
12322 if (late_return_type_p)
12323 TYPE_HAS_LATE_RETURN_TYPE (type) = 1;
12325 decl = grokfndecl (ctype, type, original_name, parms, unqualified_id,
12326 reqs, virtualp, flags, memfn_quals, rqual, raises,
12327 1, friendp,
12328 publicp,
12329 inlinep | (2 * constexpr_p) | (4 * concept_p),
12330 initialized == SD_DELETED,
12331 sfk,
12332 funcdef_flag,
12333 template_count, in_namespace, attrlist,
12334 declarator->id_loc);
12335 if (decl == NULL_TREE)
12336 return error_mark_node;
12338 if (explicitp == 2)
12339 DECL_NONCONVERTING_P (decl) = 1;
12340 if (staticp == 1)
12342 int invalid_static = 0;
12344 /* Don't allow a static member function in a class, and forbid
12345 declaring main to be static. */
12346 if (TREE_CODE (type) == METHOD_TYPE)
12348 permerror (input_location, "cannot declare member function %qD to have "
12349 "static linkage", decl);
12350 invalid_static = 1;
12352 else if (current_function_decl)
12354 /* 7.1.1: There can be no static function declarations within a
12355 block. */
12356 error ("cannot declare static function inside another function");
12357 invalid_static = 1;
12360 if (invalid_static)
12362 staticp = 0;
12363 storage_class = sc_none;
12367 else
12369 /* It's a variable. */
12371 /* An uninitialized decl with `extern' is a reference. */
12372 decl = grokvardecl (type, dname, unqualified_id,
12373 declspecs,
12374 initialized,
12375 type_quals,
12376 inlinep,
12377 concept_p,
12378 template_count,
12379 ctype ? ctype : in_namespace);
12380 if (decl == NULL_TREE)
12381 return error_mark_node;
12383 bad_specifiers (decl, BSP_VAR, virtualp,
12384 memfn_quals != TYPE_UNQUALIFIED,
12385 inlinep, friendp, raises != NULL_TREE);
12387 if (ctype)
12389 DECL_CONTEXT (decl) = ctype;
12390 if (staticp == 1)
12392 permerror (input_location, "%<static%> may not be used when defining "
12393 "(as opposed to declaring) a static data member");
12394 staticp = 0;
12395 storage_class = sc_none;
12397 if (storage_class == sc_register && TREE_STATIC (decl))
12399 error ("static member %qD declared %<register%>", decl);
12400 storage_class = sc_none;
12402 if (storage_class == sc_extern && pedantic)
12404 pedwarn (input_location, OPT_Wpedantic,
12405 "cannot explicitly declare member %q#D to have "
12406 "extern linkage", decl);
12407 storage_class = sc_none;
12410 else if (constexpr_p && DECL_EXTERNAL (decl))
12412 error ("declaration of %<constexpr%> variable %qD "
12413 "is not a definition", decl);
12414 constexpr_p = false;
12417 if (inlinep)
12418 mark_inline_variable (decl);
12419 if (innermost_code == cdk_decomp)
12421 gcc_assert (declarator && declarator->kind == cdk_decomp);
12422 DECL_SOURCE_LOCATION (decl) = declarator->id_loc;
12423 DECL_ARTIFICIAL (decl) = 1;
12424 fit_decomposition_lang_decl (decl, NULL_TREE);
12428 if (VAR_P (decl) && !initialized)
12429 if (tree auto_node = type_uses_auto (type))
12430 if (!CLASS_PLACEHOLDER_TEMPLATE (auto_node))
12432 location_t loc = declspecs->locations[ds_type_spec];
12433 error_at (loc, "declaration of %q#D has no initializer", decl);
12434 TREE_TYPE (decl) = error_mark_node;
12437 if (storage_class == sc_extern && initialized && !funcdef_flag)
12439 if (toplevel_bindings_p ())
12441 /* It's common practice (and completely valid) to have a const
12442 be initialized and declared extern. */
12443 if (!(type_quals & TYPE_QUAL_CONST))
12444 warning (0, "%qs initialized and declared %<extern%>", name);
12446 else
12448 error ("%qs has both %<extern%> and initializer", name);
12449 return error_mark_node;
12453 /* Record `register' declaration for warnings on &
12454 and in case doing stupid register allocation. */
12456 if (storage_class == sc_register)
12458 DECL_REGISTER (decl) = 1;
12459 /* Warn about register storage specifiers on PARM_DECLs. */
12460 if (TREE_CODE (decl) == PARM_DECL)
12462 if (cxx_dialect >= cxx17)
12463 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
12464 "ISO C++17 does not allow %<register%> storage "
12465 "class specifier");
12466 else
12467 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
12468 "%<register%> storage class specifier used");
12471 else if (storage_class == sc_extern)
12472 DECL_THIS_EXTERN (decl) = 1;
12473 else if (storage_class == sc_static)
12474 DECL_THIS_STATIC (decl) = 1;
12476 /* Set constexpr flag on vars (functions got it in grokfndecl). */
12477 if (constexpr_p && VAR_P (decl))
12478 DECL_DECLARED_CONSTEXPR_P (decl) = true;
12480 /* Record constancy and volatility on the DECL itself . There's
12481 no need to do this when processing a template; we'll do this
12482 for the instantiated declaration based on the type of DECL. */
12483 if (!processing_template_decl)
12484 cp_apply_type_quals_to_decl (type_quals, decl);
12486 return decl;
12490 /* Subroutine of start_function. Ensure that each of the parameter
12491 types (as listed in PARMS) is complete, as is required for a
12492 function definition. */
12494 static void
12495 require_complete_types_for_parms (tree parms)
12497 for (; parms; parms = DECL_CHAIN (parms))
12499 if (dependent_type_p (TREE_TYPE (parms)))
12500 continue;
12501 if (!VOID_TYPE_P (TREE_TYPE (parms))
12502 && complete_type_or_else (TREE_TYPE (parms), parms))
12504 relayout_decl (parms);
12505 DECL_ARG_TYPE (parms) = type_passed_as (TREE_TYPE (parms));
12507 maybe_warn_parm_abi (TREE_TYPE (parms),
12508 DECL_SOURCE_LOCATION (parms));
12510 else
12511 /* grokparms or complete_type_or_else will have already issued
12512 an error. */
12513 TREE_TYPE (parms) = error_mark_node;
12517 /* Returns nonzero if T is a local variable. */
12520 local_variable_p (const_tree t)
12522 if ((VAR_P (t)
12523 /* A VAR_DECL with a context that is a _TYPE is a static data
12524 member. */
12525 && !TYPE_P (CP_DECL_CONTEXT (t))
12526 /* Any other non-local variable must be at namespace scope. */
12527 && !DECL_NAMESPACE_SCOPE_P (t))
12528 || (TREE_CODE (t) == PARM_DECL))
12529 return 1;
12531 return 0;
12534 /* Like local_variable_p, but suitable for use as a tree-walking
12535 function. */
12537 static tree
12538 local_variable_p_walkfn (tree *tp, int *walk_subtrees,
12539 void * /*data*/)
12541 if (local_variable_p (*tp)
12542 && (!DECL_ARTIFICIAL (*tp) || DECL_NAME (*tp) == this_identifier))
12543 return *tp;
12544 else if (TYPE_P (*tp))
12545 *walk_subtrees = 0;
12547 return NULL_TREE;
12550 /* Check that ARG, which is a default-argument expression for a
12551 parameter DECL, is valid. Returns ARG, or ERROR_MARK_NODE, if
12552 something goes wrong. DECL may also be a _TYPE node, rather than a
12553 DECL, if there is no DECL available. */
12555 tree
12556 check_default_argument (tree decl, tree arg, tsubst_flags_t complain)
12558 tree var;
12559 tree decl_type;
12561 if (TREE_CODE (arg) == DEFAULT_ARG)
12562 /* We get a DEFAULT_ARG when looking at an in-class declaration
12563 with a default argument. Ignore the argument for now; we'll
12564 deal with it after the class is complete. */
12565 return arg;
12567 if (TYPE_P (decl))
12569 decl_type = decl;
12570 decl = NULL_TREE;
12572 else
12573 decl_type = TREE_TYPE (decl);
12575 if (arg == error_mark_node
12576 || decl == error_mark_node
12577 || TREE_TYPE (arg) == error_mark_node
12578 || decl_type == error_mark_node)
12579 /* Something already went wrong. There's no need to check
12580 further. */
12581 return error_mark_node;
12583 /* [dcl.fct.default]
12585 A default argument expression is implicitly converted to the
12586 parameter type. */
12587 ++cp_unevaluated_operand;
12588 perform_implicit_conversion_flags (decl_type, arg, complain,
12589 LOOKUP_IMPLICIT);
12590 --cp_unevaluated_operand;
12592 /* Avoid redundant -Wzero-as-null-pointer-constant warnings at
12593 the call sites. */
12594 if (TYPE_PTR_OR_PTRMEM_P (decl_type)
12595 && null_ptr_cst_p (arg))
12596 return nullptr_node;
12598 /* [dcl.fct.default]
12600 Local variables shall not be used in default argument
12601 expressions.
12603 The keyword `this' shall not be used in a default argument of a
12604 member function. */
12605 var = cp_walk_tree_without_duplicates (&arg, local_variable_p_walkfn, NULL);
12606 if (var)
12608 if (complain & tf_warning_or_error)
12610 if (DECL_NAME (var) == this_identifier)
12611 permerror (input_location, "default argument %qE uses %qD",
12612 arg, var);
12613 else
12614 error ("default argument %qE uses local variable %qD", arg, var);
12616 return error_mark_node;
12619 /* All is well. */
12620 return arg;
12623 /* Returns a deprecated type used within TYPE, or NULL_TREE if none. */
12625 static tree
12626 type_is_deprecated (tree type)
12628 enum tree_code code;
12629 if (TREE_DEPRECATED (type))
12630 return type;
12631 if (TYPE_NAME (type))
12633 if (TREE_DEPRECATED (TYPE_NAME (type)))
12634 return type;
12635 else
12636 return NULL_TREE;
12639 /* Do warn about using typedefs to a deprecated class. */
12640 if (OVERLOAD_TYPE_P (type) && type != TYPE_MAIN_VARIANT (type))
12641 return type_is_deprecated (TYPE_MAIN_VARIANT (type));
12643 code = TREE_CODE (type);
12645 if (code == POINTER_TYPE || code == REFERENCE_TYPE
12646 || code == OFFSET_TYPE || code == FUNCTION_TYPE
12647 || code == METHOD_TYPE || code == ARRAY_TYPE)
12648 return type_is_deprecated (TREE_TYPE (type));
12650 if (TYPE_PTRMEMFUNC_P (type))
12651 return type_is_deprecated
12652 (TREE_TYPE (TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (type))));
12654 return NULL_TREE;
12657 /* Decode the list of parameter types for a function type.
12658 Given the list of things declared inside the parens,
12659 return a list of types.
12661 If this parameter does not end with an ellipsis, we append
12662 void_list_node.
12664 *PARMS is set to the chain of PARM_DECLs created. */
12666 tree
12667 grokparms (tree parmlist, tree *parms)
12669 tree result = NULL_TREE;
12670 tree decls = NULL_TREE;
12671 tree parm;
12672 int any_error = 0;
12674 for (parm = parmlist; parm != NULL_TREE; parm = TREE_CHAIN (parm))
12676 tree type = NULL_TREE;
12677 tree init = TREE_PURPOSE (parm);
12678 tree decl = TREE_VALUE (parm);
12680 if (parm == void_list_node)
12681 break;
12683 if (! decl || TREE_TYPE (decl) == error_mark_node)
12684 continue;
12686 type = TREE_TYPE (decl);
12687 if (VOID_TYPE_P (type))
12689 if (same_type_p (type, void_type_node)
12690 && !init
12691 && !DECL_NAME (decl) && !result
12692 && TREE_CHAIN (parm) == void_list_node)
12693 /* DR 577: A parameter list consisting of a single
12694 unnamed parameter of non-dependent type 'void'. */
12695 break;
12696 else if (cv_qualified_p (type))
12697 error_at (DECL_SOURCE_LOCATION (decl),
12698 "invalid use of cv-qualified type %qT in "
12699 "parameter declaration", type);
12700 else
12701 error_at (DECL_SOURCE_LOCATION (decl),
12702 "invalid use of type %<void%> in parameter "
12703 "declaration");
12704 /* It's not a good idea to actually create parameters of
12705 type `void'; other parts of the compiler assume that a
12706 void type terminates the parameter list. */
12707 type = error_mark_node;
12708 TREE_TYPE (decl) = error_mark_node;
12711 if (type != error_mark_node)
12713 if (deprecated_state != DEPRECATED_SUPPRESS)
12715 tree deptype = type_is_deprecated (type);
12716 if (deptype)
12717 warn_deprecated_use (deptype, NULL_TREE);
12720 /* Top-level qualifiers on the parameters are
12721 ignored for function types. */
12722 type = cp_build_qualified_type (type, 0);
12723 if (TREE_CODE (type) == METHOD_TYPE)
12725 error ("parameter %qD invalidly declared method type", decl);
12726 type = build_pointer_type (type);
12727 TREE_TYPE (decl) = type;
12729 else if (abstract_virtuals_error (decl, type))
12730 any_error = 1; /* Seems like a good idea. */
12731 else if (cxx_dialect < cxx17 && POINTER_TYPE_P (type))
12733 /* Before C++17 DR 393:
12734 [dcl.fct]/6, parameter types cannot contain pointers
12735 (references) to arrays of unknown bound. */
12736 tree t = TREE_TYPE (type);
12737 int ptr = TYPE_PTR_P (type);
12739 while (1)
12741 if (TYPE_PTR_P (t))
12742 ptr = 1;
12743 else if (TREE_CODE (t) != ARRAY_TYPE)
12744 break;
12745 else if (!TYPE_DOMAIN (t))
12746 break;
12747 t = TREE_TYPE (t);
12749 if (TREE_CODE (t) == ARRAY_TYPE)
12750 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wpedantic,
12752 ? G_("parameter %qD includes pointer to array of "
12753 "unknown bound %qT")
12754 : G_("parameter %qD includes reference to array of "
12755 "unknown bound %qT"),
12756 decl, t);
12759 if (any_error)
12760 init = NULL_TREE;
12761 else if (init && !processing_template_decl)
12762 init = check_default_argument (decl, init, tf_warning_or_error);
12765 DECL_CHAIN (decl) = decls;
12766 decls = decl;
12767 result = tree_cons (init, type, result);
12769 decls = nreverse (decls);
12770 result = nreverse (result);
12771 if (parm)
12772 result = chainon (result, void_list_node);
12773 *parms = decls;
12775 return result;
12779 /* D is a constructor or overloaded `operator='.
12781 Let T be the class in which D is declared. Then, this function
12782 returns:
12784 -1 if D's is an ill-formed constructor or copy assignment operator
12785 whose first parameter is of type `T'.
12786 0 if D is not a copy constructor or copy assignment
12787 operator.
12788 1 if D is a copy constructor or copy assignment operator whose
12789 first parameter is a reference to non-const qualified T.
12790 2 if D is a copy constructor or copy assignment operator whose
12791 first parameter is a reference to const qualified T.
12793 This function can be used as a predicate. Positive values indicate
12794 a copy constructor and nonzero values indicate a copy assignment
12795 operator. */
12798 copy_fn_p (const_tree d)
12800 tree args;
12801 tree arg_type;
12802 int result = 1;
12804 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
12806 if (TREE_CODE (d) == TEMPLATE_DECL
12807 || (DECL_TEMPLATE_INFO (d)
12808 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
12809 /* Instantiations of template member functions are never copy
12810 functions. Note that member functions of templated classes are
12811 represented as template functions internally, and we must
12812 accept those as copy functions. */
12813 return 0;
12815 args = FUNCTION_FIRST_USER_PARMTYPE (d);
12816 if (!args)
12817 return 0;
12819 arg_type = TREE_VALUE (args);
12820 if (arg_type == error_mark_node)
12821 return 0;
12823 if (TYPE_MAIN_VARIANT (arg_type) == DECL_CONTEXT (d))
12825 /* Pass by value copy assignment operator. */
12826 result = -1;
12828 else if (TREE_CODE (arg_type) == REFERENCE_TYPE
12829 && !TYPE_REF_IS_RVALUE (arg_type)
12830 && TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)) == DECL_CONTEXT (d))
12832 if (CP_TYPE_CONST_P (TREE_TYPE (arg_type)))
12833 result = 2;
12835 else
12836 return 0;
12838 args = TREE_CHAIN (args);
12840 if (args && args != void_list_node && !TREE_PURPOSE (args))
12841 /* There are more non-optional args. */
12842 return 0;
12844 return result;
12847 /* D is a constructor or overloaded `operator='.
12849 Let T be the class in which D is declared. Then, this function
12850 returns true when D is a move constructor or move assignment
12851 operator, false otherwise. */
12853 bool
12854 move_fn_p (const_tree d)
12856 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
12858 if (cxx_dialect == cxx98)
12859 /* There are no move constructors if we are in C++98 mode. */
12860 return false;
12862 if (TREE_CODE (d) == TEMPLATE_DECL
12863 || (DECL_TEMPLATE_INFO (d)
12864 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
12865 /* Instantiations of template member functions are never move
12866 functions. Note that member functions of templated classes are
12867 represented as template functions internally, and we must
12868 accept those as move functions. */
12869 return 0;
12871 return move_signature_fn_p (d);
12874 /* D is a constructor or overloaded `operator='.
12876 Then, this function returns true when D has the same signature as a move
12877 constructor or move assignment operator (because either it is such a
12878 ctor/op= or it is a template specialization with the same signature),
12879 false otherwise. */
12881 bool
12882 move_signature_fn_p (const_tree d)
12884 tree args;
12885 tree arg_type;
12886 bool result = false;
12888 args = FUNCTION_FIRST_USER_PARMTYPE (d);
12889 if (!args)
12890 return 0;
12892 arg_type = TREE_VALUE (args);
12893 if (arg_type == error_mark_node)
12894 return 0;
12896 if (TREE_CODE (arg_type) == REFERENCE_TYPE
12897 && TYPE_REF_IS_RVALUE (arg_type)
12898 && same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)),
12899 DECL_CONTEXT (d)))
12900 result = true;
12902 args = TREE_CHAIN (args);
12904 if (args && args != void_list_node && !TREE_PURPOSE (args))
12905 /* There are more non-optional args. */
12906 return false;
12908 return result;
12911 /* Remember any special properties of member function DECL. */
12913 void
12914 grok_special_member_properties (tree decl)
12916 tree class_type;
12918 if (!DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
12919 return;
12921 class_type = DECL_CONTEXT (decl);
12922 if (IDENTIFIER_CTOR_P (DECL_NAME (decl)))
12924 int ctor = copy_fn_p (decl);
12926 if (!DECL_ARTIFICIAL (decl))
12927 TYPE_HAS_USER_CONSTRUCTOR (class_type) = 1;
12929 if (ctor > 0)
12931 /* [class.copy]
12933 A non-template constructor for class X is a copy
12934 constructor if its first parameter is of type X&, const
12935 X&, volatile X& or const volatile X&, and either there
12936 are no other parameters or else all other parameters have
12937 default arguments. */
12938 TYPE_HAS_COPY_CTOR (class_type) = 1;
12939 if (user_provided_p (decl))
12940 TYPE_HAS_COMPLEX_COPY_CTOR (class_type) = 1;
12941 if (ctor > 1)
12942 TYPE_HAS_CONST_COPY_CTOR (class_type) = 1;
12944 else if (sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (decl)))
12945 TYPE_HAS_DEFAULT_CONSTRUCTOR (class_type) = 1;
12946 else if (move_fn_p (decl) && user_provided_p (decl))
12947 TYPE_HAS_COMPLEX_MOVE_CTOR (class_type) = 1;
12948 else if (is_list_ctor (decl))
12949 TYPE_HAS_LIST_CTOR (class_type) = 1;
12951 if (DECL_DECLARED_CONSTEXPR_P (decl)
12952 && !ctor && !move_fn_p (decl))
12953 TYPE_HAS_CONSTEXPR_CTOR (class_type) = 1;
12955 else if (DECL_NAME (decl) == assign_op_identifier)
12957 /* [class.copy]
12959 A non-template assignment operator for class X is a copy
12960 assignment operator if its parameter is of type X, X&, const
12961 X&, volatile X& or const volatile X&. */
12963 int assop = copy_fn_p (decl);
12965 if (assop)
12967 TYPE_HAS_COPY_ASSIGN (class_type) = 1;
12968 if (user_provided_p (decl))
12969 TYPE_HAS_COMPLEX_COPY_ASSIGN (class_type) = 1;
12970 if (assop != 1)
12971 TYPE_HAS_CONST_COPY_ASSIGN (class_type) = 1;
12973 else if (move_fn_p (decl) && user_provided_p (decl))
12974 TYPE_HAS_COMPLEX_MOVE_ASSIGN (class_type) = 1;
12976 else if (IDENTIFIER_CONV_OP_P (DECL_NAME (decl)))
12977 TYPE_HAS_CONVERSION (class_type) = true;
12979 /* Destructors are handled in check_methods. */
12982 /* Check a constructor DECL has the correct form. Complains
12983 if the class has a constructor of the form X(X). */
12985 bool
12986 grok_ctor_properties (const_tree ctype, const_tree decl)
12988 int ctor_parm = copy_fn_p (decl);
12990 if (ctor_parm < 0)
12992 /* [class.copy]
12994 A declaration of a constructor for a class X is ill-formed if
12995 its first parameter is of type (optionally cv-qualified) X
12996 and either there are no other parameters or else all other
12997 parameters have default arguments.
12999 We *don't* complain about member template instantiations that
13000 have this form, though; they can occur as we try to decide
13001 what constructor to use during overload resolution. Since
13002 overload resolution will never prefer such a constructor to
13003 the non-template copy constructor (which is either explicitly
13004 or implicitly defined), there's no need to worry about their
13005 existence. Theoretically, they should never even be
13006 instantiated, but that's hard to forestall. */
13007 error ("invalid constructor; you probably meant %<%T (const %T&)%>",
13008 ctype, ctype);
13009 return false;
13012 return true;
13015 /* DECL is a declaration for an overloaded or conversion operator. If
13016 COMPLAIN is true, errors are issued for invalid declarations. */
13018 bool
13019 grok_op_properties (tree decl, bool complain)
13021 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
13022 bool methodp = TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE;
13023 tree name = DECL_NAME (decl);
13025 tree class_type = DECL_CONTEXT (decl);
13026 if (class_type && !CLASS_TYPE_P (class_type))
13027 class_type = NULL_TREE;
13029 tree_code operator_code;
13030 unsigned op_flags;
13031 if (IDENTIFIER_CONV_OP_P (name))
13033 /* Conversion operators are TYPE_EXPR for the purposes of this
13034 function. */
13035 operator_code = TYPE_EXPR;
13036 op_flags = OVL_OP_FLAG_UNARY;
13038 else
13040 const ovl_op_info_t *ovl_op = IDENTIFIER_OVL_OP_INFO (name);
13042 operator_code = ovl_op->tree_code;
13043 op_flags = ovl_op->flags;
13044 gcc_checking_assert (operator_code != ERROR_MARK);
13045 DECL_OVERLOADED_OPERATOR_CODE_RAW (decl) = ovl_op->ovl_op_code;
13048 if (op_flags & OVL_OP_FLAG_ALLOC)
13050 /* operator new and operator delete are quite special. */
13051 if (class_type)
13052 switch (op_flags)
13054 case OVL_OP_FLAG_ALLOC:
13055 TYPE_HAS_NEW_OPERATOR (class_type) = 1;
13056 break;
13058 case OVL_OP_FLAG_ALLOC | OVL_OP_FLAG_DELETE:
13059 TYPE_GETS_DELETE (class_type) |= 1;
13060 break;
13062 case OVL_OP_FLAG_ALLOC | OVL_OP_FLAG_VEC:
13063 TYPE_HAS_ARRAY_NEW_OPERATOR (class_type) = 1;
13064 break;
13066 case OVL_OP_FLAG_ALLOC | OVL_OP_FLAG_DELETE | OVL_OP_FLAG_VEC:
13067 TYPE_GETS_DELETE (class_type) |= 2;
13068 break;
13070 default:
13071 gcc_unreachable ();
13074 /* [basic.std.dynamic.allocation]/1:
13076 A program is ill-formed if an allocation function is declared
13077 in a namespace scope other than global scope or declared
13078 static in global scope.
13080 The same also holds true for deallocation functions. */
13081 if (DECL_NAMESPACE_SCOPE_P (decl))
13083 if (CP_DECL_CONTEXT (decl) != global_namespace)
13085 error ("%qD may not be declared within a namespace", decl);
13086 return false;
13089 if (!TREE_PUBLIC (decl))
13091 error ("%qD may not be declared as static", decl);
13092 return false;
13096 if (op_flags & OVL_OP_FLAG_DELETE)
13097 TREE_TYPE (decl) = coerce_delete_type (TREE_TYPE (decl));
13098 else
13100 DECL_IS_OPERATOR_NEW (decl) = 1;
13101 TREE_TYPE (decl) = coerce_new_type (TREE_TYPE (decl));
13104 return true;
13107 /* An operator function must either be a non-static member function
13108 or have at least one parameter of a class, a reference to a class,
13109 an enumeration, or a reference to an enumeration. 13.4.0.6 */
13110 if (! methodp || DECL_STATIC_FUNCTION_P (decl))
13112 if (operator_code == TYPE_EXPR
13113 || operator_code == CALL_EXPR
13114 || operator_code == COMPONENT_REF
13115 || operator_code == ARRAY_REF
13116 || operator_code == NOP_EXPR)
13118 error ("%qD must be a nonstatic member function", decl);
13119 return false;
13122 if (DECL_STATIC_FUNCTION_P (decl))
13124 error ("%qD must be either a non-static member "
13125 "function or a non-member function", decl);
13126 return false;
13129 for (tree arg = argtypes; ; arg = TREE_CHAIN (arg))
13131 if (!arg || arg == void_list_node)
13133 if (complain)
13134 error ("%qD must have an argument of class or "
13135 "enumerated type", decl);
13136 return false;
13139 tree type = non_reference (TREE_VALUE (arg));
13140 if (type == error_mark_node)
13141 return false;
13143 /* MAYBE_CLASS_TYPE_P, rather than CLASS_TYPE_P, is used
13144 because these checks are performed even on template
13145 functions. */
13146 if (MAYBE_CLASS_TYPE_P (type)
13147 || TREE_CODE (type) == ENUMERAL_TYPE)
13148 break;
13152 if (operator_code == CALL_EXPR)
13153 /* There are no further restrictions on the arguments to an overloaded
13154 "operator ()". */
13155 return true;
13157 if (operator_code == COND_EXPR)
13159 /* 13.4.0.3 */
13160 error ("ISO C++ prohibits overloading operator ?:");
13161 return false;
13164 /* Count the number of arguments and check for ellipsis. */
13165 int arity = 0;
13166 for (tree arg = argtypes; arg != void_list_node; arg = TREE_CHAIN (arg))
13168 if (!arg)
13170 /* Variadic. */
13171 error ("%qD must not have variable number of arguments", decl);
13172 return false;
13174 ++arity;
13177 /* Verify correct number of arguments. */
13178 switch (op_flags)
13180 case OVL_OP_FLAG_AMBIARY:
13181 if (arity == 1)
13183 /* We have a unary instance of an ambi-ary op. Remap to the
13184 unary one. */
13185 unsigned alt = ovl_op_alternate[ovl_op_mapping [operator_code]];
13186 const ovl_op_info_t *ovl_op = &ovl_op_info[false][alt];
13187 gcc_checking_assert (ovl_op->flags == OVL_OP_FLAG_UNARY);
13188 operator_code = ovl_op->tree_code;
13189 DECL_OVERLOADED_OPERATOR_CODE_RAW (decl) = ovl_op->ovl_op_code;
13191 else if (arity != 2)
13193 /* This was an ambiguous operator but is invalid. */
13194 error (methodp
13195 ? G_("%qD must have either zero or one argument")
13196 : G_("%qD must have either one or two arguments"), decl);
13197 return false;
13199 else if ((operator_code == POSTINCREMENT_EXPR
13200 || operator_code == POSTDECREMENT_EXPR)
13201 && ! processing_template_decl
13202 /* x++ and x--'s second argument must be an int. */
13203 && ! same_type_p (TREE_VALUE (TREE_CHAIN (argtypes)),
13204 integer_type_node))
13206 error (methodp
13207 ? G_("postfix %qD must have %<int%> as its argument")
13208 : G_("postfix %qD must have %<int%> as its second argument"),
13209 decl);
13210 return false;
13212 break;
13214 case OVL_OP_FLAG_UNARY:
13215 if (arity != 1)
13217 error (methodp
13218 ? G_("%qD must have no arguments")
13219 : G_("%qD must have exactly one argument"), decl);
13220 return false;
13222 break;
13224 case OVL_OP_FLAG_BINARY:
13225 if (arity != 2)
13227 error (methodp
13228 ? G_("%qD must have exactly one argument")
13229 : G_("%qD must have exactly two arguments"), decl);
13230 return false;
13232 break;
13234 default:
13235 gcc_unreachable ();
13238 /* There can be no default arguments. */
13239 for (tree arg = argtypes; arg != void_list_node; arg = TREE_CHAIN (arg))
13240 if (TREE_PURPOSE (arg))
13242 TREE_PURPOSE (arg) = NULL_TREE;
13243 if (operator_code == POSTINCREMENT_EXPR
13244 || operator_code == POSTDECREMENT_EXPR)
13245 pedwarn (input_location, OPT_Wpedantic,
13246 "%qD cannot have default arguments", decl);
13247 else
13249 error ("%qD cannot have default arguments", decl);
13250 return false;
13254 /* At this point the declaration is well-formed. It may not be
13255 sensible though. */
13257 /* Check member function warnings only on the in-class declaration.
13258 There's no point warning on an out-of-class definition. */
13259 if (class_type && class_type != current_class_type)
13260 return true;
13262 /* Warn about conversion operators that will never be used. */
13263 if (IDENTIFIER_CONV_OP_P (name)
13264 && ! DECL_TEMPLATE_INFO (decl)
13265 && warn_conversion)
13267 tree t = TREE_TYPE (name);
13268 int ref = (TREE_CODE (t) == REFERENCE_TYPE);
13270 if (ref)
13271 t = TYPE_MAIN_VARIANT (TREE_TYPE (t));
13273 if (VOID_TYPE_P (t))
13274 warning (OPT_Wconversion,
13276 ? G_("conversion to a reference to void "
13277 "will never use a type conversion operator")
13278 : G_("conversion to void "
13279 "will never use a type conversion operator"));
13280 else if (class_type)
13282 if (t == class_type)
13283 warning (OPT_Wconversion,
13285 ? G_("conversion to a reference to the same type "
13286 "will never use a type conversion operator")
13287 : G_("conversion to the same type "
13288 "will never use a type conversion operator"));
13289 /* Don't force t to be complete here. */
13290 else if (MAYBE_CLASS_TYPE_P (t)
13291 && COMPLETE_TYPE_P (t)
13292 && DERIVED_FROM_P (t, class_type))
13293 warning (OPT_Wconversion,
13295 ? G_("conversion to a reference to a base class "
13296 "will never use a type conversion operator")
13297 : G_("conversion to a base class "
13298 "will never use a type conversion operator"));
13302 if (!warn_ecpp)
13303 return true;
13305 /* Effective C++ rules below. */
13307 /* More Effective C++ rule 7. */
13308 if (operator_code == TRUTH_ANDIF_EXPR
13309 || operator_code == TRUTH_ORIF_EXPR
13310 || operator_code == COMPOUND_EXPR)
13311 warning (OPT_Weffc__,
13312 "user-defined %qD always evaluates both arguments", decl);
13314 /* More Effective C++ rule 6. */
13315 if (operator_code == POSTINCREMENT_EXPR
13316 || operator_code == POSTDECREMENT_EXPR
13317 || operator_code == PREINCREMENT_EXPR
13318 || operator_code == PREDECREMENT_EXPR)
13320 tree arg = TREE_VALUE (argtypes);
13321 tree ret = TREE_TYPE (TREE_TYPE (decl));
13322 if (methodp || TREE_CODE (arg) == REFERENCE_TYPE)
13323 arg = TREE_TYPE (arg);
13324 arg = TYPE_MAIN_VARIANT (arg);
13326 if (operator_code == PREINCREMENT_EXPR
13327 || operator_code == PREDECREMENT_EXPR)
13329 if (TREE_CODE (ret) != REFERENCE_TYPE
13330 || !same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (ret)), arg))
13331 warning (OPT_Weffc__, "prefix %qD should return %qT", decl,
13332 build_reference_type (arg));
13334 else
13336 if (!same_type_p (TYPE_MAIN_VARIANT (ret), arg))
13337 warning (OPT_Weffc__, "postfix %qD should return %qT", decl, arg);
13341 /* Effective C++ rule 23. */
13342 if (!DECL_ASSIGNMENT_OPERATOR_P (decl)
13343 && (operator_code == PLUS_EXPR
13344 || operator_code == MINUS_EXPR
13345 || operator_code == TRUNC_DIV_EXPR
13346 || operator_code == MULT_EXPR
13347 || operator_code == TRUNC_MOD_EXPR)
13348 && TREE_CODE (TREE_TYPE (TREE_TYPE (decl))) == REFERENCE_TYPE)
13349 warning (OPT_Weffc__, "%qD should return by value", decl);
13351 return true;
13354 /* Return a string giving the keyword associate with CODE. */
13356 static const char *
13357 tag_name (enum tag_types code)
13359 switch (code)
13361 case record_type:
13362 return "struct";
13363 case class_type:
13364 return "class";
13365 case union_type:
13366 return "union";
13367 case enum_type:
13368 return "enum";
13369 case typename_type:
13370 return "typename";
13371 default:
13372 gcc_unreachable ();
13376 /* Name lookup in an elaborated-type-specifier (after the keyword
13377 indicated by TAG_CODE) has found the TYPE_DECL DECL. If the
13378 elaborated-type-specifier is invalid, issue a diagnostic and return
13379 error_mark_node; otherwise, return the *_TYPE to which it referred.
13380 If ALLOW_TEMPLATE_P is true, TYPE may be a class template. */
13382 tree
13383 check_elaborated_type_specifier (enum tag_types tag_code,
13384 tree decl,
13385 bool allow_template_p)
13387 tree type;
13389 /* In the case of:
13391 struct S { struct S *p; };
13393 name lookup will find the TYPE_DECL for the implicit "S::S"
13394 typedef. Adjust for that here. */
13395 if (DECL_SELF_REFERENCE_P (decl))
13396 decl = TYPE_NAME (TREE_TYPE (decl));
13398 type = TREE_TYPE (decl);
13400 /* Check TEMPLATE_TYPE_PARM first because DECL_IMPLICIT_TYPEDEF_P
13401 is false for this case as well. */
13402 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
13404 error ("using template type parameter %qT after %qs",
13405 type, tag_name (tag_code));
13406 return error_mark_node;
13408 /* Accept template template parameters. */
13409 else if (allow_template_p
13410 && (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM
13411 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM))
13413 /* [dcl.type.elab]
13415 If the identifier resolves to a typedef-name or the
13416 simple-template-id resolves to an alias template
13417 specialization, the elaborated-type-specifier is ill-formed.
13419 In other words, the only legitimate declaration to use in the
13420 elaborated type specifier is the implicit typedef created when
13421 the type is declared. */
13422 else if (!DECL_IMPLICIT_TYPEDEF_P (decl)
13423 && !DECL_SELF_REFERENCE_P (decl)
13424 && tag_code != typename_type)
13426 if (alias_template_specialization_p (type))
13427 error ("using alias template specialization %qT after %qs",
13428 type, tag_name (tag_code));
13429 else
13430 error ("using typedef-name %qD after %qs", decl, tag_name (tag_code));
13431 inform (DECL_SOURCE_LOCATION (decl),
13432 "%qD has a previous declaration here", decl);
13433 return error_mark_node;
13435 else if (TREE_CODE (type) != RECORD_TYPE
13436 && TREE_CODE (type) != UNION_TYPE
13437 && tag_code != enum_type
13438 && tag_code != typename_type)
13440 error ("%qT referred to as %qs", type, tag_name (tag_code));
13441 inform (location_of (type), "%qT has a previous declaration here", type);
13442 return error_mark_node;
13444 else if (TREE_CODE (type) != ENUMERAL_TYPE
13445 && tag_code == enum_type)
13447 error ("%qT referred to as enum", type);
13448 inform (location_of (type), "%qT has a previous declaration here", type);
13449 return error_mark_node;
13451 else if (!allow_template_p
13452 && TREE_CODE (type) == RECORD_TYPE
13453 && CLASSTYPE_IS_TEMPLATE (type))
13455 /* If a class template appears as elaborated type specifier
13456 without a template header such as:
13458 template <class T> class C {};
13459 void f(class C); // No template header here
13461 then the required template argument is missing. */
13462 error ("template argument required for %<%s %T%>",
13463 tag_name (tag_code),
13464 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type)));
13465 return error_mark_node;
13468 return type;
13471 /* Lookup NAME in elaborate type specifier in scope according to
13472 SCOPE and issue diagnostics if necessary.
13473 Return *_TYPE node upon success, NULL_TREE when the NAME is not
13474 found, and ERROR_MARK_NODE for type error. */
13476 static tree
13477 lookup_and_check_tag (enum tag_types tag_code, tree name,
13478 tag_scope scope, bool template_header_p)
13480 tree t;
13481 tree decl;
13482 if (scope == ts_global)
13484 /* First try ordinary name lookup, ignoring hidden class name
13485 injected via friend declaration. */
13486 decl = lookup_name_prefer_type (name, 2);
13487 decl = strip_using_decl (decl);
13488 /* If that fails, the name will be placed in the smallest
13489 non-class, non-function-prototype scope according to 3.3.1/5.
13490 We may already have a hidden name declared as friend in this
13491 scope. So lookup again but not ignoring hidden names.
13492 If we find one, that name will be made visible rather than
13493 creating a new tag. */
13494 if (!decl)
13495 decl = lookup_type_scope (name, ts_within_enclosing_non_class);
13497 else
13498 decl = lookup_type_scope (name, scope);
13500 if (decl
13501 && (DECL_CLASS_TEMPLATE_P (decl)
13502 /* If scope is ts_current we're defining a class, so ignore a
13503 template template parameter. */
13504 || (scope != ts_current
13505 && DECL_TEMPLATE_TEMPLATE_PARM_P (decl))))
13506 decl = DECL_TEMPLATE_RESULT (decl);
13508 if (decl && TREE_CODE (decl) == TYPE_DECL)
13510 /* Look for invalid nested type:
13511 class C {
13512 class C {};
13513 }; */
13514 if (scope == ts_current && DECL_SELF_REFERENCE_P (decl))
13516 error ("%qD has the same name as the class in which it is "
13517 "declared",
13518 decl);
13519 return error_mark_node;
13522 /* Two cases we need to consider when deciding if a class
13523 template is allowed as an elaborated type specifier:
13524 1. It is a self reference to its own class.
13525 2. It comes with a template header.
13527 For example:
13529 template <class T> class C {
13530 class C *c1; // DECL_SELF_REFERENCE_P is true
13531 class D;
13533 template <class U> class C; // template_header_p is true
13534 template <class T> class C<T>::D {
13535 class C *c2; // DECL_SELF_REFERENCE_P is true
13536 }; */
13538 t = check_elaborated_type_specifier (tag_code,
13539 decl,
13540 template_header_p
13541 | DECL_SELF_REFERENCE_P (decl));
13542 if (template_header_p && t && CLASS_TYPE_P (t)
13543 && (!CLASSTYPE_TEMPLATE_INFO (t)
13544 || (!PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t)))))
13546 error ("%qT is not a template", t);
13547 inform (location_of (t), "previous declaration here");
13548 if (TYPE_CLASS_SCOPE_P (t)
13549 && CLASSTYPE_TEMPLATE_INFO (TYPE_CONTEXT (t)))
13550 inform (input_location,
13551 "perhaps you want to explicitly add %<%T::%>",
13552 TYPE_CONTEXT (t));
13553 t = error_mark_node;
13556 return t;
13558 else if (decl && TREE_CODE (decl) == TREE_LIST)
13560 error ("reference to %qD is ambiguous", name);
13561 print_candidates (decl);
13562 return error_mark_node;
13564 else
13565 return NULL_TREE;
13568 /* Get the struct, enum or union (TAG_CODE says which) with tag NAME.
13569 Define the tag as a forward-reference if it is not defined.
13571 If a declaration is given, process it here, and report an error if
13572 multiple declarations are not identical.
13574 SCOPE is TS_CURRENT when this is also a definition. Only look in
13575 the current frame for the name (since C++ allows new names in any
13576 scope.) It is TS_WITHIN_ENCLOSING_NON_CLASS if this is a friend
13577 declaration. Only look beginning from the current scope outward up
13578 till the nearest non-class scope. Otherwise it is TS_GLOBAL.
13580 TEMPLATE_HEADER_P is true when this declaration is preceded by
13581 a set of template parameters. */
13583 static tree
13584 xref_tag_1 (enum tag_types tag_code, tree name,
13585 tag_scope scope, bool template_header_p)
13587 enum tree_code code;
13588 tree context = NULL_TREE;
13590 gcc_assert (identifier_p (name));
13592 switch (tag_code)
13594 case record_type:
13595 case class_type:
13596 code = RECORD_TYPE;
13597 break;
13598 case union_type:
13599 code = UNION_TYPE;
13600 break;
13601 case enum_type:
13602 code = ENUMERAL_TYPE;
13603 break;
13604 default:
13605 gcc_unreachable ();
13608 /* In case of anonymous name, xref_tag is only called to
13609 make type node and push name. Name lookup is not required. */
13610 tree t = NULL_TREE;
13611 if (scope != ts_lambda && !anon_aggrname_p (name))
13612 t = lookup_and_check_tag (tag_code, name, scope, template_header_p);
13614 if (t == error_mark_node)
13615 return error_mark_node;
13617 if (scope != ts_current && t && current_class_type
13618 && template_class_depth (current_class_type)
13619 && template_header_p)
13621 if (TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM)
13622 return t;
13624 /* Since SCOPE is not TS_CURRENT, we are not looking at a
13625 definition of this tag. Since, in addition, we are currently
13626 processing a (member) template declaration of a template
13627 class, we must be very careful; consider:
13629 template <class X> struct S1
13631 template <class U> struct S2
13633 template <class V> friend struct S1;
13636 Here, the S2::S1 declaration should not be confused with the
13637 outer declaration. In particular, the inner version should
13638 have a template parameter of level 2, not level 1.
13640 On the other hand, when presented with:
13642 template <class T> struct S1
13644 template <class U> struct S2 {};
13645 template <class U> friend struct S2;
13648 the friend must find S1::S2 eventually. We accomplish this
13649 by making sure that the new type we create to represent this
13650 declaration has the right TYPE_CONTEXT. */
13651 context = TYPE_CONTEXT (t);
13652 t = NULL_TREE;
13655 if (! t)
13657 /* If no such tag is yet defined, create a forward-reference node
13658 and record it as the "definition".
13659 When a real declaration of this type is found,
13660 the forward-reference will be altered into a real type. */
13661 if (code == ENUMERAL_TYPE)
13663 error ("use of enum %q#D without previous declaration", name);
13664 return error_mark_node;
13666 else
13668 t = make_class_type (code);
13669 TYPE_CONTEXT (t) = context;
13670 if (scope == ts_lambda)
13672 /* Mark it as a lambda type. */
13673 CLASSTYPE_LAMBDA_EXPR (t) = error_mark_node;
13674 /* And push it into current scope. */
13675 scope = ts_current;
13677 t = pushtag (name, t, scope);
13680 else
13682 if (template_header_p && MAYBE_CLASS_TYPE_P (t))
13684 /* Check that we aren't trying to overload a class with different
13685 constraints. */
13686 tree constr = NULL_TREE;
13687 if (current_template_parms)
13689 tree reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
13690 constr = build_constraints (reqs, NULL_TREE);
13692 if (!redeclare_class_template (t, current_template_parms, constr))
13693 return error_mark_node;
13695 else if (!processing_template_decl
13696 && CLASS_TYPE_P (t)
13697 && CLASSTYPE_IS_TEMPLATE (t))
13699 error ("redeclaration of %qT as a non-template", t);
13700 inform (location_of (t), "previous declaration %qD", t);
13701 return error_mark_node;
13704 if (scope != ts_within_enclosing_non_class && TYPE_HIDDEN_P (t))
13706 /* This is no longer an invisible friend. Make it
13707 visible. */
13708 tree decl = TYPE_NAME (t);
13710 DECL_ANTICIPATED (decl) = false;
13711 DECL_FRIEND_P (decl) = false;
13713 if (TYPE_TEMPLATE_INFO (t))
13715 tree tmpl = TYPE_TI_TEMPLATE (t);
13716 DECL_ANTICIPATED (tmpl) = false;
13717 DECL_FRIEND_P (tmpl) = false;
13722 return t;
13725 /* Wrapper for xref_tag_1. */
13727 tree
13728 xref_tag (enum tag_types tag_code, tree name,
13729 tag_scope scope, bool template_header_p)
13731 tree ret;
13732 bool subtime;
13733 subtime = timevar_cond_start (TV_NAME_LOOKUP);
13734 ret = xref_tag_1 (tag_code, name, scope, template_header_p);
13735 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
13736 return ret;
13740 tree
13741 xref_tag_from_type (tree old, tree id, tag_scope scope)
13743 enum tag_types tag_kind;
13745 if (TREE_CODE (old) == RECORD_TYPE)
13746 tag_kind = (CLASSTYPE_DECLARED_CLASS (old) ? class_type : record_type);
13747 else
13748 tag_kind = union_type;
13750 if (id == NULL_TREE)
13751 id = TYPE_IDENTIFIER (old);
13753 return xref_tag (tag_kind, id, scope, false);
13756 /* Create the binfo hierarchy for REF with (possibly NULL) base list
13757 BASE_LIST. For each element on BASE_LIST the TREE_PURPOSE is an
13758 access_* node, and the TREE_VALUE is the type of the base-class.
13759 Non-NULL TREE_TYPE indicates virtual inheritance. */
13761 void
13762 xref_basetypes (tree ref, tree base_list)
13764 tree *basep;
13765 tree binfo, base_binfo;
13766 unsigned max_vbases = 0; /* Maximum direct & indirect virtual bases. */
13767 unsigned max_bases = 0; /* Maximum direct bases. */
13768 unsigned max_dvbases = 0; /* Maximum direct virtual bases. */
13769 int i;
13770 tree default_access;
13771 tree igo_prev; /* Track Inheritance Graph Order. */
13773 if (ref == error_mark_node)
13774 return;
13776 /* The base of a derived class is private by default, all others are
13777 public. */
13778 default_access = (TREE_CODE (ref) == RECORD_TYPE
13779 && CLASSTYPE_DECLARED_CLASS (ref)
13780 ? access_private_node : access_public_node);
13782 /* First, make sure that any templates in base-classes are
13783 instantiated. This ensures that if we call ourselves recursively
13784 we do not get confused about which classes are marked and which
13785 are not. */
13786 basep = &base_list;
13787 while (*basep)
13789 tree basetype = TREE_VALUE (*basep);
13791 /* The dependent_type_p call below should really be dependent_scope_p
13792 so that we give a hard error about using an incomplete type as a
13793 base, but we allow it with a pedwarn for backward
13794 compatibility. */
13795 if (processing_template_decl
13796 && CLASS_TYPE_P (basetype) && TYPE_BEING_DEFINED (basetype))
13797 cxx_incomplete_type_diagnostic (NULL_TREE, basetype, DK_PEDWARN);
13798 if (!dependent_type_p (basetype)
13799 && !complete_type_or_else (basetype, NULL))
13800 /* An incomplete type. Remove it from the list. */
13801 *basep = TREE_CHAIN (*basep);
13802 else
13804 max_bases++;
13805 if (TREE_TYPE (*basep))
13806 max_dvbases++;
13807 if (CLASS_TYPE_P (basetype))
13808 max_vbases += vec_safe_length (CLASSTYPE_VBASECLASSES (basetype));
13809 basep = &TREE_CHAIN (*basep);
13812 max_vbases += max_dvbases;
13814 TYPE_MARKED_P (ref) = 1;
13816 /* The binfo slot should be empty, unless this is an (ill-formed)
13817 redefinition. */
13818 gcc_assert (!TYPE_BINFO (ref) || TYPE_SIZE (ref));
13820 gcc_assert (TYPE_MAIN_VARIANT (ref) == ref);
13822 binfo = make_tree_binfo (max_bases);
13824 TYPE_BINFO (ref) = binfo;
13825 BINFO_OFFSET (binfo) = size_zero_node;
13826 BINFO_TYPE (binfo) = ref;
13828 /* Apply base-class info set up to the variants of this type. */
13829 fixup_type_variants (ref);
13831 if (max_bases)
13833 vec_alloc (BINFO_BASE_ACCESSES (binfo), max_bases);
13834 /* A C++98 POD cannot have base classes. */
13835 CLASSTYPE_NON_LAYOUT_POD_P (ref) = true;
13837 if (TREE_CODE (ref) == UNION_TYPE)
13839 error ("derived union %qT invalid", ref);
13840 return;
13844 if (max_bases > 1)
13845 warning (OPT_Wmultiple_inheritance,
13846 "%qT defined with multiple direct bases", ref);
13848 if (max_vbases)
13850 /* An aggregate can't have virtual base classes. */
13851 CLASSTYPE_NON_AGGREGATE (ref) = true;
13853 vec_alloc (CLASSTYPE_VBASECLASSES (ref), max_vbases);
13855 if (max_dvbases)
13856 warning (OPT_Wvirtual_inheritance,
13857 "%qT defined with direct virtual base", ref);
13860 for (igo_prev = binfo; base_list; base_list = TREE_CHAIN (base_list))
13862 tree access = TREE_PURPOSE (base_list);
13863 int via_virtual = TREE_TYPE (base_list) != NULL_TREE;
13864 tree basetype = TREE_VALUE (base_list);
13866 if (access == access_default_node)
13867 access = default_access;
13869 /* Before C++17, an aggregate cannot have base classes. In C++17, an
13870 aggregate can't have virtual, private, or protected base classes. */
13871 if (cxx_dialect < cxx17
13872 || access != access_public_node
13873 || via_virtual)
13874 CLASSTYPE_NON_AGGREGATE (ref) = true;
13876 if (PACK_EXPANSION_P (basetype))
13877 basetype = PACK_EXPANSION_PATTERN (basetype);
13878 if (TREE_CODE (basetype) == TYPE_DECL)
13879 basetype = TREE_TYPE (basetype);
13880 if (!MAYBE_CLASS_TYPE_P (basetype) || TREE_CODE (basetype) == UNION_TYPE)
13882 error ("base type %qT fails to be a struct or class type",
13883 basetype);
13884 goto dropped_base;
13887 base_binfo = NULL_TREE;
13888 if (CLASS_TYPE_P (basetype) && !dependent_scope_p (basetype))
13890 base_binfo = TYPE_BINFO (basetype);
13891 /* The original basetype could have been a typedef'd type. */
13892 basetype = BINFO_TYPE (base_binfo);
13894 /* Inherit flags from the base. */
13895 TYPE_HAS_NEW_OPERATOR (ref)
13896 |= TYPE_HAS_NEW_OPERATOR (basetype);
13897 TYPE_HAS_ARRAY_NEW_OPERATOR (ref)
13898 |= TYPE_HAS_ARRAY_NEW_OPERATOR (basetype);
13899 TYPE_GETS_DELETE (ref) |= TYPE_GETS_DELETE (basetype);
13900 TYPE_HAS_CONVERSION (ref) |= TYPE_HAS_CONVERSION (basetype);
13901 CLASSTYPE_DIAMOND_SHAPED_P (ref)
13902 |= CLASSTYPE_DIAMOND_SHAPED_P (basetype);
13903 CLASSTYPE_REPEATED_BASE_P (ref)
13904 |= CLASSTYPE_REPEATED_BASE_P (basetype);
13907 /* We must do this test after we've seen through a typedef
13908 type. */
13909 if (TYPE_MARKED_P (basetype))
13911 if (basetype == ref)
13912 error ("recursive type %qT undefined", basetype);
13913 else
13914 error ("duplicate base type %qT invalid", basetype);
13915 goto dropped_base;
13918 if (PACK_EXPANSION_P (TREE_VALUE (base_list)))
13919 /* Regenerate the pack expansion for the bases. */
13920 basetype = make_pack_expansion (basetype);
13922 TYPE_MARKED_P (basetype) = 1;
13924 base_binfo = copy_binfo (base_binfo, basetype, ref,
13925 &igo_prev, via_virtual);
13926 if (!BINFO_INHERITANCE_CHAIN (base_binfo))
13927 BINFO_INHERITANCE_CHAIN (base_binfo) = binfo;
13929 BINFO_BASE_APPEND (binfo, base_binfo);
13930 BINFO_BASE_ACCESS_APPEND (binfo, access);
13931 continue;
13933 dropped_base:
13934 /* Update max_vbases to reflect the reality that we are dropping
13935 this base: if it reaches zero we want to undo the vec_alloc
13936 above to avoid inconsistencies during error-recovery: eg, in
13937 build_special_member_call, CLASSTYPE_VBASECLASSES non null
13938 and vtt null (c++/27952). */
13939 if (via_virtual)
13940 max_vbases--;
13941 if (CLASS_TYPE_P (basetype))
13942 max_vbases
13943 -= vec_safe_length (CLASSTYPE_VBASECLASSES (basetype));
13946 if (CLASSTYPE_VBASECLASSES (ref)
13947 && max_vbases == 0)
13948 vec_free (CLASSTYPE_VBASECLASSES (ref));
13950 if (vec_safe_length (CLASSTYPE_VBASECLASSES (ref)) < max_vbases)
13951 /* If we didn't get max_vbases vbases, we must have shared at
13952 least one of them, and are therefore diamond shaped. */
13953 CLASSTYPE_DIAMOND_SHAPED_P (ref) = 1;
13955 /* Unmark all the types. */
13956 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
13957 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
13958 TYPE_MARKED_P (ref) = 0;
13960 /* Now see if we have a repeated base type. */
13961 if (!CLASSTYPE_REPEATED_BASE_P (ref))
13963 for (base_binfo = binfo; base_binfo;
13964 base_binfo = TREE_CHAIN (base_binfo))
13966 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
13968 CLASSTYPE_REPEATED_BASE_P (ref) = 1;
13969 break;
13971 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 1;
13973 for (base_binfo = binfo; base_binfo;
13974 base_binfo = TREE_CHAIN (base_binfo))
13975 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
13976 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
13977 else
13978 break;
13983 /* Copies the enum-related properties from type SRC to type DST.
13984 Used with the underlying type of an enum and the enum itself. */
13985 static void
13986 copy_type_enum (tree dst, tree src)
13988 tree t;
13989 for (t = dst; t; t = TYPE_NEXT_VARIANT (t))
13991 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (src);
13992 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (src);
13993 TYPE_SIZE (t) = TYPE_SIZE (src);
13994 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (src);
13995 SET_TYPE_MODE (dst, TYPE_MODE (src));
13996 TYPE_PRECISION (t) = TYPE_PRECISION (src);
13997 unsigned valign = TYPE_ALIGN (src);
13998 if (TYPE_USER_ALIGN (t))
13999 valign = MAX (valign, TYPE_ALIGN (t));
14000 else
14001 TYPE_USER_ALIGN (t) = TYPE_USER_ALIGN (src);
14002 SET_TYPE_ALIGN (t, valign);
14003 TYPE_UNSIGNED (t) = TYPE_UNSIGNED (src);
14007 /* Begin compiling the definition of an enumeration type.
14008 NAME is its name,
14010 if ENUMTYPE is not NULL_TREE then the type has alredy been found.
14012 UNDERLYING_TYPE is the type that will be used as the storage for
14013 the enumeration type. This should be NULL_TREE if no storage type
14014 was specified.
14016 ATTRIBUTES are any attributes specified after the enum-key.
14018 SCOPED_ENUM_P is true if this is a scoped enumeration type.
14020 if IS_NEW is not NULL, gets TRUE iff a new type is created.
14022 Returns the type object, as yet incomplete.
14023 Also records info about it so that build_enumerator
14024 may be used to declare the individual values as they are read. */
14026 tree
14027 start_enum (tree name, tree enumtype, tree underlying_type,
14028 tree attributes, bool scoped_enum_p, bool *is_new)
14030 tree prevtype = NULL_TREE;
14031 gcc_assert (identifier_p (name));
14033 if (is_new)
14034 *is_new = false;
14035 /* [C++0x dcl.enum]p5:
14037 If not explicitly specified, the underlying type of a scoped
14038 enumeration type is int. */
14039 if (!underlying_type && scoped_enum_p)
14040 underlying_type = integer_type_node;
14042 if (underlying_type)
14043 underlying_type = cv_unqualified (underlying_type);
14045 /* If this is the real definition for a previous forward reference,
14046 fill in the contents in the same object that used to be the
14047 forward reference. */
14048 if (!enumtype)
14049 enumtype = lookup_and_check_tag (enum_type, name,
14050 /*tag_scope=*/ts_current,
14051 /*template_header_p=*/false);
14053 /* In case of a template_decl, the only check that should be deferred
14054 to instantiation time is the comparison of underlying types. */
14055 if (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE)
14057 if (scoped_enum_p != SCOPED_ENUM_P (enumtype))
14059 error_at (input_location, "scoped/unscoped mismatch "
14060 "in enum %q#T", enumtype);
14061 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
14062 "previous definition here");
14063 enumtype = error_mark_node;
14065 else if (ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) != !! underlying_type)
14067 error_at (input_location, "underlying type mismatch "
14068 "in enum %q#T", enumtype);
14069 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
14070 "previous definition here");
14071 enumtype = error_mark_node;
14073 else if (underlying_type && ENUM_UNDERLYING_TYPE (enumtype)
14074 && !dependent_type_p (underlying_type)
14075 && !dependent_type_p (ENUM_UNDERLYING_TYPE (enumtype))
14076 && !same_type_p (underlying_type,
14077 ENUM_UNDERLYING_TYPE (enumtype)))
14079 error_at (input_location, "different underlying type "
14080 "in enum %q#T", enumtype);
14081 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
14082 "previous definition here");
14083 underlying_type = NULL_TREE;
14087 if (!enumtype || TREE_CODE (enumtype) != ENUMERAL_TYPE
14088 || processing_template_decl)
14090 /* In case of error, make a dummy enum to allow parsing to
14091 continue. */
14092 if (enumtype == error_mark_node)
14094 name = make_anon_name ();
14095 enumtype = NULL_TREE;
14098 /* enumtype may be an ENUMERAL_TYPE if this is a redefinition
14099 of an opaque enum, or an opaque enum of an already defined
14100 enumeration (C++0x only).
14101 In any other case, it'll be NULL_TREE. */
14102 if (!enumtype)
14104 if (is_new)
14105 *is_new = true;
14107 prevtype = enumtype;
14109 /* Do not push the decl more than once, unless we need to
14110 compare underlying types at instantiation time */
14111 if (!enumtype
14112 || TREE_CODE (enumtype) != ENUMERAL_TYPE
14113 || (underlying_type
14114 && dependent_type_p (underlying_type))
14115 || (ENUM_UNDERLYING_TYPE (enumtype)
14116 && dependent_type_p (ENUM_UNDERLYING_TYPE (enumtype))))
14118 enumtype = cxx_make_type (ENUMERAL_TYPE);
14119 enumtype = pushtag (name, enumtype, /*tag_scope=*/ts_current);
14121 /* std::byte aliases anything. */
14122 if (enumtype != error_mark_node
14123 && TYPE_CONTEXT (enumtype) == std_node
14124 && !strcmp ("byte", TYPE_NAME_STRING (enumtype)))
14125 TYPE_ALIAS_SET (enumtype) = 0;
14127 else
14128 enumtype = xref_tag (enum_type, name, /*tag_scope=*/ts_current,
14129 false);
14131 if (enumtype == error_mark_node)
14132 return error_mark_node;
14134 /* The enum is considered opaque until the opening '{' of the
14135 enumerator list. */
14136 SET_OPAQUE_ENUM_P (enumtype, true);
14137 ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) = !! underlying_type;
14140 SET_SCOPED_ENUM_P (enumtype, scoped_enum_p);
14142 cplus_decl_attributes (&enumtype, attributes, (int)ATTR_FLAG_TYPE_IN_PLACE);
14144 if (underlying_type)
14146 if (ENUM_UNDERLYING_TYPE (enumtype))
14147 /* We already checked that it matches, don't change it to a different
14148 typedef variant. */;
14149 else if (CP_INTEGRAL_TYPE_P (underlying_type))
14151 copy_type_enum (enumtype, underlying_type);
14152 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
14154 else if (dependent_type_p (underlying_type))
14155 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
14156 else
14157 error ("underlying type %qT of %qT must be an integral type",
14158 underlying_type, enumtype);
14161 /* If into a template class, the returned enum is always the first
14162 declaration (opaque or not) seen. This way all the references to
14163 this type will be to the same declaration. The following ones are used
14164 only to check for definition errors. */
14165 if (prevtype && processing_template_decl)
14166 return prevtype;
14167 else
14168 return enumtype;
14171 /* After processing and defining all the values of an enumeration type,
14172 install their decls in the enumeration type.
14173 ENUMTYPE is the type object. */
14175 void
14176 finish_enum_value_list (tree enumtype)
14178 tree values;
14179 tree underlying_type;
14180 tree decl;
14181 tree value;
14182 tree minnode, maxnode;
14183 tree t;
14185 bool fixed_underlying_type_p
14186 = ENUM_UNDERLYING_TYPE (enumtype) != NULL_TREE;
14188 /* We built up the VALUES in reverse order. */
14189 TYPE_VALUES (enumtype) = nreverse (TYPE_VALUES (enumtype));
14191 /* For an enum defined in a template, just set the type of the values;
14192 all further processing is postponed until the template is
14193 instantiated. We need to set the type so that tsubst of a CONST_DECL
14194 works. */
14195 if (processing_template_decl)
14197 for (values = TYPE_VALUES (enumtype);
14198 values;
14199 values = TREE_CHAIN (values))
14200 TREE_TYPE (TREE_VALUE (values)) = enumtype;
14201 return;
14204 /* Determine the minimum and maximum values of the enumerators. */
14205 if (TYPE_VALUES (enumtype))
14207 minnode = maxnode = NULL_TREE;
14209 for (values = TYPE_VALUES (enumtype);
14210 values;
14211 values = TREE_CHAIN (values))
14213 decl = TREE_VALUE (values);
14215 /* [dcl.enum]: Following the closing brace of an enum-specifier,
14216 each enumerator has the type of its enumeration. Prior to the
14217 closing brace, the type of each enumerator is the type of its
14218 initializing value. */
14219 TREE_TYPE (decl) = enumtype;
14221 /* Update the minimum and maximum values, if appropriate. */
14222 value = DECL_INITIAL (decl);
14223 if (value == error_mark_node)
14224 value = integer_zero_node;
14225 /* Figure out what the minimum and maximum values of the
14226 enumerators are. */
14227 if (!minnode)
14228 minnode = maxnode = value;
14229 else if (tree_int_cst_lt (maxnode, value))
14230 maxnode = value;
14231 else if (tree_int_cst_lt (value, minnode))
14232 minnode = value;
14235 else
14236 /* [dcl.enum]
14238 If the enumerator-list is empty, the underlying type is as if
14239 the enumeration had a single enumerator with value 0. */
14240 minnode = maxnode = integer_zero_node;
14242 if (!fixed_underlying_type_p)
14244 /* Compute the number of bits require to represent all values of the
14245 enumeration. We must do this before the type of MINNODE and
14246 MAXNODE are transformed, since tree_int_cst_min_precision relies
14247 on the TREE_TYPE of the value it is passed. */
14248 signop sgn = tree_int_cst_sgn (minnode) >= 0 ? UNSIGNED : SIGNED;
14249 int lowprec = tree_int_cst_min_precision (minnode, sgn);
14250 int highprec = tree_int_cst_min_precision (maxnode, sgn);
14251 int precision = MAX (lowprec, highprec);
14252 unsigned int itk;
14253 bool use_short_enum;
14255 /* Determine the underlying type of the enumeration.
14257 [dcl.enum]
14259 The underlying type of an enumeration is an integral type that
14260 can represent all the enumerator values defined in the
14261 enumeration. It is implementation-defined which integral type is
14262 used as the underlying type for an enumeration except that the
14263 underlying type shall not be larger than int unless the value of
14264 an enumerator cannot fit in an int or unsigned int.
14266 We use "int" or an "unsigned int" as the underlying type, even if
14267 a smaller integral type would work, unless the user has
14268 explicitly requested that we use the smallest possible type. The
14269 user can request that for all enumerations with a command line
14270 flag, or for just one enumeration with an attribute. */
14272 use_short_enum = flag_short_enums
14273 || lookup_attribute ("packed", TYPE_ATTRIBUTES (enumtype));
14275 /* If the precision of the type was specified with an attribute and it
14276 was too small, give an error. Otherwise, use it. */
14277 if (TYPE_PRECISION (enumtype))
14279 if (precision > TYPE_PRECISION (enumtype))
14280 error ("specified mode too small for enumeral values");
14281 else
14283 use_short_enum = true;
14284 precision = TYPE_PRECISION (enumtype);
14288 for (itk = (use_short_enum ? itk_char : itk_int);
14289 itk != itk_none;
14290 itk++)
14292 underlying_type = integer_types[itk];
14293 if (underlying_type != NULL_TREE
14294 && TYPE_PRECISION (underlying_type) >= precision
14295 && TYPE_SIGN (underlying_type) == sgn)
14296 break;
14298 if (itk == itk_none)
14300 /* DR 377
14302 IF no integral type can represent all the enumerator values, the
14303 enumeration is ill-formed. */
14304 error ("no integral type can represent all of the enumerator values "
14305 "for %qT", enumtype);
14306 precision = TYPE_PRECISION (long_long_integer_type_node);
14307 underlying_type = integer_types[itk_unsigned_long_long];
14310 /* [dcl.enum]
14312 The value of sizeof() applied to an enumeration type, an object
14313 of an enumeration type, or an enumerator, is the value of sizeof()
14314 applied to the underlying type. */
14315 copy_type_enum (enumtype, underlying_type);
14317 /* Compute the minimum and maximum values for the type.
14319 [dcl.enum]
14321 For an enumeration where emin is the smallest enumerator and emax
14322 is the largest, the values of the enumeration are the values of the
14323 underlying type in the range bmin to bmax, where bmin and bmax are,
14324 respectively, the smallest and largest values of the smallest bit-
14325 field that can store emin and emax. */
14327 /* The middle-end currently assumes that types with TYPE_PRECISION
14328 narrower than their underlying type are suitably zero or sign
14329 extended to fill their mode. Similarly, it assumes that the front
14330 end assures that a value of a particular type must be within
14331 TYPE_MIN_VALUE and TYPE_MAX_VALUE.
14333 We used to set these fields based on bmin and bmax, but that led
14334 to invalid assumptions like optimizing away bounds checking. So
14335 now we just set the TYPE_PRECISION, TYPE_MIN_VALUE, and
14336 TYPE_MAX_VALUE to the values for the mode above and only restrict
14337 the ENUM_UNDERLYING_TYPE for the benefit of diagnostics. */
14338 ENUM_UNDERLYING_TYPE (enumtype)
14339 = build_distinct_type_copy (underlying_type);
14340 TYPE_PRECISION (ENUM_UNDERLYING_TYPE (enumtype)) = precision;
14341 set_min_and_max_values_for_integral_type
14342 (ENUM_UNDERLYING_TYPE (enumtype), precision, sgn);
14344 /* If -fstrict-enums, still constrain TYPE_MIN/MAX_VALUE. */
14345 if (flag_strict_enums)
14346 set_min_and_max_values_for_integral_type (enumtype, precision, sgn);
14348 else
14349 underlying_type = ENUM_UNDERLYING_TYPE (enumtype);
14351 /* Convert each of the enumerators to the type of the underlying
14352 type of the enumeration. */
14353 for (values = TYPE_VALUES (enumtype); values; values = TREE_CHAIN (values))
14355 location_t saved_location;
14357 decl = TREE_VALUE (values);
14358 saved_location = input_location;
14359 input_location = DECL_SOURCE_LOCATION (decl);
14360 if (fixed_underlying_type_p)
14361 /* If the enumeration type has a fixed underlying type, we
14362 already checked all of the enumerator values. */
14363 value = DECL_INITIAL (decl);
14364 else
14365 value = perform_implicit_conversion (underlying_type,
14366 DECL_INITIAL (decl),
14367 tf_warning_or_error);
14368 input_location = saved_location;
14370 /* Do not clobber shared ints. */
14371 if (value != error_mark_node)
14373 value = copy_node (value);
14375 TREE_TYPE (value) = enumtype;
14377 DECL_INITIAL (decl) = value;
14380 /* Fix up all variant types of this enum type. */
14381 for (t = TYPE_MAIN_VARIANT (enumtype); t; t = TYPE_NEXT_VARIANT (t))
14382 TYPE_VALUES (t) = TYPE_VALUES (enumtype);
14384 if (at_class_scope_p ()
14385 && COMPLETE_TYPE_P (current_class_type)
14386 && UNSCOPED_ENUM_P (enumtype))
14388 insert_late_enum_def_bindings (current_class_type, enumtype);
14389 /* TYPE_FIELDS needs fixup. */
14390 fixup_type_variants (current_class_type);
14393 /* Finish debugging output for this type. */
14394 rest_of_type_compilation (enumtype, namespace_bindings_p ());
14396 /* Each enumerator now has the type of its enumeration. Clear the cache
14397 so that this change in types doesn't confuse us later on. */
14398 clear_cv_and_fold_caches ();
14401 /* Finishes the enum type. This is called only the first time an
14402 enumeration is seen, be it opaque or odinary.
14403 ENUMTYPE is the type object. */
14405 void
14406 finish_enum (tree enumtype)
14408 if (processing_template_decl)
14410 if (at_function_scope_p ())
14411 add_stmt (build_min (TAG_DEFN, enumtype));
14412 return;
14415 /* If this is a forward declaration, there should not be any variants,
14416 though we can get a variant in the middle of an enum-specifier with
14417 wacky code like 'enum E { e = sizeof(const E*) };' */
14418 gcc_assert (enumtype == TYPE_MAIN_VARIANT (enumtype)
14419 && (TYPE_VALUES (enumtype)
14420 || !TYPE_NEXT_VARIANT (enumtype)));
14423 /* Build and install a CONST_DECL for an enumeration constant of the
14424 enumeration type ENUMTYPE whose NAME and VALUE (if any) are provided.
14425 Apply ATTRIBUTES if available. LOC is the location of NAME.
14426 Assignment of sequential values by default is handled here. */
14428 void
14429 build_enumerator (tree name, tree value, tree enumtype, tree attributes,
14430 location_t loc)
14432 tree decl;
14433 tree context;
14434 tree type;
14436 /* scalar_constant_value will pull out this expression, so make sure
14437 it's folded as appropriate. */
14438 if (processing_template_decl)
14439 value = fold_non_dependent_expr (value);
14441 /* If the VALUE was erroneous, pretend it wasn't there; that will
14442 result in the enum being assigned the next value in sequence. */
14443 if (value == error_mark_node)
14444 value = NULL_TREE;
14446 /* Remove no-op casts from the value. */
14447 if (value)
14448 STRIP_TYPE_NOPS (value);
14450 if (! processing_template_decl)
14452 /* Validate and default VALUE. */
14453 if (value != NULL_TREE)
14455 if (!ENUM_UNDERLYING_TYPE (enumtype))
14457 tree tmp_value = build_expr_type_conversion (WANT_INT | WANT_ENUM,
14458 value, true);
14459 if (tmp_value)
14460 value = tmp_value;
14462 else if (! INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P
14463 (TREE_TYPE (value)))
14464 value = perform_implicit_conversion_flags
14465 (ENUM_UNDERLYING_TYPE (enumtype), value, tf_warning_or_error,
14466 LOOKUP_IMPLICIT | LOOKUP_NO_NARROWING);
14468 if (value == error_mark_node)
14469 value = NULL_TREE;
14471 if (value != NULL_TREE)
14473 if (! INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P
14474 (TREE_TYPE (value)))
14476 error ("enumerator value for %qD must have integral or "
14477 "unscoped enumeration type", name);
14478 value = NULL_TREE;
14480 else
14482 value = cxx_constant_value (value);
14484 if (TREE_CODE (value) != INTEGER_CST)
14486 error ("enumerator value for %qD is not an integer "
14487 "constant", name);
14488 value = NULL_TREE;
14494 /* Default based on previous value. */
14495 if (value == NULL_TREE)
14497 if (TYPE_VALUES (enumtype))
14499 tree prev_value;
14500 bool overflowed;
14502 /* C++03 7.2/4: If no initializer is specified for the first
14503 enumerator, the type is an unspecified integral
14504 type. Otherwise the type is the same as the type of the
14505 initializing value of the preceding enumerator unless the
14506 incremented value is not representable in that type, in
14507 which case the type is an unspecified integral type
14508 sufficient to contain the incremented value. */
14509 prev_value = DECL_INITIAL (TREE_VALUE (TYPE_VALUES (enumtype)));
14510 if (error_operand_p (prev_value))
14511 value = error_mark_node;
14512 else
14514 tree type = TREE_TYPE (prev_value);
14515 signop sgn = TYPE_SIGN (type);
14516 widest_int wi = wi::add (wi::to_widest (prev_value), 1, sgn,
14517 &overflowed);
14518 if (!overflowed)
14520 bool pos = !wi::neg_p (wi, sgn);
14521 if (!wi::fits_to_tree_p (wi, type))
14523 unsigned int itk;
14524 for (itk = itk_int; itk != itk_none; itk++)
14526 type = integer_types[itk];
14527 if (type != NULL_TREE
14528 && (pos || !TYPE_UNSIGNED (type))
14529 && wi::fits_to_tree_p (wi, type))
14530 break;
14532 if (type && cxx_dialect < cxx11
14533 && itk > itk_unsigned_long)
14534 pedwarn (input_location, OPT_Wlong_long,
14535 pos ? G_("\
14536 incremented enumerator value is too large for %<unsigned long%>") : G_("\
14537 incremented enumerator value is too large for %<long%>"));
14539 if (type == NULL_TREE)
14540 overflowed = true;
14541 else
14542 value = wide_int_to_tree (type, wi);
14545 if (overflowed)
14547 error ("overflow in enumeration values at %qD", name);
14548 value = error_mark_node;
14552 else
14553 value = integer_zero_node;
14556 /* Remove no-op casts from the value. */
14557 STRIP_TYPE_NOPS (value);
14559 /* If the underlying type of the enum is fixed, check whether
14560 the enumerator values fits in the underlying type. If it
14561 does not fit, the program is ill-formed [C++0x dcl.enum]. */
14562 if (ENUM_UNDERLYING_TYPE (enumtype)
14563 && value
14564 && TREE_CODE (value) == INTEGER_CST)
14566 if (!int_fits_type_p (value, ENUM_UNDERLYING_TYPE (enumtype)))
14567 error ("enumerator value %qE is outside the range of underlying "
14568 "type %qT", value, ENUM_UNDERLYING_TYPE (enumtype));
14570 /* Convert the value to the appropriate type. */
14571 value = fold_convert (ENUM_UNDERLYING_TYPE (enumtype), value);
14575 /* C++ associates enums with global, function, or class declarations. */
14576 context = current_scope ();
14578 /* Build the actual enumeration constant. Note that the enumeration
14579 constants have the underlying type of the enum (if it is fixed)
14580 or the type of their initializer (if the underlying type of the
14581 enum is not fixed):
14583 [ C++0x dcl.enum ]
14585 If the underlying type is fixed, the type of each enumerator
14586 prior to the closing brace is the underlying type; if the
14587 initializing value of an enumerator cannot be represented by
14588 the underlying type, the program is ill-formed. If the
14589 underlying type is not fixed, the type of each enumerator is
14590 the type of its initializing value.
14592 If the underlying type is not fixed, it will be computed by
14593 finish_enum and we will reset the type of this enumerator. Of
14594 course, if we're processing a template, there may be no value. */
14595 type = value ? TREE_TYPE (value) : NULL_TREE;
14597 decl = build_decl (loc, CONST_DECL, name, type);
14599 DECL_CONTEXT (decl) = enumtype;
14600 TREE_CONSTANT (decl) = 1;
14601 TREE_READONLY (decl) = 1;
14602 DECL_INITIAL (decl) = value;
14604 if (attributes)
14605 cplus_decl_attributes (&decl, attributes, 0);
14607 if (context && context == current_class_type && !SCOPED_ENUM_P (enumtype))
14609 /* In something like `struct S { enum E { i = 7 }; };' we put `i'
14610 on the TYPE_FIELDS list for `S'. (That's so that you can say
14611 things like `S::i' later.) */
14613 /* The enumerator may be getting declared outside of its enclosing
14614 class, like so:
14616 class S { public: enum E : int; }; enum S::E : int { i = 7; };
14618 For which case we need to make sure that the access of `S::i'
14619 matches the access of `S::E'. */
14620 tree saved_cas = current_access_specifier;
14621 if (TREE_PRIVATE (TYPE_NAME (enumtype)))
14622 current_access_specifier = access_private_node;
14623 else if (TREE_PROTECTED (TYPE_NAME (enumtype)))
14624 current_access_specifier = access_protected_node;
14625 else
14626 current_access_specifier = access_public_node;
14628 finish_member_declaration (decl);
14630 current_access_specifier = saved_cas;
14632 else
14633 pushdecl (decl);
14635 /* Add this enumeration constant to the list for this type. */
14636 TYPE_VALUES (enumtype) = tree_cons (name, decl, TYPE_VALUES (enumtype));
14639 /* Look for an enumerator with the given NAME within the enumeration
14640 type ENUMTYPE. This routine is used primarily for qualified name
14641 lookup into an enumerator in C++0x, e.g.,
14643 enum class Color { Red, Green, Blue };
14645 Color color = Color::Red;
14647 Returns the value corresponding to the enumerator, or
14648 NULL_TREE if no such enumerator was found. */
14649 tree
14650 lookup_enumerator (tree enumtype, tree name)
14652 tree e;
14653 gcc_assert (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE);
14655 e = purpose_member (name, TYPE_VALUES (enumtype));
14656 return e? TREE_VALUE (e) : NULL_TREE;
14660 /* We're defining DECL. Make sure that its type is OK. */
14662 static void
14663 check_function_type (tree decl, tree current_function_parms)
14665 tree fntype = TREE_TYPE (decl);
14666 tree return_type = complete_type (TREE_TYPE (fntype));
14668 /* In a function definition, arg types must be complete. */
14669 require_complete_types_for_parms (current_function_parms);
14671 if (dependent_type_p (return_type)
14672 || type_uses_auto (return_type))
14673 return;
14674 if (!COMPLETE_OR_VOID_TYPE_P (return_type))
14676 tree args = TYPE_ARG_TYPES (fntype);
14678 error ("return type %q#T is incomplete", return_type);
14680 /* Make it return void instead. */
14681 if (TREE_CODE (fntype) == METHOD_TYPE)
14682 fntype = build_method_type_directly (TREE_TYPE (TREE_VALUE (args)),
14683 void_type_node,
14684 TREE_CHAIN (args));
14685 else
14686 fntype = build_function_type (void_type_node, args);
14687 fntype
14688 = build_exception_variant (fntype,
14689 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (decl)));
14690 fntype = (cp_build_type_attribute_variant
14691 (fntype, TYPE_ATTRIBUTES (TREE_TYPE (decl))));
14692 TREE_TYPE (decl) = fntype;
14694 else
14696 abstract_virtuals_error (decl, TREE_TYPE (fntype));
14697 maybe_warn_parm_abi (TREE_TYPE (fntype),
14698 DECL_SOURCE_LOCATION (decl));
14702 /* True iff FN is an implicitly-defined default constructor. */
14704 static bool
14705 implicit_default_ctor_p (tree fn)
14707 return (DECL_CONSTRUCTOR_P (fn)
14708 && !user_provided_p (fn)
14709 && sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (fn)));
14712 /* Clobber the contents of *this to let the back end know that the object
14713 storage is dead when we enter the constructor or leave the destructor. */
14715 static tree
14716 build_clobber_this ()
14718 /* Clobbering an empty base is pointless, and harmful if its one byte
14719 TYPE_SIZE overlays real data. */
14720 if (is_empty_class (current_class_type))
14721 return void_node;
14723 /* If we have virtual bases, clobber the whole object, but only if we're in
14724 charge. If we don't have virtual bases, clobber the as-base type so we
14725 don't mess with tail padding. */
14726 bool vbases = CLASSTYPE_VBASECLASSES (current_class_type);
14728 tree ctype = current_class_type;
14729 if (!vbases)
14730 ctype = CLASSTYPE_AS_BASE (ctype);
14732 tree clobber = build_constructor (ctype, NULL);
14733 TREE_THIS_VOLATILE (clobber) = true;
14735 tree thisref = current_class_ref;
14736 if (ctype != current_class_type)
14738 thisref = build_nop (build_reference_type (ctype), current_class_ptr);
14739 thisref = convert_from_reference (thisref);
14742 tree exprstmt = build2 (MODIFY_EXPR, void_type_node, thisref, clobber);
14743 if (vbases)
14744 exprstmt = build_if_in_charge (exprstmt);
14746 return exprstmt;
14749 /* Create the FUNCTION_DECL for a function definition.
14750 DECLSPECS and DECLARATOR are the parts of the declaration;
14751 they describe the function's name and the type it returns,
14752 but twisted together in a fashion that parallels the syntax of C.
14754 FLAGS is a bitwise or of SF_PRE_PARSED (indicating that the
14755 DECLARATOR is really the DECL for the function we are about to
14756 process and that DECLSPECS should be ignored), SF_INCLASS_INLINE
14757 indicating that the function is an inline defined in-class.
14759 This function creates a binding context for the function body
14760 as well as setting up the FUNCTION_DECL in current_function_decl.
14762 For C++, we must first check whether that datum makes any sense.
14763 For example, "class A local_a(1,2);" means that variable local_a
14764 is an aggregate of type A, which should have a constructor
14765 applied to it with the argument list [1, 2].
14767 On entry, DECL_INITIAL (decl1) should be NULL_TREE or error_mark_node,
14768 or may be a BLOCK if the function has been defined previously
14769 in this translation unit. On exit, DECL_INITIAL (decl1) will be
14770 error_mark_node if the function has never been defined, or
14771 a BLOCK if the function has been defined somewhere. */
14773 bool
14774 start_preparsed_function (tree decl1, tree attrs, int flags)
14776 tree ctype = NULL_TREE;
14777 tree fntype;
14778 tree restype;
14779 int doing_friend = 0;
14780 cp_binding_level *bl;
14781 tree current_function_parms;
14782 struct c_fileinfo *finfo
14783 = get_fileinfo (LOCATION_FILE (DECL_SOURCE_LOCATION (decl1)));
14784 bool honor_interface;
14786 /* Sanity check. */
14787 gcc_assert (VOID_TYPE_P (TREE_VALUE (void_list_node)));
14788 gcc_assert (TREE_CHAIN (void_list_node) == NULL_TREE);
14790 fntype = TREE_TYPE (decl1);
14791 if (TREE_CODE (fntype) == METHOD_TYPE)
14792 ctype = TYPE_METHOD_BASETYPE (fntype);
14794 /* ISO C++ 11.4/5. A friend function defined in a class is in
14795 the (lexical) scope of the class in which it is defined. */
14796 if (!ctype && DECL_FRIEND_P (decl1))
14798 ctype = DECL_FRIEND_CONTEXT (decl1);
14800 /* CTYPE could be null here if we're dealing with a template;
14801 for example, `inline friend float foo()' inside a template
14802 will have no CTYPE set. */
14803 if (ctype && TREE_CODE (ctype) != RECORD_TYPE)
14804 ctype = NULL_TREE;
14805 else
14806 doing_friend = 1;
14809 if (DECL_DECLARED_INLINE_P (decl1)
14810 && lookup_attribute ("noinline", attrs))
14811 warning_at (DECL_SOURCE_LOCATION (decl1), 0,
14812 "inline function %qD given attribute noinline", decl1);
14814 /* Handle gnu_inline attribute. */
14815 if (GNU_INLINE_P (decl1))
14817 DECL_EXTERNAL (decl1) = 1;
14818 DECL_NOT_REALLY_EXTERN (decl1) = 0;
14819 DECL_INTERFACE_KNOWN (decl1) = 1;
14820 DECL_DISREGARD_INLINE_LIMITS (decl1) = 1;
14823 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl1))
14824 /* This is a constructor, we must ensure that any default args
14825 introduced by this definition are propagated to the clones
14826 now. The clones are used directly in overload resolution. */
14827 adjust_clone_args (decl1);
14829 /* Sometimes we don't notice that a function is a static member, and
14830 build a METHOD_TYPE for it. Fix that up now. */
14831 gcc_assert (!(ctype != NULL_TREE && DECL_STATIC_FUNCTION_P (decl1)
14832 && TREE_CODE (TREE_TYPE (decl1)) == METHOD_TYPE));
14834 /* Set up current_class_type, and enter the scope of the class, if
14835 appropriate. */
14836 if (ctype)
14837 push_nested_class (ctype);
14838 else if (DECL_STATIC_FUNCTION_P (decl1))
14839 push_nested_class (DECL_CONTEXT (decl1));
14841 /* Now that we have entered the scope of the class, we must restore
14842 the bindings for any template parameters surrounding DECL1, if it
14843 is an inline member template. (Order is important; consider the
14844 case where a template parameter has the same name as a field of
14845 the class.) It is not until after this point that
14846 PROCESSING_TEMPLATE_DECL is guaranteed to be set up correctly. */
14847 if (flags & SF_INCLASS_INLINE)
14848 maybe_begin_member_template_processing (decl1);
14850 /* Effective C++ rule 15. */
14851 if (warn_ecpp
14852 && DECL_ASSIGNMENT_OPERATOR_P (decl1)
14853 && DECL_OVERLOADED_OPERATOR_IS (decl1, NOP_EXPR)
14854 && VOID_TYPE_P (TREE_TYPE (fntype)))
14855 warning (OPT_Weffc__,
14856 "%<operator=%> should return a reference to %<*this%>");
14858 /* Make the init_value nonzero so pushdecl knows this is not tentative.
14859 error_mark_node is replaced below (in poplevel) with the BLOCK. */
14860 if (!DECL_INITIAL (decl1))
14861 DECL_INITIAL (decl1) = error_mark_node;
14863 /* This function exists in static storage.
14864 (This does not mean `static' in the C sense!) */
14865 TREE_STATIC (decl1) = 1;
14867 /* We must call push_template_decl after current_class_type is set
14868 up. (If we are processing inline definitions after exiting a
14869 class scope, current_class_type will be NULL_TREE until set above
14870 by push_nested_class.) */
14871 if (processing_template_decl)
14873 tree newdecl1 = push_template_decl (decl1);
14874 if (newdecl1 == error_mark_node)
14876 if (ctype || DECL_STATIC_FUNCTION_P (decl1))
14877 pop_nested_class ();
14878 return false;
14880 decl1 = newdecl1;
14883 /* Make sure the parameter and return types are reasonable. When
14884 you declare a function, these types can be incomplete, but they
14885 must be complete when you define the function. */
14886 check_function_type (decl1, DECL_ARGUMENTS (decl1));
14888 /* Build the return declaration for the function. */
14889 restype = TREE_TYPE (fntype);
14891 if (DECL_RESULT (decl1) == NULL_TREE)
14893 tree resdecl;
14895 resdecl = build_decl (input_location, RESULT_DECL, 0, restype);
14896 DECL_ARTIFICIAL (resdecl) = 1;
14897 DECL_IGNORED_P (resdecl) = 1;
14898 DECL_RESULT (decl1) = resdecl;
14900 cp_apply_type_quals_to_decl (cp_type_quals (restype), resdecl);
14903 /* Record the decl so that the function name is defined.
14904 If we already have a decl for this name, and it is a FUNCTION_DECL,
14905 use the old decl. */
14906 if (!processing_template_decl && !(flags & SF_PRE_PARSED))
14908 /* A specialization is not used to guide overload resolution. */
14909 if (!DECL_FUNCTION_MEMBER_P (decl1)
14910 && !(DECL_USE_TEMPLATE (decl1) &&
14911 PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl1))))
14913 tree olddecl = pushdecl (decl1);
14915 if (olddecl == error_mark_node)
14916 /* If something went wrong when registering the declaration,
14917 use DECL1; we have to have a FUNCTION_DECL to use when
14918 parsing the body of the function. */
14920 else
14922 /* Otherwise, OLDDECL is either a previous declaration
14923 of the same function or DECL1 itself. */
14925 if (warn_missing_declarations
14926 && olddecl == decl1
14927 && !DECL_MAIN_P (decl1)
14928 && TREE_PUBLIC (decl1)
14929 && !DECL_DECLARED_INLINE_P (decl1))
14931 tree context;
14933 /* Check whether DECL1 is in an anonymous
14934 namespace. */
14935 for (context = DECL_CONTEXT (decl1);
14936 context;
14937 context = DECL_CONTEXT (context))
14939 if (TREE_CODE (context) == NAMESPACE_DECL
14940 && DECL_NAME (context) == NULL_TREE)
14941 break;
14944 if (context == NULL)
14945 warning_at (DECL_SOURCE_LOCATION (decl1),
14946 OPT_Wmissing_declarations,
14947 "no previous declaration for %qD", decl1);
14950 decl1 = olddecl;
14953 else
14955 /* We need to set the DECL_CONTEXT. */
14956 if (!DECL_CONTEXT (decl1) && DECL_TEMPLATE_INFO (decl1))
14957 DECL_CONTEXT (decl1) = DECL_CONTEXT (DECL_TI_TEMPLATE (decl1));
14959 fntype = TREE_TYPE (decl1);
14960 restype = TREE_TYPE (fntype);
14962 /* If #pragma weak applies, mark the decl appropriately now.
14963 The pragma only applies to global functions. Because
14964 determining whether or not the #pragma applies involves
14965 computing the mangled name for the declaration, we cannot
14966 apply the pragma until after we have merged this declaration
14967 with any previous declarations; if the original declaration
14968 has a linkage specification, that specification applies to
14969 the definition as well, and may affect the mangled name. */
14970 if (DECL_FILE_SCOPE_P (decl1))
14971 maybe_apply_pragma_weak (decl1);
14974 /* We are now in the scope of the function being defined. */
14975 current_function_decl = decl1;
14977 /* Save the parm names or decls from this function's declarator
14978 where store_parm_decls will find them. */
14979 current_function_parms = DECL_ARGUMENTS (decl1);
14981 /* Let the user know we're compiling this function. */
14982 announce_function (decl1);
14984 gcc_assert (DECL_INITIAL (decl1));
14986 /* This function may already have been parsed, in which case just
14987 return; our caller will skip over the body without parsing. */
14988 if (DECL_INITIAL (decl1) != error_mark_node)
14989 return true;
14991 /* Initialize RTL machinery. We cannot do this until
14992 CURRENT_FUNCTION_DECL and DECL_RESULT are set up. We do this
14993 even when processing a template; this is how we get
14994 CFUN set up, and our per-function variables initialized.
14995 FIXME factor out the non-RTL stuff. */
14996 bl = current_binding_level;
14997 allocate_struct_function (decl1, processing_template_decl);
14999 /* Initialize the language data structures. Whenever we start
15000 a new function, we destroy temporaries in the usual way. */
15001 cfun->language = ggc_cleared_alloc<language_function> ();
15002 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
15003 current_binding_level = bl;
15005 if (!processing_template_decl && type_uses_auto (restype))
15007 FNDECL_USED_AUTO (decl1) = true;
15008 current_function_auto_return_pattern = restype;
15011 /* Start the statement-tree, start the tree now. */
15012 DECL_SAVED_TREE (decl1) = push_stmt_list ();
15014 /* If we are (erroneously) defining a function that we have already
15015 defined before, wipe out what we knew before. */
15016 if (!DECL_PENDING_INLINE_P (decl1))
15017 DECL_SAVED_FUNCTION_DATA (decl1) = NULL;
15019 if (ctype && !doing_friend && !DECL_STATIC_FUNCTION_P (decl1))
15021 /* We know that this was set up by `grokclassfn'. We do not
15022 wait until `store_parm_decls', since evil parse errors may
15023 never get us to that point. Here we keep the consistency
15024 between `current_class_type' and `current_class_ptr'. */
15025 tree t = DECL_ARGUMENTS (decl1);
15027 gcc_assert (t != NULL_TREE && TREE_CODE (t) == PARM_DECL);
15028 gcc_assert (TYPE_PTR_P (TREE_TYPE (t)));
15030 cp_function_chain->x_current_class_ref
15031 = cp_build_fold_indirect_ref (t);
15032 /* Set this second to avoid shortcut in cp_build_indirect_ref. */
15033 cp_function_chain->x_current_class_ptr = t;
15035 /* Constructors and destructors need to know whether they're "in
15036 charge" of initializing virtual base classes. */
15037 t = DECL_CHAIN (t);
15038 if (DECL_HAS_IN_CHARGE_PARM_P (decl1))
15040 current_in_charge_parm = t;
15041 t = DECL_CHAIN (t);
15043 if (DECL_HAS_VTT_PARM_P (decl1))
15045 gcc_assert (DECL_NAME (t) == vtt_parm_identifier);
15046 current_vtt_parm = t;
15050 honor_interface = (!DECL_TEMPLATE_INSTANTIATION (decl1)
15051 /* Implicitly-defined methods (like the
15052 destructor for a class in which no destructor
15053 is explicitly declared) must not be defined
15054 until their definition is needed. So, we
15055 ignore interface specifications for
15056 compiler-generated functions. */
15057 && !DECL_ARTIFICIAL (decl1));
15059 if (processing_template_decl)
15060 /* Don't mess with interface flags. */;
15061 else if (DECL_INTERFACE_KNOWN (decl1))
15063 tree ctx = decl_function_context (decl1);
15065 if (DECL_NOT_REALLY_EXTERN (decl1))
15066 DECL_EXTERNAL (decl1) = 0;
15068 if (ctx != NULL_TREE && vague_linkage_p (ctx))
15069 /* This is a function in a local class in an extern inline
15070 or template function. */
15071 comdat_linkage (decl1);
15073 /* If this function belongs to an interface, it is public.
15074 If it belongs to someone else's interface, it is also external.
15075 This only affects inlines and template instantiations. */
15076 else if (!finfo->interface_unknown && honor_interface)
15078 if (DECL_DECLARED_INLINE_P (decl1)
15079 || DECL_TEMPLATE_INSTANTIATION (decl1))
15081 DECL_EXTERNAL (decl1)
15082 = (finfo->interface_only
15083 || (DECL_DECLARED_INLINE_P (decl1)
15084 && ! flag_implement_inlines
15085 && !DECL_VINDEX (decl1)));
15087 /* For WIN32 we also want to put these in linkonce sections. */
15088 maybe_make_one_only (decl1);
15090 else
15091 DECL_EXTERNAL (decl1) = 0;
15092 DECL_INTERFACE_KNOWN (decl1) = 1;
15093 /* If this function is in an interface implemented in this file,
15094 make sure that the back end knows to emit this function
15095 here. */
15096 if (!DECL_EXTERNAL (decl1))
15097 mark_needed (decl1);
15099 else if (finfo->interface_unknown && finfo->interface_only
15100 && honor_interface)
15102 /* If MULTIPLE_SYMBOL_SPACES is defined and we saw a #pragma
15103 interface, we will have both finfo->interface_unknown and
15104 finfo->interface_only set. In that case, we don't want to
15105 use the normal heuristics because someone will supply a
15106 #pragma implementation elsewhere, and deducing it here would
15107 produce a conflict. */
15108 comdat_linkage (decl1);
15109 DECL_EXTERNAL (decl1) = 0;
15110 DECL_INTERFACE_KNOWN (decl1) = 1;
15111 DECL_DEFER_OUTPUT (decl1) = 1;
15113 else
15115 /* This is a definition, not a reference.
15116 So clear DECL_EXTERNAL, unless this is a GNU extern inline. */
15117 if (!GNU_INLINE_P (decl1))
15118 DECL_EXTERNAL (decl1) = 0;
15120 if ((DECL_DECLARED_INLINE_P (decl1)
15121 || DECL_TEMPLATE_INSTANTIATION (decl1))
15122 && ! DECL_INTERFACE_KNOWN (decl1))
15123 DECL_DEFER_OUTPUT (decl1) = 1;
15124 else
15125 DECL_INTERFACE_KNOWN (decl1) = 1;
15128 /* Determine the ELF visibility attribute for the function. We must not
15129 do this before calling "pushdecl", as we must allow "duplicate_decls"
15130 to merge any attributes appropriately. We also need to wait until
15131 linkage is set. */
15132 if (!DECL_CLONED_FUNCTION_P (decl1))
15133 determine_visibility (decl1);
15135 if (!processing_template_decl)
15136 maybe_instantiate_noexcept (decl1);
15138 begin_scope (sk_function_parms, decl1);
15140 ++function_depth;
15142 if (DECL_DESTRUCTOR_P (decl1)
15143 || (DECL_CONSTRUCTOR_P (decl1)
15144 && targetm.cxx.cdtor_returns_this ()))
15146 cdtor_label = create_artificial_label (input_location);
15147 LABEL_DECL_CDTOR (cdtor_label) = true;
15150 start_fname_decls ();
15152 store_parm_decls (current_function_parms);
15154 if (!processing_template_decl
15155 && (flag_lifetime_dse > 1)
15156 && DECL_CONSTRUCTOR_P (decl1)
15157 && !DECL_CLONED_FUNCTION_P (decl1)
15158 /* Clobbering an empty base is harmful if it overlays real data. */
15159 && !is_empty_class (current_class_type)
15160 /* We can't clobber safely for an implicitly-defined default constructor
15161 because part of the initialization might happen before we enter the
15162 constructor, via AGGR_INIT_ZERO_FIRST (c++/68006). */
15163 && !implicit_default_ctor_p (decl1))
15164 finish_expr_stmt (build_clobber_this ());
15166 if (!processing_template_decl
15167 && DECL_CONSTRUCTOR_P (decl1)
15168 && sanitize_flags_p (SANITIZE_VPTR)
15169 && !DECL_CLONED_FUNCTION_P (decl1)
15170 && !implicit_default_ctor_p (decl1))
15171 cp_ubsan_maybe_initialize_vtbl_ptrs (current_class_ptr);
15173 start_lambda_scope (decl1);
15175 return true;
15179 /* Like start_preparsed_function, except that instead of a
15180 FUNCTION_DECL, this function takes DECLSPECS and DECLARATOR.
15182 Returns true on success. If the DECLARATOR is not suitable
15183 for a function, we return false, which tells the parser to
15184 skip the entire function. */
15186 bool
15187 start_function (cp_decl_specifier_seq *declspecs,
15188 const cp_declarator *declarator,
15189 tree attrs)
15191 tree decl1;
15193 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1, &attrs);
15194 invoke_plugin_callbacks (PLUGIN_START_PARSE_FUNCTION, decl1);
15195 if (decl1 == error_mark_node)
15196 return false;
15197 /* If the declarator is not suitable for a function definition,
15198 cause a syntax error. */
15199 if (decl1 == NULL_TREE || TREE_CODE (decl1) != FUNCTION_DECL)
15201 error ("invalid function declaration");
15202 return false;
15205 if (DECL_MAIN_P (decl1))
15206 /* main must return int. grokfndecl should have corrected it
15207 (and issued a diagnostic) if the user got it wrong. */
15208 gcc_assert (same_type_p (TREE_TYPE (TREE_TYPE (decl1)),
15209 integer_type_node));
15211 return start_preparsed_function (decl1, attrs, /*flags=*/SF_DEFAULT);
15214 /* Returns true iff an EH_SPEC_BLOCK should be created in the body of
15215 FN. */
15217 static bool
15218 use_eh_spec_block (tree fn)
15220 return (flag_exceptions && flag_enforce_eh_specs
15221 && !processing_template_decl
15222 && !type_throw_all_p (TREE_TYPE (fn))
15223 /* We insert the EH_SPEC_BLOCK only in the original
15224 function; then, it is copied automatically to the
15225 clones. */
15226 && !DECL_CLONED_FUNCTION_P (fn)
15227 /* Implicitly-generated constructors and destructors have
15228 exception specifications. However, those specifications
15229 are the union of the possible exceptions specified by the
15230 constructors/destructors for bases and members, so no
15231 unallowed exception will ever reach this function. By
15232 not creating the EH_SPEC_BLOCK we save a little memory,
15233 and we avoid spurious warnings about unreachable
15234 code. */
15235 && !DECL_DEFAULTED_FN (fn));
15238 /* Store the parameter declarations into the current function declaration.
15239 This is called after parsing the parameter declarations, before
15240 digesting the body of the function.
15242 Also install to binding contour return value identifier, if any. */
15244 static void
15245 store_parm_decls (tree current_function_parms)
15247 tree fndecl = current_function_decl;
15248 tree parm;
15250 /* This is a chain of any other decls that came in among the parm
15251 declarations. If a parm is declared with enum {foo, bar} x;
15252 then CONST_DECLs for foo and bar are put here. */
15253 tree nonparms = NULL_TREE;
15255 if (current_function_parms)
15257 /* This case is when the function was defined with an ANSI prototype.
15258 The parms already have decls, so we need not do anything here
15259 except record them as in effect
15260 and complain if any redundant old-style parm decls were written. */
15262 tree specparms = current_function_parms;
15263 tree next;
15265 /* Must clear this because it might contain TYPE_DECLs declared
15266 at class level. */
15267 current_binding_level->names = NULL;
15269 /* If we're doing semantic analysis, then we'll call pushdecl
15270 for each of these. We must do them in reverse order so that
15271 they end in the correct forward order. */
15272 specparms = nreverse (specparms);
15274 for (parm = specparms; parm; parm = next)
15276 next = DECL_CHAIN (parm);
15277 if (TREE_CODE (parm) == PARM_DECL)
15278 pushdecl (parm);
15279 else
15281 /* If we find an enum constant or a type tag,
15282 put it aside for the moment. */
15283 TREE_CHAIN (parm) = NULL_TREE;
15284 nonparms = chainon (nonparms, parm);
15288 /* Get the decls in their original chain order and record in the
15289 function. This is all and only the PARM_DECLs that were
15290 pushed into scope by the loop above. */
15291 DECL_ARGUMENTS (fndecl) = get_local_decls ();
15293 else
15294 DECL_ARGUMENTS (fndecl) = NULL_TREE;
15296 /* Now store the final chain of decls for the arguments
15297 as the decl-chain of the current lexical scope.
15298 Put the enumerators in as well, at the front so that
15299 DECL_ARGUMENTS is not modified. */
15300 current_binding_level->names = chainon (nonparms, DECL_ARGUMENTS (fndecl));
15302 if (use_eh_spec_block (current_function_decl))
15303 current_eh_spec_block = begin_eh_spec_block ();
15307 /* We have finished doing semantic analysis on DECL, but have not yet
15308 generated RTL for its body. Save away our current state, so that
15309 when we want to generate RTL later we know what to do. */
15311 static void
15312 save_function_data (tree decl)
15314 struct language_function *f;
15316 /* Save the language-specific per-function data so that we can
15317 get it back when we really expand this function. */
15318 gcc_assert (!DECL_PENDING_INLINE_P (decl));
15320 /* Make a copy. */
15321 f = ggc_alloc<language_function> ();
15322 memcpy (f, cp_function_chain, sizeof (struct language_function));
15323 DECL_SAVED_FUNCTION_DATA (decl) = f;
15325 /* Clear out the bits we don't need. */
15326 f->base.x_stmt_tree.x_cur_stmt_list = NULL;
15327 f->bindings = NULL;
15328 f->x_local_names = NULL;
15329 f->base.local_typedefs = NULL;
15333 /* Set the return value of the constructor (if present). */
15335 static void
15336 finish_constructor_body (void)
15338 tree val;
15339 tree exprstmt;
15341 if (targetm.cxx.cdtor_returns_this ())
15343 /* Any return from a constructor will end up here. */
15344 add_stmt (build_stmt (input_location, LABEL_EXPR, cdtor_label));
15346 val = DECL_ARGUMENTS (current_function_decl);
15347 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
15348 DECL_RESULT (current_function_decl), val);
15349 /* Return the address of the object. */
15350 exprstmt = build_stmt (input_location, RETURN_EXPR, val);
15351 add_stmt (exprstmt);
15355 /* Do all the processing for the beginning of a destructor; set up the
15356 vtable pointers and cleanups for bases and members. */
15358 static void
15359 begin_destructor_body (void)
15361 tree compound_stmt;
15363 /* If the CURRENT_CLASS_TYPE is incomplete, we will have already
15364 issued an error message. We still want to try to process the
15365 body of the function, but initialize_vtbl_ptrs will crash if
15366 TYPE_BINFO is NULL. */
15367 if (COMPLETE_TYPE_P (current_class_type))
15369 compound_stmt = begin_compound_stmt (0);
15370 /* Make all virtual function table pointers in non-virtual base
15371 classes point to CURRENT_CLASS_TYPE's virtual function
15372 tables. */
15373 initialize_vtbl_ptrs (current_class_ptr);
15374 finish_compound_stmt (compound_stmt);
15376 if (flag_lifetime_dse
15377 /* Clobbering an empty base is harmful if it overlays real data. */
15378 && !is_empty_class (current_class_type))
15380 if (sanitize_flags_p (SANITIZE_VPTR)
15381 && (flag_sanitize_recover & SANITIZE_VPTR) == 0
15382 && TYPE_CONTAINS_VPTR_P (current_class_type))
15384 tree binfo = TYPE_BINFO (current_class_type);
15385 tree ref
15386 = cp_build_fold_indirect_ref (current_class_ptr);
15388 tree vtbl_ptr = build_vfield_ref (ref, TREE_TYPE (binfo));
15389 tree vtbl = build_zero_cst (TREE_TYPE (vtbl_ptr));
15390 tree stmt = cp_build_modify_expr (input_location, vtbl_ptr,
15391 NOP_EXPR, vtbl,
15392 tf_warning_or_error);
15393 finish_decl_cleanup (NULL_TREE, stmt);
15395 else
15396 finish_decl_cleanup (NULL_TREE, build_clobber_this ());
15399 /* And insert cleanups for our bases and members so that they
15400 will be properly destroyed if we throw. */
15401 push_base_cleanups ();
15405 /* At the end of every destructor we generate code to delete the object if
15406 necessary. Do that now. */
15408 static void
15409 finish_destructor_body (void)
15411 tree exprstmt;
15413 /* Any return from a destructor will end up here; that way all base
15414 and member cleanups will be run when the function returns. */
15415 add_stmt (build_stmt (input_location, LABEL_EXPR, cdtor_label));
15417 if (targetm.cxx.cdtor_returns_this ())
15419 tree val;
15421 val = DECL_ARGUMENTS (current_function_decl);
15422 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
15423 DECL_RESULT (current_function_decl), val);
15424 /* Return the address of the object. */
15425 exprstmt = build_stmt (input_location, RETURN_EXPR, val);
15426 add_stmt (exprstmt);
15430 /* Do the necessary processing for the beginning of a function body, which
15431 in this case includes member-initializers, but not the catch clauses of
15432 a function-try-block. Currently, this means opening a binding level
15433 for the member-initializers (in a ctor), member cleanups (in a dtor),
15434 and capture proxies (in a lambda operator()). */
15436 tree
15437 begin_function_body (void)
15439 tree stmt;
15441 if (! FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
15442 return NULL_TREE;
15444 if (processing_template_decl)
15445 /* Do nothing now. */;
15446 else
15447 /* Always keep the BLOCK node associated with the outermost pair of
15448 curly braces of a function. These are needed for correct
15449 operation of dwarfout.c. */
15450 keep_next_level (true);
15452 stmt = begin_compound_stmt (BCS_FN_BODY);
15454 if (processing_template_decl)
15455 /* Do nothing now. */;
15456 else if (DECL_DESTRUCTOR_P (current_function_decl))
15457 begin_destructor_body ();
15459 return stmt;
15462 /* Do the processing for the end of a function body. Currently, this means
15463 closing out the cleanups for fully-constructed bases and members, and in
15464 the case of the destructor, deleting the object if desired. Again, this
15465 is only meaningful for [cd]tors, since they are the only functions where
15466 there is a significant distinction between the main body and any
15467 function catch clauses. Handling, say, main() return semantics here
15468 would be wrong, as flowing off the end of a function catch clause for
15469 main() would also need to return 0. */
15471 void
15472 finish_function_body (tree compstmt)
15474 if (compstmt == NULL_TREE)
15475 return;
15477 /* Close the block. */
15478 finish_compound_stmt (compstmt);
15480 if (processing_template_decl)
15481 /* Do nothing now. */;
15482 else if (DECL_CONSTRUCTOR_P (current_function_decl))
15483 finish_constructor_body ();
15484 else if (DECL_DESTRUCTOR_P (current_function_decl))
15485 finish_destructor_body ();
15488 /* Given a function, returns the BLOCK corresponding to the outermost level
15489 of curly braces, skipping the artificial block created for constructor
15490 initializers. */
15492 tree
15493 outer_curly_brace_block (tree fndecl)
15495 tree block = DECL_INITIAL (fndecl);
15496 if (BLOCK_OUTER_CURLY_BRACE_P (block))
15497 return block;
15498 block = BLOCK_SUBBLOCKS (block);
15499 if (BLOCK_OUTER_CURLY_BRACE_P (block))
15500 return block;
15501 block = BLOCK_SUBBLOCKS (block);
15502 gcc_assert (BLOCK_OUTER_CURLY_BRACE_P (block));
15503 return block;
15506 /* If FNDECL is a class's key method, add the class to the list of
15507 keyed classes that should be emitted. */
15509 static void
15510 record_key_method_defined (tree fndecl)
15512 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fndecl)
15513 && DECL_VIRTUAL_P (fndecl)
15514 && !processing_template_decl)
15516 tree fnclass = DECL_CONTEXT (fndecl);
15517 if (fndecl == CLASSTYPE_KEY_METHOD (fnclass))
15518 vec_safe_push (keyed_classes, fnclass);
15522 /* Subroutine of finish_function.
15523 Save the body of constexpr functions for possible
15524 future compile time evaluation. */
15526 static void
15527 maybe_save_function_definition (tree fun)
15529 if (!processing_template_decl
15530 && DECL_DECLARED_CONSTEXPR_P (fun)
15531 && !cp_function_chain->invalid_constexpr
15532 && !DECL_CLONED_FUNCTION_P (fun))
15533 register_constexpr_fundef (fun, DECL_SAVED_TREE (fun));
15536 /* Finish up a function declaration and compile that function
15537 all the way to assembler language output. The free the storage
15538 for the function definition. INLINE_P is TRUE if we just
15539 finished processing the body of an in-class inline function
15540 definition. (This processing will have taken place after the
15541 class definition is complete.) */
15543 tree
15544 finish_function (bool inline_p)
15546 tree fndecl = current_function_decl;
15547 tree fntype, ctype = NULL_TREE;
15549 /* When we get some parse errors, we can end up without a
15550 current_function_decl, so cope. */
15551 if (fndecl == NULL_TREE)
15552 return error_mark_node;
15554 finish_lambda_scope ();
15556 if (c_dialect_objc ())
15557 objc_finish_function ();
15559 record_key_method_defined (fndecl);
15561 fntype = TREE_TYPE (fndecl);
15563 /* TREE_READONLY (fndecl) = 1;
15564 This caused &foo to be of type ptr-to-const-function
15565 which then got a warning when stored in a ptr-to-function variable. */
15567 gcc_assert (building_stmt_list_p ());
15568 /* The current function is being defined, so its DECL_INITIAL should
15569 be set, and unless there's a multiple definition, it should be
15570 error_mark_node. */
15571 gcc_assert (DECL_INITIAL (fndecl) == error_mark_node);
15573 /* For a cloned function, we've already got all the code we need;
15574 there's no need to add any extra bits. */
15575 if (!DECL_CLONED_FUNCTION_P (fndecl))
15577 /* Make it so that `main' always returns 0 by default. */
15578 if (DECL_MAIN_P (current_function_decl))
15579 finish_return_stmt (integer_zero_node);
15581 if (use_eh_spec_block (current_function_decl))
15582 finish_eh_spec_block (TYPE_RAISES_EXCEPTIONS
15583 (TREE_TYPE (current_function_decl)),
15584 current_eh_spec_block);
15587 /* If we're saving up tree structure, tie off the function now. */
15588 DECL_SAVED_TREE (fndecl) = pop_stmt_list (DECL_SAVED_TREE (fndecl));
15590 finish_fname_decls ();
15592 /* If this function can't throw any exceptions, remember that. */
15593 if (!processing_template_decl
15594 && !cp_function_chain->can_throw
15595 && !flag_non_call_exceptions
15596 && !decl_replaceable_p (fndecl))
15597 TREE_NOTHROW (fndecl) = 1;
15599 /* This must come after expand_function_end because cleanups might
15600 have declarations (from inline functions) that need to go into
15601 this function's blocks. */
15603 /* If the current binding level isn't the outermost binding level
15604 for this function, either there is a bug, or we have experienced
15605 syntax errors and the statement tree is malformed. */
15606 if (current_binding_level->kind != sk_function_parms)
15608 /* Make sure we have already experienced errors. */
15609 gcc_assert (errorcount);
15611 /* Throw away the broken statement tree and extra binding
15612 levels. */
15613 DECL_SAVED_TREE (fndecl) = alloc_stmt_list ();
15615 while (current_binding_level->kind != sk_function_parms)
15617 if (current_binding_level->kind == sk_class)
15618 pop_nested_class ();
15619 else
15620 poplevel (0, 0, 0);
15623 poplevel (1, 0, 1);
15625 /* Statements should always be full-expressions at the outermost set
15626 of curly braces for a function. */
15627 gcc_assert (stmts_are_full_exprs_p ());
15629 /* If there are no return statements in a function with auto return type,
15630 the return type is void. But if the declared type is something like
15631 auto*, this is an error. */
15632 if (!processing_template_decl && FNDECL_USED_AUTO (fndecl)
15633 && TREE_TYPE (fntype) == current_function_auto_return_pattern)
15635 if (is_auto (current_function_auto_return_pattern))
15637 apply_deduced_return_type (fndecl, void_type_node);
15638 fntype = TREE_TYPE (fndecl);
15640 else if (!current_function_returns_value
15641 && !current_function_returns_null)
15643 error ("no return statements in function returning %qT",
15644 current_function_auto_return_pattern);
15645 inform (input_location, "only plain %<auto%> return type can be "
15646 "deduced to %<void%>");
15650 // If this is a concept, check that the definition is reasonable.
15651 if (DECL_DECLARED_CONCEPT_P (fndecl))
15652 check_function_concept (fndecl);
15654 /* Lambda closure members are implicitly constexpr if possible. */
15655 if (cxx_dialect >= cxx17
15656 && LAMBDA_TYPE_P (CP_DECL_CONTEXT (fndecl)))
15657 DECL_DECLARED_CONSTEXPR_P (fndecl)
15658 = ((processing_template_decl
15659 || is_valid_constexpr_fn (fndecl, /*complain*/false))
15660 && potential_constant_expression (DECL_SAVED_TREE (fndecl)));
15662 /* Save constexpr function body before it gets munged by
15663 the NRV transformation. */
15664 maybe_save_function_definition (fndecl);
15666 /* Invoke the pre-genericize plugin before we start munging things. */
15667 if (!processing_template_decl)
15668 invoke_plugin_callbacks (PLUGIN_PRE_GENERICIZE, fndecl);
15670 /* Perform delayed folding before NRV transformation. */
15671 if (!processing_template_decl)
15672 cp_fold_function (fndecl);
15674 /* Set up the named return value optimization, if we can. Candidate
15675 variables are selected in check_return_expr. */
15676 if (current_function_return_value)
15678 tree r = current_function_return_value;
15679 tree outer;
15681 if (r != error_mark_node
15682 /* This is only worth doing for fns that return in memory--and
15683 simpler, since we don't have to worry about promoted modes. */
15684 && aggregate_value_p (TREE_TYPE (TREE_TYPE (fndecl)), fndecl)
15685 /* Only allow this for variables declared in the outer scope of
15686 the function so we know that their lifetime always ends with a
15687 return; see g++.dg/opt/nrv6.C. We could be more flexible if
15688 we were to do this optimization in tree-ssa. */
15689 && (outer = outer_curly_brace_block (fndecl))
15690 && chain_member (r, BLOCK_VARS (outer)))
15691 finalize_nrv (&DECL_SAVED_TREE (fndecl), r, DECL_RESULT (fndecl));
15693 current_function_return_value = NULL_TREE;
15696 /* Remember that we were in class scope. */
15697 if (current_class_name)
15698 ctype = current_class_type;
15700 /* Must mark the RESULT_DECL as being in this function. */
15701 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
15703 /* Set the BLOCK_SUPERCONTEXT of the outermost function scope to point
15704 to the FUNCTION_DECL node itself. */
15705 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
15707 /* Save away current state, if appropriate. */
15708 if (!processing_template_decl)
15709 save_function_data (fndecl);
15711 /* Complain if there's just no return statement. */
15712 if (warn_return_type
15713 && !VOID_TYPE_P (TREE_TYPE (fntype))
15714 && !dependent_type_p (TREE_TYPE (fntype))
15715 && !current_function_returns_value && !current_function_returns_null
15716 /* Don't complain if we abort or throw. */
15717 && !current_function_returns_abnormally
15718 /* Don't complain if there's an infinite loop. */
15719 && !current_function_infinite_loop
15720 /* Don't complain if we are declared noreturn. */
15721 && !TREE_THIS_VOLATILE (fndecl)
15722 && !DECL_NAME (DECL_RESULT (fndecl))
15723 && !TREE_NO_WARNING (fndecl)
15724 /* Structor return values (if any) are set by the compiler. */
15725 && !DECL_CONSTRUCTOR_P (fndecl)
15726 && !DECL_DESTRUCTOR_P (fndecl)
15727 && targetm.warn_func_return (fndecl))
15729 warning (OPT_Wreturn_type,
15730 "no return statement in function returning non-void");
15731 TREE_NO_WARNING (fndecl) = 1;
15734 /* Store the end of the function, so that we get good line number
15735 info for the epilogue. */
15736 cfun->function_end_locus = input_location;
15738 /* Complain about parameters that are only set, but never otherwise used. */
15739 if (warn_unused_but_set_parameter
15740 && !processing_template_decl
15741 && errorcount == unused_but_set_errorcount
15742 && !DECL_CLONED_FUNCTION_P (fndecl))
15744 tree decl;
15746 for (decl = DECL_ARGUMENTS (fndecl);
15747 decl;
15748 decl = DECL_CHAIN (decl))
15749 if (TREE_USED (decl)
15750 && TREE_CODE (decl) == PARM_DECL
15751 && !DECL_READ_P (decl)
15752 && DECL_NAME (decl)
15753 && !DECL_ARTIFICIAL (decl)
15754 && !TREE_NO_WARNING (decl)
15755 && !DECL_IN_SYSTEM_HEADER (decl)
15756 && TREE_TYPE (decl) != error_mark_node
15757 && TREE_CODE (TREE_TYPE (decl)) != REFERENCE_TYPE
15758 && (!CLASS_TYPE_P (TREE_TYPE (decl))
15759 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (decl))))
15760 warning_at (DECL_SOURCE_LOCATION (decl),
15761 OPT_Wunused_but_set_parameter,
15762 "parameter %qD set but not used", decl);
15763 unused_but_set_errorcount = errorcount;
15766 /* Complain about locally defined typedefs that are not used in this
15767 function. */
15768 maybe_warn_unused_local_typedefs ();
15770 /* Possibly warn about unused parameters. */
15771 if (warn_unused_parameter
15772 && !processing_template_decl
15773 && !DECL_CLONED_FUNCTION_P (fndecl))
15774 do_warn_unused_parameter (fndecl);
15776 /* Genericize before inlining. */
15777 if (!processing_template_decl)
15779 struct language_function *f = DECL_SAVED_FUNCTION_DATA (fndecl);
15780 cp_genericize (fndecl);
15781 /* Clear out the bits we don't need. */
15782 f->x_current_class_ptr = NULL;
15783 f->x_current_class_ref = NULL;
15784 f->x_eh_spec_block = NULL;
15785 f->x_in_charge_parm = NULL;
15786 f->x_vtt_parm = NULL;
15787 f->x_return_value = NULL;
15788 f->bindings = NULL;
15789 f->extern_decl_map = NULL;
15790 f->infinite_loops = NULL;
15792 /* Clear out the bits we don't need. */
15793 local_names = NULL;
15795 /* We're leaving the context of this function, so zap cfun. It's still in
15796 DECL_STRUCT_FUNCTION, and we'll restore it in tree_rest_of_compilation. */
15797 set_cfun (NULL);
15798 current_function_decl = NULL;
15800 /* If this is an in-class inline definition, we may have to pop the
15801 bindings for the template parameters that we added in
15802 maybe_begin_member_template_processing when start_function was
15803 called. */
15804 if (inline_p)
15805 maybe_end_member_template_processing ();
15807 /* Leave the scope of the class. */
15808 if (ctype)
15809 pop_nested_class ();
15811 --function_depth;
15813 /* Clean up. */
15814 current_function_decl = NULL_TREE;
15816 invoke_plugin_callbacks (PLUGIN_FINISH_PARSE_FUNCTION, fndecl);
15817 return fndecl;
15820 /* Create the FUNCTION_DECL for a function definition.
15821 DECLSPECS and DECLARATOR are the parts of the declaration;
15822 they describe the return type and the name of the function,
15823 but twisted together in a fashion that parallels the syntax of C.
15825 This function creates a binding context for the function body
15826 as well as setting up the FUNCTION_DECL in current_function_decl.
15828 Returns a FUNCTION_DECL on success.
15830 If the DECLARATOR is not suitable for a function (it defines a datum
15831 instead), we return 0, which tells yyparse to report a parse error.
15833 May return void_type_node indicating that this method is actually
15834 a friend. See grokfield for more details.
15836 Came here with a `.pushlevel' .
15838 DO NOT MAKE ANY CHANGES TO THIS CODE WITHOUT MAKING CORRESPONDING
15839 CHANGES TO CODE IN `grokfield'. */
15841 tree
15842 grokmethod (cp_decl_specifier_seq *declspecs,
15843 const cp_declarator *declarator, tree attrlist)
15845 tree fndecl = grokdeclarator (declarator, declspecs, MEMFUNCDEF, 0,
15846 &attrlist);
15848 if (fndecl == error_mark_node)
15849 return error_mark_node;
15851 if (fndecl == NULL || TREE_CODE (fndecl) != FUNCTION_DECL)
15853 error ("invalid member function declaration");
15854 return error_mark_node;
15857 if (attrlist)
15858 cplus_decl_attributes (&fndecl, attrlist, 0);
15860 /* Pass friends other than inline friend functions back. */
15861 if (fndecl == void_type_node)
15862 return fndecl;
15864 if (DECL_IN_AGGR_P (fndecl))
15866 if (DECL_CLASS_SCOPE_P (fndecl))
15867 error ("%qD is already defined in class %qT", fndecl,
15868 DECL_CONTEXT (fndecl));
15869 return error_mark_node;
15872 check_template_shadow (fndecl);
15874 if (TREE_PUBLIC (fndecl))
15875 DECL_COMDAT (fndecl) = 1;
15876 DECL_DECLARED_INLINE_P (fndecl) = 1;
15877 DECL_NO_INLINE_WARNING_P (fndecl) = 1;
15879 /* We process method specializations in finish_struct_1. */
15880 if (processing_template_decl && !DECL_TEMPLATE_SPECIALIZATION (fndecl))
15882 fndecl = push_template_decl (fndecl);
15883 if (fndecl == error_mark_node)
15884 return fndecl;
15887 if (! DECL_FRIEND_P (fndecl))
15889 if (DECL_CHAIN (fndecl))
15891 fndecl = copy_node (fndecl);
15892 TREE_CHAIN (fndecl) = NULL_TREE;
15896 cp_finish_decl (fndecl, NULL_TREE, false, NULL_TREE, 0);
15898 DECL_IN_AGGR_P (fndecl) = 1;
15899 return fndecl;
15903 /* VAR is a VAR_DECL. If its type is incomplete, remember VAR so that
15904 we can lay it out later, when and if its type becomes complete.
15906 Also handle constexpr variables where the initializer involves
15907 an unlowered PTRMEM_CST because the class isn't complete yet. */
15909 void
15910 maybe_register_incomplete_var (tree var)
15912 gcc_assert (VAR_P (var));
15914 /* Keep track of variables with incomplete types. */
15915 if (!processing_template_decl && TREE_TYPE (var) != error_mark_node
15916 && DECL_EXTERNAL (var))
15918 tree inner_type = TREE_TYPE (var);
15920 while (TREE_CODE (inner_type) == ARRAY_TYPE)
15921 inner_type = TREE_TYPE (inner_type);
15922 inner_type = TYPE_MAIN_VARIANT (inner_type);
15924 if ((!COMPLETE_TYPE_P (inner_type) && CLASS_TYPE_P (inner_type))
15925 /* RTTI TD entries are created while defining the type_info. */
15926 || (TYPE_LANG_SPECIFIC (inner_type)
15927 && TYPE_BEING_DEFINED (inner_type)))
15929 incomplete_var iv = {var, inner_type};
15930 vec_safe_push (incomplete_vars, iv);
15932 else if (!(DECL_LANG_SPECIFIC (var) && DECL_TEMPLATE_INFO (var))
15933 && decl_constant_var_p (var)
15934 && (TYPE_PTRMEM_P (inner_type) || CLASS_TYPE_P (inner_type)))
15936 /* When the outermost open class is complete we can resolve any
15937 pointers-to-members. */
15938 tree context = outermost_open_class ();
15939 incomplete_var iv = {var, context};
15940 vec_safe_push (incomplete_vars, iv);
15945 /* Called when a class type (given by TYPE) is defined. If there are
15946 any existing VAR_DECLs whose type has been completed by this
15947 declaration, update them now. */
15949 void
15950 complete_vars (tree type)
15952 unsigned ix;
15953 incomplete_var *iv;
15955 for (ix = 0; vec_safe_iterate (incomplete_vars, ix, &iv); )
15957 if (same_type_p (type, iv->incomplete_type))
15959 tree var = iv->decl;
15960 tree type = TREE_TYPE (var);
15962 if (type != error_mark_node
15963 && (TYPE_MAIN_VARIANT (strip_array_types (type))
15964 == iv->incomplete_type))
15966 /* Complete the type of the variable. The VAR_DECL itself
15967 will be laid out in expand_expr. */
15968 complete_type (type);
15969 cp_apply_type_quals_to_decl (cp_type_quals (type), var);
15972 /* Remove this entry from the list. */
15973 incomplete_vars->unordered_remove (ix);
15975 else
15976 ix++;
15979 /* Check for pending declarations which may have abstract type. */
15980 complete_type_check_abstract (type);
15983 /* If DECL is of a type which needs a cleanup, build and return an
15984 expression to perform that cleanup here. Return NULL_TREE if no
15985 cleanup need be done. DECL can also be a _REF when called from
15986 split_nonconstant_init_1. */
15988 tree
15989 cxx_maybe_build_cleanup (tree decl, tsubst_flags_t complain)
15991 tree type;
15992 tree attr;
15993 tree cleanup;
15995 /* Assume no cleanup is required. */
15996 cleanup = NULL_TREE;
15998 if (error_operand_p (decl))
15999 return cleanup;
16001 /* Handle "__attribute__((cleanup))". We run the cleanup function
16002 before the destructor since the destructor is what actually
16003 terminates the lifetime of the object. */
16004 if (DECL_P (decl))
16005 attr = lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl));
16006 else
16007 attr = NULL_TREE;
16008 if (attr)
16010 tree id;
16011 tree fn;
16012 tree arg;
16014 /* Get the name specified by the user for the cleanup function. */
16015 id = TREE_VALUE (TREE_VALUE (attr));
16016 /* Look up the name to find the cleanup function to call. It is
16017 important to use lookup_name here because that is what is
16018 used in c-common.c:handle_cleanup_attribute when performing
16019 initial checks on the attribute. Note that those checks
16020 include ensuring that the function found is not an overloaded
16021 function, or an object with an overloaded call operator,
16022 etc.; we can rely on the fact that the function found is an
16023 ordinary FUNCTION_DECL. */
16024 fn = lookup_name (id);
16025 arg = build_address (decl);
16026 if (!mark_used (decl, complain) && !(complain & tf_error))
16027 return error_mark_node;
16028 cleanup = cp_build_function_call_nary (fn, complain, arg, NULL_TREE);
16029 if (cleanup == error_mark_node)
16030 return error_mark_node;
16032 /* Handle ordinary C++ destructors. */
16033 type = TREE_TYPE (decl);
16034 if (type_build_dtor_call (type))
16036 int flags = LOOKUP_NORMAL|LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR;
16037 tree addr;
16038 tree call;
16040 if (TREE_CODE (type) == ARRAY_TYPE)
16041 addr = decl;
16042 else
16043 addr = build_address (decl);
16045 call = build_delete (TREE_TYPE (addr), addr,
16046 sfk_complete_destructor, flags, 0, complain);
16047 if (call == error_mark_node)
16048 cleanup = error_mark_node;
16049 else if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
16050 /* Discard the call. */;
16051 else if (cleanup)
16052 cleanup = cp_build_compound_expr (cleanup, call, complain);
16053 else
16054 cleanup = call;
16057 /* build_delete sets the location of the destructor call to the
16058 current location, even though the destructor is going to be
16059 called later, at the end of the current scope. This can lead to
16060 a "jumpy" behavior for users of debuggers when they step around
16061 the end of the block. So let's unset the location of the
16062 destructor call instead. */
16063 protected_set_expr_location (cleanup, UNKNOWN_LOCATION);
16065 if (cleanup
16066 && DECL_P (decl)
16067 && !lookup_attribute ("warn_unused", TYPE_ATTRIBUTES (TREE_TYPE (decl)))
16068 /* Treat objects with destructors as used; the destructor may do
16069 something substantive. */
16070 && !mark_used (decl, complain) && !(complain & tf_error))
16071 return error_mark_node;
16073 return cleanup;
16077 /* Return the FUNCTION_TYPE that corresponds to MEMFNTYPE, which can be a
16078 FUNCTION_DECL, METHOD_TYPE, FUNCTION_TYPE, pointer or reference to
16079 METHOD_TYPE or FUNCTION_TYPE, or pointer to member function. */
16081 tree
16082 static_fn_type (tree memfntype)
16084 tree fntype;
16085 tree args;
16087 if (TYPE_PTRMEMFUNC_P (memfntype))
16088 memfntype = TYPE_PTRMEMFUNC_FN_TYPE (memfntype);
16089 if (POINTER_TYPE_P (memfntype)
16090 || TREE_CODE (memfntype) == FUNCTION_DECL)
16091 memfntype = TREE_TYPE (memfntype);
16092 if (TREE_CODE (memfntype) == FUNCTION_TYPE)
16093 return memfntype;
16094 gcc_assert (TREE_CODE (memfntype) == METHOD_TYPE);
16095 args = TYPE_ARG_TYPES (memfntype);
16096 cp_ref_qualifier rqual = type_memfn_rqual (memfntype);
16097 fntype = build_function_type (TREE_TYPE (memfntype), TREE_CHAIN (args));
16098 fntype = apply_memfn_quals (fntype, type_memfn_quals (memfntype), rqual);
16099 fntype = (cp_build_type_attribute_variant
16100 (fntype, TYPE_ATTRIBUTES (memfntype)));
16101 fntype = (build_exception_variant
16102 (fntype, TYPE_RAISES_EXCEPTIONS (memfntype)));
16103 if (TYPE_HAS_LATE_RETURN_TYPE (memfntype))
16104 TYPE_HAS_LATE_RETURN_TYPE (fntype) = 1;
16105 return fntype;
16108 /* DECL was originally constructed as a non-static member function,
16109 but turned out to be static. Update it accordingly. */
16111 void
16112 revert_static_member_fn (tree decl)
16114 tree stype = static_fn_type (decl);
16115 cp_cv_quals quals = type_memfn_quals (stype);
16116 cp_ref_qualifier rqual = type_memfn_rqual (stype);
16118 if (quals != TYPE_UNQUALIFIED || rqual != REF_QUAL_NONE)
16119 stype = apply_memfn_quals (stype, TYPE_UNQUALIFIED, REF_QUAL_NONE);
16121 TREE_TYPE (decl) = stype;
16123 if (DECL_ARGUMENTS (decl))
16124 DECL_ARGUMENTS (decl) = DECL_CHAIN (DECL_ARGUMENTS (decl));
16125 DECL_STATIC_FUNCTION_P (decl) = 1;
16128 /* Return which tree structure is used by T, or TS_CP_GENERIC if T is
16129 one of the language-independent trees. */
16131 enum cp_tree_node_structure_enum
16132 cp_tree_node_structure (union lang_tree_node * t)
16134 switch (TREE_CODE (&t->generic))
16136 case DEFAULT_ARG: return TS_CP_DEFAULT_ARG;
16137 case DEFERRED_NOEXCEPT: return TS_CP_DEFERRED_NOEXCEPT;
16138 case IDENTIFIER_NODE: return TS_CP_IDENTIFIER;
16139 case OVERLOAD: return TS_CP_OVERLOAD;
16140 case TEMPLATE_PARM_INDEX: return TS_CP_TPI;
16141 case PTRMEM_CST: return TS_CP_PTRMEM;
16142 case BASELINK: return TS_CP_BASELINK;
16143 case TEMPLATE_DECL: return TS_CP_TEMPLATE_DECL;
16144 case STATIC_ASSERT: return TS_CP_STATIC_ASSERT;
16145 case ARGUMENT_PACK_SELECT: return TS_CP_ARGUMENT_PACK_SELECT;
16146 case TRAIT_EXPR: return TS_CP_TRAIT_EXPR;
16147 case LAMBDA_EXPR: return TS_CP_LAMBDA_EXPR;
16148 case TEMPLATE_INFO: return TS_CP_TEMPLATE_INFO;
16149 case CONSTRAINT_INFO: return TS_CP_CONSTRAINT_INFO;
16150 case USERDEF_LITERAL: return TS_CP_USERDEF_LITERAL;
16151 default: return TS_CP_GENERIC;
16155 /* Build the void_list_node (void_type_node having been created). */
16156 tree
16157 build_void_list_node (void)
16159 tree t = build_tree_list (NULL_TREE, void_type_node);
16160 return t;
16163 bool
16164 cp_missing_noreturn_ok_p (tree decl)
16166 /* A missing noreturn is ok for the `main' function. */
16167 return DECL_MAIN_P (decl);
16170 /* Return the decl used to identify the COMDAT group into which DECL should
16171 be placed. */
16173 tree
16174 cxx_comdat_group (tree decl)
16176 /* Virtual tables, construction virtual tables, and virtual table
16177 tables all go in a single COMDAT group, named after the primary
16178 virtual table. */
16179 if (VAR_P (decl) && DECL_VTABLE_OR_VTT_P (decl))
16180 decl = CLASSTYPE_VTABLES (DECL_CONTEXT (decl));
16181 /* For all other DECLs, the COMDAT group is the mangled name of the
16182 declaration itself. */
16183 else
16185 while (DECL_THUNK_P (decl))
16187 /* If TARGET_USE_LOCAL_THUNK_ALIAS_P, use_thunk puts the thunk
16188 into the same section as the target function. In that case
16189 we must return target's name. */
16190 tree target = THUNK_TARGET (decl);
16191 if (TARGET_USE_LOCAL_THUNK_ALIAS_P (target)
16192 && DECL_SECTION_NAME (target) != NULL
16193 && DECL_ONE_ONLY (target))
16194 decl = target;
16195 else
16196 break;
16200 return decl;
16203 /* Returns the return type for FN as written by the user, which may include
16204 a placeholder for a deduced return type. */
16206 tree
16207 fndecl_declared_return_type (tree fn)
16209 fn = STRIP_TEMPLATE (fn);
16210 if (FNDECL_USED_AUTO (fn))
16212 struct language_function *f = NULL;
16213 if (DECL_STRUCT_FUNCTION (fn))
16214 f = DECL_STRUCT_FUNCTION (fn)->language;
16215 if (f == NULL)
16216 f = DECL_SAVED_FUNCTION_DATA (fn);
16217 return f->x_auto_return_pattern;
16219 return TREE_TYPE (TREE_TYPE (fn));
16222 /* Returns true iff DECL is a variable or function declared with an auto type
16223 that has not yet been deduced to a real type. */
16225 bool
16226 undeduced_auto_decl (tree decl)
16228 if (cxx_dialect < cxx11)
16229 return false;
16230 return ((VAR_OR_FUNCTION_DECL_P (decl)
16231 || TREE_CODE (decl) == TEMPLATE_DECL)
16232 && type_uses_auto (TREE_TYPE (decl)));
16235 /* Complain if DECL has an undeduced return type. */
16237 bool
16238 require_deduced_type (tree decl, tsubst_flags_t complain)
16240 if (undeduced_auto_decl (decl))
16242 if (complain & tf_error)
16243 error ("use of %qD before deduction of %<auto%>", decl);
16244 return false;
16246 return true;
16249 #include "gt-cp-decl.h"