Eliminate source_location in favor of location_t
[official-gcc.git] / gcc / cp / decl.c
blob89a1823162630157449a25b1dfe5213c1a8df93c
1 /* Process declarations and variables for C++ compiler.
2 Copyright (C) 1988-2018 Free Software Foundation, Inc.
3 Contributed by Michael Tiemann (tiemann@cygnus.com)
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
22 /* Process declarations and symbol lookup for C++ front end.
23 Also constructs types; the standard scalar types at initialization,
24 and structure, union, array and enum types when they are declared. */
26 /* ??? not all decl nodes are given the most useful possible
27 line numbers. For example, the CONST_DECLs for enum values. */
29 #include "config.h"
30 #include "system.h"
31 #include "coretypes.h"
32 #include "target.h"
33 #include "c-family/c-target.h"
34 #include "cp-tree.h"
35 #include "timevar.h"
36 #include "stringpool.h"
37 #include "cgraph.h"
38 #include "stor-layout.h"
39 #include "varasm.h"
40 #include "attribs.h"
41 #include "flags.h"
42 #include "tree-iterator.h"
43 #include "decl.h"
44 #include "intl.h"
45 #include "toplev.h"
46 #include "c-family/c-objc.h"
47 #include "c-family/c-pragma.h"
48 #include "c-family/c-ubsan.h"
49 #include "debug.h"
50 #include "plugin.h"
51 #include "builtins.h"
52 #include "gimplify.h"
53 #include "asan.h"
54 #include "gcc-rich-location.h"
55 #include "langhooks.h"
57 /* Possible cases of bad specifiers type used by bad_specifiers. */
58 enum bad_spec_place {
59 BSP_VAR, /* variable */
60 BSP_PARM, /* parameter */
61 BSP_TYPE, /* type */
62 BSP_FIELD /* field */
65 static const char *redeclaration_error_message (tree, tree);
67 static int decl_jump_unsafe (tree);
68 static void require_complete_types_for_parms (tree);
69 static tree grok_reference_init (tree, tree, tree, int);
70 static tree grokvardecl (tree, tree, tree, const cp_decl_specifier_seq *,
71 int, int, int, bool, int, tree);
72 static void check_static_variable_definition (tree, tree);
73 static void record_unknown_type (tree, const char *);
74 static tree builtin_function_1 (tree, tree, bool);
75 static int member_function_or_else (tree, tree, enum overload_flags);
76 static tree local_variable_p_walkfn (tree *, int *, void *);
77 static const char *tag_name (enum tag_types);
78 static tree lookup_and_check_tag (enum tag_types, tree, tag_scope, bool);
79 static void maybe_deduce_size_from_array_init (tree, tree);
80 static void layout_var_decl (tree);
81 static tree check_initializer (tree, tree, int, vec<tree, va_gc> **);
82 static void make_rtl_for_nonlocal_decl (tree, tree, const char *);
83 static void save_function_data (tree);
84 static void copy_type_enum (tree , tree);
85 static void check_function_type (tree, tree);
86 static void finish_constructor_body (void);
87 static void begin_destructor_body (void);
88 static void finish_destructor_body (void);
89 static void record_key_method_defined (tree);
90 static tree create_array_type_for_decl (tree, tree, tree, location_t);
91 static tree get_atexit_node (void);
92 static tree get_dso_handle_node (void);
93 static tree start_cleanup_fn (void);
94 static void end_cleanup_fn (void);
95 static tree cp_make_fname_decl (location_t, tree, int);
96 static void initialize_predefined_identifiers (void);
97 static tree check_special_function_return_type
98 (special_function_kind, tree, tree, int, const location_t*);
99 static tree push_cp_library_fn (enum tree_code, tree, int);
100 static tree build_cp_library_fn (tree, enum tree_code, tree, int);
101 static void store_parm_decls (tree);
102 static void initialize_local_var (tree, tree);
103 static void expand_static_init (tree, tree);
105 /* The following symbols are subsumed in the cp_global_trees array, and
106 listed here individually for documentation purposes.
108 C++ extensions
109 tree wchar_decl_node;
111 tree vtable_entry_type;
112 tree delta_type_node;
113 tree __t_desc_type_node;
115 tree class_type_node;
116 tree unknown_type_node;
118 Array type `vtable_entry_type[]'
120 tree vtbl_type_node;
121 tree vtbl_ptr_type_node;
123 Namespaces,
125 tree std_node;
126 tree abi_node;
128 A FUNCTION_DECL which can call `abort'. Not necessarily the
129 one that the user will declare, but sufficient to be called
130 by routines that want to abort the program.
132 tree abort_fndecl;
134 Used by RTTI
135 tree type_info_type_node, tinfo_decl_id, tinfo_decl_type;
136 tree tinfo_var_id; */
138 tree cp_global_trees[CPTI_MAX];
140 /* A list of objects which have constructors or destructors
141 which reside in the global scope. The decl is stored in
142 the TREE_VALUE slot and the initializer is stored
143 in the TREE_PURPOSE slot. */
144 tree static_aggregates;
146 /* Like static_aggregates, but for thread_local variables. */
147 tree tls_aggregates;
149 /* -- end of C++ */
151 /* A node for the integer constant 2. */
153 tree integer_two_node;
155 /* vector of static decls. */
156 vec<tree, va_gc> *static_decls;
158 /* vector of keyed classes. */
159 vec<tree, va_gc> *keyed_classes;
161 /* Used only for jumps to as-yet undefined labels, since jumps to
162 defined labels can have their validity checked immediately. */
164 struct GTY((chain_next ("%h.next"))) named_label_use_entry {
165 struct named_label_use_entry *next;
166 /* The binding level to which this entry is *currently* attached.
167 This is initially the binding level in which the goto appeared,
168 but is modified as scopes are closed. */
169 cp_binding_level *binding_level;
170 /* The head of the names list that was current when the goto appeared,
171 or the inner scope popped. These are the decls that will *not* be
172 skipped when jumping to the label. */
173 tree names_in_scope;
174 /* The location of the goto, for error reporting. */
175 location_t o_goto_locus;
176 /* True if an OpenMP structured block scope has been closed since
177 the goto appeared. This means that the branch from the label will
178 illegally exit an OpenMP scope. */
179 bool in_omp_scope;
182 /* A list of all LABEL_DECLs in the function that have names. Here so
183 we can clear out their names' definitions at the end of the
184 function, and so we can check the validity of jumps to these labels. */
186 struct GTY((for_user)) named_label_entry {
188 tree name; /* Name of decl. */
190 tree label_decl; /* LABEL_DECL, unless deleted local label. */
192 named_label_entry *outer; /* Outer shadowed chain. */
194 /* The binding level to which the label is *currently* attached.
195 This is initially set to the binding level in which the label
196 is defined, but is modified as scopes are closed. */
197 cp_binding_level *binding_level;
199 /* The head of the names list that was current when the label was
200 defined, or the inner scope popped. These are the decls that will
201 be skipped when jumping to the label. */
202 tree names_in_scope;
204 /* A vector of all decls from all binding levels that would be
205 crossed by a backward branch to the label. */
206 vec<tree, va_gc> *bad_decls;
208 /* A list of uses of the label, before the label is defined. */
209 named_label_use_entry *uses;
211 /* The following bits are set after the label is defined, and are
212 updated as scopes are popped. They indicate that a jump to the
213 label will illegally enter a scope of the given flavor. */
214 bool in_try_scope;
215 bool in_catch_scope;
216 bool in_omp_scope;
217 bool in_transaction_scope;
218 bool in_constexpr_if;
221 #define named_labels cp_function_chain->x_named_labels
223 /* The number of function bodies which we are currently processing.
224 (Zero if we are at namespace scope, one inside the body of a
225 function, two inside the body of a function in a local class, etc.) */
226 int function_depth;
228 /* Whether the exception-specifier is part of a function type (i.e. C++17). */
229 bool flag_noexcept_type;
231 /* States indicating how grokdeclarator() should handle declspecs marked
232 with __attribute__((deprecated)). An object declared as
233 __attribute__((deprecated)) suppresses warnings of uses of other
234 deprecated items. */
235 enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
238 /* A list of VAR_DECLs whose type was incomplete at the time the
239 variable was declared. */
241 struct GTY(()) incomplete_var {
242 tree decl;
243 tree incomplete_type;
247 static GTY(()) vec<incomplete_var, va_gc> *incomplete_vars;
249 /* Returns the kind of template specialization we are currently
250 processing, given that it's declaration contained N_CLASS_SCOPES
251 explicit scope qualifications. */
253 tmpl_spec_kind
254 current_tmpl_spec_kind (int n_class_scopes)
256 int n_template_parm_scopes = 0;
257 int seen_specialization_p = 0;
258 int innermost_specialization_p = 0;
259 cp_binding_level *b;
261 /* Scan through the template parameter scopes. */
262 for (b = current_binding_level;
263 b->kind == sk_template_parms;
264 b = b->level_chain)
266 /* If we see a specialization scope inside a parameter scope,
267 then something is wrong. That corresponds to a declaration
268 like:
270 template <class T> template <> ...
272 which is always invalid since [temp.expl.spec] forbids the
273 specialization of a class member template if the enclosing
274 class templates are not explicitly specialized as well. */
275 if (b->explicit_spec_p)
277 if (n_template_parm_scopes == 0)
278 innermost_specialization_p = 1;
279 else
280 seen_specialization_p = 1;
282 else if (seen_specialization_p == 1)
283 return tsk_invalid_member_spec;
285 ++n_template_parm_scopes;
288 /* Handle explicit instantiations. */
289 if (processing_explicit_instantiation)
291 if (n_template_parm_scopes != 0)
292 /* We've seen a template parameter list during an explicit
293 instantiation. For example:
295 template <class T> template void f(int);
297 This is erroneous. */
298 return tsk_invalid_expl_inst;
299 else
300 return tsk_expl_inst;
303 if (n_template_parm_scopes < n_class_scopes)
304 /* We've not seen enough template headers to match all the
305 specialized classes present. For example:
307 template <class T> void R<T>::S<T>::f(int);
309 This is invalid; there needs to be one set of template
310 parameters for each class. */
311 return tsk_insufficient_parms;
312 else if (n_template_parm_scopes == n_class_scopes)
313 /* We're processing a non-template declaration (even though it may
314 be a member of a template class.) For example:
316 template <class T> void S<T>::f(int);
318 The `class T' matches the `S<T>', leaving no template headers
319 corresponding to the `f'. */
320 return tsk_none;
321 else if (n_template_parm_scopes > n_class_scopes + 1)
322 /* We've got too many template headers. For example:
324 template <> template <class T> void f (T);
326 There need to be more enclosing classes. */
327 return tsk_excessive_parms;
328 else
329 /* This must be a template. It's of the form:
331 template <class T> template <class U> void S<T>::f(U);
333 This is a specialization if the innermost level was a
334 specialization; otherwise it's just a definition of the
335 template. */
336 return innermost_specialization_p ? tsk_expl_spec : tsk_template;
339 /* Exit the current scope. */
341 void
342 finish_scope (void)
344 poplevel (0, 0, 0);
347 /* When a label goes out of scope, check to see if that label was used
348 in a valid manner, and issue any appropriate warnings or errors. */
350 static void
351 check_label_used (tree label)
353 if (!processing_template_decl)
355 if (DECL_INITIAL (label) == NULL_TREE)
357 location_t location;
359 error ("label %q+D used but not defined", label);
360 location = input_location;
361 /* FIXME want (LOCATION_FILE (input_location), (line)0) */
362 /* Avoid crashing later. */
363 define_label (location, DECL_NAME (label));
365 else
366 warn_for_unused_label (label);
370 /* Helper function to sort named label entries in a vector by DECL_UID. */
372 static int
373 sort_labels (const void *a, const void *b)
375 tree label1 = *(tree const *) a;
376 tree label2 = *(tree const *) b;
378 /* DECL_UIDs can never be equal. */
379 return DECL_UID (label1) > DECL_UID (label2) ? -1 : +1;
382 /* At the end of a function, all labels declared within the function
383 go out of scope. BLOCK is the top-level block for the
384 function. */
386 static void
387 pop_labels (tree block)
389 if (!named_labels)
390 return;
392 /* We need to add the labels to the block chain, so debug
393 information is emitted. But, we want the order to be stable so
394 need to sort them first. Otherwise the debug output could be
395 randomly ordered. I guess it's mostly stable, unless the hash
396 table implementation changes. */
397 auto_vec<tree, 32> labels (named_labels->elements ());
398 hash_table<named_label_hash>::iterator end (named_labels->end ());
399 for (hash_table<named_label_hash>::iterator iter
400 (named_labels->begin ()); iter != end; ++iter)
402 named_label_entry *ent = *iter;
404 gcc_checking_assert (!ent->outer);
405 if (ent->label_decl)
406 labels.quick_push (ent->label_decl);
407 ggc_free (ent);
409 named_labels = NULL;
410 labels.qsort (sort_labels);
412 while (labels.length ())
414 tree label = labels.pop ();
416 DECL_CHAIN (label) = BLOCK_VARS (block);
417 BLOCK_VARS (block) = label;
419 check_label_used (label);
423 /* At the end of a block with local labels, restore the outer definition. */
425 static void
426 pop_local_label (tree id, tree label)
428 check_label_used (label);
429 named_label_entry **slot = named_labels->find_slot_with_hash
430 (id, IDENTIFIER_HASH_VALUE (id), NO_INSERT);
431 named_label_entry *ent = *slot;
433 if (ent->outer)
434 ent = ent->outer;
435 else
437 ent = ggc_cleared_alloc<named_label_entry> ();
438 ent->name = id;
440 *slot = ent;
443 /* The following two routines are used to interface to Objective-C++.
444 The binding level is purposely treated as an opaque type. */
446 void *
447 objc_get_current_scope (void)
449 return current_binding_level;
452 /* The following routine is used by the NeXT-style SJLJ exceptions;
453 variables get marked 'volatile' so as to not be clobbered by
454 _setjmp()/_longjmp() calls. All variables in the current scope,
455 as well as parent scopes up to (but not including) ENCLOSING_BLK
456 shall be thusly marked. */
458 void
459 objc_mark_locals_volatile (void *enclosing_blk)
461 cp_binding_level *scope;
463 for (scope = current_binding_level;
464 scope && scope != enclosing_blk;
465 scope = scope->level_chain)
467 tree decl;
469 for (decl = scope->names; decl; decl = TREE_CHAIN (decl))
470 objc_volatilize_decl (decl);
472 /* Do not climb up past the current function. */
473 if (scope->kind == sk_function_parms)
474 break;
478 /* True if B is the level for the condition of a constexpr if. */
480 static bool
481 level_for_constexpr_if (cp_binding_level *b)
483 return (b->kind == sk_cond && b->this_entity
484 && TREE_CODE (b->this_entity) == IF_STMT
485 && IF_STMT_CONSTEXPR_P (b->this_entity));
488 /* Update data for defined and undefined labels when leaving a scope. */
491 poplevel_named_label_1 (named_label_entry **slot, cp_binding_level *bl)
493 named_label_entry *ent = *slot;
494 cp_binding_level *obl = bl->level_chain;
496 if (ent->binding_level == bl)
498 tree decl;
500 /* ENT->NAMES_IN_SCOPE may contain a mixture of DECLs and
501 TREE_LISTs representing OVERLOADs, so be careful. */
502 for (decl = ent->names_in_scope; decl; decl = (DECL_P (decl)
503 ? DECL_CHAIN (decl)
504 : TREE_CHAIN (decl)))
505 if (decl_jump_unsafe (decl))
506 vec_safe_push (ent->bad_decls, decl);
508 ent->binding_level = obl;
509 ent->names_in_scope = obl->names;
510 switch (bl->kind)
512 case sk_try:
513 ent->in_try_scope = true;
514 break;
515 case sk_catch:
516 ent->in_catch_scope = true;
517 break;
518 case sk_omp:
519 ent->in_omp_scope = true;
520 break;
521 case sk_transaction:
522 ent->in_transaction_scope = true;
523 break;
524 case sk_block:
525 if (level_for_constexpr_if (bl->level_chain))
526 ent->in_constexpr_if = true;
527 break;
528 default:
529 break;
532 else if (ent->uses)
534 struct named_label_use_entry *use;
536 for (use = ent->uses; use ; use = use->next)
537 if (use->binding_level == bl)
539 use->binding_level = obl;
540 use->names_in_scope = obl->names;
541 if (bl->kind == sk_omp)
542 use->in_omp_scope = true;
546 return 1;
549 /* Saved errorcount to avoid -Wunused-but-set-{parameter,variable} warnings
550 when errors were reported, except for -Werror-unused-but-set-*. */
551 static int unused_but_set_errorcount;
553 /* Exit a binding level.
554 Pop the level off, and restore the state of the identifier-decl mappings
555 that were in effect when this level was entered.
557 If KEEP == 1, this level had explicit declarations, so
558 and create a "block" (a BLOCK node) for the level
559 to record its declarations and subblocks for symbol table output.
561 If FUNCTIONBODY is nonzero, this level is the body of a function,
562 so create a block as if KEEP were set and also clear out all
563 label names.
565 If REVERSE is nonzero, reverse the order of decls before putting
566 them into the BLOCK. */
568 tree
569 poplevel (int keep, int reverse, int functionbody)
571 tree link;
572 /* The chain of decls was accumulated in reverse order.
573 Put it into forward order, just for cleanliness. */
574 tree decls;
575 tree subblocks;
576 tree block;
577 tree decl;
578 scope_kind kind;
580 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
581 restart:
583 block = NULL_TREE;
585 gcc_assert (current_binding_level->kind != sk_class
586 && current_binding_level->kind != sk_namespace);
588 if (current_binding_level->kind == sk_cleanup)
589 functionbody = 0;
590 subblocks = functionbody >= 0 ? current_binding_level->blocks : 0;
592 gcc_assert (!vec_safe_length (current_binding_level->class_shadowed));
594 /* We used to use KEEP == 2 to indicate that the new block should go
595 at the beginning of the list of blocks at this binding level,
596 rather than the end. This hack is no longer used. */
597 gcc_assert (keep == 0 || keep == 1);
599 if (current_binding_level->keep)
600 keep = 1;
602 /* Any uses of undefined labels, and any defined labels, now operate
603 under constraints of next binding contour. */
604 if (cfun && !functionbody && named_labels)
605 named_labels->traverse<cp_binding_level *, poplevel_named_label_1>
606 (current_binding_level);
608 /* Get the decls in the order they were written.
609 Usually current_binding_level->names is in reverse order.
610 But parameter decls were previously put in forward order. */
612 decls = current_binding_level->names;
613 if (reverse)
615 decls = nreverse (decls);
616 current_binding_level->names = decls;
619 /* If there were any declarations or structure tags in that level,
620 or if this level is a function body,
621 create a BLOCK to record them for the life of this function. */
622 block = NULL_TREE;
623 /* Avoid function body block if possible. */
624 if (functionbody && subblocks && BLOCK_CHAIN (subblocks) == NULL_TREE)
625 keep = 0;
626 else if (keep == 1 || functionbody)
627 block = make_node (BLOCK);
628 if (block != NULL_TREE)
630 BLOCK_VARS (block) = decls;
631 BLOCK_SUBBLOCKS (block) = subblocks;
634 /* In each subblock, record that this is its superior. */
635 if (keep >= 0)
636 for (link = subblocks; link; link = BLOCK_CHAIN (link))
637 BLOCK_SUPERCONTEXT (link) = block;
639 /* Before we remove the declarations first check for unused variables. */
640 if ((warn_unused_variable || warn_unused_but_set_variable)
641 && current_binding_level->kind != sk_template_parms
642 && !processing_template_decl)
643 for (tree d = get_local_decls (); d; d = TREE_CHAIN (d))
645 /* There are cases where D itself is a TREE_LIST. See in
646 push_local_binding where the list of decls returned by
647 getdecls is built. */
648 decl = TREE_CODE (d) == TREE_LIST ? TREE_VALUE (d) : d;
650 tree type = TREE_TYPE (decl);
651 if (VAR_P (decl)
652 && (! TREE_USED (decl) || !DECL_READ_P (decl))
653 && ! DECL_IN_SYSTEM_HEADER (decl)
654 /* For structured bindings, consider only real variables, not
655 subobjects. */
656 && (DECL_DECOMPOSITION_P (decl) ? !DECL_DECOMP_BASE (decl)
657 : (DECL_NAME (decl) && !DECL_ARTIFICIAL (decl)))
658 && type != error_mark_node
659 && (!CLASS_TYPE_P (type)
660 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
661 || lookup_attribute ("warn_unused",
662 TYPE_ATTRIBUTES (TREE_TYPE (decl)))))
664 if (! TREE_USED (decl))
666 if (!DECL_NAME (decl) && DECL_DECOMPOSITION_P (decl))
667 warning_at (DECL_SOURCE_LOCATION (decl),
668 OPT_Wunused_variable,
669 "unused structured binding declaration");
670 else
671 warning_at (DECL_SOURCE_LOCATION (decl),
672 OPT_Wunused_variable, "unused variable %qD", decl);
674 else if (DECL_CONTEXT (decl) == current_function_decl
675 // For -Wunused-but-set-variable leave references alone.
676 && !TYPE_REF_P (TREE_TYPE (decl))
677 && errorcount == unused_but_set_errorcount)
679 if (!DECL_NAME (decl) && DECL_DECOMPOSITION_P (decl))
680 warning_at (DECL_SOURCE_LOCATION (decl),
681 OPT_Wunused_but_set_variable, "structured "
682 "binding declaration set but not used");
683 else
684 warning_at (DECL_SOURCE_LOCATION (decl),
685 OPT_Wunused_but_set_variable,
686 "variable %qD set but not used", decl);
687 unused_but_set_errorcount = errorcount;
692 /* Remove declarations for all the DECLs in this level. */
693 for (link = decls; link; link = TREE_CHAIN (link))
695 decl = TREE_CODE (link) == TREE_LIST ? TREE_VALUE (link) : link;
696 tree name = OVL_NAME (decl);
698 /* Remove the binding. */
699 if (TREE_CODE (decl) == LABEL_DECL)
700 pop_local_label (name, decl);
701 else
702 pop_local_binding (name, decl);
705 /* Restore the IDENTIFIER_TYPE_VALUEs. */
706 for (link = current_binding_level->type_shadowed;
707 link; link = TREE_CHAIN (link))
708 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (link), TREE_VALUE (link));
710 /* There may be OVERLOADs (wrapped in TREE_LISTs) on the BLOCK_VARs
711 list if a `using' declaration put them there. The debugging
712 back ends won't understand OVERLOAD, so we remove them here.
713 Because the BLOCK_VARS are (temporarily) shared with
714 CURRENT_BINDING_LEVEL->NAMES we must do this fixup after we have
715 popped all the bindings. Also remove undeduced 'auto' decls,
716 which LTO doesn't understand, and can't have been used by anything. */
717 if (block)
719 tree* d;
721 for (d = &BLOCK_VARS (block); *d; )
723 if (TREE_CODE (*d) == TREE_LIST
724 || (!processing_template_decl
725 && undeduced_auto_decl (*d)))
726 *d = TREE_CHAIN (*d);
727 else
728 d = &DECL_CHAIN (*d);
732 /* If the level being exited is the top level of a function,
733 check over all the labels. */
734 if (functionbody)
736 if (block)
738 /* Since this is the top level block of a function, the vars are
739 the function's parameters. Don't leave them in the BLOCK
740 because they are found in the FUNCTION_DECL instead. */
741 BLOCK_VARS (block) = 0;
742 pop_labels (block);
744 else
745 pop_labels (subblocks);
748 kind = current_binding_level->kind;
749 if (kind == sk_cleanup)
751 tree stmt;
753 /* If this is a temporary binding created for a cleanup, then we'll
754 have pushed a statement list level. Pop that, create a new
755 BIND_EXPR for the block, and insert it into the stream. */
756 stmt = pop_stmt_list (current_binding_level->statement_list);
757 stmt = c_build_bind_expr (input_location, block, stmt);
758 add_stmt (stmt);
761 leave_scope ();
762 if (functionbody)
764 /* The current function is being defined, so its DECL_INITIAL
765 should be error_mark_node. */
766 gcc_assert (DECL_INITIAL (current_function_decl) == error_mark_node);
767 DECL_INITIAL (current_function_decl) = block ? block : subblocks;
768 if (subblocks)
770 if (FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
772 if (BLOCK_SUBBLOCKS (subblocks))
773 BLOCK_OUTER_CURLY_BRACE_P (BLOCK_SUBBLOCKS (subblocks)) = 1;
775 else
776 BLOCK_OUTER_CURLY_BRACE_P (subblocks) = 1;
779 else if (block)
780 current_binding_level->blocks
781 = block_chainon (current_binding_level->blocks, block);
783 /* If we did not make a block for the level just exited,
784 any blocks made for inner levels
785 (since they cannot be recorded as subblocks in that level)
786 must be carried forward so they will later become subblocks
787 of something else. */
788 else if (subblocks)
789 current_binding_level->blocks
790 = block_chainon (current_binding_level->blocks, subblocks);
792 /* Each and every BLOCK node created here in `poplevel' is important
793 (e.g. for proper debugging information) so if we created one
794 earlier, mark it as "used". */
795 if (block)
796 TREE_USED (block) = 1;
798 /* All temporary bindings created for cleanups are popped silently. */
799 if (kind == sk_cleanup)
800 goto restart;
802 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
803 return block;
806 /* Call wrapup_globals_declarations for the globals in NAMESPACE. */
807 /* Diagnose odr-used extern inline variables without definitions
808 in the current TU. */
811 wrapup_namespace_globals ()
813 if (vec<tree, va_gc> *statics = static_decls)
815 tree decl;
816 unsigned int i;
817 FOR_EACH_VEC_ELT (*statics, i, decl)
819 if (warn_unused_function
820 && TREE_CODE (decl) == FUNCTION_DECL
821 && DECL_INITIAL (decl) == 0
822 && DECL_EXTERNAL (decl)
823 && !TREE_PUBLIC (decl)
824 && !DECL_ARTIFICIAL (decl)
825 && !DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl)
826 && !TREE_NO_WARNING (decl))
827 warning_at (DECL_SOURCE_LOCATION (decl),
828 OPT_Wunused_function,
829 "%qF declared %<static%> but never defined", decl);
831 if (VAR_P (decl)
832 && DECL_EXTERNAL (decl)
833 && DECL_INLINE_VAR_P (decl)
834 && DECL_ODR_USED (decl))
835 error_at (DECL_SOURCE_LOCATION (decl),
836 "odr-used inline variable %qD is not defined", decl);
839 /* Clear out the list, so we don't rescan next time. */
840 static_decls = NULL;
842 /* Write out any globals that need to be output. */
843 return wrapup_global_declarations (statics->address (),
844 statics->length ());
846 return 0;
849 /* In C++, you don't have to write `struct S' to refer to `S'; you
850 can just use `S'. We accomplish this by creating a TYPE_DECL as
851 if the user had written `typedef struct S S'. Create and return
852 the TYPE_DECL for TYPE. */
854 tree
855 create_implicit_typedef (tree name, tree type)
857 tree decl;
859 decl = build_decl (input_location, TYPE_DECL, name, type);
860 DECL_ARTIFICIAL (decl) = 1;
861 /* There are other implicit type declarations, like the one *within*
862 a class that allows you to write `S::S'. We must distinguish
863 amongst these. */
864 SET_DECL_IMPLICIT_TYPEDEF_P (decl);
865 TYPE_NAME (type) = decl;
866 TYPE_STUB_DECL (type) = decl;
868 return decl;
871 /* Function-scope local entities that need discriminators. Each entry
872 is a {decl,name} pair. VAR_DECLs for anon unions get their name
873 smashed, so we cannot rely on DECL_NAME. */
875 static GTY((deletable)) vec<tree, va_gc> *local_entities;
877 /* Determine the mangling discriminator of local DECL. There are
878 generally very few of these in any particular function. */
880 void
881 determine_local_discriminator (tree decl)
883 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
884 retrofit_lang_decl (decl);
885 tree ctx = DECL_CONTEXT (decl);
886 tree name = (TREE_CODE (decl) == TYPE_DECL
887 && TYPE_UNNAMED_P (TREE_TYPE (decl))
888 ? NULL_TREE : DECL_NAME (decl));
889 size_t nelts = vec_safe_length (local_entities);
890 for (size_t i = 0; i < nelts; i += 2)
892 tree *pair = &(*local_entities)[i];
893 tree d = pair[0];
894 tree n = pair[1];
895 gcc_checking_assert (d != decl);
896 if (name == n
897 && TREE_CODE (decl) == TREE_CODE (d)
898 && ctx == DECL_CONTEXT (d))
900 tree disc = integer_one_node;
901 if (DECL_DISCRIMINATOR (d))
902 disc = build_int_cst (TREE_TYPE (disc),
903 TREE_INT_CST_LOW (DECL_DISCRIMINATOR (d)) + 1);
904 DECL_DISCRIMINATOR (decl) = disc;
905 /* Replace the saved decl. */
906 pair[0] = decl;
907 decl = NULL_TREE;
908 break;
912 if (decl)
914 vec_safe_reserve (local_entities, 2);
915 local_entities->quick_push (decl);
916 local_entities->quick_push (name);
919 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
923 /* Subroutine of duplicate_decls: return truthvalue of whether
924 or not types of these decls match.
926 For C++, we must compare the parameter list so that `int' can match
927 `int&' in a parameter position, but `int&' is not confused with
928 `const int&'. */
931 decls_match (tree newdecl, tree olddecl, bool record_versions /* = true */)
933 int types_match;
935 if (newdecl == olddecl)
936 return 1;
938 if (TREE_CODE (newdecl) != TREE_CODE (olddecl))
939 /* If the two DECLs are not even the same kind of thing, we're not
940 interested in their types. */
941 return 0;
943 gcc_assert (DECL_P (newdecl));
945 if (TREE_CODE (newdecl) == FUNCTION_DECL)
947 tree f1 = TREE_TYPE (newdecl);
948 tree f2 = TREE_TYPE (olddecl);
949 tree p1 = TYPE_ARG_TYPES (f1);
950 tree p2 = TYPE_ARG_TYPES (f2);
951 tree r2;
953 /* Specializations of different templates are different functions
954 even if they have the same type. */
955 tree t1 = (DECL_USE_TEMPLATE (newdecl)
956 ? DECL_TI_TEMPLATE (newdecl)
957 : NULL_TREE);
958 tree t2 = (DECL_USE_TEMPLATE (olddecl)
959 ? DECL_TI_TEMPLATE (olddecl)
960 : NULL_TREE);
961 if (t1 != t2)
962 return 0;
964 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
965 && ! (DECL_EXTERN_C_P (newdecl)
966 && DECL_EXTERN_C_P (olddecl)))
967 return 0;
969 /* A new declaration doesn't match a built-in one unless it
970 is also extern "C". */
971 if (DECL_IS_BUILTIN (olddecl)
972 && DECL_EXTERN_C_P (olddecl) && !DECL_EXTERN_C_P (newdecl))
973 return 0;
975 if (TREE_CODE (f1) != TREE_CODE (f2))
976 return 0;
978 /* A declaration with deduced return type should use its pre-deduction
979 type for declaration matching. */
980 r2 = fndecl_declared_return_type (olddecl);
982 if (same_type_p (TREE_TYPE (f1), r2))
984 if (!prototype_p (f2) && DECL_EXTERN_C_P (olddecl)
985 && fndecl_built_in_p (olddecl))
987 types_match = self_promoting_args_p (p1);
988 if (p1 == void_list_node)
989 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
991 else
992 types_match =
993 compparms (p1, p2)
994 && type_memfn_rqual (f1) == type_memfn_rqual (f2)
995 && (TYPE_ATTRIBUTES (TREE_TYPE (newdecl)) == NULL_TREE
996 || comp_type_attributes (TREE_TYPE (newdecl),
997 TREE_TYPE (olddecl)) != 0);
999 else
1000 types_match = 0;
1002 /* The decls dont match if they correspond to two different versions
1003 of the same function. Disallow extern "C" functions to be
1004 versions for now. */
1005 if (types_match
1006 && !DECL_EXTERN_C_P (newdecl)
1007 && !DECL_EXTERN_C_P (olddecl)
1008 && record_versions
1009 && maybe_version_functions (newdecl, olddecl,
1010 (!DECL_FUNCTION_VERSIONED (newdecl)
1011 || !DECL_FUNCTION_VERSIONED (olddecl))))
1012 return 0;
1014 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1016 tree oldres = DECL_TEMPLATE_RESULT (olddecl);
1017 tree newres = DECL_TEMPLATE_RESULT (newdecl);
1019 if (TREE_CODE (newres) != TREE_CODE (oldres))
1020 return 0;
1022 if (!comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1023 DECL_TEMPLATE_PARMS (olddecl)))
1024 return 0;
1026 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1027 types_match = (same_type_p (TREE_TYPE (oldres), TREE_TYPE (newres))
1028 && equivalently_constrained (olddecl, newdecl));
1029 else
1030 // We don't need to check equivalently_constrained for variable and
1031 // function templates because we check it on the results.
1032 types_match = decls_match (oldres, newres);
1034 else
1036 /* Need to check scope for variable declaration (VAR_DECL).
1037 For typedef (TYPE_DECL), scope is ignored. */
1038 if (VAR_P (newdecl)
1039 && CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
1040 /* [dcl.link]
1041 Two declarations for an object with C language linkage
1042 with the same name (ignoring the namespace that qualify
1043 it) that appear in different namespace scopes refer to
1044 the same object. */
1045 && !(DECL_EXTERN_C_P (olddecl) && DECL_EXTERN_C_P (newdecl)))
1046 return 0;
1048 if (TREE_TYPE (newdecl) == error_mark_node)
1049 types_match = TREE_TYPE (olddecl) == error_mark_node;
1050 else if (TREE_TYPE (olddecl) == NULL_TREE)
1051 types_match = TREE_TYPE (newdecl) == NULL_TREE;
1052 else if (TREE_TYPE (newdecl) == NULL_TREE)
1053 types_match = 0;
1054 else
1055 types_match = comptypes (TREE_TYPE (newdecl),
1056 TREE_TYPE (olddecl),
1057 COMPARE_REDECLARATION);
1060 // Normal functions can be constrained, as can variable partial
1061 // specializations.
1062 if (types_match && VAR_OR_FUNCTION_DECL_P (newdecl))
1063 types_match = equivalently_constrained (newdecl, olddecl);
1065 return types_match;
1068 /* NEWDECL and OLDDECL have identical signatures. If they are
1069 different versions adjust them and return true.
1070 If RECORD is set to true, record function versions. */
1072 bool
1073 maybe_version_functions (tree newdecl, tree olddecl, bool record)
1075 if (!targetm.target_option.function_versions (newdecl, olddecl))
1076 return false;
1078 if (!DECL_FUNCTION_VERSIONED (olddecl))
1080 DECL_FUNCTION_VERSIONED (olddecl) = 1;
1081 if (DECL_ASSEMBLER_NAME_SET_P (olddecl))
1082 mangle_decl (olddecl);
1085 if (!DECL_FUNCTION_VERSIONED (newdecl))
1087 DECL_FUNCTION_VERSIONED (newdecl) = 1;
1088 if (DECL_ASSEMBLER_NAME_SET_P (newdecl))
1089 mangle_decl (newdecl);
1092 if (record)
1093 cgraph_node::record_function_versions (olddecl, newdecl);
1095 return true;
1098 /* If NEWDECL is `static' and an `extern' was seen previously,
1099 warn about it. OLDDECL is the previous declaration.
1101 Note that this does not apply to the C++ case of declaring
1102 a variable `extern const' and then later `const'.
1104 Don't complain about built-in functions, since they are beyond
1105 the user's control. */
1107 void
1108 warn_extern_redeclared_static (tree newdecl, tree olddecl)
1110 if (TREE_CODE (newdecl) == TYPE_DECL
1111 || TREE_CODE (newdecl) == TEMPLATE_DECL
1112 || TREE_CODE (newdecl) == CONST_DECL
1113 || TREE_CODE (newdecl) == NAMESPACE_DECL)
1114 return;
1116 /* Don't get confused by static member functions; that's a different
1117 use of `static'. */
1118 if (TREE_CODE (newdecl) == FUNCTION_DECL
1119 && DECL_STATIC_FUNCTION_P (newdecl))
1120 return;
1122 /* If the old declaration was `static', or the new one isn't, then
1123 everything is OK. */
1124 if (DECL_THIS_STATIC (olddecl) || !DECL_THIS_STATIC (newdecl))
1125 return;
1127 /* It's OK to declare a builtin function as `static'. */
1128 if (TREE_CODE (olddecl) == FUNCTION_DECL
1129 && DECL_ARTIFICIAL (olddecl))
1130 return;
1132 auto_diagnostic_group d;
1133 if (permerror (DECL_SOURCE_LOCATION (newdecl),
1134 "%qD was declared %<extern%> and later %<static%>", newdecl))
1135 inform (DECL_SOURCE_LOCATION (olddecl),
1136 "previous declaration of %qD", olddecl);
1139 /* NEW_DECL is a redeclaration of OLD_DECL; both are functions or
1140 function templates. If their exception specifications do not
1141 match, issue a diagnostic. */
1143 static void
1144 check_redeclaration_exception_specification (tree new_decl,
1145 tree old_decl)
1147 tree new_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl));
1148 tree old_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl));
1150 /* Two default specs are equivalent, don't force evaluation. */
1151 if (UNEVALUATED_NOEXCEPT_SPEC_P (new_exceptions)
1152 && UNEVALUATED_NOEXCEPT_SPEC_P (old_exceptions))
1153 return;
1155 if (!type_dependent_expression_p (old_decl))
1157 maybe_instantiate_noexcept (new_decl);
1158 maybe_instantiate_noexcept (old_decl);
1160 new_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl));
1161 old_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl));
1163 /* [except.spec]
1165 If any declaration of a function has an exception-specification,
1166 all declarations, including the definition and an explicit
1167 specialization, of that function shall have an
1168 exception-specification with the same set of type-ids. */
1169 if (! DECL_IS_BUILTIN (old_decl)
1170 && !comp_except_specs (new_exceptions, old_exceptions, ce_normal))
1172 const char *const msg
1173 = G_("declaration of %qF has a different exception specifier");
1174 bool complained = true;
1175 location_t new_loc = DECL_SOURCE_LOCATION (new_decl);
1176 auto_diagnostic_group d;
1177 if (DECL_IN_SYSTEM_HEADER (old_decl))
1178 complained = pedwarn (new_loc, OPT_Wsystem_headers, msg, new_decl);
1179 else if (!flag_exceptions)
1180 /* We used to silently permit mismatched eh specs with
1181 -fno-exceptions, so make them a pedwarn now. */
1182 complained = pedwarn (new_loc, OPT_Wpedantic, msg, new_decl);
1183 else
1184 error_at (new_loc, msg, new_decl);
1185 if (complained)
1186 inform (DECL_SOURCE_LOCATION (old_decl),
1187 "from previous declaration %qF", old_decl);
1191 /* Return true if OLD_DECL and NEW_DECL agree on constexprness.
1192 Otherwise issue diagnostics. */
1194 static bool
1195 validate_constexpr_redeclaration (tree old_decl, tree new_decl)
1197 old_decl = STRIP_TEMPLATE (old_decl);
1198 new_decl = STRIP_TEMPLATE (new_decl);
1199 if (!VAR_OR_FUNCTION_DECL_P (old_decl)
1200 || !VAR_OR_FUNCTION_DECL_P (new_decl))
1201 return true;
1202 if (DECL_DECLARED_CONSTEXPR_P (old_decl)
1203 == DECL_DECLARED_CONSTEXPR_P (new_decl))
1204 return true;
1205 if (TREE_CODE (old_decl) == FUNCTION_DECL)
1207 if (fndecl_built_in_p (old_decl))
1209 /* Hide a built-in declaration. */
1210 DECL_DECLARED_CONSTEXPR_P (old_decl)
1211 = DECL_DECLARED_CONSTEXPR_P (new_decl);
1212 return true;
1214 /* 7.1.5 [dcl.constexpr]
1215 Note: An explicit specialization can differ from the template
1216 declaration with respect to the constexpr specifier. */
1217 if (! DECL_TEMPLATE_SPECIALIZATION (old_decl)
1218 && DECL_TEMPLATE_SPECIALIZATION (new_decl))
1219 return true;
1221 error_at (DECL_SOURCE_LOCATION (new_decl),
1222 "redeclaration %qD differs in %<constexpr%> "
1223 "from previous declaration", new_decl);
1224 inform (DECL_SOURCE_LOCATION (old_decl),
1225 "previous declaration %qD", old_decl);
1226 return false;
1228 return true;
1231 // If OLDDECL and NEWDECL are concept declarations with the same type
1232 // (i.e., and template parameters), but different requirements,
1233 // emit diagnostics and return true. Otherwise, return false.
1234 static inline bool
1235 check_concept_refinement (tree olddecl, tree newdecl)
1237 if (!DECL_DECLARED_CONCEPT_P (olddecl) || !DECL_DECLARED_CONCEPT_P (newdecl))
1238 return false;
1240 tree d1 = DECL_TEMPLATE_RESULT (olddecl);
1241 tree d2 = DECL_TEMPLATE_RESULT (newdecl);
1242 if (TREE_CODE (d1) != TREE_CODE (d2))
1243 return false;
1245 tree t1 = TREE_TYPE (d1);
1246 tree t2 = TREE_TYPE (d2);
1247 if (TREE_CODE (d1) == FUNCTION_DECL)
1249 if (compparms (TYPE_ARG_TYPES (t1), TYPE_ARG_TYPES (t2))
1250 && comp_template_parms (DECL_TEMPLATE_PARMS (olddecl),
1251 DECL_TEMPLATE_PARMS (newdecl))
1252 && !equivalently_constrained (olddecl, newdecl))
1254 error ("cannot specialize concept %q#D", olddecl);
1255 return true;
1258 return false;
1261 /* DECL is a redeclaration of a function or function template. If
1262 it does have default arguments issue a diagnostic. Note: this
1263 function is used to enforce the requirements in C++11 8.3.6 about
1264 no default arguments in redeclarations. */
1266 static void
1267 check_redeclaration_no_default_args (tree decl)
1269 gcc_assert (DECL_DECLARES_FUNCTION_P (decl));
1271 for (tree t = FUNCTION_FIRST_USER_PARMTYPE (decl);
1272 t && t != void_list_node; t = TREE_CHAIN (t))
1273 if (TREE_PURPOSE (t))
1275 permerror (DECL_SOURCE_LOCATION (decl),
1276 "redeclaration of %q#D may not have default "
1277 "arguments", decl);
1278 return;
1282 /* NEWDECL is a redeclaration of a function or function template OLDDECL,
1283 in any case represented as FUNCTION_DECLs (the DECL_TEMPLATE_RESULTs of
1284 the TEMPLATE_DECLs in case of function templates). This function is used
1285 to enforce the final part of C++17 11.3.6/4, about a single declaration:
1286 "If a friend declaration specifies a default argument expression, that
1287 declaration shall be a definition and shall be the only declaration of
1288 the function or function template in the translation unit." */
1290 static void
1291 check_no_redeclaration_friend_default_args (tree olddecl, tree newdecl,
1292 bool olddecl_hidden_friend_p)
1294 if (!olddecl_hidden_friend_p && !DECL_FRIEND_P (newdecl))
1295 return;
1297 tree t1 = FUNCTION_FIRST_USER_PARMTYPE (olddecl);
1298 tree t2 = FUNCTION_FIRST_USER_PARMTYPE (newdecl);
1300 for (; t1 && t1 != void_list_node;
1301 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
1302 if ((olddecl_hidden_friend_p && TREE_PURPOSE (t1))
1303 || (DECL_FRIEND_P (newdecl) && TREE_PURPOSE (t2)))
1305 auto_diagnostic_group d;
1306 if (permerror (DECL_SOURCE_LOCATION (newdecl),
1307 "friend declaration of %q#D specifies default "
1308 "arguments and isn't the only declaration", newdecl))
1309 inform (DECL_SOURCE_LOCATION (olddecl),
1310 "previous declaration of %q#D", olddecl);
1311 return;
1315 /* Merge tree bits that correspond to attributes noreturn, nothrow,
1316 const, malloc, and pure from NEWDECL with those of OLDDECL. */
1318 static void
1319 merge_attribute_bits (tree newdecl, tree olddecl)
1321 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1322 TREE_THIS_VOLATILE (olddecl) |= TREE_THIS_VOLATILE (newdecl);
1323 TREE_NOTHROW (newdecl) |= TREE_NOTHROW (olddecl);
1324 TREE_NOTHROW (olddecl) |= TREE_NOTHROW (newdecl);
1325 TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
1326 TREE_READONLY (olddecl) |= TREE_READONLY (newdecl);
1327 DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
1328 DECL_IS_MALLOC (olddecl) |= DECL_IS_MALLOC (newdecl);
1329 DECL_PURE_P (newdecl) |= DECL_PURE_P (olddecl);
1330 DECL_PURE_P (olddecl) |= DECL_PURE_P (newdecl);
1331 DECL_UNINLINABLE (newdecl) |= DECL_UNINLINABLE (olddecl);
1332 DECL_UNINLINABLE (olddecl) |= DECL_UNINLINABLE (newdecl);
1335 #define GNU_INLINE_P(fn) (DECL_DECLARED_INLINE_P (fn) \
1336 && lookup_attribute ("gnu_inline", \
1337 DECL_ATTRIBUTES (fn)))
1339 /* If NEWDECL is a redeclaration of OLDDECL, merge the declarations.
1340 If the redeclaration is invalid, a diagnostic is issued, and the
1341 error_mark_node is returned. Otherwise, OLDDECL is returned.
1343 If NEWDECL is not a redeclaration of OLDDECL, NULL_TREE is
1344 returned.
1346 NEWDECL_IS_FRIEND is true if NEWDECL was declared as a friend. */
1348 tree
1349 duplicate_decls (tree newdecl, tree olddecl, bool newdecl_is_friend)
1351 unsigned olddecl_uid = DECL_UID (olddecl);
1352 int olddecl_friend = 0, types_match = 0, hidden_friend = 0;
1353 int olddecl_hidden_friend = 0;
1354 int new_defines_function = 0;
1355 tree new_template_info;
1356 location_t olddecl_loc = DECL_SOURCE_LOCATION (olddecl);
1357 location_t newdecl_loc = DECL_SOURCE_LOCATION (newdecl);
1359 if (newdecl == olddecl)
1360 return olddecl;
1362 types_match = decls_match (newdecl, olddecl);
1364 /* If either the type of the new decl or the type of the old decl is an
1365 error_mark_node, then that implies that we have already issued an
1366 error (earlier) for some bogus type specification, and in that case,
1367 it is rather pointless to harass the user with yet more error message
1368 about the same declaration, so just pretend the types match here. */
1369 if (TREE_TYPE (newdecl) == error_mark_node
1370 || TREE_TYPE (olddecl) == error_mark_node)
1371 return error_mark_node;
1373 /* Check for redeclaration and other discrepancies. */
1374 if (TREE_CODE (olddecl) == FUNCTION_DECL
1375 && DECL_ARTIFICIAL (olddecl))
1377 gcc_assert (!DECL_HIDDEN_FRIEND_P (olddecl));
1378 if (TREE_CODE (newdecl) != FUNCTION_DECL)
1380 /* Avoid warnings redeclaring built-ins which have not been
1381 explicitly declared. */
1382 if (DECL_ANTICIPATED (olddecl))
1384 if (TREE_PUBLIC (newdecl)
1385 && CP_DECL_CONTEXT (newdecl) == global_namespace)
1386 warning_at (newdecl_loc,
1387 OPT_Wbuiltin_declaration_mismatch,
1388 "built-in function %qD declared as non-function",
1389 newdecl);
1390 return NULL_TREE;
1393 /* If you declare a built-in or predefined function name as static,
1394 the old definition is overridden, but optionally warn this was a
1395 bad choice of name. */
1396 if (! TREE_PUBLIC (newdecl))
1398 warning_at (newdecl_loc,
1399 OPT_Wshadow,
1400 fndecl_built_in_p (olddecl)
1401 ? G_("shadowing built-in function %q#D")
1402 : G_("shadowing library function %q#D"), olddecl);
1403 /* Discard the old built-in function. */
1404 return NULL_TREE;
1406 /* If the built-in is not ansi, then programs can override
1407 it even globally without an error. */
1408 else if (! fndecl_built_in_p (olddecl))
1409 warning_at (newdecl_loc, 0,
1410 "library function %q#D redeclared as non-function %q#D",
1411 olddecl, newdecl);
1412 else
1413 error_at (newdecl_loc,
1414 "declaration of %q#D conflicts with built-in "
1415 "declaration %q#D", newdecl, olddecl);
1416 return NULL_TREE;
1418 else if (DECL_OMP_DECLARE_REDUCTION_P (olddecl))
1420 gcc_assert (DECL_OMP_DECLARE_REDUCTION_P (newdecl));
1421 error_at (newdecl_loc,
1422 "redeclaration of %<pragma omp declare reduction%>");
1423 inform (olddecl_loc,
1424 "previous %<pragma omp declare reduction%> declaration");
1425 return error_mark_node;
1427 else if (!types_match)
1429 /* Avoid warnings redeclaring built-ins which have not been
1430 explicitly declared. */
1431 if (DECL_ANTICIPATED (olddecl))
1433 tree t1, t2;
1435 /* A new declaration doesn't match a built-in one unless it
1436 is also extern "C". */
1437 gcc_assert (DECL_IS_BUILTIN (olddecl));
1438 gcc_assert (DECL_EXTERN_C_P (olddecl));
1439 if (!DECL_EXTERN_C_P (newdecl))
1440 return NULL_TREE;
1442 for (t1 = TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1443 t2 = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1444 t1 || t2;
1445 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
1447 if (!t1 || !t2)
1448 break;
1449 /* FILE, tm types are not known at the time
1450 we create the builtins. */
1451 for (unsigned i = 0;
1452 i < sizeof (builtin_structptr_types)
1453 / sizeof (builtin_structptr_type);
1454 ++i)
1455 if (TREE_VALUE (t2) == builtin_structptr_types[i].node)
1457 tree t = TREE_VALUE (t1);
1459 if (TYPE_PTR_P (t)
1460 && TYPE_IDENTIFIER (TREE_TYPE (t))
1461 == get_identifier (builtin_structptr_types[i].str)
1462 && compparms (TREE_CHAIN (t1), TREE_CHAIN (t2)))
1464 tree oldargs = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1466 TYPE_ARG_TYPES (TREE_TYPE (olddecl))
1467 = TYPE_ARG_TYPES (TREE_TYPE (newdecl));
1468 types_match = decls_match (newdecl, olddecl);
1469 if (types_match)
1470 return duplicate_decls (newdecl, olddecl,
1471 newdecl_is_friend);
1472 TYPE_ARG_TYPES (TREE_TYPE (olddecl)) = oldargs;
1474 goto next_arg;
1477 if (! same_type_p (TREE_VALUE (t1), TREE_VALUE (t2)))
1478 break;
1479 next_arg:;
1482 warning_at (newdecl_loc,
1483 OPT_Wbuiltin_declaration_mismatch,
1484 "declaration of %q#D conflicts with built-in "
1485 "declaration %q#D", newdecl, olddecl);
1487 else if ((DECL_EXTERN_C_P (newdecl)
1488 && DECL_EXTERN_C_P (olddecl))
1489 || compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1490 TYPE_ARG_TYPES (TREE_TYPE (olddecl))))
1492 /* Don't really override olddecl for __* prefixed builtins
1493 except for __[^b]*_chk, the compiler might be using those
1494 explicitly. */
1495 if (fndecl_built_in_p (olddecl))
1497 tree id = DECL_NAME (olddecl);
1498 const char *name = IDENTIFIER_POINTER (id);
1499 size_t len;
1501 if (name[0] == '_'
1502 && name[1] == '_'
1503 && (strncmp (name + 2, "builtin_",
1504 strlen ("builtin_")) == 0
1505 || (len = strlen (name)) <= strlen ("___chk")
1506 || memcmp (name + len - strlen ("_chk"),
1507 "_chk", strlen ("_chk") + 1) != 0))
1509 if (DECL_INITIAL (newdecl))
1511 error_at (newdecl_loc,
1512 "definition of %q#D ambiguates built-in "
1513 "declaration %q#D", newdecl, olddecl);
1514 return error_mark_node;
1516 auto_diagnostic_group d;
1517 if (permerror (newdecl_loc,
1518 "new declaration %q#D ambiguates built-in"
1519 " declaration %q#D", newdecl, olddecl)
1520 && flag_permissive)
1521 inform (newdecl_loc,
1522 "ignoring the %q#D declaration", newdecl);
1523 return flag_permissive ? olddecl : error_mark_node;
1527 /* A near match; override the builtin. */
1529 if (TREE_PUBLIC (newdecl))
1530 warning_at (newdecl_loc,
1531 OPT_Wbuiltin_declaration_mismatch,
1532 "new declaration %q#D ambiguates built-in "
1533 "declaration %q#D", newdecl, olddecl);
1534 else
1535 warning (OPT_Wshadow,
1536 fndecl_built_in_p (olddecl)
1537 ? G_("shadowing built-in function %q#D")
1538 : G_("shadowing library function %q#D"), olddecl);
1540 else
1541 /* Discard the old built-in function. */
1542 return NULL_TREE;
1544 /* Replace the old RTL to avoid problems with inlining. */
1545 COPY_DECL_RTL (newdecl, olddecl);
1547 /* Even if the types match, prefer the new declarations type for
1548 built-ins which have not been explicitly declared, for
1549 exception lists, etc... */
1550 else if (DECL_IS_BUILTIN (olddecl))
1552 tree type = TREE_TYPE (newdecl);
1553 tree attribs = (*targetm.merge_type_attributes)
1554 (TREE_TYPE (olddecl), type);
1556 type = cp_build_type_attribute_variant (type, attribs);
1557 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = type;
1560 /* If a function is explicitly declared "throw ()", propagate that to
1561 the corresponding builtin. */
1562 if (DECL_BUILT_IN_CLASS (olddecl) == BUILT_IN_NORMAL
1563 && DECL_ANTICIPATED (olddecl)
1564 && TREE_NOTHROW (newdecl)
1565 && !TREE_NOTHROW (olddecl))
1567 enum built_in_function fncode = DECL_FUNCTION_CODE (olddecl);
1568 tree tmpdecl = builtin_decl_explicit (fncode);
1569 if (tmpdecl && tmpdecl != olddecl && types_match)
1570 TREE_NOTHROW (tmpdecl) = 1;
1573 /* Whether or not the builtin can throw exceptions has no
1574 bearing on this declarator. */
1575 TREE_NOTHROW (olddecl) = 0;
1577 if (DECL_THIS_STATIC (newdecl) && !DECL_THIS_STATIC (olddecl))
1579 /* If a builtin function is redeclared as `static', merge
1580 the declarations, but make the original one static. */
1581 DECL_THIS_STATIC (olddecl) = 1;
1582 TREE_PUBLIC (olddecl) = 0;
1584 /* Make the old declaration consistent with the new one so
1585 that all remnants of the builtin-ness of this function
1586 will be banished. */
1587 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
1588 COPY_DECL_RTL (newdecl, olddecl);
1591 else if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1593 /* C++ Standard, 3.3, clause 4:
1594 "[Note: a namespace name or a class template name must be unique
1595 in its declarative region (7.3.2, clause 14). ]" */
1596 if (TREE_CODE (olddecl) == NAMESPACE_DECL
1597 || TREE_CODE (newdecl) == NAMESPACE_DECL)
1598 /* Namespace conflicts with not namespace. */;
1599 else if (DECL_TYPE_TEMPLATE_P (olddecl)
1600 || DECL_TYPE_TEMPLATE_P (newdecl))
1601 /* Class template conflicts. */;
1602 else if ((TREE_CODE (newdecl) == FUNCTION_DECL
1603 && DECL_FUNCTION_TEMPLATE_P (olddecl))
1604 || (TREE_CODE (olddecl) == FUNCTION_DECL
1605 && DECL_FUNCTION_TEMPLATE_P (newdecl)))
1607 /* One is a function and the other is a template
1608 function. */
1609 if (!UDLIT_OPER_P (DECL_NAME (newdecl)))
1610 return NULL_TREE;
1612 /* There can only be one! */
1613 if (TREE_CODE (newdecl) == TEMPLATE_DECL
1614 && check_raw_literal_operator (olddecl))
1615 error_at (newdecl_loc,
1616 "literal operator %q#D conflicts with"
1617 " raw literal operator", newdecl);
1618 else if (check_raw_literal_operator (newdecl))
1619 error_at (newdecl_loc,
1620 "raw literal operator %q#D conflicts with"
1621 " literal operator template", newdecl);
1622 else
1623 return NULL_TREE;
1625 inform (olddecl_loc, "previous declaration %q#D", olddecl);
1626 return error_mark_node;
1628 else if (DECL_IMPLICIT_TYPEDEF_P (olddecl)
1629 || DECL_IMPLICIT_TYPEDEF_P (newdecl))
1630 /* One is an implicit typedef, that's ok. */
1631 return NULL_TREE;
1633 error ("%q#D redeclared as different kind of entity", newdecl);
1634 inform (olddecl_loc, "previous declaration %q#D", olddecl);
1636 return error_mark_node;
1638 else if (!types_match)
1640 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl))
1641 /* These are certainly not duplicate declarations; they're
1642 from different scopes. */
1643 return NULL_TREE;
1645 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1647 /* The name of a class template may not be declared to refer to
1648 any other template, class, function, object, namespace, value,
1649 or type in the same scope. */
1650 if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == TYPE_DECL
1651 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1653 error_at (newdecl_loc,
1654 "conflicting declaration of template %q#D", newdecl);
1655 inform (olddecl_loc,
1656 "previous declaration %q#D", olddecl);
1657 return error_mark_node;
1659 else if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == FUNCTION_DECL
1660 && TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == FUNCTION_DECL
1661 && compparms (TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl))),
1662 TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (newdecl))))
1663 && comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1664 DECL_TEMPLATE_PARMS (olddecl))
1665 /* Template functions can be disambiguated by
1666 return type. */
1667 && same_type_p (TREE_TYPE (TREE_TYPE (newdecl)),
1668 TREE_TYPE (TREE_TYPE (olddecl)))
1669 /* Template functions can also be disambiguated by
1670 constraints. */
1671 && equivalently_constrained (olddecl, newdecl))
1673 error_at (newdecl_loc, "ambiguating new declaration %q#D",
1674 newdecl);
1675 inform (olddecl_loc,
1676 "old declaration %q#D", olddecl);
1678 else if (check_concept_refinement (olddecl, newdecl))
1679 return error_mark_node;
1680 return NULL_TREE;
1682 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1684 if (DECL_EXTERN_C_P (newdecl) && DECL_EXTERN_C_P (olddecl))
1686 error_at (newdecl_loc,
1687 "conflicting declaration of C function %q#D",
1688 newdecl);
1689 inform (olddecl_loc,
1690 "previous declaration %q#D", olddecl);
1691 return NULL_TREE;
1693 /* For function versions, params and types match, but they
1694 are not ambiguous. */
1695 else if ((!DECL_FUNCTION_VERSIONED (newdecl)
1696 && !DECL_FUNCTION_VERSIONED (olddecl))
1697 // The functions have the same parameter types.
1698 && compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1699 TYPE_ARG_TYPES (TREE_TYPE (olddecl)))
1700 // And the same constraints.
1701 && equivalently_constrained (newdecl, olddecl))
1703 error_at (newdecl_loc,
1704 "ambiguating new declaration of %q#D", newdecl);
1705 inform (olddecl_loc,
1706 "old declaration %q#D", olddecl);
1707 return error_mark_node;
1709 else
1710 return NULL_TREE;
1712 else
1714 error_at (newdecl_loc, "conflicting declaration %q#D", newdecl);
1715 inform (olddecl_loc,
1716 "previous declaration as %q#D", olddecl);
1717 return error_mark_node;
1720 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1721 && ((DECL_TEMPLATE_SPECIALIZATION (olddecl)
1722 && (!DECL_TEMPLATE_INFO (newdecl)
1723 || (DECL_TI_TEMPLATE (newdecl)
1724 != DECL_TI_TEMPLATE (olddecl))))
1725 || (DECL_TEMPLATE_SPECIALIZATION (newdecl)
1726 && (!DECL_TEMPLATE_INFO (olddecl)
1727 || (DECL_TI_TEMPLATE (olddecl)
1728 != DECL_TI_TEMPLATE (newdecl))))))
1729 /* It's OK to have a template specialization and a non-template
1730 with the same type, or to have specializations of two
1731 different templates with the same type. Note that if one is a
1732 specialization, and the other is an instantiation of the same
1733 template, that we do not exit at this point. That situation
1734 can occur if we instantiate a template class, and then
1735 specialize one of its methods. This situation is valid, but
1736 the declarations must be merged in the usual way. */
1737 return NULL_TREE;
1738 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1739 && ((DECL_TEMPLATE_INSTANTIATION (olddecl)
1740 && !DECL_USE_TEMPLATE (newdecl))
1741 || (DECL_TEMPLATE_INSTANTIATION (newdecl)
1742 && !DECL_USE_TEMPLATE (olddecl))))
1743 /* One of the declarations is a template instantiation, and the
1744 other is not a template at all. That's OK. */
1745 return NULL_TREE;
1746 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
1748 /* In [namespace.alias] we have:
1750 In a declarative region, a namespace-alias-definition can be
1751 used to redefine a namespace-alias declared in that declarative
1752 region to refer only to the namespace to which it already
1753 refers.
1755 Therefore, if we encounter a second alias directive for the same
1756 alias, we can just ignore the second directive. */
1757 if (DECL_NAMESPACE_ALIAS (newdecl)
1758 && (DECL_NAMESPACE_ALIAS (newdecl)
1759 == DECL_NAMESPACE_ALIAS (olddecl)))
1760 return olddecl;
1762 /* Leave it to update_binding to merge or report error. */
1763 return NULL_TREE;
1765 else
1767 const char *errmsg = redeclaration_error_message (newdecl, olddecl);
1768 if (errmsg)
1770 auto_diagnostic_group d;
1771 error_at (newdecl_loc, errmsg, newdecl);
1772 if (DECL_NAME (olddecl) != NULL_TREE)
1773 inform (olddecl_loc,
1774 (DECL_INITIAL (olddecl) && namespace_bindings_p ())
1775 ? G_("%q#D previously defined here")
1776 : G_("%q#D previously declared here"), olddecl);
1777 return error_mark_node;
1779 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1780 && DECL_INITIAL (olddecl) != NULL_TREE
1781 && !prototype_p (TREE_TYPE (olddecl))
1782 && prototype_p (TREE_TYPE (newdecl)))
1784 /* Prototype decl follows defn w/o prototype. */
1785 auto_diagnostic_group d;
1786 if (warning_at (newdecl_loc, 0,
1787 "prototype specified for %q#D", newdecl))
1788 inform (olddecl_loc,
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 auto_diagnostic_group d;
1828 error_at (newdecl_loc,
1829 "conflicting declaration of %q#D with %qL linkage",
1830 newdecl, DECL_LANGUAGE (newdecl));
1831 inform (olddecl_loc,
1832 "previous declaration with %qL linkage",
1833 DECL_LANGUAGE (olddecl));
1837 if (DECL_LANG_SPECIFIC (olddecl) && DECL_USE_TEMPLATE (olddecl))
1839 else if (TREE_CODE (olddecl) == FUNCTION_DECL)
1841 /* Note: free functions, as TEMPLATE_DECLs, are handled below. */
1842 if (DECL_FUNCTION_MEMBER_P (olddecl)
1843 && (/* grokfndecl passes member function templates too
1844 as FUNCTION_DECLs. */
1845 DECL_TEMPLATE_INFO (olddecl)
1846 /* C++11 8.3.6/6.
1847 Default arguments for a member function of a class
1848 template shall be specified on the initial declaration
1849 of the member function within the class template. */
1850 || CLASSTYPE_TEMPLATE_INFO (CP_DECL_CONTEXT (olddecl))))
1851 check_redeclaration_no_default_args (newdecl);
1852 else
1854 tree t1 = FUNCTION_FIRST_USER_PARMTYPE (olddecl);
1855 tree t2 = FUNCTION_FIRST_USER_PARMTYPE (newdecl);
1856 int i = 1;
1858 for (; t1 && t1 != void_list_node;
1859 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2), i++)
1860 if (TREE_PURPOSE (t1) && TREE_PURPOSE (t2))
1862 if (simple_cst_equal (TREE_PURPOSE (t1),
1863 TREE_PURPOSE (t2)) == 1)
1865 auto_diagnostic_group d;
1866 if (permerror (newdecl_loc,
1867 "default argument given for parameter "
1868 "%d of %q#D", i, newdecl))
1869 inform (olddecl_loc,
1870 "previous specification in %q#D here",
1871 olddecl);
1873 else
1875 auto_diagnostic_group d;
1876 error_at (newdecl_loc,
1877 "default argument given for parameter %d "
1878 "of %q#D", i, newdecl);
1879 inform (olddecl_loc,
1880 "previous specification in %q#D here",
1881 olddecl);
1885 /* C++17 11.3.6/4: "If a friend declaration specifies a default
1886 argument expression, that declaration... shall be the only
1887 declaration of the function or function template in the
1888 translation unit." */
1889 check_no_redeclaration_friend_default_args
1890 (olddecl, newdecl, DECL_HIDDEN_FRIEND_P (olddecl));
1895 /* Do not merge an implicit typedef with an explicit one. In:
1897 class A;
1899 typedef class A A __attribute__ ((foo));
1901 the attribute should apply only to the typedef. */
1902 if (TREE_CODE (olddecl) == TYPE_DECL
1903 && (DECL_IMPLICIT_TYPEDEF_P (olddecl)
1904 || DECL_IMPLICIT_TYPEDEF_P (newdecl)))
1905 return NULL_TREE;
1907 if (!validate_constexpr_redeclaration (olddecl, newdecl))
1908 return error_mark_node;
1910 /* We have committed to returning OLDDECL at this point. */
1912 /* If new decl is `static' and an `extern' was seen previously,
1913 warn about it. */
1914 warn_extern_redeclared_static (newdecl, olddecl);
1916 /* True to merge attributes between the declarations, false to
1917 set OLDDECL's attributes to those of NEWDECL (for template
1918 explicit specializations that specify their own attributes
1919 independent of those specified for the primary template). */
1920 const bool merge_attr = (TREE_CODE (newdecl) != FUNCTION_DECL
1921 || !DECL_TEMPLATE_SPECIALIZATION (newdecl)
1922 || DECL_TEMPLATE_SPECIALIZATION (olddecl));
1924 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1926 if (merge_attr && diagnose_mismatched_attributes (olddecl, newdecl))
1927 inform (olddecl_loc, DECL_INITIAL (olddecl)
1928 ? G_("previous definition of %qD here")
1929 : G_("previous declaration of %qD here"), olddecl);
1931 /* Now that functions must hold information normally held
1932 by field decls, there is extra work to do so that
1933 declaration information does not get destroyed during
1934 definition. */
1935 if (DECL_VINDEX (olddecl))
1936 DECL_VINDEX (newdecl) = DECL_VINDEX (olddecl);
1937 if (DECL_CONTEXT (olddecl))
1938 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1939 DECL_STATIC_CONSTRUCTOR (newdecl) |= DECL_STATIC_CONSTRUCTOR (olddecl);
1940 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1941 DECL_PURE_VIRTUAL_P (newdecl) |= DECL_PURE_VIRTUAL_P (olddecl);
1942 DECL_VIRTUAL_P (newdecl) |= DECL_VIRTUAL_P (olddecl);
1943 DECL_INVALID_OVERRIDER_P (newdecl) |= DECL_INVALID_OVERRIDER_P (olddecl);
1944 DECL_FINAL_P (newdecl) |= DECL_FINAL_P (olddecl);
1945 DECL_OVERRIDE_P (newdecl) |= DECL_OVERRIDE_P (olddecl);
1946 DECL_THIS_STATIC (newdecl) |= DECL_THIS_STATIC (olddecl);
1947 if (DECL_OVERLOADED_OPERATOR_P (olddecl))
1948 DECL_OVERLOADED_OPERATOR_CODE_RAW (newdecl)
1949 = DECL_OVERLOADED_OPERATOR_CODE_RAW (olddecl);
1950 new_defines_function = DECL_INITIAL (newdecl) != NULL_TREE;
1952 /* Optionally warn about more than one declaration for the same
1953 name, but don't warn about a function declaration followed by a
1954 definition. */
1955 if (warn_redundant_decls && ! DECL_ARTIFICIAL (olddecl)
1956 && !(new_defines_function && DECL_INITIAL (olddecl) == NULL_TREE)
1957 /* Don't warn about extern decl followed by definition. */
1958 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl))
1959 /* Don't warn about friends, let add_friend take care of it. */
1960 && ! (newdecl_is_friend || DECL_FRIEND_P (olddecl))
1961 /* Don't warn about declaration followed by specialization. */
1962 && (! DECL_TEMPLATE_SPECIALIZATION (newdecl)
1963 || DECL_TEMPLATE_SPECIALIZATION (olddecl)))
1965 auto_diagnostic_group d;
1966 if (warning_at (newdecl_loc,
1967 OPT_Wredundant_decls,
1968 "redundant redeclaration of %qD in same scope",
1969 newdecl))
1970 inform (olddecl_loc,
1971 "previous declaration of %qD", olddecl);
1974 if (!(DECL_TEMPLATE_INSTANTIATION (olddecl)
1975 && DECL_TEMPLATE_SPECIALIZATION (newdecl)))
1977 if (DECL_DELETED_FN (newdecl))
1979 auto_diagnostic_group d;
1980 error_at (newdecl_loc, "deleted definition of %qD", newdecl);
1981 inform (olddecl_loc,
1982 "previous declaration of %qD", olddecl);
1984 DECL_DELETED_FN (newdecl) |= DECL_DELETED_FN (olddecl);
1988 /* Deal with C++: must preserve virtual function table size. */
1989 if (TREE_CODE (olddecl) == TYPE_DECL)
1991 tree newtype = TREE_TYPE (newdecl);
1992 tree oldtype = TREE_TYPE (olddecl);
1994 if (newtype != error_mark_node && oldtype != error_mark_node
1995 && TYPE_LANG_SPECIFIC (newtype) && TYPE_LANG_SPECIFIC (oldtype))
1996 CLASSTYPE_FRIEND_CLASSES (newtype)
1997 = CLASSTYPE_FRIEND_CLASSES (oldtype);
1999 DECL_ORIGINAL_TYPE (newdecl) = DECL_ORIGINAL_TYPE (olddecl);
2002 /* Copy all the DECL_... slots specified in the new decl except for
2003 any that we copy here from the old type. */
2004 if (merge_attr)
2005 DECL_ATTRIBUTES (newdecl)
2006 = (*targetm.merge_decl_attributes) (olddecl, newdecl);
2007 else
2008 DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
2010 if (DECL_DECLARES_FUNCTION_P (olddecl))
2012 olddecl_friend = DECL_FRIEND_P (olddecl);
2013 olddecl_hidden_friend = DECL_HIDDEN_FRIEND_P (olddecl);
2014 hidden_friend = (DECL_ANTICIPATED (olddecl)
2015 && DECL_HIDDEN_FRIEND_P (olddecl)
2016 && newdecl_is_friend);
2017 if (!hidden_friend)
2019 DECL_ANTICIPATED (olddecl) = 0;
2020 DECL_HIDDEN_FRIEND_P (olddecl) = 0;
2024 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
2026 tree old_result = DECL_TEMPLATE_RESULT (olddecl);
2027 tree new_result = DECL_TEMPLATE_RESULT (newdecl);
2028 TREE_TYPE (olddecl) = TREE_TYPE (old_result);
2029 DECL_TEMPLATE_SPECIALIZATIONS (olddecl)
2030 = chainon (DECL_TEMPLATE_SPECIALIZATIONS (olddecl),
2031 DECL_TEMPLATE_SPECIALIZATIONS (newdecl));
2033 DECL_ATTRIBUTES (old_result)
2034 = (*targetm.merge_decl_attributes) (old_result, new_result);
2036 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
2038 if (DECL_SOURCE_LOCATION (newdecl)
2039 != DECL_SOURCE_LOCATION (olddecl))
2041 /* Per C++11 8.3.6/4, default arguments cannot be added in
2042 later declarations of a function template. */
2043 check_redeclaration_no_default_args (newdecl);
2044 /* C++17 11.3.6/4: "If a friend declaration specifies a default
2045 argument expression, that declaration... shall be the only
2046 declaration of the function or function template in the
2047 translation unit." */
2048 check_no_redeclaration_friend_default_args
2049 (old_result, new_result, olddecl_hidden_friend);
2052 check_default_args (newdecl);
2054 if (GNU_INLINE_P (old_result) != GNU_INLINE_P (new_result)
2055 && DECL_INITIAL (new_result))
2057 if (DECL_INITIAL (old_result))
2058 DECL_UNINLINABLE (old_result) = 1;
2059 else
2060 DECL_UNINLINABLE (old_result) = DECL_UNINLINABLE (new_result);
2061 DECL_EXTERNAL (old_result) = DECL_EXTERNAL (new_result);
2062 DECL_NOT_REALLY_EXTERN (old_result)
2063 = DECL_NOT_REALLY_EXTERN (new_result);
2064 DECL_INTERFACE_KNOWN (old_result)
2065 = DECL_INTERFACE_KNOWN (new_result);
2066 DECL_DECLARED_INLINE_P (old_result)
2067 = DECL_DECLARED_INLINE_P (new_result);
2068 DECL_DISREGARD_INLINE_LIMITS (old_result)
2069 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
2072 else
2074 DECL_DECLARED_INLINE_P (old_result)
2075 |= DECL_DECLARED_INLINE_P (new_result);
2076 DECL_DISREGARD_INLINE_LIMITS (old_result)
2077 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
2078 check_redeclaration_exception_specification (newdecl, olddecl);
2080 merge_attribute_bits (new_result, old_result);
2084 /* If the new declaration is a definition, update the file and
2085 line information on the declaration, and also make
2086 the old declaration the same definition. */
2087 if (DECL_INITIAL (new_result) != NULL_TREE)
2089 DECL_SOURCE_LOCATION (olddecl)
2090 = DECL_SOURCE_LOCATION (old_result)
2091 = DECL_SOURCE_LOCATION (newdecl);
2092 DECL_INITIAL (old_result) = DECL_INITIAL (new_result);
2093 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
2095 tree parm;
2096 DECL_ARGUMENTS (old_result)
2097 = DECL_ARGUMENTS (new_result);
2098 for (parm = DECL_ARGUMENTS (old_result); parm;
2099 parm = DECL_CHAIN (parm))
2100 DECL_CONTEXT (parm) = old_result;
2104 return olddecl;
2107 if (types_match)
2109 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2110 check_redeclaration_exception_specification (newdecl, olddecl);
2112 /* Automatically handles default parameters. */
2113 tree oldtype = TREE_TYPE (olddecl);
2114 tree newtype;
2116 /* For typedefs use the old type, as the new type's DECL_NAME points
2117 at newdecl, which will be ggc_freed. */
2118 if (TREE_CODE (newdecl) == TYPE_DECL)
2120 /* But NEWTYPE might have an attribute, honor that. */
2121 tree tem = TREE_TYPE (newdecl);
2122 newtype = oldtype;
2124 if (TYPE_USER_ALIGN (tem))
2126 if (TYPE_ALIGN (tem) > TYPE_ALIGN (newtype))
2127 SET_TYPE_ALIGN (newtype, TYPE_ALIGN (tem));
2128 TYPE_USER_ALIGN (newtype) = true;
2131 /* And remove the new type from the variants list. */
2132 if (TYPE_NAME (TREE_TYPE (newdecl)) == newdecl)
2134 tree remove = TREE_TYPE (newdecl);
2135 for (tree t = TYPE_MAIN_VARIANT (remove); ;
2136 t = TYPE_NEXT_VARIANT (t))
2137 if (TYPE_NEXT_VARIANT (t) == remove)
2139 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (remove);
2140 break;
2144 else if (merge_attr)
2145 newtype = merge_types (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
2146 else
2147 newtype = TREE_TYPE (newdecl);
2149 if (VAR_P (newdecl))
2151 DECL_THIS_EXTERN (newdecl) |= DECL_THIS_EXTERN (olddecl);
2152 /* For already initialized vars, TREE_READONLY could have been
2153 cleared in cp_finish_decl, because the var needs runtime
2154 initialization or destruction. Make sure not to set
2155 TREE_READONLY on it again. */
2156 if (DECL_INITIALIZED_P (olddecl)
2157 && !DECL_EXTERNAL (olddecl)
2158 && !TREE_READONLY (olddecl))
2159 TREE_READONLY (newdecl) = 0;
2160 DECL_INITIALIZED_P (newdecl) |= DECL_INITIALIZED_P (olddecl);
2161 DECL_NONTRIVIALLY_INITIALIZED_P (newdecl)
2162 |= DECL_NONTRIVIALLY_INITIALIZED_P (olddecl);
2163 if (DECL_DEPENDENT_INIT_P (olddecl))
2164 SET_DECL_DEPENDENT_INIT_P (newdecl, true);
2165 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (newdecl)
2166 |= DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (olddecl);
2167 if (DECL_CLASS_SCOPE_P (olddecl))
2168 DECL_DECLARED_CONSTEXPR_P (newdecl)
2169 |= DECL_DECLARED_CONSTEXPR_P (olddecl);
2171 /* Merge the threadprivate attribute from OLDDECL into NEWDECL. */
2172 if (DECL_LANG_SPECIFIC (olddecl)
2173 && CP_DECL_THREADPRIVATE_P (olddecl))
2175 /* Allocate a LANG_SPECIFIC structure for NEWDECL, if needed. */
2176 retrofit_lang_decl (newdecl);
2177 CP_DECL_THREADPRIVATE_P (newdecl) = 1;
2181 /* An explicit specialization of a function template or of a member
2182 function of a class template can be declared transaction_safe
2183 independently of whether the corresponding template entity is declared
2184 transaction_safe. */
2185 if (flag_tm && TREE_CODE (newdecl) == FUNCTION_DECL
2186 && DECL_TEMPLATE_INSTANTIATION (olddecl)
2187 && DECL_TEMPLATE_SPECIALIZATION (newdecl)
2188 && tx_safe_fn_type_p (newtype)
2189 && !tx_safe_fn_type_p (TREE_TYPE (newdecl)))
2190 newtype = tx_unsafe_fn_variant (newtype);
2192 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = newtype;
2194 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2195 check_default_args (newdecl);
2197 /* Lay the type out, unless already done. */
2198 if (! same_type_p (newtype, oldtype)
2199 && TREE_TYPE (newdecl) != error_mark_node
2200 && !(processing_template_decl && uses_template_parms (newdecl)))
2201 layout_type (TREE_TYPE (newdecl));
2203 if ((VAR_P (newdecl)
2204 || TREE_CODE (newdecl) == PARM_DECL
2205 || TREE_CODE (newdecl) == RESULT_DECL
2206 || TREE_CODE (newdecl) == FIELD_DECL
2207 || TREE_CODE (newdecl) == TYPE_DECL)
2208 && !(processing_template_decl && uses_template_parms (newdecl)))
2209 layout_decl (newdecl, 0);
2211 /* Merge deprecatedness. */
2212 if (TREE_DEPRECATED (newdecl))
2213 TREE_DEPRECATED (olddecl) = 1;
2215 /* Preserve function specific target and optimization options */
2216 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2218 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl)
2219 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl))
2220 DECL_FUNCTION_SPECIFIC_TARGET (newdecl)
2221 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl);
2223 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl)
2224 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl))
2225 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl)
2226 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl);
2228 else
2230 /* Merge the const type qualifier. */
2231 if (TREE_READONLY (newdecl))
2232 TREE_READONLY (olddecl) = 1;
2233 /* Merge the volatile type qualifier. */
2234 if (TREE_THIS_VOLATILE (newdecl))
2235 TREE_THIS_VOLATILE (olddecl) = 1;
2238 /* Merge the initialization information. */
2239 if (DECL_INITIAL (newdecl) == NULL_TREE
2240 && DECL_INITIAL (olddecl) != NULL_TREE)
2242 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2243 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2244 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2246 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
2247 DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl);
2251 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2253 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
2254 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
2255 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
2256 DECL_IS_OPERATOR_NEW (newdecl) |= DECL_IS_OPERATOR_NEW (olddecl);
2257 DECL_LOOPING_CONST_OR_PURE_P (newdecl)
2258 |= DECL_LOOPING_CONST_OR_PURE_P (olddecl);
2260 if (merge_attr)
2261 merge_attribute_bits (newdecl, olddecl);
2262 else
2264 /* Merge the noreturn bit. */
2265 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
2266 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
2267 TREE_NOTHROW (olddecl) = TREE_NOTHROW (newdecl);
2268 DECL_IS_MALLOC (olddecl) = DECL_IS_MALLOC (newdecl);
2269 DECL_PURE_P (olddecl) = DECL_PURE_P (newdecl);
2271 /* Keep the old RTL. */
2272 COPY_DECL_RTL (olddecl, newdecl);
2274 else if (VAR_P (newdecl)
2275 && (DECL_SIZE (olddecl) || !DECL_SIZE (newdecl)))
2277 /* Keep the old RTL. We cannot keep the old RTL if the old
2278 declaration was for an incomplete object and the new
2279 declaration is not since many attributes of the RTL will
2280 change. */
2281 COPY_DECL_RTL (olddecl, newdecl);
2284 /* If cannot merge, then use the new type and qualifiers,
2285 and don't preserve the old rtl. */
2286 else
2288 /* Clean out any memory we had of the old declaration. */
2289 tree oldstatic = value_member (olddecl, static_aggregates);
2290 if (oldstatic)
2291 TREE_VALUE (oldstatic) = error_mark_node;
2293 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
2294 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
2295 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
2296 TREE_NOTHROW (olddecl) = TREE_NOTHROW (newdecl);
2297 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
2300 /* Merge the storage class information. */
2301 merge_weak (newdecl, olddecl);
2303 DECL_DEFER_OUTPUT (newdecl) |= DECL_DEFER_OUTPUT (olddecl);
2304 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
2305 TREE_STATIC (olddecl) = TREE_STATIC (newdecl) |= TREE_STATIC (olddecl);
2306 if (! DECL_EXTERNAL (olddecl))
2307 DECL_EXTERNAL (newdecl) = 0;
2308 if (! DECL_COMDAT (olddecl))
2309 DECL_COMDAT (newdecl) = 0;
2311 new_template_info = NULL_TREE;
2312 if (DECL_LANG_SPECIFIC (newdecl) && DECL_LANG_SPECIFIC (olddecl))
2314 bool new_redefines_gnu_inline = false;
2316 if (new_defines_function
2317 && ((DECL_INTERFACE_KNOWN (olddecl)
2318 && TREE_CODE (olddecl) == FUNCTION_DECL)
2319 || (TREE_CODE (olddecl) == TEMPLATE_DECL
2320 && (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl))
2321 == FUNCTION_DECL))))
2323 tree fn = olddecl;
2325 if (TREE_CODE (fn) == TEMPLATE_DECL)
2326 fn = DECL_TEMPLATE_RESULT (olddecl);
2328 new_redefines_gnu_inline = GNU_INLINE_P (fn) && DECL_INITIAL (fn);
2331 if (!new_redefines_gnu_inline)
2333 DECL_INTERFACE_KNOWN (newdecl) |= DECL_INTERFACE_KNOWN (olddecl);
2334 DECL_NOT_REALLY_EXTERN (newdecl) |= DECL_NOT_REALLY_EXTERN (olddecl);
2335 DECL_COMDAT (newdecl) |= DECL_COMDAT (olddecl);
2337 DECL_TEMPLATE_INSTANTIATED (newdecl)
2338 |= DECL_TEMPLATE_INSTANTIATED (olddecl);
2339 DECL_ODR_USED (newdecl) |= DECL_ODR_USED (olddecl);
2341 /* If the OLDDECL is an instantiation and/or specialization,
2342 then the NEWDECL must be too. But, it may not yet be marked
2343 as such if the caller has created NEWDECL, but has not yet
2344 figured out that it is a redeclaration. */
2345 if (!DECL_USE_TEMPLATE (newdecl))
2346 DECL_USE_TEMPLATE (newdecl) = DECL_USE_TEMPLATE (olddecl);
2348 /* Don't really know how much of the language-specific
2349 values we should copy from old to new. */
2350 DECL_IN_AGGR_P (newdecl) = DECL_IN_AGGR_P (olddecl);
2351 DECL_REPO_AVAILABLE_P (newdecl) = DECL_REPO_AVAILABLE_P (olddecl);
2352 DECL_INITIALIZED_IN_CLASS_P (newdecl)
2353 |= DECL_INITIALIZED_IN_CLASS_P (olddecl);
2355 if (LANG_DECL_HAS_MIN (newdecl))
2357 DECL_ACCESS (newdecl) = DECL_ACCESS (olddecl);
2358 if (DECL_TEMPLATE_INFO (newdecl))
2360 new_template_info = DECL_TEMPLATE_INFO (newdecl);
2361 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
2362 && DECL_TEMPLATE_SPECIALIZATION (newdecl))
2363 /* Remember the presence of explicit specialization args. */
2364 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (olddecl))
2365 = TINFO_USED_TEMPLATE_ID (new_template_info);
2367 DECL_TEMPLATE_INFO (newdecl) = DECL_TEMPLATE_INFO (olddecl);
2369 /* Only functions have these fields. */
2370 if (DECL_DECLARES_FUNCTION_P (newdecl))
2372 DECL_NONCONVERTING_P (newdecl) = DECL_NONCONVERTING_P (olddecl);
2373 DECL_BEFRIENDING_CLASSES (newdecl)
2374 = chainon (DECL_BEFRIENDING_CLASSES (newdecl),
2375 DECL_BEFRIENDING_CLASSES (olddecl));
2376 /* DECL_THUNKS is only valid for virtual functions,
2377 otherwise it is a DECL_FRIEND_CONTEXT. */
2378 if (DECL_VIRTUAL_P (newdecl))
2379 SET_DECL_THUNKS (newdecl, DECL_THUNKS (olddecl));
2381 /* Only variables have this field. */
2382 else if (VAR_P (newdecl)
2383 && VAR_HAD_UNKNOWN_BOUND (olddecl))
2384 SET_VAR_HAD_UNKNOWN_BOUND (newdecl);
2387 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2389 tree parm;
2391 /* Merge parameter attributes. */
2392 tree oldarg, newarg;
2393 for (oldarg = DECL_ARGUMENTS(olddecl), newarg = DECL_ARGUMENTS(newdecl);
2394 oldarg && newarg;
2395 oldarg = DECL_CHAIN(oldarg), newarg = DECL_CHAIN(newarg))
2397 DECL_ATTRIBUTES (newarg)
2398 = (*targetm.merge_decl_attributes) (oldarg, newarg);
2399 DECL_ATTRIBUTES (oldarg) = DECL_ATTRIBUTES (newarg);
2402 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
2403 && !DECL_TEMPLATE_INSTANTIATION (newdecl))
2405 /* If newdecl is not a specialization, then it is not a
2406 template-related function at all. And that means that we
2407 should have exited above, returning 0. */
2408 gcc_assert (DECL_TEMPLATE_SPECIALIZATION (newdecl));
2410 if (DECL_ODR_USED (olddecl))
2411 /* From [temp.expl.spec]:
2413 If a template, a member template or the member of a class
2414 template is explicitly specialized then that
2415 specialization shall be declared before the first use of
2416 that specialization that would cause an implicit
2417 instantiation to take place, in every translation unit in
2418 which such a use occurs. */
2419 error ("explicit specialization of %qD after first use",
2420 olddecl);
2422 SET_DECL_TEMPLATE_SPECIALIZATION (olddecl);
2423 DECL_COMDAT (newdecl) = (TREE_PUBLIC (newdecl)
2424 && DECL_DECLARED_INLINE_P (newdecl));
2426 /* Don't propagate visibility from the template to the
2427 specialization here. We'll do that in determine_visibility if
2428 appropriate. */
2429 DECL_VISIBILITY_SPECIFIED (olddecl) = 0;
2431 /* [temp.expl.spec/14] We don't inline explicit specialization
2432 just because the primary template says so. */
2433 gcc_assert (!merge_attr);
2435 DECL_DECLARED_INLINE_P (olddecl)
2436 = DECL_DECLARED_INLINE_P (newdecl);
2438 DECL_DISREGARD_INLINE_LIMITS (olddecl)
2439 = DECL_DISREGARD_INLINE_LIMITS (newdecl);
2441 DECL_UNINLINABLE (olddecl) = DECL_UNINLINABLE (newdecl);
2443 else if (new_defines_function && DECL_INITIAL (olddecl))
2445 /* Never inline re-defined extern inline functions.
2446 FIXME: this could be better handled by keeping both
2447 function as separate declarations. */
2448 DECL_UNINLINABLE (newdecl) = 1;
2450 else
2452 if (DECL_PENDING_INLINE_P (olddecl))
2454 DECL_PENDING_INLINE_P (newdecl) = 1;
2455 DECL_PENDING_INLINE_INFO (newdecl)
2456 = DECL_PENDING_INLINE_INFO (olddecl);
2458 else if (DECL_PENDING_INLINE_P (newdecl))
2460 else if (DECL_SAVED_FUNCTION_DATA (newdecl) == NULL)
2461 DECL_SAVED_FUNCTION_DATA (newdecl)
2462 = DECL_SAVED_FUNCTION_DATA (olddecl);
2464 DECL_DECLARED_INLINE_P (newdecl) |= DECL_DECLARED_INLINE_P (olddecl);
2466 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
2467 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
2469 DECL_DISREGARD_INLINE_LIMITS (newdecl)
2470 = DECL_DISREGARD_INLINE_LIMITS (olddecl)
2471 = (DECL_DISREGARD_INLINE_LIMITS (newdecl)
2472 || DECL_DISREGARD_INLINE_LIMITS (olddecl));
2475 /* Preserve abstractness on cloned [cd]tors. */
2476 DECL_ABSTRACT_P (newdecl) = DECL_ABSTRACT_P (olddecl);
2478 /* Update newdecl's parms to point at olddecl. */
2479 for (parm = DECL_ARGUMENTS (newdecl); parm;
2480 parm = DECL_CHAIN (parm))
2481 DECL_CONTEXT (parm) = olddecl;
2483 if (! types_match)
2485 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
2486 COPY_DECL_ASSEMBLER_NAME (newdecl, olddecl);
2487 COPY_DECL_RTL (newdecl, olddecl);
2489 if (! types_match || new_defines_function)
2491 /* These need to be copied so that the names are available.
2492 Note that if the types do match, we'll preserve inline
2493 info and other bits, but if not, we won't. */
2494 DECL_ARGUMENTS (olddecl) = DECL_ARGUMENTS (newdecl);
2495 DECL_RESULT (olddecl) = DECL_RESULT (newdecl);
2497 /* If redeclaring a builtin function, it stays built in
2498 if newdecl is a gnu_inline definition, or if newdecl is just
2499 a declaration. */
2500 if (fndecl_built_in_p (olddecl)
2501 && (new_defines_function ? GNU_INLINE_P (newdecl) : types_match))
2503 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
2504 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2505 /* If we're keeping the built-in definition, keep the rtl,
2506 regardless of declaration matches. */
2507 COPY_DECL_RTL (olddecl, newdecl);
2508 if (DECL_BUILT_IN_CLASS (newdecl) == BUILT_IN_NORMAL)
2510 enum built_in_function fncode = DECL_FUNCTION_CODE (newdecl);
2511 switch (fncode)
2513 /* If a compatible prototype of these builtin functions
2514 is seen, assume the runtime implements it with the
2515 expected semantics. */
2516 case BUILT_IN_STPCPY:
2517 if (builtin_decl_explicit_p (fncode))
2518 set_builtin_decl_implicit_p (fncode, true);
2519 break;
2520 default:
2521 if (builtin_decl_explicit_p (fncode))
2522 set_builtin_decl_declared_p (fncode, true);
2523 break;
2527 copy_attributes_to_builtin (newdecl);
2529 if (new_defines_function)
2530 /* If defining a function declared with other language
2531 linkage, use the previously declared language linkage. */
2532 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
2533 else if (types_match)
2535 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2536 /* Don't clear out the arguments if we're just redeclaring a
2537 function. */
2538 if (DECL_ARGUMENTS (olddecl))
2539 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
2542 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
2543 NAMESPACE_LEVEL (newdecl) = NAMESPACE_LEVEL (olddecl);
2545 /* Now preserve various other info from the definition. */
2546 TREE_ADDRESSABLE (newdecl) = TREE_ADDRESSABLE (olddecl);
2547 TREE_ASM_WRITTEN (newdecl) = TREE_ASM_WRITTEN (olddecl);
2548 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
2549 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
2551 /* Warn about conflicting visibility specifications. */
2552 if (DECL_VISIBILITY_SPECIFIED (olddecl)
2553 && DECL_VISIBILITY_SPECIFIED (newdecl)
2554 && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
2556 auto_diagnostic_group d;
2557 if (warning_at (newdecl_loc, OPT_Wattributes,
2558 "%qD: visibility attribute ignored because it "
2559 "conflicts with previous declaration", newdecl))
2560 inform (olddecl_loc,
2561 "previous declaration of %qD", olddecl);
2563 /* Choose the declaration which specified visibility. */
2564 if (DECL_VISIBILITY_SPECIFIED (olddecl))
2566 DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
2567 DECL_VISIBILITY_SPECIFIED (newdecl) = 1;
2569 /* Init priority used to be merged from newdecl to olddecl by the memcpy,
2570 so keep this behavior. */
2571 if (VAR_P (newdecl) && DECL_HAS_INIT_PRIORITY_P (newdecl))
2573 SET_DECL_INIT_PRIORITY (olddecl, DECL_INIT_PRIORITY (newdecl));
2574 DECL_HAS_INIT_PRIORITY_P (olddecl) = 1;
2576 /* Likewise for DECL_ALIGN, DECL_USER_ALIGN and DECL_PACKED. */
2577 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
2579 SET_DECL_ALIGN (newdecl, DECL_ALIGN (olddecl));
2580 DECL_USER_ALIGN (newdecl) |= DECL_USER_ALIGN (olddecl);
2582 DECL_USER_ALIGN (olddecl) = DECL_USER_ALIGN (newdecl);
2583 if (DECL_WARN_IF_NOT_ALIGN (olddecl)
2584 > DECL_WARN_IF_NOT_ALIGN (newdecl))
2585 SET_DECL_WARN_IF_NOT_ALIGN (newdecl,
2586 DECL_WARN_IF_NOT_ALIGN (olddecl));
2587 if (TREE_CODE (newdecl) == FIELD_DECL)
2588 DECL_PACKED (olddecl) = DECL_PACKED (newdecl);
2590 /* The DECL_LANG_SPECIFIC information in OLDDECL will be replaced
2591 with that from NEWDECL below. */
2592 if (DECL_LANG_SPECIFIC (olddecl))
2594 gcc_assert (DECL_LANG_SPECIFIC (olddecl)
2595 != DECL_LANG_SPECIFIC (newdecl));
2596 ggc_free (DECL_LANG_SPECIFIC (olddecl));
2599 /* Merge the USED information. */
2600 if (TREE_USED (olddecl))
2601 TREE_USED (newdecl) = 1;
2602 else if (TREE_USED (newdecl))
2603 TREE_USED (olddecl) = 1;
2604 if (VAR_P (newdecl))
2606 if (DECL_READ_P (olddecl))
2607 DECL_READ_P (newdecl) = 1;
2608 else if (DECL_READ_P (newdecl))
2609 DECL_READ_P (olddecl) = 1;
2611 if (DECL_PRESERVE_P (olddecl))
2612 DECL_PRESERVE_P (newdecl) = 1;
2613 else if (DECL_PRESERVE_P (newdecl))
2614 DECL_PRESERVE_P (olddecl) = 1;
2616 /* Merge the DECL_FUNCTION_VERSIONED information. newdecl will be copied
2617 to olddecl and deleted. */
2618 if (TREE_CODE (newdecl) == FUNCTION_DECL
2619 && DECL_FUNCTION_VERSIONED (olddecl))
2621 /* Set the flag for newdecl so that it gets copied to olddecl. */
2622 DECL_FUNCTION_VERSIONED (newdecl) = 1;
2623 /* newdecl will be purged after copying to olddecl and is no longer
2624 a version. */
2625 cgraph_node::delete_function_version_by_decl (newdecl);
2628 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2630 int function_size;
2631 struct symtab_node *snode = symtab_node::get (olddecl);
2633 function_size = sizeof (struct tree_decl_common);
2635 memcpy ((char *) olddecl + sizeof (struct tree_common),
2636 (char *) newdecl + sizeof (struct tree_common),
2637 function_size - sizeof (struct tree_common));
2639 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2640 (char *) newdecl + sizeof (struct tree_decl_common),
2641 sizeof (struct tree_function_decl) - sizeof (struct tree_decl_common));
2643 /* Preserve symtab node mapping. */
2644 olddecl->decl_with_vis.symtab_node = snode;
2646 if (new_template_info)
2647 /* If newdecl is a template instantiation, it is possible that
2648 the following sequence of events has occurred:
2650 o A friend function was declared in a class template. The
2651 class template was instantiated.
2653 o The instantiation of the friend declaration was
2654 recorded on the instantiation list, and is newdecl.
2656 o Later, however, instantiate_class_template called pushdecl
2657 on the newdecl to perform name injection. But, pushdecl in
2658 turn called duplicate_decls when it discovered that another
2659 declaration of a global function with the same name already
2660 existed.
2662 o Here, in duplicate_decls, we decided to clobber newdecl.
2664 If we're going to do that, we'd better make sure that
2665 olddecl, and not newdecl, is on the list of
2666 instantiations so that if we try to do the instantiation
2667 again we won't get the clobbered declaration. */
2668 reregister_specialization (newdecl,
2669 new_template_info,
2670 olddecl);
2672 else
2674 size_t size = tree_code_size (TREE_CODE (newdecl));
2676 memcpy ((char *) olddecl + sizeof (struct tree_common),
2677 (char *) newdecl + sizeof (struct tree_common),
2678 sizeof (struct tree_decl_common) - sizeof (struct tree_common));
2679 switch (TREE_CODE (newdecl))
2681 case LABEL_DECL:
2682 case VAR_DECL:
2683 case RESULT_DECL:
2684 case PARM_DECL:
2685 case FIELD_DECL:
2686 case TYPE_DECL:
2687 case CONST_DECL:
2689 struct symtab_node *snode = NULL;
2691 if (VAR_P (newdecl)
2692 && (TREE_STATIC (olddecl) || TREE_PUBLIC (olddecl)
2693 || DECL_EXTERNAL (olddecl)))
2694 snode = symtab_node::get (olddecl);
2695 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2696 (char *) newdecl + sizeof (struct tree_decl_common),
2697 size - sizeof (struct tree_decl_common)
2698 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
2699 if (VAR_P (newdecl))
2700 olddecl->decl_with_vis.symtab_node = snode;
2702 break;
2703 default:
2704 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2705 (char *) newdecl + sizeof (struct tree_decl_common),
2706 sizeof (struct tree_decl_non_common) - sizeof (struct tree_decl_common)
2707 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
2708 break;
2712 if (VAR_OR_FUNCTION_DECL_P (newdecl))
2714 if (DECL_EXTERNAL (olddecl)
2715 || TREE_PUBLIC (olddecl)
2716 || TREE_STATIC (olddecl))
2718 /* Merge the section attribute.
2719 We want to issue an error if the sections conflict but that must be
2720 done later in decl_attributes since we are called before attributes
2721 are assigned. */
2722 if (DECL_SECTION_NAME (newdecl) != NULL)
2723 set_decl_section_name (olddecl, DECL_SECTION_NAME (newdecl));
2725 if (DECL_ONE_ONLY (newdecl))
2727 struct symtab_node *oldsym, *newsym;
2728 if (TREE_CODE (olddecl) == FUNCTION_DECL)
2729 oldsym = cgraph_node::get_create (olddecl);
2730 else
2731 oldsym = varpool_node::get_create (olddecl);
2732 newsym = symtab_node::get (newdecl);
2733 oldsym->set_comdat_group (newsym->get_comdat_group ());
2737 if (VAR_P (newdecl)
2738 && CP_DECL_THREAD_LOCAL_P (newdecl))
2740 CP_DECL_THREAD_LOCAL_P (olddecl) = true;
2741 if (!processing_template_decl)
2742 set_decl_tls_model (olddecl, DECL_TLS_MODEL (newdecl));
2746 DECL_UID (olddecl) = olddecl_uid;
2747 if (olddecl_friend)
2748 DECL_FRIEND_P (olddecl) = 1;
2749 if (hidden_friend)
2751 DECL_ANTICIPATED (olddecl) = 1;
2752 DECL_HIDDEN_FRIEND_P (olddecl) = 1;
2755 /* NEWDECL contains the merged attribute lists.
2756 Update OLDDECL to be the same. */
2757 DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
2759 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
2760 so that encode_section_info has a chance to look at the new decl
2761 flags and attributes. */
2762 if (DECL_RTL_SET_P (olddecl)
2763 && (TREE_CODE (olddecl) == FUNCTION_DECL
2764 || (VAR_P (olddecl)
2765 && TREE_STATIC (olddecl))))
2766 make_decl_rtl (olddecl);
2768 /* The NEWDECL will no longer be needed. Because every out-of-class
2769 declaration of a member results in a call to duplicate_decls,
2770 freeing these nodes represents in a significant savings.
2772 Before releasing the node, be sore to remove function from symbol
2773 table that might have been inserted there to record comdat group.
2774 Be sure to however do not free DECL_STRUCT_FUNCTION because this
2775 structure is shared in between newdecl and oldecl. */
2776 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2777 DECL_STRUCT_FUNCTION (newdecl) = NULL;
2778 if (VAR_OR_FUNCTION_DECL_P (newdecl))
2780 struct symtab_node *snode = symtab_node::get (newdecl);
2781 if (snode)
2782 snode->remove ();
2785 /* Remove the associated constraints for newdecl, if any, before
2786 reclaiming memory. */
2787 if (flag_concepts)
2788 remove_constraints (newdecl);
2790 ggc_free (newdecl);
2792 return olddecl;
2795 /* Return zero if the declaration NEWDECL is valid
2796 when the declaration OLDDECL (assumed to be for the same name)
2797 has already been seen.
2798 Otherwise return an error message format string with a %s
2799 where the identifier should go. */
2801 static const char *
2802 redeclaration_error_message (tree newdecl, tree olddecl)
2804 if (TREE_CODE (newdecl) == TYPE_DECL)
2806 /* Because C++ can put things into name space for free,
2807 constructs like "typedef struct foo { ... } foo"
2808 would look like an erroneous redeclaration. */
2809 if (same_type_p (TREE_TYPE (newdecl), TREE_TYPE (olddecl)))
2810 return NULL;
2811 else
2812 return G_("redefinition of %q#D");
2814 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2816 /* If this is a pure function, its olddecl will actually be
2817 the original initialization to `0' (which we force to call
2818 abort()). Don't complain about redefinition in this case. */
2819 if (DECL_LANG_SPECIFIC (olddecl) && DECL_PURE_VIRTUAL_P (olddecl)
2820 && DECL_INITIAL (olddecl) == NULL_TREE)
2821 return NULL;
2823 /* If both functions come from different namespaces, this is not
2824 a redeclaration - this is a conflict with a used function. */
2825 if (DECL_NAMESPACE_SCOPE_P (olddecl)
2826 && DECL_CONTEXT (olddecl) != DECL_CONTEXT (newdecl)
2827 && ! decls_match (olddecl, newdecl))
2828 return G_("%qD conflicts with used function");
2830 /* We'll complain about linkage mismatches in
2831 warn_extern_redeclared_static. */
2833 /* Defining the same name twice is no good. */
2834 if (decl_defined_p (olddecl)
2835 && decl_defined_p (newdecl))
2837 if (DECL_NAME (olddecl) == NULL_TREE)
2838 return G_("%q#D not declared in class");
2839 else if (!GNU_INLINE_P (olddecl)
2840 || GNU_INLINE_P (newdecl))
2841 return G_("redefinition of %q#D");
2844 if (DECL_DECLARED_INLINE_P (olddecl) && DECL_DECLARED_INLINE_P (newdecl))
2846 bool olda = GNU_INLINE_P (olddecl);
2847 bool newa = GNU_INLINE_P (newdecl);
2849 if (olda != newa)
2851 if (newa)
2852 return G_("%q+D redeclared inline with "
2853 "%<gnu_inline%> attribute");
2854 else
2855 return G_("%q+D redeclared inline without "
2856 "%<gnu_inline%> attribute");
2860 check_abi_tag_redeclaration
2861 (olddecl, lookup_attribute ("abi_tag", DECL_ATTRIBUTES (olddecl)),
2862 lookup_attribute ("abi_tag", DECL_ATTRIBUTES (newdecl)));
2864 return NULL;
2866 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
2868 tree nt, ot;
2870 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
2872 if (COMPLETE_TYPE_P (TREE_TYPE (newdecl))
2873 && COMPLETE_TYPE_P (TREE_TYPE (olddecl)))
2874 return G_("redefinition of %q#D");
2875 return NULL;
2878 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != FUNCTION_DECL
2879 || (DECL_TEMPLATE_RESULT (newdecl)
2880 == DECL_TEMPLATE_RESULT (olddecl)))
2881 return NULL;
2883 nt = DECL_TEMPLATE_RESULT (newdecl);
2884 if (DECL_TEMPLATE_INFO (nt))
2885 nt = DECL_TEMPLATE_RESULT (template_for_substitution (nt));
2886 ot = DECL_TEMPLATE_RESULT (olddecl);
2887 if (DECL_TEMPLATE_INFO (ot))
2888 ot = DECL_TEMPLATE_RESULT (template_for_substitution (ot));
2889 if (DECL_INITIAL (nt) && DECL_INITIAL (ot)
2890 && (!GNU_INLINE_P (ot) || GNU_INLINE_P (nt)))
2891 return G_("redefinition of %q#D");
2893 if (DECL_DECLARED_INLINE_P (ot) && DECL_DECLARED_INLINE_P (nt))
2895 bool olda = GNU_INLINE_P (ot);
2896 bool newa = GNU_INLINE_P (nt);
2898 if (olda != newa)
2900 if (newa)
2901 return G_("%q+D redeclared inline with "
2902 "%<gnu_inline%> attribute");
2903 else
2904 return G_("%q+D redeclared inline without "
2905 "%<gnu_inline%> attribute");
2909 /* Core issue #226 (C++0x):
2911 If a friend function template declaration specifies a
2912 default template-argument, that declaration shall be a
2913 definition and shall be the only declaration of the
2914 function template in the translation unit. */
2915 if ((cxx_dialect != cxx98)
2916 && TREE_CODE (ot) == FUNCTION_DECL && DECL_FRIEND_P (ot)
2917 && !check_default_tmpl_args (nt, DECL_TEMPLATE_PARMS (newdecl),
2918 /*is_primary=*/true,
2919 /*is_partial=*/false,
2920 /*is_friend_decl=*/2))
2921 return G_("redeclaration of friend %q#D "
2922 "may not have default template arguments");
2924 return NULL;
2926 else if (VAR_P (newdecl)
2927 && CP_DECL_THREAD_LOCAL_P (newdecl) != CP_DECL_THREAD_LOCAL_P (olddecl)
2928 && (! DECL_LANG_SPECIFIC (olddecl)
2929 || ! CP_DECL_THREADPRIVATE_P (olddecl)
2930 || CP_DECL_THREAD_LOCAL_P (newdecl)))
2932 /* Only variables can be thread-local, and all declarations must
2933 agree on this property. */
2934 if (CP_DECL_THREAD_LOCAL_P (newdecl))
2935 return G_("thread-local declaration of %q#D follows "
2936 "non-thread-local declaration");
2937 else
2938 return G_("non-thread-local declaration of %q#D follows "
2939 "thread-local declaration");
2941 else if (toplevel_bindings_p () || DECL_NAMESPACE_SCOPE_P (newdecl))
2943 /* The objects have been declared at namespace scope. If either
2944 is a member of an anonymous union, then this is an invalid
2945 redeclaration. For example:
2947 int i;
2948 union { int i; };
2950 is invalid. */
2951 if ((VAR_P (newdecl) && DECL_ANON_UNION_VAR_P (newdecl))
2952 || (VAR_P (olddecl) && DECL_ANON_UNION_VAR_P (olddecl)))
2953 return G_("redeclaration of %q#D");
2954 /* If at least one declaration is a reference, there is no
2955 conflict. For example:
2957 int i = 3;
2958 extern int i;
2960 is valid. */
2961 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2962 return NULL;
2964 /* Static data member declared outside a class definition
2965 if the variable is defined within the class with constexpr
2966 specifier is declaration rather than definition (and
2967 deprecated). */
2968 if (cxx_dialect >= cxx17
2969 && VAR_P (olddecl)
2970 && DECL_CLASS_SCOPE_P (olddecl)
2971 && DECL_DECLARED_CONSTEXPR_P (olddecl)
2972 && !DECL_INITIAL (newdecl))
2974 DECL_EXTERNAL (newdecl) = 1;
2975 /* For now, only warn with explicit -Wdeprecated. */
2976 if (global_options_set.x_warn_deprecated)
2978 auto_diagnostic_group d;
2979 if (warning_at (DECL_SOURCE_LOCATION (newdecl), OPT_Wdeprecated,
2980 "redundant redeclaration of %<constexpr%> "
2981 "static data member %qD", newdecl))
2982 inform (DECL_SOURCE_LOCATION (olddecl),
2983 "previous declaration of %qD", olddecl);
2985 return NULL;
2988 /* Reject two definitions. */
2989 return G_("redefinition of %q#D");
2991 else
2993 /* Objects declared with block scope: */
2994 /* Reject two definitions, and reject a definition
2995 together with an external reference. */
2996 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl)))
2997 return G_("redeclaration of %q#D");
2998 return NULL;
3003 /* Hash and equality functions for the named_label table. */
3005 hashval_t
3006 named_label_hash::hash (const value_type entry)
3008 return IDENTIFIER_HASH_VALUE (entry->name);
3011 bool
3012 named_label_hash::equal (const value_type entry, compare_type name)
3014 return name == entry->name;
3017 /* Look for a label named ID in the current function. If one cannot
3018 be found, create one. Return the named_label_entry, or NULL on
3019 failure. */
3021 static named_label_entry *
3022 lookup_label_1 (tree id, bool making_local_p)
3024 /* You can't use labels at global scope. */
3025 if (current_function_decl == NULL_TREE)
3027 error ("label %qE referenced outside of any function", id);
3028 return NULL;
3031 if (!named_labels)
3032 named_labels = hash_table<named_label_hash>::create_ggc (13);
3034 hashval_t hash = IDENTIFIER_HASH_VALUE (id);
3035 named_label_entry **slot
3036 = named_labels->find_slot_with_hash (id, hash, INSERT);
3037 named_label_entry *old = *slot;
3039 if (old && old->label_decl)
3041 if (!making_local_p)
3042 return old;
3044 if (old->binding_level == current_binding_level)
3046 error ("local label %qE conflicts with existing label", id);
3047 inform (DECL_SOURCE_LOCATION (old->label_decl), "previous label");
3048 return NULL;
3052 /* We are making a new decl, create or reuse the named_label_entry */
3053 named_label_entry *ent = NULL;
3054 if (old && !old->label_decl)
3055 ent = old;
3056 else
3058 ent = ggc_cleared_alloc<named_label_entry> ();
3059 ent->name = id;
3060 ent->outer = old;
3061 *slot = ent;
3064 /* Now create the LABEL_DECL. */
3065 tree decl = build_decl (input_location, LABEL_DECL, id, void_type_node);
3067 DECL_CONTEXT (decl) = current_function_decl;
3068 SET_DECL_MODE (decl, VOIDmode);
3069 if (making_local_p)
3071 C_DECLARED_LABEL_FLAG (decl) = true;
3072 DECL_CHAIN (decl) = current_binding_level->names;
3073 current_binding_level->names = decl;
3076 ent->label_decl = decl;
3078 return ent;
3081 /* Wrapper for lookup_label_1. */
3083 tree
3084 lookup_label (tree id)
3086 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
3087 named_label_entry *ent = lookup_label_1 (id, false);
3088 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
3089 return ent ? ent->label_decl : NULL_TREE;
3092 tree
3093 declare_local_label (tree id)
3095 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
3096 named_label_entry *ent = lookup_label_1 (id, true);
3097 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
3098 return ent ? ent->label_decl : NULL_TREE;
3101 /* Returns nonzero if it is ill-formed to jump past the declaration of
3102 DECL. Returns 2 if it's also a real problem. */
3104 static int
3105 decl_jump_unsafe (tree decl)
3107 /* [stmt.dcl]/3: A program that jumps from a point where a local variable
3108 with automatic storage duration is not in scope to a point where it is
3109 in scope is ill-formed unless the variable has scalar type, class type
3110 with a trivial default constructor and a trivial destructor, a
3111 cv-qualified version of one of these types, or an array of one of the
3112 preceding types and is declared without an initializer (8.5). */
3113 tree type = TREE_TYPE (decl);
3115 if (!VAR_P (decl) || TREE_STATIC (decl)
3116 || type == error_mark_node)
3117 return 0;
3119 if (DECL_NONTRIVIALLY_INITIALIZED_P (decl)
3120 || variably_modified_type_p (type, NULL_TREE))
3121 return 2;
3123 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
3124 return 1;
3126 return 0;
3129 /* A subroutine of check_previous_goto_1 and check_goto to identify a branch
3130 to the user. */
3132 static bool
3133 identify_goto (tree decl, location_t loc, const location_t *locus,
3134 diagnostic_t diag_kind)
3136 bool complained
3137 = emit_diagnostic (diag_kind, loc, 0,
3138 decl ? N_("jump to label %qD")
3139 : N_("jump to case label"), decl);
3140 if (complained && locus)
3141 inform (*locus, " from here");
3142 return complained;
3145 /* Check that a single previously seen jump to a newly defined label
3146 is OK. DECL is the LABEL_DECL or 0; LEVEL is the binding_level for
3147 the jump context; NAMES are the names in scope in LEVEL at the jump
3148 context; LOCUS is the source position of the jump or 0. Returns
3149 true if all is well. */
3151 static bool
3152 check_previous_goto_1 (tree decl, cp_binding_level* level, tree names,
3153 bool exited_omp, const location_t *locus)
3155 cp_binding_level *b;
3156 bool complained = false;
3157 int identified = 0;
3158 bool saw_eh = false, saw_omp = false, saw_tm = false, saw_cxif = false;
3160 if (exited_omp)
3162 complained = identify_goto (decl, input_location, locus, DK_ERROR);
3163 if (complained)
3164 inform (input_location, " exits OpenMP structured block");
3165 saw_omp = true;
3166 identified = 2;
3169 for (b = current_binding_level; b ; b = b->level_chain)
3171 tree new_decls, old_decls = (b == level ? names : NULL_TREE);
3173 for (new_decls = b->names; new_decls != old_decls;
3174 new_decls = (DECL_P (new_decls) ? DECL_CHAIN (new_decls)
3175 : TREE_CHAIN (new_decls)))
3177 int problem = decl_jump_unsafe (new_decls);
3178 if (! problem)
3179 continue;
3181 if (!identified)
3183 complained = identify_goto (decl, input_location, locus,
3184 problem > 1
3185 ? DK_ERROR : DK_PERMERROR);
3186 identified = 1;
3188 if (complained)
3190 if (problem > 1)
3191 inform (DECL_SOURCE_LOCATION (new_decls),
3192 " crosses initialization of %q#D", new_decls);
3193 else
3194 inform (DECL_SOURCE_LOCATION (new_decls),
3195 " enters scope of %q#D, which has "
3196 "non-trivial destructor", new_decls);
3200 if (b == level)
3201 break;
3203 const char *inf = NULL;
3204 location_t loc = input_location;
3205 switch (b->kind)
3207 case sk_try:
3208 if (!saw_eh)
3209 inf = N_("enters try block");
3210 saw_eh = true;
3211 break;
3213 case sk_catch:
3214 if (!saw_eh)
3215 inf = N_("enters catch block");
3216 saw_eh = true;
3217 break;
3219 case sk_omp:
3220 if (!saw_omp)
3221 inf = N_("enters OpenMP structured block");
3222 saw_omp = true;
3223 break;
3225 case sk_transaction:
3226 if (!saw_tm)
3227 inf = N_("enters synchronized or atomic statement");
3228 saw_tm = true;
3229 break;
3231 case sk_block:
3232 if (!saw_cxif && level_for_constexpr_if (b->level_chain))
3234 inf = N_("enters constexpr if statement");
3235 loc = EXPR_LOCATION (b->level_chain->this_entity);
3236 saw_cxif = true;
3238 break;
3240 default:
3241 break;
3244 if (inf)
3246 if (identified < 2)
3247 complained = identify_goto (decl, input_location, locus, DK_ERROR);
3248 identified = 2;
3249 if (complained)
3250 inform (loc, " %s", inf);
3254 return !identified;
3257 static void
3258 check_previous_goto (tree decl, struct named_label_use_entry *use)
3260 check_previous_goto_1 (decl, use->binding_level,
3261 use->names_in_scope, use->in_omp_scope,
3262 &use->o_goto_locus);
3265 static bool
3266 check_switch_goto (cp_binding_level* level)
3268 return check_previous_goto_1 (NULL_TREE, level, level->names, false, NULL);
3271 /* Check that a new jump to a label DECL is OK. Called by
3272 finish_goto_stmt. */
3274 void
3275 check_goto (tree decl)
3277 /* We can't know where a computed goto is jumping.
3278 So we assume that it's OK. */
3279 if (TREE_CODE (decl) != LABEL_DECL)
3280 return;
3282 /* We didn't record any information about this label when we created it,
3283 and there's not much point since it's trivial to analyze as a return. */
3284 if (decl == cdtor_label)
3285 return;
3287 hashval_t hash = IDENTIFIER_HASH_VALUE (DECL_NAME (decl));
3288 named_label_entry **slot
3289 = named_labels->find_slot_with_hash (DECL_NAME (decl), hash, NO_INSERT);
3290 named_label_entry *ent = *slot;
3292 /* If the label hasn't been defined yet, defer checking. */
3293 if (! DECL_INITIAL (decl))
3295 /* Don't bother creating another use if the last goto had the
3296 same data, and will therefore create the same set of errors. */
3297 if (ent->uses
3298 && ent->uses->names_in_scope == current_binding_level->names)
3299 return;
3301 named_label_use_entry *new_use
3302 = ggc_alloc<named_label_use_entry> ();
3303 new_use->binding_level = current_binding_level;
3304 new_use->names_in_scope = current_binding_level->names;
3305 new_use->o_goto_locus = input_location;
3306 new_use->in_omp_scope = false;
3308 new_use->next = ent->uses;
3309 ent->uses = new_use;
3310 return;
3313 bool saw_catch = false, complained = false;
3314 int identified = 0;
3315 tree bad;
3316 unsigned ix;
3318 if (ent->in_try_scope || ent->in_catch_scope || ent->in_transaction_scope
3319 || ent->in_constexpr_if
3320 || ent->in_omp_scope || !vec_safe_is_empty (ent->bad_decls))
3322 diagnostic_t diag_kind = DK_PERMERROR;
3323 if (ent->in_try_scope || ent->in_catch_scope || ent->in_constexpr_if
3324 || ent->in_transaction_scope || ent->in_omp_scope)
3325 diag_kind = DK_ERROR;
3326 complained = identify_goto (decl, DECL_SOURCE_LOCATION (decl),
3327 &input_location, diag_kind);
3328 identified = 1 + (diag_kind == DK_ERROR);
3331 FOR_EACH_VEC_SAFE_ELT (ent->bad_decls, ix, bad)
3333 int u = decl_jump_unsafe (bad);
3335 if (u > 1 && DECL_ARTIFICIAL (bad))
3337 /* Can't skip init of __exception_info. */
3338 if (identified == 1)
3340 complained = identify_goto (decl, DECL_SOURCE_LOCATION (decl),
3341 &input_location, DK_ERROR);
3342 identified = 2;
3344 if (complained)
3345 inform (DECL_SOURCE_LOCATION (bad), " enters catch block");
3346 saw_catch = true;
3348 else if (complained)
3350 if (u > 1)
3351 inform (DECL_SOURCE_LOCATION (bad),
3352 " skips initialization of %q#D", bad);
3353 else
3354 inform (DECL_SOURCE_LOCATION (bad),
3355 " enters scope of %q#D which has "
3356 "non-trivial destructor", bad);
3360 if (complained)
3362 if (ent->in_try_scope)
3363 inform (input_location, " enters try block");
3364 else if (ent->in_catch_scope && !saw_catch)
3365 inform (input_location, " enters catch block");
3366 else if (ent->in_transaction_scope)
3367 inform (input_location, " enters synchronized or atomic statement");
3368 else if (ent->in_constexpr_if)
3369 inform (input_location, " enters %<constexpr%> if statement");
3372 if (ent->in_omp_scope)
3374 if (complained)
3375 inform (input_location, " enters OpenMP structured block");
3377 else if (flag_openmp)
3378 for (cp_binding_level *b = current_binding_level; b ; b = b->level_chain)
3380 if (b == ent->binding_level)
3381 break;
3382 if (b->kind == sk_omp)
3384 if (identified < 2)
3386 complained = identify_goto (decl,
3387 DECL_SOURCE_LOCATION (decl),
3388 &input_location, DK_ERROR);
3389 identified = 2;
3391 if (complained)
3392 inform (input_location, " exits OpenMP structured block");
3393 break;
3398 /* Check that a return is ok wrt OpenMP structured blocks.
3399 Called by finish_return_stmt. Returns true if all is well. */
3401 bool
3402 check_omp_return (void)
3404 for (cp_binding_level *b = current_binding_level; b ; b = b->level_chain)
3405 if (b->kind == sk_omp)
3407 error ("invalid exit from OpenMP structured block");
3408 return false;
3410 else if (b->kind == sk_function_parms)
3411 break;
3412 return true;
3415 /* Define a label, specifying the location in the source file.
3416 Return the LABEL_DECL node for the label. */
3418 static tree
3419 define_label_1 (location_t location, tree name)
3421 /* After labels, make any new cleanups in the function go into their
3422 own new (temporary) binding contour. */
3423 for (cp_binding_level *p = current_binding_level;
3424 p->kind != sk_function_parms;
3425 p = p->level_chain)
3426 p->more_cleanups_ok = 0;
3428 named_label_entry *ent = lookup_label_1 (name, false);
3429 tree decl = ent->label_decl;
3431 if (DECL_INITIAL (decl) != NULL_TREE)
3433 error ("duplicate label %qD", decl);
3434 return error_mark_node;
3436 else
3438 /* Mark label as having been defined. */
3439 DECL_INITIAL (decl) = error_mark_node;
3440 /* Say where in the source. */
3441 DECL_SOURCE_LOCATION (decl) = location;
3443 ent->binding_level = current_binding_level;
3444 ent->names_in_scope = current_binding_level->names;
3446 for (named_label_use_entry *use = ent->uses; use; use = use->next)
3447 check_previous_goto (decl, use);
3448 ent->uses = NULL;
3451 return decl;
3454 /* Wrapper for define_label_1. */
3456 tree
3457 define_label (location_t location, tree name)
3459 bool running = timevar_cond_start (TV_NAME_LOOKUP);
3460 tree ret = define_label_1 (location, name);
3461 timevar_cond_stop (TV_NAME_LOOKUP, running);
3462 return ret;
3466 struct cp_switch
3468 cp_binding_level *level;
3469 struct cp_switch *next;
3470 /* The SWITCH_STMT being built. */
3471 tree switch_stmt;
3472 /* A splay-tree mapping the low element of a case range to the high
3473 element, or NULL_TREE if there is no high element. Used to
3474 determine whether or not a new case label duplicates an old case
3475 label. We need a tree, rather than simply a hash table, because
3476 of the GNU case range extension. */
3477 splay_tree cases;
3478 /* Remember whether there was a case value that is outside the
3479 range of the original type of the controlling expression. */
3480 bool outside_range_p;
3481 /* Remember whether a default: case label has been seen. */
3482 bool has_default_p;
3483 /* Remember whether a BREAK_STMT has been seen in this SWITCH_STMT. */
3484 bool break_stmt_seen_p;
3485 /* Set if inside of {FOR,DO,WHILE}_BODY nested inside of a switch,
3486 where BREAK_STMT doesn't belong to the SWITCH_STMT. */
3487 bool in_loop_body_p;
3490 /* A stack of the currently active switch statements. The innermost
3491 switch statement is on the top of the stack. There is no need to
3492 mark the stack for garbage collection because it is only active
3493 during the processing of the body of a function, and we never
3494 collect at that point. */
3496 static struct cp_switch *switch_stack;
3498 /* Called right after a switch-statement condition is parsed.
3499 SWITCH_STMT is the switch statement being parsed. */
3501 void
3502 push_switch (tree switch_stmt)
3504 struct cp_switch *p = XNEW (struct cp_switch);
3505 p->level = current_binding_level;
3506 p->next = switch_stack;
3507 p->switch_stmt = switch_stmt;
3508 p->cases = splay_tree_new (case_compare, NULL, NULL);
3509 p->outside_range_p = false;
3510 p->has_default_p = false;
3511 p->break_stmt_seen_p = false;
3512 p->in_loop_body_p = false;
3513 switch_stack = p;
3516 void
3517 pop_switch (void)
3519 struct cp_switch *cs = switch_stack;
3520 location_t switch_location;
3522 /* Emit warnings as needed. */
3523 switch_location = cp_expr_loc_or_loc (cs->switch_stmt, input_location);
3524 const bool bool_cond_p
3525 = (SWITCH_STMT_TYPE (cs->switch_stmt)
3526 && TREE_CODE (SWITCH_STMT_TYPE (cs->switch_stmt)) == BOOLEAN_TYPE);
3527 if (!processing_template_decl)
3528 c_do_switch_warnings (cs->cases, switch_location,
3529 SWITCH_STMT_TYPE (cs->switch_stmt),
3530 SWITCH_STMT_COND (cs->switch_stmt),
3531 bool_cond_p, cs->outside_range_p);
3533 /* For the benefit of block_may_fallthru remember if the switch body
3534 case labels cover all possible values and if there are break; stmts. */
3535 if (cs->has_default_p
3536 || (!processing_template_decl
3537 && c_switch_covers_all_cases_p (cs->cases,
3538 SWITCH_STMT_TYPE (cs->switch_stmt))))
3539 SWITCH_STMT_ALL_CASES_P (cs->switch_stmt) = 1;
3540 if (!cs->break_stmt_seen_p)
3541 SWITCH_STMT_NO_BREAK_P (cs->switch_stmt) = 1;
3542 gcc_assert (!cs->in_loop_body_p);
3543 splay_tree_delete (cs->cases);
3544 switch_stack = switch_stack->next;
3545 free (cs);
3548 /* Note that a BREAK_STMT is about to be added. If it is inside of
3549 a SWITCH_STMT and not inside of a loop body inside of it, note
3550 in switch_stack we've seen a BREAK_STMT. */
3552 void
3553 note_break_stmt (void)
3555 if (switch_stack && !switch_stack->in_loop_body_p)
3556 switch_stack->break_stmt_seen_p = true;
3559 /* Note the start of processing of an iteration statement's body.
3560 The note_break_stmt function will do nothing while processing it.
3561 Return a flag that should be passed to note_iteration_stmt_body_end. */
3563 bool
3564 note_iteration_stmt_body_start (void)
3566 if (!switch_stack)
3567 return false;
3568 bool ret = switch_stack->in_loop_body_p;
3569 switch_stack->in_loop_body_p = true;
3570 return ret;
3573 /* Note the end of processing of an iteration statement's body. */
3575 void
3576 note_iteration_stmt_body_end (bool prev)
3578 if (switch_stack)
3579 switch_stack->in_loop_body_p = prev;
3582 /* Convert a case constant VALUE in a switch to the type TYPE of the switch
3583 condition. Note that if TYPE and VALUE are already integral we don't
3584 really do the conversion because the language-independent
3585 warning/optimization code will work better that way. */
3587 static tree
3588 case_conversion (tree type, tree value)
3590 if (value == NULL_TREE)
3591 return value;
3593 value = mark_rvalue_use (value);
3595 if (cxx_dialect >= cxx11
3596 && (SCOPED_ENUM_P (type)
3597 || !INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (value))))
3599 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
3600 type = type_promotes_to (type);
3601 value = (perform_implicit_conversion_flags
3602 (type, value, tf_warning_or_error,
3603 LOOKUP_IMPLICIT | LOOKUP_NO_NON_INTEGRAL));
3605 return cxx_constant_value (value);
3608 /* Note that we've seen a definition of a case label, and complain if this
3609 is a bad place for one. */
3611 tree
3612 finish_case_label (location_t loc, tree low_value, tree high_value)
3614 tree cond, r;
3615 cp_binding_level *p;
3616 tree type;
3618 if (low_value == NULL_TREE && high_value == NULL_TREE)
3619 switch_stack->has_default_p = true;
3621 if (processing_template_decl)
3623 tree label;
3625 /* For templates, just add the case label; we'll do semantic
3626 analysis at instantiation-time. */
3627 label = build_decl (loc, LABEL_DECL, NULL_TREE, NULL_TREE);
3628 return add_stmt (build_case_label (low_value, high_value, label));
3631 /* Find the condition on which this switch statement depends. */
3632 cond = SWITCH_STMT_COND (switch_stack->switch_stmt);
3633 if (cond && TREE_CODE (cond) == TREE_LIST)
3634 cond = TREE_VALUE (cond);
3636 if (!check_switch_goto (switch_stack->level))
3637 return error_mark_node;
3639 type = SWITCH_STMT_TYPE (switch_stack->switch_stmt);
3640 if (type == error_mark_node)
3641 return error_mark_node;
3643 low_value = case_conversion (type, low_value);
3644 high_value = case_conversion (type, high_value);
3646 r = c_add_case_label (loc, switch_stack->cases, cond, type,
3647 low_value, high_value,
3648 &switch_stack->outside_range_p);
3650 /* After labels, make any new cleanups in the function go into their
3651 own new (temporary) binding contour. */
3652 for (p = current_binding_level;
3653 p->kind != sk_function_parms;
3654 p = p->level_chain)
3655 p->more_cleanups_ok = 0;
3657 return r;
3660 struct typename_info {
3661 tree scope;
3662 tree name;
3663 tree template_id;
3664 bool enum_p;
3665 bool class_p;
3668 struct typename_hasher : ggc_ptr_hash<tree_node>
3670 typedef typename_info *compare_type;
3672 /* Hash a TYPENAME_TYPE. */
3674 static hashval_t
3675 hash (tree t)
3677 hashval_t hash;
3679 hash = (htab_hash_pointer (TYPE_CONTEXT (t))
3680 ^ htab_hash_pointer (TYPE_IDENTIFIER (t)));
3682 return hash;
3685 /* Compare two TYPENAME_TYPEs. */
3687 static bool
3688 equal (tree t1, const typename_info *t2)
3690 return (TYPE_IDENTIFIER (t1) == t2->name
3691 && TYPE_CONTEXT (t1) == t2->scope
3692 && TYPENAME_TYPE_FULLNAME (t1) == t2->template_id
3693 && TYPENAME_IS_ENUM_P (t1) == t2->enum_p
3694 && TYPENAME_IS_CLASS_P (t1) == t2->class_p);
3698 /* Build a TYPENAME_TYPE. If the type is `typename T::t', CONTEXT is
3699 the type of `T', NAME is the IDENTIFIER_NODE for `t'.
3701 Returns the new TYPENAME_TYPE. */
3703 static GTY (()) hash_table<typename_hasher> *typename_htab;
3705 tree
3706 build_typename_type (tree context, tree name, tree fullname,
3707 enum tag_types tag_type)
3709 tree t;
3710 tree d;
3711 typename_info ti;
3712 tree *e;
3713 hashval_t hash;
3715 if (typename_htab == NULL)
3716 typename_htab = hash_table<typename_hasher>::create_ggc (61);
3718 ti.scope = FROB_CONTEXT (context);
3719 ti.name = name;
3720 ti.template_id = fullname;
3721 ti.enum_p = tag_type == enum_type;
3722 ti.class_p = (tag_type == class_type
3723 || tag_type == record_type
3724 || tag_type == union_type);
3725 hash = (htab_hash_pointer (ti.scope)
3726 ^ htab_hash_pointer (ti.name));
3728 /* See if we already have this type. */
3729 e = typename_htab->find_slot_with_hash (&ti, hash, INSERT);
3730 if (*e)
3731 t = *e;
3732 else
3734 /* Build the TYPENAME_TYPE. */
3735 t = cxx_make_type (TYPENAME_TYPE);
3736 TYPE_CONTEXT (t) = ti.scope;
3737 TYPENAME_TYPE_FULLNAME (t) = ti.template_id;
3738 TYPENAME_IS_ENUM_P (t) = ti.enum_p;
3739 TYPENAME_IS_CLASS_P (t) = ti.class_p;
3741 /* Build the corresponding TYPE_DECL. */
3742 d = build_decl (input_location, TYPE_DECL, name, t);
3743 TYPE_NAME (TREE_TYPE (d)) = d;
3744 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
3745 DECL_CONTEXT (d) = FROB_CONTEXT (context);
3746 DECL_ARTIFICIAL (d) = 1;
3748 /* Store it in the hash table. */
3749 *e = t;
3751 /* TYPENAME_TYPEs must always be compared structurally, because
3752 they may or may not resolve down to another type depending on
3753 the currently open classes. */
3754 SET_TYPE_STRUCTURAL_EQUALITY (t);
3757 return t;
3760 /* Resolve `typename CONTEXT::NAME'. TAG_TYPE indicates the tag
3761 provided to name the type. Returns an appropriate type, unless an
3762 error occurs, in which case error_mark_node is returned. If we
3763 locate a non-artificial TYPE_DECL and TF_KEEP_TYPE_DECL is set, we
3764 return that, rather than the _TYPE it corresponds to, in other
3765 cases we look through the type decl. If TF_ERROR is set, complain
3766 about errors, otherwise be quiet. */
3768 tree
3769 make_typename_type (tree context, tree name, enum tag_types tag_type,
3770 tsubst_flags_t complain)
3772 tree fullname;
3773 tree t;
3774 bool want_template;
3776 if (name == error_mark_node
3777 || context == NULL_TREE
3778 || context == error_mark_node)
3779 return error_mark_node;
3781 if (TYPE_P (name))
3783 if (!(TYPE_LANG_SPECIFIC (name)
3784 && (CLASSTYPE_IS_TEMPLATE (name)
3785 || CLASSTYPE_USE_TEMPLATE (name))))
3786 name = TYPE_IDENTIFIER (name);
3787 else
3788 /* Create a TEMPLATE_ID_EXPR for the type. */
3789 name = build_nt (TEMPLATE_ID_EXPR,
3790 CLASSTYPE_TI_TEMPLATE (name),
3791 CLASSTYPE_TI_ARGS (name));
3793 else if (TREE_CODE (name) == TYPE_DECL)
3794 name = DECL_NAME (name);
3796 fullname = name;
3798 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
3800 name = TREE_OPERAND (name, 0);
3801 if (DECL_TYPE_TEMPLATE_P (name))
3802 name = TREE_OPERAND (fullname, 0) = DECL_NAME (name);
3803 if (TREE_CODE (name) != IDENTIFIER_NODE)
3805 if (complain & tf_error)
3806 error ("%qD is not a type", name);
3807 return error_mark_node;
3810 if (TREE_CODE (name) == TEMPLATE_DECL)
3812 if (complain & tf_error)
3813 error ("%qD used without template arguments", name);
3814 return error_mark_node;
3816 gcc_assert (identifier_p (name));
3817 gcc_assert (TYPE_P (context));
3819 if (!MAYBE_CLASS_TYPE_P (context))
3821 if (complain & tf_error)
3822 error ("%q#T is not a class", context);
3823 return error_mark_node;
3826 /* When the CONTEXT is a dependent type, NAME could refer to a
3827 dependent base class of CONTEXT. But look inside it anyway
3828 if CONTEXT is a currently open scope, in case it refers to a
3829 member of the current instantiation or a non-dependent base;
3830 lookup will stop when we hit a dependent base. */
3831 if (!dependent_scope_p (context))
3832 /* We should only set WANT_TYPE when we're a nested typename type.
3833 Then we can give better diagnostics if we find a non-type. */
3834 t = lookup_field (context, name, 2, /*want_type=*/true);
3835 else
3836 t = NULL_TREE;
3838 if ((!t || TREE_CODE (t) == TREE_LIST) && dependent_type_p (context))
3839 return build_typename_type (context, name, fullname, tag_type);
3841 want_template = TREE_CODE (fullname) == TEMPLATE_ID_EXPR;
3843 if (!t)
3845 if (complain & tf_error)
3847 if (!COMPLETE_TYPE_P (context))
3848 cxx_incomplete_type_error (NULL_TREE, context);
3849 else
3850 error (want_template ? G_("no class template named %q#T in %q#T")
3851 : G_("no type named %q#T in %q#T"), name, context);
3853 return error_mark_node;
3856 /* Pull out the template from an injected-class-name (or multiple). */
3857 if (want_template)
3858 t = maybe_get_template_decl_from_type_decl (t);
3860 if (TREE_CODE (t) == TREE_LIST)
3862 if (complain & tf_error)
3864 error ("lookup of %qT in %qT is ambiguous", name, context);
3865 print_candidates (t);
3867 return error_mark_node;
3870 if (want_template && !DECL_TYPE_TEMPLATE_P (t))
3872 if (complain & tf_error)
3873 error ("%<typename %T::%D%> names %q#T, which is not a class template",
3874 context, name, t);
3875 return error_mark_node;
3877 if (!want_template && TREE_CODE (t) != TYPE_DECL)
3879 if (complain & tf_error)
3880 error ("%<typename %T::%D%> names %q#T, which is not a type",
3881 context, name, t);
3882 return error_mark_node;
3885 if (!perform_or_defer_access_check (TYPE_BINFO (context), t, t, complain))
3886 return error_mark_node;
3888 /* If we are currently parsing a template and if T is a typedef accessed
3889 through CONTEXT then we need to remember and check access of T at
3890 template instantiation time. */
3891 add_typedef_to_current_template_for_access_check (t, context, input_location);
3893 if (want_template)
3894 return lookup_template_class (t, TREE_OPERAND (fullname, 1),
3895 NULL_TREE, context,
3896 /*entering_scope=*/0,
3897 complain | tf_user);
3899 if (DECL_ARTIFICIAL (t) || !(complain & tf_keep_type_decl))
3900 t = TREE_TYPE (t);
3902 maybe_record_typedef_use (t);
3904 return t;
3907 /* Resolve `CONTEXT::template NAME'. Returns a TEMPLATE_DECL if the name
3908 can be resolved or an UNBOUND_CLASS_TEMPLATE, unless an error occurs,
3909 in which case error_mark_node is returned.
3911 If PARM_LIST is non-NULL, also make sure that the template parameter
3912 list of TEMPLATE_DECL matches.
3914 If COMPLAIN zero, don't complain about any errors that occur. */
3916 tree
3917 make_unbound_class_template (tree context, tree name, tree parm_list,
3918 tsubst_flags_t complain)
3920 tree t;
3921 tree d;
3923 if (TYPE_P (name))
3924 name = TYPE_IDENTIFIER (name);
3925 else if (DECL_P (name))
3926 name = DECL_NAME (name);
3927 gcc_assert (identifier_p (name));
3929 if (!dependent_type_p (context)
3930 || currently_open_class (context))
3932 tree tmpl = NULL_TREE;
3934 if (MAYBE_CLASS_TYPE_P (context))
3935 tmpl = lookup_field (context, name, 0, false);
3937 if (tmpl && TREE_CODE (tmpl) == TYPE_DECL)
3938 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
3940 if (!tmpl || !DECL_TYPE_TEMPLATE_P (tmpl))
3942 if (complain & tf_error)
3943 error ("no class template named %q#T in %q#T", name, context);
3944 return error_mark_node;
3947 if (parm_list
3948 && !comp_template_parms (DECL_TEMPLATE_PARMS (tmpl), parm_list))
3950 if (complain & tf_error)
3952 error ("template parameters do not match template %qD", tmpl);
3953 inform (DECL_SOURCE_LOCATION (tmpl),
3954 "%qD declared here", tmpl);
3956 return error_mark_node;
3959 if (!perform_or_defer_access_check (TYPE_BINFO (context), tmpl, tmpl,
3960 complain))
3961 return error_mark_node;
3963 return tmpl;
3966 /* Build the UNBOUND_CLASS_TEMPLATE. */
3967 t = cxx_make_type (UNBOUND_CLASS_TEMPLATE);
3968 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
3969 TREE_TYPE (t) = NULL_TREE;
3970 SET_TYPE_STRUCTURAL_EQUALITY (t);
3972 /* Build the corresponding TEMPLATE_DECL. */
3973 d = build_decl (input_location, TEMPLATE_DECL, name, t);
3974 TYPE_NAME (TREE_TYPE (d)) = d;
3975 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
3976 DECL_CONTEXT (d) = FROB_CONTEXT (context);
3977 DECL_ARTIFICIAL (d) = 1;
3978 DECL_TEMPLATE_PARMS (d) = parm_list;
3980 return t;
3985 /* Push the declarations of builtin types into the global namespace.
3986 RID_INDEX is the index of the builtin type in the array
3987 RID_POINTERS. NAME is the name used when looking up the builtin
3988 type. TYPE is the _TYPE node for the builtin type.
3990 The calls to set_global_binding below should be
3991 eliminated. Built-in types should not be looked up name; their
3992 names are keywords that the parser can recognize. However, there
3993 is code in c-common.c that uses identifier_global_value to look up
3994 built-in types by name. */
3996 void
3997 record_builtin_type (enum rid rid_index,
3998 const char* name,
3999 tree type)
4001 tree decl = NULL_TREE;
4003 if (name)
4005 tree tname = get_identifier (name);
4006 tree tdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, tname, type);
4007 DECL_ARTIFICIAL (tdecl) = 1;
4008 set_global_binding (tdecl);
4009 decl = tdecl;
4012 if ((int) rid_index < (int) RID_MAX)
4013 if (tree rname = ridpointers[(int) rid_index])
4014 if (!decl || DECL_NAME (decl) != rname)
4016 tree rdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, rname, type);
4017 DECL_ARTIFICIAL (rdecl) = 1;
4018 set_global_binding (rdecl);
4019 if (!decl)
4020 decl = rdecl;
4023 if (decl)
4025 if (!TYPE_NAME (type))
4026 TYPE_NAME (type) = decl;
4027 debug_hooks->type_decl (decl, 0);
4031 /* Push a type into the namespace so that the back ends ignore it. */
4033 static void
4034 record_unknown_type (tree type, const char* name)
4036 tree decl = pushdecl (build_decl (UNKNOWN_LOCATION,
4037 TYPE_DECL, get_identifier (name), type));
4038 /* Make sure the "unknown type" typedecl gets ignored for debug info. */
4039 DECL_IGNORED_P (decl) = 1;
4040 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
4041 TYPE_SIZE (type) = TYPE_SIZE (void_type_node);
4042 SET_TYPE_ALIGN (type, 1);
4043 TYPE_USER_ALIGN (type) = 0;
4044 SET_TYPE_MODE (type, TYPE_MODE (void_type_node));
4047 /* Create all the predefined identifiers. */
4049 static void
4050 initialize_predefined_identifiers (void)
4052 struct predefined_identifier
4054 const char *name; /* Name. */
4055 tree *node; /* Node to store it in. */
4056 cp_identifier_kind kind; /* Kind of identifier. */
4059 /* A table of identifiers to create at startup. */
4060 static const predefined_identifier predefined_identifiers[] = {
4061 {"C++", &lang_name_cplusplus, cik_normal},
4062 {"C", &lang_name_c, cik_normal},
4063 /* Some of these names have a trailing space so that it is
4064 impossible for them to conflict with names written by users. */
4065 {"__ct ", &ctor_identifier, cik_ctor},
4066 {"__ct_base ", &base_ctor_identifier, cik_ctor},
4067 {"__ct_comp ", &complete_ctor_identifier, cik_ctor},
4068 {"__dt ", &dtor_identifier, cik_dtor},
4069 {"__dt_base ", &base_dtor_identifier, cik_dtor},
4070 {"__dt_comp ", &complete_dtor_identifier, cik_dtor},
4071 {"__dt_del ", &deleting_dtor_identifier, cik_dtor},
4072 {"__conv_op ", &conv_op_identifier, cik_conv_op},
4073 {"__in_chrg", &in_charge_identifier, cik_normal},
4074 {"this", &this_identifier, cik_normal},
4075 {"__delta", &delta_identifier, cik_normal},
4076 {"__pfn", &pfn_identifier, cik_normal},
4077 {"_vptr", &vptr_identifier, cik_normal},
4078 {"__vtt_parm", &vtt_parm_identifier, cik_normal},
4079 {"::", &global_identifier, cik_normal},
4080 {"std", &std_identifier, cik_normal},
4081 /* The demangler expects anonymous namespaces to be called
4082 something starting with '_GLOBAL__N_'. It no longer needs
4083 to be unique to the TU. */
4084 {"_GLOBAL__N_1", &anon_identifier, cik_normal},
4085 {"auto", &auto_identifier, cik_normal},
4086 {"decltype(auto)", &decltype_auto_identifier, cik_normal},
4087 {"initializer_list", &init_list_identifier, cik_normal},
4088 {"__for_range ", &for_range__identifier, cik_normal},
4089 {"__for_begin ", &for_begin__identifier, cik_normal},
4090 {"__for_end ", &for_end__identifier, cik_normal},
4091 {"__for_range", &for_range_identifier, cik_normal},
4092 {"__for_begin", &for_begin_identifier, cik_normal},
4093 {"__for_end", &for_end_identifier, cik_normal},
4094 {"abi_tag", &abi_tag_identifier, cik_normal},
4095 {"aligned", &aligned_identifier, cik_normal},
4096 {"begin", &begin_identifier, cik_normal},
4097 {"end", &end_identifier, cik_normal},
4098 {"get", &get__identifier, cik_normal},
4099 {"gnu", &gnu_identifier, cik_normal},
4100 {"tuple_element", &tuple_element_identifier, cik_normal},
4101 {"tuple_size", &tuple_size_identifier, cik_normal},
4102 {"type", &type_identifier, cik_normal},
4103 {"value", &value_identifier, cik_normal},
4104 {"_FUN", &fun_identifier, cik_normal},
4105 {"__closure", &closure_identifier, cik_normal},
4106 {NULL, NULL, cik_normal}
4109 for (const predefined_identifier *pid = predefined_identifiers;
4110 pid->name; ++pid)
4112 *pid->node = get_identifier (pid->name);
4113 /* Some of these identifiers already have a special kind. */
4114 if (pid->kind != cik_normal)
4115 set_identifier_kind (*pid->node, pid->kind);
4119 /* Create the predefined scalar types of C,
4120 and some nodes representing standard constants (0, 1, (void *)0).
4121 Initialize the global binding level.
4122 Make definitions for built-in primitive functions. */
4124 void
4125 cxx_init_decl_processing (void)
4127 tree void_ftype;
4128 tree void_ftype_ptr;
4130 /* Create all the identifiers we need. */
4131 initialize_predefined_identifiers ();
4133 /* Create the global variables. */
4134 push_to_top_level ();
4136 current_function_decl = NULL_TREE;
4137 current_binding_level = NULL;
4138 /* Enter the global namespace. */
4139 gcc_assert (global_namespace == NULL_TREE);
4140 global_namespace = build_lang_decl (NAMESPACE_DECL, global_identifier,
4141 void_type_node);
4142 TREE_PUBLIC (global_namespace) = 1;
4143 DECL_CONTEXT (global_namespace)
4144 = build_translation_unit_decl (get_identifier (main_input_filename));
4145 /* Remember whether we want the empty class passing ABI change warning
4146 in this TU. */
4147 TRANSLATION_UNIT_WARN_EMPTY_P (DECL_CONTEXT (global_namespace))
4148 = warn_abi && abi_version_crosses (12);
4149 debug_hooks->register_main_translation_unit
4150 (DECL_CONTEXT (global_namespace));
4151 begin_scope (sk_namespace, global_namespace);
4152 current_namespace = global_namespace;
4154 if (flag_visibility_ms_compat)
4155 default_visibility = VISIBILITY_HIDDEN;
4157 /* Initially, C. */
4158 current_lang_name = lang_name_c;
4160 /* Create the `std' namespace. */
4161 push_namespace (std_identifier);
4162 std_node = current_namespace;
4163 pop_namespace ();
4165 flag_noexcept_type = (cxx_dialect >= cxx17);
4167 c_common_nodes_and_builtins ();
4169 tree bool_ftype = build_function_type_list (boolean_type_node, NULL_TREE);
4170 tree decl
4171 = add_builtin_function ("__builtin_is_constant_evaluated",
4172 bool_ftype, CP_BUILT_IN_IS_CONSTANT_EVALUATED,
4173 BUILT_IN_FRONTEND, NULL, NULL_TREE);
4174 set_call_expr_flags (decl, ECF_CONST | ECF_NOTHROW | ECF_LEAF);
4176 integer_two_node = build_int_cst (NULL_TREE, 2);
4178 /* Guess at the initial static decls size. */
4179 vec_alloc (static_decls, 500);
4181 /* ... and keyed classes. */
4182 vec_alloc (keyed_classes, 100);
4184 record_builtin_type (RID_BOOL, "bool", boolean_type_node);
4185 truthvalue_type_node = boolean_type_node;
4186 truthvalue_false_node = boolean_false_node;
4187 truthvalue_true_node = boolean_true_node;
4189 empty_except_spec = build_tree_list (NULL_TREE, NULL_TREE);
4190 noexcept_true_spec = build_tree_list (boolean_true_node, NULL_TREE);
4191 noexcept_false_spec = build_tree_list (boolean_false_node, NULL_TREE);
4192 noexcept_deferred_spec = build_tree_list (make_node (DEFERRED_NOEXCEPT),
4193 NULL_TREE);
4195 #if 0
4196 record_builtin_type (RID_MAX, NULL, string_type_node);
4197 #endif
4199 delta_type_node = ptrdiff_type_node;
4200 vtable_index_type = ptrdiff_type_node;
4202 vtt_parm_type = build_pointer_type (const_ptr_type_node);
4203 void_ftype = build_function_type_list (void_type_node, NULL_TREE);
4204 void_ftype_ptr = build_function_type_list (void_type_node,
4205 ptr_type_node, NULL_TREE);
4206 void_ftype_ptr
4207 = build_exception_variant (void_ftype_ptr, empty_except_spec);
4209 /* Create the conversion operator marker. This operator's DECL_NAME
4210 is in the identifier table, so we can use identifier equality to
4211 find it. */
4212 conv_op_marker = build_lang_decl (FUNCTION_DECL, conv_op_identifier,
4213 void_ftype);
4215 /* C++ extensions */
4217 unknown_type_node = make_node (LANG_TYPE);
4218 record_unknown_type (unknown_type_node, "unknown type");
4220 /* Indirecting an UNKNOWN_TYPE node yields an UNKNOWN_TYPE node. */
4221 TREE_TYPE (unknown_type_node) = unknown_type_node;
4223 /* Looking up TYPE_POINTER_TO and TYPE_REFERENCE_TO yield the same
4224 result. */
4225 TYPE_POINTER_TO (unknown_type_node) = unknown_type_node;
4226 TYPE_REFERENCE_TO (unknown_type_node) = unknown_type_node;
4228 init_list_type_node = make_node (LANG_TYPE);
4229 record_unknown_type (init_list_type_node, "init list");
4232 /* Make sure we get a unique function type, so we can give
4233 its pointer type a name. (This wins for gdb.) */
4234 tree vfunc_type = make_node (FUNCTION_TYPE);
4235 TREE_TYPE (vfunc_type) = integer_type_node;
4236 TYPE_ARG_TYPES (vfunc_type) = NULL_TREE;
4237 layout_type (vfunc_type);
4239 vtable_entry_type = build_pointer_type (vfunc_type);
4241 record_builtin_type (RID_MAX, "__vtbl_ptr_type", vtable_entry_type);
4243 vtbl_type_node
4244 = build_cplus_array_type (vtable_entry_type, NULL_TREE);
4245 layout_type (vtbl_type_node);
4246 vtbl_type_node = cp_build_qualified_type (vtbl_type_node, TYPE_QUAL_CONST);
4247 record_builtin_type (RID_MAX, NULL, vtbl_type_node);
4248 vtbl_ptr_type_node = build_pointer_type (vtable_entry_type);
4249 layout_type (vtbl_ptr_type_node);
4250 record_builtin_type (RID_MAX, NULL, vtbl_ptr_type_node);
4252 push_namespace (get_identifier ("__cxxabiv1"));
4253 abi_node = current_namespace;
4254 pop_namespace ();
4256 global_type_node = make_node (LANG_TYPE);
4257 record_unknown_type (global_type_node, "global type");
4259 any_targ_node = make_node (LANG_TYPE);
4260 record_unknown_type (any_targ_node, "any type");
4262 /* Now, C++. */
4263 current_lang_name = lang_name_cplusplus;
4265 if (aligned_new_threshold > 1
4266 && !pow2p_hwi (aligned_new_threshold))
4268 error ("-faligned-new=%d is not a power of two", aligned_new_threshold);
4269 aligned_new_threshold = 1;
4271 if (aligned_new_threshold == -1)
4272 aligned_new_threshold = (cxx_dialect >= cxx17) ? 1 : 0;
4273 if (aligned_new_threshold == 1)
4274 aligned_new_threshold = malloc_alignment () / BITS_PER_UNIT;
4277 tree newattrs, extvisattr;
4278 tree newtype, deltype;
4279 tree ptr_ftype_sizetype;
4280 tree new_eh_spec;
4282 ptr_ftype_sizetype
4283 = build_function_type_list (ptr_type_node, size_type_node, NULL_TREE);
4284 if (cxx_dialect == cxx98)
4286 tree bad_alloc_id;
4287 tree bad_alloc_type_node;
4288 tree bad_alloc_decl;
4290 push_namespace (std_identifier);
4291 bad_alloc_id = get_identifier ("bad_alloc");
4292 bad_alloc_type_node = make_class_type (RECORD_TYPE);
4293 TYPE_CONTEXT (bad_alloc_type_node) = current_namespace;
4294 bad_alloc_decl
4295 = create_implicit_typedef (bad_alloc_id, bad_alloc_type_node);
4296 DECL_CONTEXT (bad_alloc_decl) = current_namespace;
4297 pop_namespace ();
4299 new_eh_spec
4300 = add_exception_specifier (NULL_TREE, bad_alloc_type_node, -1);
4302 else
4303 new_eh_spec = noexcept_false_spec;
4305 /* Ensure attribs.c is initialized. */
4306 init_attributes ();
4308 /* Ensure constraint.cc is initialized. */
4309 init_constraint_processing ();
4311 extvisattr = build_tree_list (get_identifier ("externally_visible"),
4312 NULL_TREE);
4313 newattrs = tree_cons (get_identifier ("alloc_size"),
4314 build_tree_list (NULL_TREE, integer_one_node),
4315 extvisattr);
4316 newtype = cp_build_type_attribute_variant (ptr_ftype_sizetype, newattrs);
4317 newtype = build_exception_variant (newtype, new_eh_spec);
4318 deltype = cp_build_type_attribute_variant (void_ftype_ptr, extvisattr);
4319 deltype = build_exception_variant (deltype, empty_except_spec);
4320 tree opnew = push_cp_library_fn (NEW_EXPR, newtype, 0);
4321 DECL_IS_MALLOC (opnew) = 1;
4322 DECL_IS_OPERATOR_NEW (opnew) = 1;
4323 opnew = push_cp_library_fn (VEC_NEW_EXPR, newtype, 0);
4324 DECL_IS_MALLOC (opnew) = 1;
4325 DECL_IS_OPERATOR_NEW (opnew) = 1;
4326 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4327 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4328 if (flag_sized_deallocation)
4330 /* Also push the sized deallocation variants:
4331 void operator delete(void*, std::size_t) throw();
4332 void operator delete[](void*, std::size_t) throw(); */
4333 tree void_ftype_ptr_size
4334 = build_function_type_list (void_type_node, ptr_type_node,
4335 size_type_node, NULL_TREE);
4336 deltype = cp_build_type_attribute_variant (void_ftype_ptr_size,
4337 extvisattr);
4338 deltype = build_exception_variant (deltype, empty_except_spec);
4339 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4340 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4343 if (aligned_new_threshold)
4345 push_namespace (std_identifier);
4346 tree align_id = get_identifier ("align_val_t");
4347 align_type_node = start_enum (align_id, NULL_TREE, size_type_node,
4348 NULL_TREE, /*scoped*/true, NULL);
4349 pop_namespace ();
4351 /* operator new (size_t, align_val_t); */
4352 newtype = build_function_type_list (ptr_type_node, size_type_node,
4353 align_type_node, NULL_TREE);
4354 newtype = cp_build_type_attribute_variant (newtype, newattrs);
4355 newtype = build_exception_variant (newtype, new_eh_spec);
4356 opnew = push_cp_library_fn (NEW_EXPR, newtype, 0);
4357 DECL_IS_MALLOC (opnew) = 1;
4358 DECL_IS_OPERATOR_NEW (opnew) = 1;
4359 opnew = push_cp_library_fn (VEC_NEW_EXPR, newtype, 0);
4360 DECL_IS_MALLOC (opnew) = 1;
4361 DECL_IS_OPERATOR_NEW (opnew) = 1;
4363 /* operator delete (void *, align_val_t); */
4364 deltype = build_function_type_list (void_type_node, ptr_type_node,
4365 align_type_node, NULL_TREE);
4366 deltype = cp_build_type_attribute_variant (deltype, extvisattr);
4367 deltype = build_exception_variant (deltype, empty_except_spec);
4368 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4369 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4371 if (flag_sized_deallocation)
4373 /* operator delete (void *, size_t, align_val_t); */
4374 deltype = build_function_type_list (void_type_node, ptr_type_node,
4375 size_type_node, align_type_node,
4376 NULL_TREE);
4377 deltype = cp_build_type_attribute_variant (deltype, extvisattr);
4378 deltype = build_exception_variant (deltype, empty_except_spec);
4379 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4380 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4384 nullptr_type_node = make_node (NULLPTR_TYPE);
4385 TYPE_SIZE (nullptr_type_node) = bitsize_int (GET_MODE_BITSIZE (ptr_mode));
4386 TYPE_SIZE_UNIT (nullptr_type_node) = size_int (GET_MODE_SIZE (ptr_mode));
4387 TYPE_UNSIGNED (nullptr_type_node) = 1;
4388 TYPE_PRECISION (nullptr_type_node) = GET_MODE_BITSIZE (ptr_mode);
4389 if (abi_version_at_least (9))
4390 SET_TYPE_ALIGN (nullptr_type_node, GET_MODE_ALIGNMENT (ptr_mode));
4391 SET_TYPE_MODE (nullptr_type_node, ptr_mode);
4392 record_builtin_type (RID_MAX, "decltype(nullptr)", nullptr_type_node);
4393 nullptr_node = build_int_cst (nullptr_type_node, 0);
4396 abort_fndecl
4397 = build_library_fn_ptr ("__cxa_pure_virtual", void_ftype,
4398 ECF_NORETURN | ECF_NOTHROW | ECF_COLD);
4400 /* Perform other language dependent initializations. */
4401 init_class_processing ();
4402 init_rtti_processing ();
4403 init_template_processing ();
4405 if (flag_exceptions)
4406 init_exception_processing ();
4408 if (! supports_one_only ())
4409 flag_weak = 0;
4411 make_fname_decl = cp_make_fname_decl;
4412 start_fname_decls ();
4414 /* Show we use EH for cleanups. */
4415 if (flag_exceptions)
4416 using_eh_for_cleanups ();
4419 /* Generate an initializer for a function naming variable from
4420 NAME. NAME may be NULL, to indicate a dependent name. TYPE_P is
4421 filled in with the type of the init. */
4423 tree
4424 cp_fname_init (const char* name, tree *type_p)
4426 tree domain = NULL_TREE;
4427 tree type;
4428 tree init = NULL_TREE;
4429 size_t length = 0;
4431 if (name)
4433 length = strlen (name);
4434 domain = build_index_type (size_int (length));
4435 init = build_string (length + 1, name);
4438 type = cp_build_qualified_type (char_type_node, TYPE_QUAL_CONST);
4439 type = build_cplus_array_type (type, domain);
4441 *type_p = type;
4443 if (init)
4444 TREE_TYPE (init) = type;
4445 else
4446 init = error_mark_node;
4448 return init;
4451 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give
4452 the decl, LOC is the location to give the decl, NAME is the
4453 initialization string and TYPE_DEP indicates whether NAME depended
4454 on the type of the function. We make use of that to detect
4455 __PRETTY_FUNCTION__ inside a template fn. This is being done lazily
4456 at the point of first use, so we mustn't push the decl now. */
4458 static tree
4459 cp_make_fname_decl (location_t loc, tree id, int type_dep)
4461 const char *const name = (type_dep && in_template_function ()
4462 ? NULL : fname_as_string (type_dep));
4463 tree type;
4464 tree init = cp_fname_init (name, &type);
4465 tree decl = build_decl (loc, VAR_DECL, id, type);
4467 if (name)
4468 free (CONST_CAST (char *, name));
4470 /* As we're using pushdecl_with_scope, we must set the context. */
4471 DECL_CONTEXT (decl) = current_function_decl;
4473 TREE_READONLY (decl) = 1;
4474 DECL_ARTIFICIAL (decl) = 1;
4475 DECL_DECLARED_CONSTEXPR_P (decl) = 1;
4476 TREE_STATIC (decl) = 1;
4478 TREE_USED (decl) = 1;
4480 if (init)
4482 SET_DECL_VALUE_EXPR (decl, init);
4483 DECL_HAS_VALUE_EXPR_P (decl) = 1;
4484 /* For decl_constant_var_p. */
4485 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = 1;
4488 if (current_function_decl)
4490 DECL_CONTEXT (decl) = current_function_decl;
4491 decl = pushdecl_outermost_localscope (decl);
4492 if (decl != error_mark_node)
4493 add_decl_expr (decl);
4495 else
4497 DECL_THIS_STATIC (decl) = true;
4498 pushdecl_top_level_and_finish (decl, NULL_TREE);
4501 return decl;
4504 static tree
4505 builtin_function_1 (tree decl, tree context, bool is_global)
4507 tree id = DECL_NAME (decl);
4508 const char *name = IDENTIFIER_POINTER (id);
4510 retrofit_lang_decl (decl);
4512 DECL_ARTIFICIAL (decl) = 1;
4513 SET_DECL_LANGUAGE (decl, lang_c);
4514 /* Runtime library routines are, by definition, available in an
4515 external shared object. */
4516 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
4517 DECL_VISIBILITY_SPECIFIED (decl) = 1;
4519 DECL_CONTEXT (decl) = context;
4521 /* A function in the user's namespace should have an explicit
4522 declaration before it is used. Mark the built-in function as
4523 anticipated but not actually declared. */
4524 if (name[0] != '_' || name[1] != '_')
4525 DECL_ANTICIPATED (decl) = 1;
4526 else if (strncmp (name + 2, "builtin_", strlen ("builtin_")) != 0)
4528 size_t len = strlen (name);
4530 /* Treat __*_chk fortification functions as anticipated as well,
4531 unless they are __builtin_*. */
4532 if (len > strlen ("___chk")
4533 && memcmp (name + len - strlen ("_chk"),
4534 "_chk", strlen ("_chk") + 1) == 0)
4535 DECL_ANTICIPATED (decl) = 1;
4538 if (is_global)
4539 pushdecl_top_level (decl);
4540 else
4541 pushdecl (decl);
4543 return decl;
4546 tree
4547 cxx_builtin_function (tree decl)
4549 tree id = DECL_NAME (decl);
4550 const char *name = IDENTIFIER_POINTER (id);
4551 /* All builtins that don't begin with an '_' should additionally
4552 go in the 'std' namespace. */
4553 if (name[0] != '_')
4555 tree decl2 = copy_node(decl);
4556 push_namespace (std_identifier);
4557 builtin_function_1 (decl2, std_node, false);
4558 pop_namespace ();
4561 return builtin_function_1 (decl, NULL_TREE, false);
4564 /* Like cxx_builtin_function, but guarantee the function is added to the global
4565 scope. This is to allow function specific options to add new machine
4566 dependent builtins when the target ISA changes via attribute((target(...)))
4567 which saves space on program startup if the program does not use non-generic
4568 ISAs. */
4570 tree
4571 cxx_builtin_function_ext_scope (tree decl)
4574 tree id = DECL_NAME (decl);
4575 const char *name = IDENTIFIER_POINTER (id);
4576 /* All builtins that don't begin with an '_' should additionally
4577 go in the 'std' namespace. */
4578 if (name[0] != '_')
4580 tree decl2 = copy_node(decl);
4581 push_namespace (std_identifier);
4582 builtin_function_1 (decl2, std_node, true);
4583 pop_namespace ();
4586 return builtin_function_1 (decl, NULL_TREE, true);
4589 /* Generate a FUNCTION_DECL with the typical flags for a runtime library
4590 function. Not called directly. */
4592 static tree
4593 build_library_fn (tree name, enum tree_code operator_code, tree type,
4594 int ecf_flags)
4596 tree fn = build_lang_decl (FUNCTION_DECL, name, type);
4597 DECL_EXTERNAL (fn) = 1;
4598 TREE_PUBLIC (fn) = 1;
4599 DECL_ARTIFICIAL (fn) = 1;
4600 DECL_OVERLOADED_OPERATOR_CODE_RAW (fn)
4601 = OVL_OP_INFO (false, operator_code)->ovl_op_code;
4602 SET_DECL_LANGUAGE (fn, lang_c);
4603 /* Runtime library routines are, by definition, available in an
4604 external shared object. */
4605 DECL_VISIBILITY (fn) = VISIBILITY_DEFAULT;
4606 DECL_VISIBILITY_SPECIFIED (fn) = 1;
4607 set_call_expr_flags (fn, ecf_flags);
4608 return fn;
4611 /* Returns the _DECL for a library function with C++ linkage. */
4613 static tree
4614 build_cp_library_fn (tree name, enum tree_code operator_code, tree type,
4615 int ecf_flags)
4617 tree fn = build_library_fn (name, operator_code, type, ecf_flags);
4618 DECL_CONTEXT (fn) = FROB_CONTEXT (current_namespace);
4619 SET_DECL_LANGUAGE (fn, lang_cplusplus);
4620 return fn;
4623 /* Like build_library_fn, but takes a C string instead of an
4624 IDENTIFIER_NODE. */
4626 tree
4627 build_library_fn_ptr (const char* name, tree type, int ecf_flags)
4629 return build_library_fn (get_identifier (name), ERROR_MARK, type, ecf_flags);
4632 /* Like build_cp_library_fn, but takes a C string instead of an
4633 IDENTIFIER_NODE. */
4635 tree
4636 build_cp_library_fn_ptr (const char* name, tree type, int ecf_flags)
4638 return build_cp_library_fn (get_identifier (name), ERROR_MARK, type,
4639 ecf_flags);
4642 /* Like build_library_fn, but also pushes the function so that we will
4643 be able to find it via get_global_binding. Also, the function
4644 may throw exceptions listed in RAISES. */
4646 tree
4647 push_library_fn (tree name, tree type, tree raises, int ecf_flags)
4649 tree fn;
4651 if (raises)
4652 type = build_exception_variant (type, raises);
4654 fn = build_library_fn (name, ERROR_MARK, type, ecf_flags);
4655 pushdecl_top_level (fn);
4656 return fn;
4659 /* Like build_cp_library_fn, but also pushes the function so that it
4660 will be found by normal lookup. */
4662 static tree
4663 push_cp_library_fn (enum tree_code operator_code, tree type,
4664 int ecf_flags)
4666 tree fn = build_cp_library_fn (ovl_op_identifier (false, operator_code),
4667 operator_code, type, ecf_flags);
4668 pushdecl (fn);
4669 if (flag_tm)
4670 apply_tm_attr (fn, get_identifier ("transaction_safe"));
4671 return fn;
4674 /* Like push_library_fn, but takes a TREE_LIST of parm types rather than
4675 a FUNCTION_TYPE. */
4677 tree
4678 push_void_library_fn (tree name, tree parmtypes, int ecf_flags)
4680 tree type = build_function_type (void_type_node, parmtypes);
4681 return push_library_fn (name, type, NULL_TREE, ecf_flags);
4684 /* Like push_library_fn, but also note that this function throws
4685 and does not return. Used for __throw_foo and the like. */
4687 tree
4688 push_throw_library_fn (tree name, tree type)
4690 tree fn = push_library_fn (name, type, NULL_TREE, ECF_NORETURN | ECF_COLD);
4691 return fn;
4694 /* When we call finish_struct for an anonymous union, we create
4695 default copy constructors and such. But, an anonymous union
4696 shouldn't have such things; this function undoes the damage to the
4697 anonymous union type T.
4699 (The reason that we create the synthesized methods is that we don't
4700 distinguish `union { int i; }' from `typedef union { int i; } U'.
4701 The first is an anonymous union; the second is just an ordinary
4702 union type.) */
4704 void
4705 fixup_anonymous_aggr (tree t)
4707 /* Wipe out memory of synthesized methods. */
4708 TYPE_HAS_USER_CONSTRUCTOR (t) = 0;
4709 TYPE_HAS_DEFAULT_CONSTRUCTOR (t) = 0;
4710 TYPE_HAS_COPY_CTOR (t) = 0;
4711 TYPE_HAS_CONST_COPY_CTOR (t) = 0;
4712 TYPE_HAS_COPY_ASSIGN (t) = 0;
4713 TYPE_HAS_CONST_COPY_ASSIGN (t) = 0;
4715 /* Splice the implicitly generated functions out of TYPE_FIELDS. */
4716 for (tree probe, *prev_p = &TYPE_FIELDS (t); (probe = *prev_p);)
4717 if (TREE_CODE (probe) == FUNCTION_DECL && DECL_ARTIFICIAL (probe))
4718 *prev_p = DECL_CHAIN (probe);
4719 else
4720 prev_p = &DECL_CHAIN (probe);
4722 /* Anonymous aggregates cannot have fields with ctors, dtors or complex
4723 assignment operators (because they cannot have these methods themselves).
4724 For anonymous unions this is already checked because they are not allowed
4725 in any union, otherwise we have to check it. */
4726 if (TREE_CODE (t) != UNION_TYPE)
4728 tree field, type;
4730 for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
4731 if (TREE_CODE (field) == FIELD_DECL)
4733 type = TREE_TYPE (field);
4734 if (CLASS_TYPE_P (type))
4736 if (TYPE_NEEDS_CONSTRUCTING (type))
4737 error ("member %q+#D with constructor not allowed "
4738 "in anonymous aggregate", field);
4739 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
4740 error ("member %q+#D with destructor not allowed "
4741 "in anonymous aggregate", field);
4742 if (TYPE_HAS_COMPLEX_COPY_ASSIGN (type))
4743 error ("member %q+#D with copy assignment operator "
4744 "not allowed in anonymous aggregate", field);
4750 /* Warn for an attribute located at LOCATION that appertains to the
4751 class type CLASS_TYPE that has not been properly placed after its
4752 class-key, in it class-specifier. */
4754 void
4755 warn_misplaced_attr_for_class_type (location_t location,
4756 tree class_type)
4758 gcc_assert (OVERLOAD_TYPE_P (class_type));
4760 auto_diagnostic_group d;
4761 if (warning_at (location, OPT_Wattributes,
4762 "attribute ignored in declaration "
4763 "of %q#T", class_type))
4764 inform (location,
4765 "attribute for %q#T must follow the %qs keyword",
4766 class_type, class_key_or_enum_as_string (class_type));
4769 /* Make sure that a declaration with no declarator is well-formed, i.e.
4770 just declares a tagged type or anonymous union.
4772 Returns the type declared; or NULL_TREE if none. */
4774 tree
4775 check_tag_decl (cp_decl_specifier_seq *declspecs,
4776 bool explicit_type_instantiation_p)
4778 int saw_friend = decl_spec_seq_has_spec_p (declspecs, ds_friend);
4779 int saw_typedef = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
4780 /* If a class, struct, or enum type is declared by the DECLSPECS
4781 (i.e, if a class-specifier, enum-specifier, or non-typename
4782 elaborated-type-specifier appears in the DECLSPECS),
4783 DECLARED_TYPE is set to the corresponding type. */
4784 tree declared_type = NULL_TREE;
4785 bool error_p = false;
4787 if (declspecs->multiple_types_p)
4788 error ("multiple types in one declaration");
4789 else if (declspecs->redefined_builtin_type)
4791 if (!in_system_header_at (input_location))
4792 permerror (declspecs->locations[ds_redefined_builtin_type_spec],
4793 "redeclaration of C++ built-in type %qT",
4794 declspecs->redefined_builtin_type);
4795 return NULL_TREE;
4798 if (declspecs->type
4799 && TYPE_P (declspecs->type)
4800 && ((TREE_CODE (declspecs->type) != TYPENAME_TYPE
4801 && MAYBE_CLASS_TYPE_P (declspecs->type))
4802 || TREE_CODE (declspecs->type) == ENUMERAL_TYPE))
4803 declared_type = declspecs->type;
4804 else if (declspecs->type == error_mark_node)
4805 error_p = true;
4806 if (declared_type == NULL_TREE && ! saw_friend && !error_p)
4807 permerror (input_location, "declaration does not declare anything");
4808 else if (declared_type != NULL_TREE && type_uses_auto (declared_type))
4810 error_at (declspecs->locations[ds_type_spec],
4811 "%<auto%> can only be specified for variables "
4812 "or function declarations");
4813 return error_mark_node;
4815 /* Check for an anonymous union. */
4816 else if (declared_type && RECORD_OR_UNION_CODE_P (TREE_CODE (declared_type))
4817 && TYPE_UNNAMED_P (declared_type))
4819 /* 7/3 In a simple-declaration, the optional init-declarator-list
4820 can be omitted only when declaring a class (clause 9) or
4821 enumeration (7.2), that is, when the decl-specifier-seq contains
4822 either a class-specifier, an elaborated-type-specifier with
4823 a class-key (9.1), or an enum-specifier. In these cases and
4824 whenever a class-specifier or enum-specifier is present in the
4825 decl-specifier-seq, the identifiers in these specifiers are among
4826 the names being declared by the declaration (as class-name,
4827 enum-names, or enumerators, depending on the syntax). In such
4828 cases, and except for the declaration of an unnamed bit-field (9.6),
4829 the decl-specifier-seq shall introduce one or more names into the
4830 program, or shall redeclare a name introduced by a previous
4831 declaration. [Example:
4832 enum { }; // ill-formed
4833 typedef class { }; // ill-formed
4834 --end example] */
4835 if (saw_typedef)
4837 error ("missing type-name in typedef-declaration");
4838 return NULL_TREE;
4840 /* Anonymous unions are objects, so they can have specifiers. */;
4841 SET_ANON_AGGR_TYPE_P (declared_type);
4843 if (TREE_CODE (declared_type) != UNION_TYPE
4844 && !in_system_header_at (input_location))
4845 pedwarn (input_location, OPT_Wpedantic, "ISO C++ prohibits anonymous structs");
4848 else
4850 if (decl_spec_seq_has_spec_p (declspecs, ds_inline))
4851 error_at (declspecs->locations[ds_inline],
4852 "%<inline%> can only be specified for functions");
4853 else if (decl_spec_seq_has_spec_p (declspecs, ds_virtual))
4854 error_at (declspecs->locations[ds_virtual],
4855 "%<virtual%> can only be specified for functions");
4856 else if (saw_friend
4857 && (!current_class_type
4858 || current_scope () != current_class_type))
4859 error_at (declspecs->locations[ds_friend],
4860 "%<friend%> can only be specified inside a class");
4861 else if (decl_spec_seq_has_spec_p (declspecs, ds_explicit))
4862 error_at (declspecs->locations[ds_explicit],
4863 "%<explicit%> can only be specified for constructors");
4864 else if (declspecs->storage_class)
4865 error_at (declspecs->locations[ds_storage_class],
4866 "a storage class can only be specified for objects "
4867 "and functions");
4868 else if (decl_spec_seq_has_spec_p (declspecs, ds_const))
4869 error_at (declspecs->locations[ds_const],
4870 "%<const%> can only be specified for objects and "
4871 "functions");
4872 else if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
4873 error_at (declspecs->locations[ds_volatile],
4874 "%<volatile%> can only be specified for objects and "
4875 "functions");
4876 else if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
4877 error_at (declspecs->locations[ds_restrict],
4878 "%<__restrict%> can only be specified for objects and "
4879 "functions");
4880 else if (decl_spec_seq_has_spec_p (declspecs, ds_thread))
4881 error_at (declspecs->locations[ds_thread],
4882 "%<__thread%> can only be specified for objects "
4883 "and functions");
4884 else if (saw_typedef)
4885 warning_at (declspecs->locations[ds_typedef], 0,
4886 "%<typedef%> was ignored in this declaration");
4887 else if (decl_spec_seq_has_spec_p (declspecs, ds_constexpr))
4888 error_at (declspecs->locations[ds_constexpr],
4889 "%<constexpr%> cannot be used for type declarations");
4892 if (declspecs->attributes && warn_attributes && declared_type)
4894 location_t loc;
4895 if (!CLASS_TYPE_P (declared_type)
4896 || !CLASSTYPE_TEMPLATE_INSTANTIATION (declared_type))
4897 /* For a non-template class, use the name location. */
4898 loc = location_of (declared_type);
4899 else
4900 /* For a template class (an explicit instantiation), use the
4901 current location. */
4902 loc = input_location;
4904 if (explicit_type_instantiation_p)
4905 /* [dcl.attr.grammar]/4:
4907 No attribute-specifier-seq shall appertain to an explicit
4908 instantiation. */
4910 if (warning_at (loc, OPT_Wattributes,
4911 "attribute ignored in explicit instantiation %q#T",
4912 declared_type))
4913 inform (loc,
4914 "no attribute can be applied to "
4915 "an explicit instantiation");
4917 else
4918 warn_misplaced_attr_for_class_type (loc, declared_type);
4921 return declared_type;
4924 /* Called when a declaration is seen that contains no names to declare.
4925 If its type is a reference to a structure, union or enum inherited
4926 from a containing scope, shadow that tag name for the current scope
4927 with a forward reference.
4928 If its type defines a new named structure or union
4929 or defines an enum, it is valid but we need not do anything here.
4930 Otherwise, it is an error.
4932 C++: may have to grok the declspecs to learn about static,
4933 complain for anonymous unions.
4935 Returns the TYPE declared -- or NULL_TREE if none. */
4937 tree
4938 shadow_tag (cp_decl_specifier_seq *declspecs)
4940 tree t = check_tag_decl (declspecs,
4941 /*explicit_type_instantiation_p=*/false);
4943 if (!t)
4944 return NULL_TREE;
4946 if (maybe_process_partial_specialization (t) == error_mark_node)
4947 return NULL_TREE;
4949 /* This is where the variables in an anonymous union are
4950 declared. An anonymous union declaration looks like:
4951 union { ... } ;
4952 because there is no declarator after the union, the parser
4953 sends that declaration here. */
4954 if (ANON_AGGR_TYPE_P (t))
4956 fixup_anonymous_aggr (t);
4958 if (TYPE_FIELDS (t))
4960 tree decl = grokdeclarator (/*declarator=*/NULL,
4961 declspecs, NORMAL, 0, NULL);
4962 finish_anon_union (decl);
4966 return t;
4969 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
4971 tree
4972 groktypename (cp_decl_specifier_seq *type_specifiers,
4973 const cp_declarator *declarator,
4974 bool is_template_arg)
4976 tree attrs;
4977 tree type;
4978 enum decl_context context
4979 = is_template_arg ? TEMPLATE_TYPE_ARG : TYPENAME;
4980 attrs = type_specifiers->attributes;
4981 type_specifiers->attributes = NULL_TREE;
4982 type = grokdeclarator (declarator, type_specifiers, context, 0, &attrs);
4983 if (attrs && type != error_mark_node)
4985 if (CLASS_TYPE_P (type))
4986 warning (OPT_Wattributes, "ignoring attributes applied to class type %qT "
4987 "outside of definition", type);
4988 else if (MAYBE_CLASS_TYPE_P (type))
4989 /* A template type parameter or other dependent type. */
4990 warning (OPT_Wattributes, "ignoring attributes applied to dependent "
4991 "type %qT without an associated declaration", type);
4992 else
4993 cplus_decl_attributes (&type, attrs, 0);
4995 return type;
4998 /* Process a DECLARATOR for a function-scope variable declaration,
4999 namespace-scope variable declaration, or function declaration.
5000 (Function definitions go through start_function; class member
5001 declarations appearing in the body of the class go through
5002 grokfield.) The DECL corresponding to the DECLARATOR is returned.
5003 If an error occurs, the error_mark_node is returned instead.
5005 DECLSPECS are the decl-specifiers for the declaration. INITIALIZED is
5006 SD_INITIALIZED if an explicit initializer is present, or SD_DEFAULTED
5007 for an explicitly defaulted function, or SD_DELETED for an explicitly
5008 deleted function, but 0 (SD_UNINITIALIZED) if this is a variable
5009 implicitly initialized via a default constructor. ATTRIBUTES and
5010 PREFIX_ATTRIBUTES are GNU attributes associated with this declaration.
5012 The scope represented by the context of the returned DECL is pushed
5013 (if it is not the global namespace) and is assigned to
5014 *PUSHED_SCOPE_P. The caller is then responsible for calling
5015 pop_scope on *PUSHED_SCOPE_P if it is set. */
5017 tree
5018 start_decl (const cp_declarator *declarator,
5019 cp_decl_specifier_seq *declspecs,
5020 int initialized,
5021 tree attributes,
5022 tree prefix_attributes,
5023 tree *pushed_scope_p)
5025 tree decl;
5026 tree context;
5027 bool was_public;
5028 int flags;
5029 bool alias;
5031 *pushed_scope_p = NULL_TREE;
5033 /* An object declared as __attribute__((deprecated)) suppresses
5034 warnings of uses of other deprecated items. */
5035 if (lookup_attribute ("deprecated", attributes))
5036 deprecated_state = DEPRECATED_SUPPRESS;
5038 attributes = chainon (attributes, prefix_attributes);
5040 decl = grokdeclarator (declarator, declspecs, NORMAL, initialized,
5041 &attributes);
5043 deprecated_state = DEPRECATED_NORMAL;
5045 if (decl == NULL_TREE || VOID_TYPE_P (decl)
5046 || decl == error_mark_node)
5047 return error_mark_node;
5049 context = CP_DECL_CONTEXT (decl);
5050 if (context != global_namespace)
5051 *pushed_scope_p = push_scope (context);
5053 /* Is it valid for this decl to have an initializer at all?
5054 If not, set INITIALIZED to zero, which will indirectly
5055 tell `cp_finish_decl' to ignore the initializer once it is parsed. */
5056 if (initialized
5057 && TREE_CODE (decl) == TYPE_DECL)
5059 error ("typedef %qD is initialized (use decltype instead)", decl);
5060 return error_mark_node;
5063 if (initialized)
5065 if (! toplevel_bindings_p ()
5066 && DECL_EXTERNAL (decl))
5067 warning (0, "declaration of %q#D has %<extern%> and is initialized",
5068 decl);
5069 DECL_EXTERNAL (decl) = 0;
5070 if (toplevel_bindings_p ())
5071 TREE_STATIC (decl) = 1;
5073 alias = lookup_attribute ("alias", DECL_ATTRIBUTES (decl)) != 0;
5075 if (alias && TREE_CODE (decl) == FUNCTION_DECL)
5076 record_key_method_defined (decl);
5078 /* If this is a typedef that names the class for linkage purposes
5079 (7.1.3p8), apply any attributes directly to the type. */
5080 if (TREE_CODE (decl) == TYPE_DECL
5081 && OVERLOAD_TYPE_P (TREE_TYPE (decl))
5082 && decl == TYPE_NAME (TYPE_MAIN_VARIANT (TREE_TYPE (decl))))
5083 flags = ATTR_FLAG_TYPE_IN_PLACE;
5084 else
5085 flags = 0;
5087 /* Set attributes here so if duplicate decl, will have proper attributes. */
5088 cplus_decl_attributes (&decl, attributes, flags);
5090 /* Dllimported symbols cannot be defined. Static data members (which
5091 can be initialized in-class and dllimported) go through grokfield,
5092 not here, so we don't need to exclude those decls when checking for
5093 a definition. */
5094 if (initialized && DECL_DLLIMPORT_P (decl))
5096 error ("definition of %q#D is marked %<dllimport%>", decl);
5097 DECL_DLLIMPORT_P (decl) = 0;
5100 /* If #pragma weak was used, mark the decl weak now. */
5101 if (!processing_template_decl && !DECL_DECOMPOSITION_P (decl))
5102 maybe_apply_pragma_weak (decl);
5104 if (TREE_CODE (decl) == FUNCTION_DECL
5105 && DECL_DECLARED_INLINE_P (decl)
5106 && DECL_UNINLINABLE (decl)
5107 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
5108 warning_at (DECL_SOURCE_LOCATION (decl), 0,
5109 "inline function %qD given attribute noinline", decl);
5111 if (TYPE_P (context) && COMPLETE_TYPE_P (complete_type (context)))
5113 bool this_tmpl = (processing_template_decl
5114 > template_class_depth (context));
5115 if (VAR_P (decl))
5117 tree field = lookup_field (context, DECL_NAME (decl), 0, false);
5118 if (field == NULL_TREE
5119 || !(VAR_P (field) || variable_template_p (field)))
5120 error ("%q+#D is not a static data member of %q#T", decl, context);
5121 else if (variable_template_p (field)
5122 && (DECL_LANG_SPECIFIC (decl)
5123 && DECL_TEMPLATE_SPECIALIZATION (decl)))
5124 /* OK, specialization was already checked. */;
5125 else if (variable_template_p (field) && !this_tmpl)
5127 error_at (DECL_SOURCE_LOCATION (decl),
5128 "non-member-template declaration of %qD", decl);
5129 inform (DECL_SOURCE_LOCATION (field), "does not match "
5130 "member template declaration here");
5131 return error_mark_node;
5133 else
5135 if (variable_template_p (field))
5136 field = DECL_TEMPLATE_RESULT (field);
5138 if (DECL_CONTEXT (field) != context)
5140 if (!same_type_p (DECL_CONTEXT (field), context))
5141 permerror (input_location, "ISO C++ does not permit %<%T::%D%> "
5142 "to be defined as %<%T::%D%>",
5143 DECL_CONTEXT (field), DECL_NAME (decl),
5144 context, DECL_NAME (decl));
5145 DECL_CONTEXT (decl) = DECL_CONTEXT (field);
5147 /* Static data member are tricky; an in-class initialization
5148 still doesn't provide a definition, so the in-class
5149 declaration will have DECL_EXTERNAL set, but will have an
5150 initialization. Thus, duplicate_decls won't warn
5151 about this situation, and so we check here. */
5152 if (initialized && DECL_INITIALIZED_IN_CLASS_P (field))
5153 error ("duplicate initialization of %qD", decl);
5154 field = duplicate_decls (decl, field,
5155 /*newdecl_is_friend=*/false);
5156 if (field == error_mark_node)
5157 return error_mark_node;
5158 else if (field)
5159 decl = field;
5162 else
5164 tree field = check_classfn (context, decl,
5165 this_tmpl
5166 ? current_template_parms
5167 : NULL_TREE);
5168 if (field && field != error_mark_node
5169 && duplicate_decls (decl, field,
5170 /*newdecl_is_friend=*/false))
5171 decl = field;
5174 /* cp_finish_decl sets DECL_EXTERNAL if DECL_IN_AGGR_P is set. */
5175 DECL_IN_AGGR_P (decl) = 0;
5176 /* Do not mark DECL as an explicit specialization if it was not
5177 already marked as an instantiation; a declaration should
5178 never be marked as a specialization unless we know what
5179 template is being specialized. */
5180 if (DECL_LANG_SPECIFIC (decl) && DECL_USE_TEMPLATE (decl))
5182 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
5183 if (TREE_CODE (decl) == FUNCTION_DECL)
5184 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
5185 && DECL_DECLARED_INLINE_P (decl));
5186 else
5187 DECL_COMDAT (decl) = false;
5189 /* [temp.expl.spec] An explicit specialization of a static data
5190 member of a template is a definition if the declaration
5191 includes an initializer; otherwise, it is a declaration.
5193 We check for processing_specialization so this only applies
5194 to the new specialization syntax. */
5195 if (!initialized && processing_specialization)
5196 DECL_EXTERNAL (decl) = 1;
5199 if (DECL_EXTERNAL (decl) && ! DECL_TEMPLATE_SPECIALIZATION (decl)
5200 /* Aliases are definitions. */
5201 && !alias)
5202 permerror (input_location, "declaration of %q#D outside of class is not definition",
5203 decl);
5206 was_public = TREE_PUBLIC (decl);
5208 /* Enter this declaration into the symbol table. Don't push the plain
5209 VAR_DECL for a variable template. */
5210 if (!template_parm_scope_p ()
5211 || !VAR_P (decl))
5212 decl = maybe_push_decl (decl);
5214 if (processing_template_decl)
5215 decl = push_template_decl (decl);
5216 if (decl == error_mark_node)
5217 return error_mark_node;
5219 if (VAR_P (decl)
5220 && DECL_NAMESPACE_SCOPE_P (decl) && !TREE_PUBLIC (decl) && !was_public
5221 && !DECL_THIS_STATIC (decl) && !DECL_ARTIFICIAL (decl))
5223 /* This is a const variable with implicit 'static'. Set
5224 DECL_THIS_STATIC so we can tell it from variables that are
5225 !TREE_PUBLIC because of the anonymous namespace. */
5226 gcc_assert (CP_TYPE_CONST_P (TREE_TYPE (decl)) || errorcount);
5227 DECL_THIS_STATIC (decl) = 1;
5230 if (current_function_decl && VAR_P (decl)
5231 && DECL_DECLARED_CONSTEXPR_P (current_function_decl))
5233 bool ok = false;
5234 if (CP_DECL_THREAD_LOCAL_P (decl))
5235 error ("%qD declared %<thread_local%> in %<constexpr%> function",
5236 decl);
5237 else if (TREE_STATIC (decl))
5238 error ("%qD declared %<static%> in %<constexpr%> function", decl);
5239 else
5240 ok = true;
5241 if (!ok)
5242 cp_function_chain->invalid_constexpr = true;
5245 if (!processing_template_decl && VAR_P (decl))
5246 start_decl_1 (decl, initialized);
5248 return decl;
5251 /* Process the declaration of a variable DECL. INITIALIZED is true
5252 iff DECL is explicitly initialized. (INITIALIZED is false if the
5253 variable is initialized via an implicitly-called constructor.)
5254 This function must be called for ordinary variables (including, for
5255 example, implicit instantiations of templates), but must not be
5256 called for template declarations. */
5258 void
5259 start_decl_1 (tree decl, bool initialized)
5261 tree type;
5262 bool complete_p;
5263 bool aggregate_definition_p;
5265 gcc_assert (!processing_template_decl);
5267 if (error_operand_p (decl))
5268 return;
5270 gcc_assert (VAR_P (decl));
5272 type = TREE_TYPE (decl);
5273 complete_p = COMPLETE_TYPE_P (type);
5274 aggregate_definition_p = MAYBE_CLASS_TYPE_P (type) && !DECL_EXTERNAL (decl);
5276 /* If an explicit initializer is present, or if this is a definition
5277 of an aggregate, then we need a complete type at this point.
5278 (Scalars are always complete types, so there is nothing to
5279 check.) This code just sets COMPLETE_P; errors (if necessary)
5280 are issued below. */
5281 if ((initialized || aggregate_definition_p)
5282 && !complete_p
5283 && COMPLETE_TYPE_P (complete_type (type)))
5285 complete_p = true;
5286 /* We will not yet have set TREE_READONLY on DECL if the type
5287 was "const", but incomplete, before this point. But, now, we
5288 have a complete type, so we can try again. */
5289 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
5292 if (initialized)
5293 /* Is it valid for this decl to have an initializer at all? */
5295 /* Don't allow initializations for incomplete types except for
5296 arrays which might be completed by the initialization. */
5297 if (complete_p)
5298 ; /* A complete type is ok. */
5299 else if (type_uses_auto (type))
5300 ; /* An auto type is ok. */
5301 else if (TREE_CODE (type) != ARRAY_TYPE)
5303 error ("variable %q#D has initializer but incomplete type", decl);
5304 type = TREE_TYPE (decl) = error_mark_node;
5306 else if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (type))))
5308 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
5309 error ("elements of array %q#D have incomplete type", decl);
5310 /* else we already gave an error in start_decl. */
5313 else if (aggregate_definition_p && !complete_p)
5315 if (type_uses_auto (type))
5316 gcc_assert (CLASS_PLACEHOLDER_TEMPLATE (type));
5317 else
5319 error ("aggregate %q#D has incomplete type and cannot be defined",
5320 decl);
5321 /* Change the type so that assemble_variable will give
5322 DECL an rtl we can live with: (mem (const_int 0)). */
5323 type = TREE_TYPE (decl) = error_mark_node;
5327 /* Create a new scope to hold this declaration if necessary.
5328 Whether or not a new scope is necessary cannot be determined
5329 until after the type has been completed; if the type is a
5330 specialization of a class template it is not until after
5331 instantiation has occurred that TYPE_HAS_NONTRIVIAL_DESTRUCTOR
5332 will be set correctly. */
5333 maybe_push_cleanup_level (type);
5336 /* Handle initialization of references. DECL, TYPE, and INIT have the
5337 same meaning as in cp_finish_decl. *CLEANUP must be NULL on entry,
5338 but will be set to a new CLEANUP_STMT if a temporary is created
5339 that must be destroyed subsequently.
5341 Returns an initializer expression to use to initialize DECL, or
5342 NULL if the initialization can be performed statically.
5344 Quotes on semantics can be found in ARM 8.4.3. */
5346 static tree
5347 grok_reference_init (tree decl, tree type, tree init, int flags)
5349 if (init == NULL_TREE)
5351 if ((DECL_LANG_SPECIFIC (decl) == 0
5352 || DECL_IN_AGGR_P (decl) == 0)
5353 && ! DECL_THIS_EXTERN (decl))
5354 error ("%qD declared as reference but not initialized", decl);
5355 return NULL_TREE;
5358 if (TREE_CODE (init) == TREE_LIST)
5359 init = build_x_compound_expr_from_list (init, ELK_INIT,
5360 tf_warning_or_error);
5362 tree ttype = TREE_TYPE (type);
5363 if (TREE_CODE (ttype) != ARRAY_TYPE
5364 && TREE_CODE (TREE_TYPE (init)) == ARRAY_TYPE)
5365 /* Note: default conversion is only called in very special cases. */
5366 init = decay_conversion (init, tf_warning_or_error);
5368 /* check_initializer handles this for non-reference variables, but for
5369 references we need to do it here or the initializer will get the
5370 incomplete array type and confuse later calls to
5371 cp_complete_array_type. */
5372 if (TREE_CODE (ttype) == ARRAY_TYPE
5373 && TYPE_DOMAIN (ttype) == NULL_TREE
5374 && (BRACE_ENCLOSED_INITIALIZER_P (init)
5375 || TREE_CODE (init) == STRING_CST))
5377 cp_complete_array_type (&ttype, init, false);
5378 if (ttype != TREE_TYPE (type))
5379 type = cp_build_reference_type (ttype, TYPE_REF_IS_RVALUE (type));
5382 /* Convert INIT to the reference type TYPE. This may involve the
5383 creation of a temporary, whose lifetime must be the same as that
5384 of the reference. If so, a DECL_EXPR for the temporary will be
5385 added just after the DECL_EXPR for DECL. That's why we don't set
5386 DECL_INITIAL for local references (instead assigning to them
5387 explicitly); we need to allow the temporary to be initialized
5388 first. */
5389 return initialize_reference (type, init, flags,
5390 tf_warning_or_error);
5393 /* Designated initializers in arrays are not supported in GNU C++.
5394 The parser cannot detect this error since it does not know whether
5395 a given brace-enclosed initializer is for a class type or for an
5396 array. This function checks that CE does not use a designated
5397 initializer. If it does, an error is issued. Returns true if CE
5398 is valid, i.e., does not have a designated initializer. */
5400 bool
5401 check_array_designated_initializer (constructor_elt *ce,
5402 unsigned HOST_WIDE_INT index)
5404 /* Designated initializers for array elements are not supported. */
5405 if (ce->index)
5407 /* The parser only allows identifiers as designated
5408 initializers. */
5409 if (ce->index == error_mark_node)
5411 error ("name used in a GNU-style designated "
5412 "initializer for an array");
5413 return false;
5415 else if (identifier_p (ce->index))
5417 error ("name %qD used in a GNU-style designated "
5418 "initializer for an array", ce->index);
5419 return false;
5422 tree ce_index = build_expr_type_conversion (WANT_INT | WANT_ENUM,
5423 ce->index, true);
5424 if (ce_index
5425 && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (ce_index))
5426 && (TREE_CODE (ce_index = fold_non_dependent_expr (ce_index))
5427 == INTEGER_CST))
5429 /* A C99 designator is OK if it matches the current index. */
5430 if (wi::to_wide (ce_index) == index)
5432 ce->index = ce_index;
5433 return true;
5435 else
5436 sorry ("non-trivial designated initializers not supported");
5438 else
5439 error ("C99 designator %qE is not an integral constant-expression",
5440 ce->index);
5442 return false;
5445 return true;
5448 /* When parsing `int a[] = {1, 2};' we don't know the size of the
5449 array until we finish parsing the initializer. If that's the
5450 situation we're in, update DECL accordingly. */
5452 static void
5453 maybe_deduce_size_from_array_init (tree decl, tree init)
5455 tree type = TREE_TYPE (decl);
5457 if (TREE_CODE (type) == ARRAY_TYPE
5458 && TYPE_DOMAIN (type) == NULL_TREE
5459 && TREE_CODE (decl) != TYPE_DECL)
5461 /* do_default is really a C-ism to deal with tentative definitions.
5462 But let's leave it here to ease the eventual merge. */
5463 int do_default = !DECL_EXTERNAL (decl);
5464 tree initializer = init ? init : DECL_INITIAL (decl);
5465 int failure = 0;
5467 /* Check that there are no designated initializers in INIT, as
5468 those are not supported in GNU C++, and as the middle-end
5469 will crash if presented with a non-numeric designated
5470 initializer. */
5471 if (initializer && BRACE_ENCLOSED_INITIALIZER_P (initializer))
5473 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initializer);
5474 constructor_elt *ce;
5475 HOST_WIDE_INT i;
5476 FOR_EACH_VEC_SAFE_ELT (v, i, ce)
5478 if (instantiation_dependent_expression_p (ce->index))
5479 return;
5480 if (!check_array_designated_initializer (ce, i))
5481 failure = 1;
5485 if (failure)
5486 TREE_TYPE (decl) = error_mark_node;
5487 else
5489 failure = cp_complete_array_type (&TREE_TYPE (decl), initializer,
5490 do_default);
5491 if (failure == 1)
5493 error_at (cp_expr_loc_or_loc (initializer,
5494 DECL_SOURCE_LOCATION (decl)),
5495 "initializer fails to determine size of %qD", decl);
5497 else if (failure == 2)
5499 if (do_default)
5501 error_at (DECL_SOURCE_LOCATION (decl),
5502 "array size missing in %qD", decl);
5504 /* If a `static' var's size isn't known, make it extern as
5505 well as static, so it does not get allocated. If it's not
5506 `static', then don't mark it extern; finish_incomplete_decl
5507 will give it a default size and it will get allocated. */
5508 else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
5509 DECL_EXTERNAL (decl) = 1;
5511 else if (failure == 3)
5513 error_at (DECL_SOURCE_LOCATION (decl),
5514 "zero-size array %qD", decl);
5518 cp_apply_type_quals_to_decl (cp_type_quals (TREE_TYPE (decl)), decl);
5520 relayout_decl (decl);
5524 /* Set DECL_SIZE, DECL_ALIGN, etc. for DECL (a VAR_DECL), and issue
5525 any appropriate error messages regarding the layout. */
5527 static void
5528 layout_var_decl (tree decl)
5530 tree type;
5532 type = TREE_TYPE (decl);
5533 if (type == error_mark_node)
5534 return;
5536 /* If we haven't already laid out this declaration, do so now.
5537 Note that we must not call complete type for an external object
5538 because it's type might involve templates that we are not
5539 supposed to instantiate yet. (And it's perfectly valid to say
5540 `extern X x' for some incomplete type `X'.) */
5541 if (!DECL_EXTERNAL (decl))
5542 complete_type (type);
5543 if (!DECL_SIZE (decl)
5544 && TREE_TYPE (decl) != error_mark_node
5545 && complete_or_array_type_p (type))
5546 layout_decl (decl, 0);
5548 if (!DECL_EXTERNAL (decl) && DECL_SIZE (decl) == NULL_TREE)
5550 /* An automatic variable with an incomplete type: that is an error.
5551 Don't talk about array types here, since we took care of that
5552 message in grokdeclarator. */
5553 error_at (DECL_SOURCE_LOCATION (decl),
5554 "storage size of %qD isn%'t known", decl);
5555 TREE_TYPE (decl) = error_mark_node;
5557 #if 0
5558 /* Keep this code around in case we later want to control debug info
5559 based on whether a type is "used". (jason 1999-11-11) */
5561 else if (!DECL_EXTERNAL (decl) && MAYBE_CLASS_TYPE_P (ttype))
5562 /* Let debugger know it should output info for this type. */
5563 note_debug_info_needed (ttype);
5565 if (TREE_STATIC (decl) && DECL_CLASS_SCOPE_P (decl))
5566 note_debug_info_needed (DECL_CONTEXT (decl));
5567 #endif
5569 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
5570 && DECL_SIZE (decl) != NULL_TREE
5571 && ! TREE_CONSTANT (DECL_SIZE (decl)))
5573 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
5574 constant_expression_warning (DECL_SIZE (decl));
5575 else
5577 error_at (DECL_SOURCE_LOCATION (decl),
5578 "storage size of %qD isn%'t constant", decl);
5579 TREE_TYPE (decl) = error_mark_node;
5584 /* If a local static variable is declared in an inline function, or if
5585 we have a weak definition, we must endeavor to create only one
5586 instance of the variable at link-time. */
5588 void
5589 maybe_commonize_var (tree decl)
5591 /* Don't mess with __FUNCTION__ and similar. */
5592 if (DECL_ARTIFICIAL (decl))
5593 return;
5595 /* Static data in a function with comdat linkage also has comdat
5596 linkage. */
5597 if ((TREE_STATIC (decl)
5598 && DECL_FUNCTION_SCOPE_P (decl)
5599 && vague_linkage_p (DECL_CONTEXT (decl)))
5600 || (TREE_PUBLIC (decl) && DECL_INLINE_VAR_P (decl)))
5602 if (flag_weak)
5604 /* With weak symbols, we simply make the variable COMDAT;
5605 that will cause copies in multiple translations units to
5606 be merged. */
5607 comdat_linkage (decl);
5609 else
5611 if (DECL_INITIAL (decl) == NULL_TREE
5612 || DECL_INITIAL (decl) == error_mark_node)
5614 /* Without weak symbols, we can use COMMON to merge
5615 uninitialized variables. */
5616 TREE_PUBLIC (decl) = 1;
5617 DECL_COMMON (decl) = 1;
5619 else
5621 /* While for initialized variables, we must use internal
5622 linkage -- which means that multiple copies will not
5623 be merged. */
5624 TREE_PUBLIC (decl) = 0;
5625 DECL_COMMON (decl) = 0;
5626 const char *msg;
5627 if (DECL_INLINE_VAR_P (decl))
5628 msg = G_("sorry: semantics of inline variable "
5629 "%q#D are wrong (you%'ll wind up with "
5630 "multiple copies)");
5631 else
5632 msg = G_("sorry: semantics of inline function "
5633 "static data %q#D are wrong (you%'ll wind "
5634 "up with multiple copies)");
5635 if (warning_at (DECL_SOURCE_LOCATION (decl), 0,
5636 msg, decl))
5637 inform (DECL_SOURCE_LOCATION (decl),
5638 "you can work around this by removing the initializer");
5644 /* Issue an error message if DECL is an uninitialized const variable.
5645 CONSTEXPR_CONTEXT_P is true when the function is called in a constexpr
5646 context from potential_constant_expression. Returns true if all is well,
5647 false otherwise. */
5649 bool
5650 check_for_uninitialized_const_var (tree decl, bool constexpr_context_p,
5651 tsubst_flags_t complain)
5653 tree type = strip_array_types (TREE_TYPE (decl));
5655 /* ``Unless explicitly declared extern, a const object does not have
5656 external linkage and must be initialized. ($8.4; $12.1)'' ARM
5657 7.1.6 */
5658 if (VAR_P (decl)
5659 && !TYPE_REF_P (type)
5660 && (constexpr_context_p
5661 || CP_TYPE_CONST_P (type) || var_in_constexpr_fn (decl))
5662 && !DECL_NONTRIVIALLY_INITIALIZED_P (decl))
5664 tree field = default_init_uninitialized_part (type);
5665 if (!field)
5666 return true;
5668 if (!constexpr_context_p)
5670 if (CP_TYPE_CONST_P (type))
5672 if (complain & tf_error)
5673 permerror (DECL_SOURCE_LOCATION (decl),
5674 "uninitialized const %qD", decl);
5676 else
5678 if (!is_instantiation_of_constexpr (current_function_decl)
5679 && (complain & tf_error))
5680 error_at (DECL_SOURCE_LOCATION (decl),
5681 "uninitialized variable %qD in %<constexpr%> "
5682 "function", decl);
5683 cp_function_chain->invalid_constexpr = true;
5686 else if (complain & tf_error)
5687 error_at (DECL_SOURCE_LOCATION (decl),
5688 "uninitialized variable %qD in %<constexpr%> context",
5689 decl);
5691 if (CLASS_TYPE_P (type) && (complain & tf_error))
5693 tree defaulted_ctor;
5695 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)),
5696 "%q#T has no user-provided default constructor", type);
5697 defaulted_ctor = in_class_defaulted_default_constructor (type);
5698 if (defaulted_ctor)
5699 inform (DECL_SOURCE_LOCATION (defaulted_ctor),
5700 "constructor is not user-provided because it is "
5701 "explicitly defaulted in the class body");
5702 inform (DECL_SOURCE_LOCATION (field),
5703 "and the implicitly-defined constructor does not "
5704 "initialize %q#D", field);
5707 return false;
5710 return true;
5713 /* Structure holding the current initializer being processed by reshape_init.
5714 CUR is a pointer to the current element being processed, END is a pointer
5715 after the last element present in the initializer. */
5716 struct reshape_iter
5718 constructor_elt *cur;
5719 constructor_elt *end;
5722 static tree reshape_init_r (tree, reshape_iter *, bool, tsubst_flags_t);
5724 /* FIELD is a FIELD_DECL or NULL. In the former case, the value
5725 returned is the next FIELD_DECL (possibly FIELD itself) that can be
5726 initialized. If there are no more such fields, the return value
5727 will be NULL. */
5729 tree
5730 next_initializable_field (tree field)
5732 while (field
5733 && (TREE_CODE (field) != FIELD_DECL
5734 || DECL_UNNAMED_BIT_FIELD (field)
5735 || (DECL_ARTIFICIAL (field)
5736 && !(cxx_dialect >= cxx17 && DECL_FIELD_IS_BASE (field)))))
5737 field = DECL_CHAIN (field);
5739 return field;
5742 /* Return true for [dcl.init.list] direct-list-initialization from
5743 single element of enumeration with a fixed underlying type. */
5745 bool
5746 is_direct_enum_init (tree type, tree init)
5748 if (cxx_dialect >= cxx17
5749 && TREE_CODE (type) == ENUMERAL_TYPE
5750 && ENUM_FIXED_UNDERLYING_TYPE_P (type)
5751 && TREE_CODE (init) == CONSTRUCTOR
5752 && CONSTRUCTOR_IS_DIRECT_INIT (init)
5753 && CONSTRUCTOR_NELTS (init) == 1)
5754 return true;
5755 return false;
5758 /* Subroutine of reshape_init_array and reshape_init_vector, which does
5759 the actual work. ELT_TYPE is the element type of the array. MAX_INDEX is an
5760 INTEGER_CST representing the size of the array minus one (the maximum index),
5761 or NULL_TREE if the array was declared without specifying the size. D is
5762 the iterator within the constructor. */
5764 static tree
5765 reshape_init_array_1 (tree elt_type, tree max_index, reshape_iter *d,
5766 tsubst_flags_t complain)
5768 tree new_init;
5769 bool sized_array_p = (max_index && TREE_CONSTANT (max_index));
5770 unsigned HOST_WIDE_INT max_index_cst = 0;
5771 unsigned HOST_WIDE_INT index;
5773 /* The initializer for an array is always a CONSTRUCTOR. */
5774 new_init = build_constructor (init_list_type_node, NULL);
5776 if (sized_array_p)
5778 /* Minus 1 is used for zero sized arrays. */
5779 if (integer_all_onesp (max_index))
5780 return new_init;
5782 if (tree_fits_uhwi_p (max_index))
5783 max_index_cst = tree_to_uhwi (max_index);
5784 /* sizetype is sign extended, not zero extended. */
5785 else
5786 max_index_cst = tree_to_uhwi (fold_convert (size_type_node, max_index));
5789 /* Loop until there are no more initializers. */
5790 for (index = 0;
5791 d->cur != d->end && (!sized_array_p || index <= max_index_cst);
5792 ++index)
5794 tree elt_init;
5795 constructor_elt *old_cur = d->cur;
5797 check_array_designated_initializer (d->cur, index);
5798 elt_init = reshape_init_r (elt_type, d, /*first_initializer_p=*/false,
5799 complain);
5800 if (elt_init == error_mark_node)
5801 return error_mark_node;
5802 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init),
5803 size_int (index), elt_init);
5804 if (!TREE_CONSTANT (elt_init))
5805 TREE_CONSTANT (new_init) = false;
5807 /* This can happen with an invalid initializer (c++/54501). */
5808 if (d->cur == old_cur && !sized_array_p)
5809 break;
5812 return new_init;
5815 /* Subroutine of reshape_init_r, processes the initializers for arrays.
5816 Parameters are the same of reshape_init_r. */
5818 static tree
5819 reshape_init_array (tree type, reshape_iter *d, tsubst_flags_t complain)
5821 tree max_index = NULL_TREE;
5823 gcc_assert (TREE_CODE (type) == ARRAY_TYPE);
5825 if (TYPE_DOMAIN (type))
5826 max_index = array_type_nelts (type);
5828 return reshape_init_array_1 (TREE_TYPE (type), max_index, d, complain);
5831 /* Subroutine of reshape_init_r, processes the initializers for vectors.
5832 Parameters are the same of reshape_init_r. */
5834 static tree
5835 reshape_init_vector (tree type, reshape_iter *d, tsubst_flags_t complain)
5837 tree max_index = NULL_TREE;
5839 gcc_assert (VECTOR_TYPE_P (type));
5841 if (COMPOUND_LITERAL_P (d->cur->value))
5843 tree value = d->cur->value;
5844 if (!same_type_p (TREE_TYPE (value), type))
5846 if (complain & tf_error)
5847 error ("invalid type %qT as initializer for a vector of type %qT",
5848 TREE_TYPE (d->cur->value), type);
5849 value = error_mark_node;
5851 ++d->cur;
5852 return value;
5855 /* For a vector, we initialize it as an array of the appropriate size. */
5856 if (VECTOR_TYPE_P (type))
5857 max_index = size_int (TYPE_VECTOR_SUBPARTS (type) - 1);
5859 return reshape_init_array_1 (TREE_TYPE (type), max_index, d, complain);
5862 /* Subroutine of reshape_init_r, processes the initializers for classes
5863 or union. Parameters are the same of reshape_init_r. */
5865 static tree
5866 reshape_init_class (tree type, reshape_iter *d, bool first_initializer_p,
5867 tsubst_flags_t complain)
5869 tree field;
5870 tree new_init;
5872 gcc_assert (CLASS_TYPE_P (type));
5874 /* The initializer for a class is always a CONSTRUCTOR. */
5875 new_init = build_constructor (init_list_type_node, NULL);
5876 field = next_initializable_field (TYPE_FIELDS (type));
5878 if (!field)
5880 /* [dcl.init.aggr]
5882 An initializer for an aggregate member that is an
5883 empty class shall have the form of an empty
5884 initializer-list {}. */
5885 if (!first_initializer_p)
5887 if (complain & tf_error)
5888 error ("initializer for %qT must be brace-enclosed", type);
5889 return error_mark_node;
5891 return new_init;
5894 /* Loop through the initializable fields, gathering initializers. */
5895 while (d->cur != d->end)
5897 tree field_init;
5898 constructor_elt *old_cur = d->cur;
5900 /* Handle designated initializers, as an extension. */
5901 if (d->cur->index)
5903 if (d->cur->index == error_mark_node)
5904 return error_mark_node;
5906 if (TREE_CODE (d->cur->index) == FIELD_DECL)
5908 /* We already reshaped this. */
5909 if (field != d->cur->index)
5911 tree id = DECL_NAME (d->cur->index);
5912 gcc_assert (id);
5913 gcc_checking_assert (d->cur->index
5914 == get_class_binding (type, id, false));
5915 field = d->cur->index;
5918 else if (TREE_CODE (d->cur->index) == IDENTIFIER_NODE)
5919 field = get_class_binding (type, d->cur->index, false);
5920 else
5922 if (complain & tf_error)
5923 error ("%<[%E] =%> used in a GNU-style designated initializer"
5924 " for class %qT", d->cur->index, type);
5925 return error_mark_node;
5928 if (!field || TREE_CODE (field) != FIELD_DECL)
5930 if (complain & tf_error)
5931 error ("%qT has no non-static data member named %qD", type,
5932 d->cur->index);
5933 return error_mark_node;
5937 /* If we processed all the member of the class, we are done. */
5938 if (!field)
5939 break;
5941 field_init = reshape_init_r (TREE_TYPE (field), d,
5942 /*first_initializer_p=*/false, complain);
5943 if (field_init == error_mark_node)
5944 return error_mark_node;
5946 if (d->cur == old_cur && d->cur->index)
5948 /* This can happen with an invalid initializer for a flexible
5949 array member (c++/54441). */
5950 if (complain & tf_error)
5951 error ("invalid initializer for %q#D", field);
5952 return error_mark_node;
5955 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init), field, field_init);
5957 /* [dcl.init.aggr]
5959 When a union is initialized with a brace-enclosed
5960 initializer, the braces shall only contain an
5961 initializer for the first member of the union. */
5962 if (TREE_CODE (type) == UNION_TYPE)
5963 break;
5965 field = next_initializable_field (DECL_CHAIN (field));
5968 return new_init;
5971 /* Subroutine of reshape_init_r. We're in a context where C99 initializer
5972 designators are not valid; either complain or return true to indicate
5973 that reshape_init_r should return error_mark_node. */
5975 static bool
5976 has_designator_problem (reshape_iter *d, tsubst_flags_t complain)
5978 if (d->cur->index)
5980 if (complain & tf_error)
5981 error ("C99 designator %qE outside aggregate initializer",
5982 d->cur->index);
5983 else
5984 return true;
5986 return false;
5989 /* Subroutine of reshape_init, which processes a single initializer (part of
5990 a CONSTRUCTOR). TYPE is the type of the variable being initialized, D is the
5991 iterator within the CONSTRUCTOR which points to the initializer to process.
5992 FIRST_INITIALIZER_P is true if this is the first initializer of the
5993 outermost CONSTRUCTOR node. */
5995 static tree
5996 reshape_init_r (tree type, reshape_iter *d, bool first_initializer_p,
5997 tsubst_flags_t complain)
5999 tree init = d->cur->value;
6001 if (error_operand_p (init))
6002 return error_mark_node;
6004 if (first_initializer_p && !CP_AGGREGATE_TYPE_P (type)
6005 && has_designator_problem (d, complain))
6006 return error_mark_node;
6008 if (TREE_CODE (type) == COMPLEX_TYPE)
6010 /* A complex type can be initialized from one or two initializers,
6011 but braces are not elided. */
6012 d->cur++;
6013 if (BRACE_ENCLOSED_INITIALIZER_P (init))
6015 if (CONSTRUCTOR_NELTS (init) > 2)
6017 if (complain & tf_error)
6018 error ("too many initializers for %qT", type);
6019 else
6020 return error_mark_node;
6023 else if (first_initializer_p && d->cur != d->end)
6025 vec<constructor_elt, va_gc> *v = 0;
6026 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, init);
6027 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, d->cur->value);
6028 if (has_designator_problem (d, complain))
6029 return error_mark_node;
6030 d->cur++;
6031 init = build_constructor (init_list_type_node, v);
6033 return init;
6036 /* A non-aggregate type is always initialized with a single
6037 initializer. */
6038 if (!CP_AGGREGATE_TYPE_P (type))
6040 /* It is invalid to initialize a non-aggregate type with a
6041 brace-enclosed initializer before C++0x.
6042 We need to check for BRACE_ENCLOSED_INITIALIZER_P here because
6043 of g++.old-deja/g++.mike/p7626.C: a pointer-to-member constant is
6044 a CONSTRUCTOR (with a record type). */
6045 if (TREE_CODE (init) == CONSTRUCTOR
6046 /* Don't complain about a capture-init. */
6047 && !CONSTRUCTOR_IS_DIRECT_INIT (init)
6048 && BRACE_ENCLOSED_INITIALIZER_P (init)) /* p7626.C */
6050 if (SCALAR_TYPE_P (type))
6052 if (cxx_dialect < cxx11
6053 /* Isn't value-initialization. */
6054 || CONSTRUCTOR_NELTS (init) > 0)
6056 if (complain & tf_error)
6057 error ("braces around scalar initializer for type %qT",
6058 type);
6059 init = error_mark_node;
6062 else
6063 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
6066 d->cur++;
6067 return init;
6070 /* "If T is a class type and the initializer list has a single element of
6071 type cv U, where U is T or a class derived from T, the object is
6072 initialized from that element." Even if T is an aggregate. */
6073 if (cxx_dialect >= cxx11 && (CLASS_TYPE_P (type) || VECTOR_TYPE_P (type))
6074 && first_initializer_p
6075 && d->end - d->cur == 1
6076 && reference_related_p (type, TREE_TYPE (init)))
6078 d->cur++;
6079 return init;
6082 /* [dcl.init.aggr]
6084 All implicit type conversions (clause _conv_) are considered when
6085 initializing the aggregate member with an initializer from an
6086 initializer-list. If the initializer can initialize a member,
6087 the member is initialized. Otherwise, if the member is itself a
6088 non-empty subaggregate, brace elision is assumed and the
6089 initializer is considered for the initialization of the first
6090 member of the subaggregate. */
6091 if (TREE_CODE (init) != CONSTRUCTOR
6092 /* But don't try this for the first initializer, since that would be
6093 looking through the outermost braces; A a2 = { a1 }; is not a
6094 valid aggregate initialization. */
6095 && !first_initializer_p
6096 && (same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (init))
6097 || can_convert_arg (type, TREE_TYPE (init), init, LOOKUP_NORMAL,
6098 complain)))
6100 d->cur++;
6101 return init;
6104 /* [dcl.init.string]
6106 A char array (whether plain char, signed char, or unsigned char)
6107 can be initialized by a string-literal (optionally enclosed in
6108 braces); a wchar_t array can be initialized by a wide
6109 string-literal (optionally enclosed in braces). */
6110 if (TREE_CODE (type) == ARRAY_TYPE
6111 && char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (type))))
6113 tree str_init = init;
6115 /* Strip one level of braces if and only if they enclose a single
6116 element (as allowed by [dcl.init.string]). */
6117 if (!first_initializer_p
6118 && TREE_CODE (str_init) == CONSTRUCTOR
6119 && CONSTRUCTOR_NELTS (str_init) == 1)
6121 str_init = (*CONSTRUCTOR_ELTS (str_init))[0].value;
6124 /* If it's a string literal, then it's the initializer for the array
6125 as a whole. Otherwise, continue with normal initialization for
6126 array types (one value per array element). */
6127 if (TREE_CODE (str_init) == STRING_CST)
6129 if (has_designator_problem (d, complain))
6130 return error_mark_node;
6131 d->cur++;
6132 return str_init;
6136 /* The following cases are about aggregates. If we are not within a full
6137 initializer already, and there is not a CONSTRUCTOR, it means that there
6138 is a missing set of braces (that is, we are processing the case for
6139 which reshape_init exists). */
6140 if (!first_initializer_p)
6142 if (TREE_CODE (init) == CONSTRUCTOR)
6144 if (TREE_TYPE (init) && TYPE_PTRMEMFUNC_P (TREE_TYPE (init)))
6145 /* There is no need to reshape pointer-to-member function
6146 initializers, as they are always constructed correctly
6147 by the front end. */
6149 else if (COMPOUND_LITERAL_P (init))
6150 /* For a nested compound literal, there is no need to reshape since
6151 brace elision is not allowed. Even if we decided to allow it,
6152 we should add a call to reshape_init in finish_compound_literal,
6153 before calling digest_init, so changing this code would still
6154 not be necessary. */
6155 gcc_assert (!BRACE_ENCLOSED_INITIALIZER_P (init));
6156 else
6158 ++d->cur;
6159 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
6160 return reshape_init (type, init, complain);
6164 if (complain & tf_warning)
6165 warning (OPT_Wmissing_braces,
6166 "missing braces around initializer for %qT",
6167 type);
6170 /* Dispatch to specialized routines. */
6171 if (CLASS_TYPE_P (type))
6172 return reshape_init_class (type, d, first_initializer_p, complain);
6173 else if (TREE_CODE (type) == ARRAY_TYPE)
6174 return reshape_init_array (type, d, complain);
6175 else if (VECTOR_TYPE_P (type))
6176 return reshape_init_vector (type, d, complain);
6177 else
6178 gcc_unreachable();
6181 /* Undo the brace-elision allowed by [dcl.init.aggr] in a
6182 brace-enclosed aggregate initializer.
6184 INIT is the CONSTRUCTOR containing the list of initializers describing
6185 a brace-enclosed initializer for an entity of the indicated aggregate TYPE.
6186 It may not presently match the shape of the TYPE; for example:
6188 struct S { int a; int b; };
6189 struct S a[] = { 1, 2, 3, 4 };
6191 Here INIT will hold a vector of four elements, rather than a
6192 vector of two elements, each itself a vector of two elements. This
6193 routine transforms INIT from the former form into the latter. The
6194 revised CONSTRUCTOR node is returned. */
6196 tree
6197 reshape_init (tree type, tree init, tsubst_flags_t complain)
6199 vec<constructor_elt, va_gc> *v;
6200 reshape_iter d;
6201 tree new_init;
6203 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
6205 v = CONSTRUCTOR_ELTS (init);
6207 /* An empty constructor does not need reshaping, and it is always a valid
6208 initializer. */
6209 if (vec_safe_is_empty (v))
6210 return init;
6212 /* Handle [dcl.init.list] direct-list-initialization from
6213 single element of enumeration with a fixed underlying type. */
6214 if (is_direct_enum_init (type, init))
6216 tree elt = CONSTRUCTOR_ELT (init, 0)->value;
6217 type = cv_unqualified (type);
6218 if (check_narrowing (ENUM_UNDERLYING_TYPE (type), elt, complain))
6220 warning_sentinel w (warn_useless_cast);
6221 warning_sentinel w2 (warn_ignored_qualifiers);
6222 return cp_build_c_cast (type, elt, tf_warning_or_error);
6224 else
6225 return error_mark_node;
6228 /* Recurse on this CONSTRUCTOR. */
6229 d.cur = &(*v)[0];
6230 d.end = d.cur + v->length ();
6232 new_init = reshape_init_r (type, &d, true, complain);
6233 if (new_init == error_mark_node)
6234 return error_mark_node;
6236 /* Make sure all the element of the constructor were used. Otherwise,
6237 issue an error about exceeding initializers. */
6238 if (d.cur != d.end)
6240 if (complain & tf_error)
6241 error ("too many initializers for %qT", type);
6242 return error_mark_node;
6245 if (CONSTRUCTOR_IS_DIRECT_INIT (init)
6246 && BRACE_ENCLOSED_INITIALIZER_P (new_init))
6247 CONSTRUCTOR_IS_DIRECT_INIT (new_init) = true;
6249 return new_init;
6252 /* Verify array initializer. Returns true if errors have been reported. */
6254 bool
6255 check_array_initializer (tree decl, tree type, tree init)
6257 tree element_type = TREE_TYPE (type);
6259 /* The array type itself need not be complete, because the
6260 initializer may tell us how many elements are in the array.
6261 But, the elements of the array must be complete. */
6262 if (!COMPLETE_TYPE_P (complete_type (element_type)))
6264 if (decl)
6265 error_at (DECL_SOURCE_LOCATION (decl),
6266 "elements of array %q#D have incomplete type", decl);
6267 else
6268 error ("elements of array %q#T have incomplete type", type);
6269 return true;
6271 /* A compound literal can't have variable size. */
6272 if (init && !decl
6273 && ((COMPLETE_TYPE_P (type) && !TREE_CONSTANT (TYPE_SIZE (type)))
6274 || !TREE_CONSTANT (TYPE_SIZE (element_type))))
6276 error ("variable-sized compound literal");
6277 return true;
6279 return false;
6282 /* Subroutine of check_initializer; args are passed down from that function.
6283 Set stmts_are_full_exprs_p to 1 across a call to build_aggr_init. */
6285 static tree
6286 build_aggr_init_full_exprs (tree decl, tree init, int flags)
6289 gcc_assert (stmts_are_full_exprs_p ());
6290 return build_aggr_init (decl, init, flags, tf_warning_or_error);
6293 /* Verify INIT (the initializer for DECL), and record the
6294 initialization in DECL_INITIAL, if appropriate. CLEANUP is as for
6295 grok_reference_init.
6297 If the return value is non-NULL, it is an expression that must be
6298 evaluated dynamically to initialize DECL. */
6300 static tree
6301 check_initializer (tree decl, tree init, int flags, vec<tree, va_gc> **cleanups)
6303 tree type = TREE_TYPE (decl);
6304 tree init_code = NULL;
6305 tree core_type;
6307 /* Things that are going to be initialized need to have complete
6308 type. */
6309 TREE_TYPE (decl) = type = complete_type (TREE_TYPE (decl));
6311 if (DECL_HAS_VALUE_EXPR_P (decl))
6313 /* A variable with DECL_HAS_VALUE_EXPR_P set is just a placeholder,
6314 it doesn't have storage to be initialized. */
6315 gcc_assert (init == NULL_TREE);
6316 return NULL_TREE;
6319 if (type == error_mark_node)
6320 /* We will have already complained. */
6321 return NULL_TREE;
6323 if (TREE_CODE (type) == ARRAY_TYPE)
6325 if (check_array_initializer (decl, type, init))
6326 return NULL_TREE;
6328 else if (!COMPLETE_TYPE_P (type))
6330 error_at (DECL_SOURCE_LOCATION (decl),
6331 "%q#D has incomplete type", decl);
6332 TREE_TYPE (decl) = error_mark_node;
6333 return NULL_TREE;
6335 else
6336 /* There is no way to make a variable-sized class type in GNU C++. */
6337 gcc_assert (TREE_CONSTANT (TYPE_SIZE (type)));
6339 if (init && BRACE_ENCLOSED_INITIALIZER_P (init))
6341 int init_len = CONSTRUCTOR_NELTS (init);
6342 if (SCALAR_TYPE_P (type))
6344 if (init_len == 0)
6346 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
6347 init = build_zero_init (type, NULL_TREE, false);
6349 else if (init_len != 1 && TREE_CODE (type) != COMPLEX_TYPE)
6351 error_at (cp_expr_loc_or_loc (init, DECL_SOURCE_LOCATION (decl)),
6352 "scalar object %qD requires one element in "
6353 "initializer", decl);
6354 TREE_TYPE (decl) = error_mark_node;
6355 return NULL_TREE;
6360 if (TREE_CODE (decl) == CONST_DECL)
6362 gcc_assert (!TYPE_REF_P (type));
6364 DECL_INITIAL (decl) = init;
6366 gcc_assert (init != NULL_TREE);
6367 init = NULL_TREE;
6369 else if (!init && DECL_REALLY_EXTERN (decl))
6371 else if (init || type_build_ctor_call (type)
6372 || TYPE_REF_P (type))
6374 if (TYPE_REF_P (type))
6376 init = grok_reference_init (decl, type, init, flags);
6377 flags |= LOOKUP_ALREADY_DIGESTED;
6379 else if (!init)
6380 check_for_uninitialized_const_var (decl, /*constexpr_context_p=*/false,
6381 tf_warning_or_error);
6382 /* Do not reshape constructors of vectors (they don't need to be
6383 reshaped. */
6384 else if (BRACE_ENCLOSED_INITIALIZER_P (init))
6386 if (is_std_init_list (type))
6388 init = perform_implicit_conversion (type, init,
6389 tf_warning_or_error);
6390 flags |= LOOKUP_ALREADY_DIGESTED;
6392 else if (TYPE_NON_AGGREGATE_CLASS (type))
6394 /* Don't reshape if the class has constructors. */
6395 if (cxx_dialect == cxx98)
6396 error_at (cp_expr_loc_or_loc (init, DECL_SOURCE_LOCATION (decl)),
6397 "in C++98 %qD must be initialized by "
6398 "constructor, not by %<{...}%>",
6399 decl);
6401 else if (VECTOR_TYPE_P (type) && TYPE_VECTOR_OPAQUE (type))
6403 error ("opaque vector types cannot be initialized");
6404 init = error_mark_node;
6406 else
6408 init = reshape_init (type, init, tf_warning_or_error);
6409 flags |= LOOKUP_NO_NARROWING;
6412 else if (TREE_CODE (init) == TREE_LIST
6413 && TREE_TYPE (init) != unknown_type_node
6414 && !MAYBE_CLASS_TYPE_P (type))
6416 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
6418 /* We get here with code like `int a (2);' */
6419 init = build_x_compound_expr_from_list (init, ELK_INIT,
6420 tf_warning_or_error);
6423 /* If DECL has an array type without a specific bound, deduce the
6424 array size from the initializer. */
6425 maybe_deduce_size_from_array_init (decl, init);
6426 type = TREE_TYPE (decl);
6427 if (type == error_mark_node)
6428 return NULL_TREE;
6430 if (((type_build_ctor_call (type) || CLASS_TYPE_P (type))
6431 && !(flags & LOOKUP_ALREADY_DIGESTED)
6432 && !(init && BRACE_ENCLOSED_INITIALIZER_P (init)
6433 && CP_AGGREGATE_TYPE_P (type)
6434 && (CLASS_TYPE_P (type)
6435 || !TYPE_NEEDS_CONSTRUCTING (type)
6436 || type_has_extended_temps (type))))
6437 || (DECL_DECOMPOSITION_P (decl) && TREE_CODE (type) == ARRAY_TYPE))
6439 init_code = build_aggr_init_full_exprs (decl, init, flags);
6441 /* A constructor call is a non-trivial initializer even if
6442 it isn't explicitly written. */
6443 if (TREE_SIDE_EFFECTS (init_code))
6444 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = true;
6446 /* If this is a constexpr initializer, expand_default_init will
6447 have returned an INIT_EXPR rather than a CALL_EXPR. In that
6448 case, pull the initializer back out and pass it down into
6449 store_init_value. */
6450 while (TREE_CODE (init_code) == EXPR_STMT
6451 || TREE_CODE (init_code) == CONVERT_EXPR)
6452 init_code = TREE_OPERAND (init_code, 0);
6453 if (TREE_CODE (init_code) == INIT_EXPR)
6455 init = TREE_OPERAND (init_code, 1);
6456 init_code = NULL_TREE;
6457 /* Don't call digest_init; it's unnecessary and will complain
6458 about aggregate initialization of non-aggregate classes. */
6459 flags |= LOOKUP_ALREADY_DIGESTED;
6461 else if (DECL_DECLARED_CONSTEXPR_P (decl))
6463 /* Declared constexpr, but no suitable initializer; massage
6464 init appropriately so we can pass it into store_init_value
6465 for the error. */
6466 if (CLASS_TYPE_P (type)
6467 && (!init || TREE_CODE (init) == TREE_LIST))
6469 init = build_functional_cast (type, init, tf_none);
6470 if (TREE_CODE (init) == TARGET_EXPR)
6471 TARGET_EXPR_DIRECT_INIT_P (init) = true;
6473 init_code = NULL_TREE;
6475 else
6476 init = NULL_TREE;
6479 if (init && TREE_CODE (init) != TREE_VEC)
6481 /* In aggregate initialization of a variable, each element
6482 initialization is a full-expression because there is no
6483 enclosing expression. */
6484 gcc_assert (stmts_are_full_exprs_p ());
6486 init_code = store_init_value (decl, init, cleanups, flags);
6488 if (DECL_INITIAL (decl)
6489 && TREE_CODE (DECL_INITIAL (decl)) == CONSTRUCTOR
6490 && !vec_safe_is_empty (CONSTRUCTOR_ELTS (DECL_INITIAL (decl))))
6492 tree elt = CONSTRUCTOR_ELTS (DECL_INITIAL (decl))->last ().value;
6493 if (TREE_CODE (TREE_TYPE (elt)) == ARRAY_TYPE
6494 && TYPE_SIZE (TREE_TYPE (elt)) == NULL_TREE)
6495 cp_complete_array_type (&TREE_TYPE (elt), elt, false);
6498 if (pedantic && TREE_CODE (type) == ARRAY_TYPE
6499 && DECL_INITIAL (decl)
6500 && TREE_CODE (DECL_INITIAL (decl)) == STRING_CST
6501 && PAREN_STRING_LITERAL_P (DECL_INITIAL (decl)))
6502 warning_at (cp_expr_loc_or_loc (DECL_INITIAL (decl),
6503 DECL_SOURCE_LOCATION (decl)),
6504 0, "array %qD initialized by parenthesized "
6505 "string literal %qE",
6506 decl, DECL_INITIAL (decl));
6507 init = NULL;
6510 else
6512 if (CLASS_TYPE_P (core_type = strip_array_types (type))
6513 && (CLASSTYPE_READONLY_FIELDS_NEED_INIT (core_type)
6514 || CLASSTYPE_REF_FIELDS_NEED_INIT (core_type)))
6515 diagnose_uninitialized_cst_or_ref_member (core_type, /*using_new=*/false,
6516 /*complain=*/true);
6518 check_for_uninitialized_const_var (decl, /*constexpr_context_p=*/false,
6519 tf_warning_or_error);
6522 if (init && init != error_mark_node)
6523 init_code = build2 (INIT_EXPR, type, decl, init);
6525 if (init_code)
6527 /* We might have set these in cp_finish_decl. */
6528 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = false;
6529 TREE_CONSTANT (decl) = false;
6532 if (init_code
6533 && (DECL_IN_AGGR_P (decl)
6534 && DECL_INITIALIZED_IN_CLASS_P (decl)
6535 && !DECL_VAR_DECLARED_INLINE_P (decl)))
6537 static int explained = 0;
6539 if (cxx_dialect < cxx11)
6540 error ("initializer invalid for static member with constructor");
6541 else if (cxx_dialect < cxx17)
6542 error ("non-constant in-class initialization invalid for static "
6543 "member %qD", decl);
6544 else
6545 error ("non-constant in-class initialization invalid for non-inline "
6546 "static member %qD", decl);
6547 if (!explained)
6549 inform (input_location,
6550 "(an out of class initialization is required)");
6551 explained = 1;
6553 return NULL_TREE;
6556 return init_code;
6559 /* If DECL is not a local variable, give it RTL. */
6561 static void
6562 make_rtl_for_nonlocal_decl (tree decl, tree init, const char* asmspec)
6564 int toplev = toplevel_bindings_p ();
6565 int defer_p;
6567 /* Set the DECL_ASSEMBLER_NAME for the object. */
6568 if (asmspec)
6570 /* The `register' keyword, when used together with an
6571 asm-specification, indicates that the variable should be
6572 placed in a particular register. */
6573 if (VAR_P (decl) && DECL_REGISTER (decl))
6575 set_user_assembler_name (decl, asmspec);
6576 DECL_HARD_REGISTER (decl) = 1;
6578 else
6580 if (TREE_CODE (decl) == FUNCTION_DECL
6581 && fndecl_built_in_p (decl, BUILT_IN_NORMAL))
6582 set_builtin_user_assembler_name (decl, asmspec);
6583 set_user_assembler_name (decl, asmspec);
6587 /* Handle non-variables up front. */
6588 if (!VAR_P (decl))
6590 rest_of_decl_compilation (decl, toplev, at_eof);
6591 return;
6594 /* If we see a class member here, it should be a static data
6595 member. */
6596 if (DECL_LANG_SPECIFIC (decl) && DECL_IN_AGGR_P (decl))
6598 gcc_assert (TREE_STATIC (decl));
6599 /* An in-class declaration of a static data member should be
6600 external; it is only a declaration, and not a definition. */
6601 if (init == NULL_TREE)
6602 gcc_assert (DECL_EXTERNAL (decl)
6603 || !TREE_PUBLIC (decl)
6604 || DECL_INLINE_VAR_P (decl));
6607 /* We don't create any RTL for local variables. */
6608 if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
6609 return;
6611 /* We defer emission of local statics until the corresponding
6612 DECL_EXPR is expanded. But with constexpr its function might never
6613 be expanded, so go ahead and tell cgraph about the variable now. */
6614 defer_p = ((DECL_FUNCTION_SCOPE_P (decl)
6615 && !var_in_maybe_constexpr_fn (decl))
6616 || DECL_VIRTUAL_P (decl));
6618 /* Defer template instantiations. */
6619 if (DECL_LANG_SPECIFIC (decl)
6620 && DECL_IMPLICIT_INSTANTIATION (decl))
6621 defer_p = 1;
6623 /* If we're not deferring, go ahead and assemble the variable. */
6624 if (!defer_p)
6625 rest_of_decl_compilation (decl, toplev, at_eof);
6628 /* walk_tree helper for wrap_temporary_cleanups, below. */
6630 static tree
6631 wrap_cleanups_r (tree *stmt_p, int *walk_subtrees, void *data)
6633 /* Stop at types or full-expression boundaries. */
6634 if (TYPE_P (*stmt_p)
6635 || TREE_CODE (*stmt_p) == CLEANUP_POINT_EXPR)
6637 *walk_subtrees = 0;
6638 return NULL_TREE;
6641 if (TREE_CODE (*stmt_p) == TARGET_EXPR)
6643 tree guard = (tree)data;
6644 tree tcleanup = TARGET_EXPR_CLEANUP (*stmt_p);
6646 tcleanup = build2 (TRY_CATCH_EXPR, void_type_node, tcleanup, guard);
6647 /* Tell honor_protect_cleanup_actions to handle this as a separate
6648 cleanup. */
6649 TRY_CATCH_IS_CLEANUP (tcleanup) = 1;
6651 TARGET_EXPR_CLEANUP (*stmt_p) = tcleanup;
6654 return NULL_TREE;
6657 /* We're initializing a local variable which has a cleanup GUARD. If there
6658 are any temporaries used in the initializer INIT of this variable, we
6659 need to wrap their cleanups with TRY_CATCH_EXPR (, GUARD) so that the
6660 variable will be cleaned up properly if one of them throws.
6662 Unfortunately, there's no way to express this properly in terms of
6663 nesting, as the regions for the temporaries overlap the region for the
6664 variable itself; if there are two temporaries, the variable needs to be
6665 the first thing destroyed if either of them throws. However, we only
6666 want to run the variable's cleanup if it actually got constructed. So
6667 we need to guard the temporary cleanups with the variable's cleanup if
6668 they are run on the normal path, but not if they are run on the
6669 exceptional path. We implement this by telling
6670 honor_protect_cleanup_actions to strip the variable cleanup from the
6671 exceptional path. */
6673 static void
6674 wrap_temporary_cleanups (tree init, tree guard)
6676 cp_walk_tree_without_duplicates (&init, wrap_cleanups_r, (void *)guard);
6679 /* Generate code to initialize DECL (a local variable). */
6681 static void
6682 initialize_local_var (tree decl, tree init)
6684 tree type = TREE_TYPE (decl);
6685 tree cleanup;
6686 int already_used;
6688 gcc_assert (VAR_P (decl)
6689 || TREE_CODE (decl) == RESULT_DECL);
6690 gcc_assert (!TREE_STATIC (decl));
6692 if (DECL_SIZE (decl) == NULL_TREE)
6694 /* If we used it already as memory, it must stay in memory. */
6695 DECL_INITIAL (decl) = NULL_TREE;
6696 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
6697 return;
6700 if (type == error_mark_node)
6701 return;
6703 /* Compute and store the initial value. */
6704 already_used = TREE_USED (decl) || TREE_USED (type);
6705 if (TREE_USED (type))
6706 DECL_READ_P (decl) = 1;
6708 /* Generate a cleanup, if necessary. */
6709 cleanup = cxx_maybe_build_cleanup (decl, tf_warning_or_error);
6711 /* Perform the initialization. */
6712 if (init)
6714 tree rinit = (TREE_CODE (init) == INIT_EXPR
6715 ? TREE_OPERAND (init, 1) : NULL_TREE);
6716 if (rinit && !TREE_SIDE_EFFECTS (rinit))
6718 /* Stick simple initializers in DECL_INITIAL so that
6719 -Wno-init-self works (c++/34772). */
6720 gcc_assert (TREE_OPERAND (init, 0) == decl);
6721 DECL_INITIAL (decl) = rinit;
6723 if (warn_init_self && TYPE_REF_P (type))
6725 STRIP_NOPS (rinit);
6726 if (rinit == decl)
6727 warning_at (DECL_SOURCE_LOCATION (decl),
6728 OPT_Winit_self,
6729 "reference %qD is initialized with itself", decl);
6732 else
6734 int saved_stmts_are_full_exprs_p;
6736 /* If we're only initializing a single object, guard the
6737 destructors of any temporaries used in its initializer with
6738 its destructor. This isn't right for arrays because each
6739 element initialization is a full-expression. */
6740 if (cleanup && TREE_CODE (type) != ARRAY_TYPE)
6741 wrap_temporary_cleanups (init, cleanup);
6743 gcc_assert (building_stmt_list_p ());
6744 saved_stmts_are_full_exprs_p = stmts_are_full_exprs_p ();
6745 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
6746 finish_expr_stmt (init);
6747 current_stmt_tree ()->stmts_are_full_exprs_p =
6748 saved_stmts_are_full_exprs_p;
6752 /* Set this to 0 so we can tell whether an aggregate which was
6753 initialized was ever used. Don't do this if it has a
6754 destructor, so we don't complain about the 'resource
6755 allocation is initialization' idiom. Now set
6756 attribute((unused)) on types so decls of that type will be
6757 marked used. (see TREE_USED, above.) */
6758 if (TYPE_NEEDS_CONSTRUCTING (type)
6759 && ! already_used
6760 && TYPE_HAS_TRIVIAL_DESTRUCTOR (type)
6761 && DECL_NAME (decl))
6762 TREE_USED (decl) = 0;
6763 else if (already_used)
6764 TREE_USED (decl) = 1;
6766 if (cleanup)
6767 finish_decl_cleanup (decl, cleanup);
6770 /* DECL is a VAR_DECL for a compiler-generated variable with static
6771 storage duration (like a virtual table) whose initializer is a
6772 compile-time constant. Initialize the variable and provide it to the
6773 back end. */
6775 void
6776 initialize_artificial_var (tree decl, vec<constructor_elt, va_gc> *v)
6778 tree init;
6779 gcc_assert (DECL_ARTIFICIAL (decl));
6780 init = build_constructor (TREE_TYPE (decl), v);
6781 gcc_assert (TREE_CODE (init) == CONSTRUCTOR);
6782 DECL_INITIAL (decl) = init;
6783 DECL_INITIALIZED_P (decl) = 1;
6784 /* Mark the decl as constexpr so that we can access its content
6785 at compile time. */
6786 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = true;
6787 DECL_DECLARED_CONSTEXPR_P (decl) = true;
6788 determine_visibility (decl);
6789 layout_var_decl (decl);
6790 maybe_commonize_var (decl);
6791 make_rtl_for_nonlocal_decl (decl, init, /*asmspec=*/NULL);
6794 /* INIT is the initializer for a variable, as represented by the
6795 parser. Returns true iff INIT is value-dependent. */
6797 static bool
6798 value_dependent_init_p (tree init)
6800 if (TREE_CODE (init) == TREE_LIST)
6801 /* A parenthesized initializer, e.g.: int i (3, 2); ? */
6802 return any_value_dependent_elements_p (init);
6803 else if (TREE_CODE (init) == CONSTRUCTOR)
6804 /* A brace-enclosed initializer, e.g.: int i = { 3 }; ? */
6806 if (dependent_type_p (TREE_TYPE (init)))
6807 return true;
6809 vec<constructor_elt, va_gc> *elts;
6810 size_t nelts;
6811 size_t i;
6813 elts = CONSTRUCTOR_ELTS (init);
6814 nelts = vec_safe_length (elts);
6815 for (i = 0; i < nelts; ++i)
6816 if (value_dependent_init_p ((*elts)[i].value))
6817 return true;
6819 else
6820 /* It must be a simple expression, e.g., int i = 3; */
6821 return value_dependent_expression_p (init);
6823 return false;
6826 // Returns true if a DECL is VAR_DECL with the concept specifier.
6827 static inline bool
6828 is_concept_var (tree decl)
6830 return (VAR_P (decl)
6831 // Not all variables have DECL_LANG_SPECIFIC.
6832 && DECL_LANG_SPECIFIC (decl)
6833 && DECL_DECLARED_CONCEPT_P (decl));
6836 /* A helper function to be called via walk_tree. If any label exists
6837 under *TP, it is (going to be) forced. Set has_forced_label_in_static. */
6839 static tree
6840 notice_forced_label_r (tree *tp, int *walk_subtrees, void *)
6842 if (TYPE_P (*tp))
6843 *walk_subtrees = 0;
6844 if (TREE_CODE (*tp) == LABEL_DECL)
6845 cfun->has_forced_label_in_static = 1;
6846 return NULL_TREE;
6849 /* Finish processing of a declaration;
6850 install its line number and initial value.
6851 If the length of an array type is not known before,
6852 it must be determined now, from the initial value, or it is an error.
6854 INIT is the initializer (if any) for DECL. If INIT_CONST_EXPR_P is
6855 true, then INIT is an integral constant expression.
6857 FLAGS is LOOKUP_ONLYCONVERTING if the = init syntax was used, else 0
6858 if the (init) syntax was used. */
6860 void
6861 cp_finish_decl (tree decl, tree init, bool init_const_expr_p,
6862 tree asmspec_tree, int flags)
6864 tree type;
6865 vec<tree, va_gc> *cleanups = NULL;
6866 const char *asmspec = NULL;
6867 int was_readonly = 0;
6868 bool var_definition_p = false;
6869 tree auto_node;
6871 if (decl == error_mark_node)
6872 return;
6873 else if (! decl)
6875 if (init)
6876 error ("assignment (not initialization) in declaration");
6877 return;
6880 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
6881 /* Parameters are handled by store_parm_decls, not cp_finish_decl. */
6882 gcc_assert (TREE_CODE (decl) != PARM_DECL);
6884 type = TREE_TYPE (decl);
6885 if (type == error_mark_node)
6886 return;
6888 /* Warn about register storage specifiers except when in GNU global
6889 or local register variable extension. */
6890 if (VAR_P (decl) && DECL_REGISTER (decl) && asmspec_tree == NULL_TREE)
6892 if (cxx_dialect >= cxx17)
6893 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
6894 "ISO C++17 does not allow %<register%> storage "
6895 "class specifier");
6896 else
6897 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
6898 "%<register%> storage class specifier used");
6901 /* If a name was specified, get the string. */
6902 if (at_namespace_scope_p ())
6903 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
6904 if (asmspec_tree && asmspec_tree != error_mark_node)
6905 asmspec = TREE_STRING_POINTER (asmspec_tree);
6907 if (current_class_type
6908 && CP_DECL_CONTEXT (decl) == current_class_type
6909 && TYPE_BEING_DEFINED (current_class_type)
6910 && !CLASSTYPE_TEMPLATE_INSTANTIATION (current_class_type)
6911 && (DECL_INITIAL (decl) || init))
6912 DECL_INITIALIZED_IN_CLASS_P (decl) = 1;
6914 /* Do auto deduction unless decl is a function or an uninstantiated
6915 template specialization. */
6916 if (TREE_CODE (decl) != FUNCTION_DECL
6917 && !(init == NULL_TREE
6918 && DECL_LANG_SPECIFIC (decl)
6919 && DECL_TEMPLATE_INSTANTIATION (decl)
6920 && !DECL_TEMPLATE_INSTANTIATED (decl))
6921 && (auto_node = type_uses_auto (type)))
6923 tree d_init;
6924 if (init == NULL_TREE)
6925 gcc_assert (CLASS_PLACEHOLDER_TEMPLATE (auto_node));
6926 d_init = init;
6927 if (d_init)
6929 if (TREE_CODE (d_init) == TREE_LIST
6930 && !CLASS_PLACEHOLDER_TEMPLATE (auto_node))
6931 d_init = build_x_compound_expr_from_list (d_init, ELK_INIT,
6932 tf_warning_or_error);
6933 d_init = resolve_nondeduced_context (d_init, tf_warning_or_error);
6935 enum auto_deduction_context adc = adc_variable_type;
6936 if (VAR_P (decl) && DECL_DECOMPOSITION_P (decl))
6937 adc = adc_decomp_type;
6938 type = TREE_TYPE (decl) = do_auto_deduction (type, d_init, auto_node,
6939 tf_warning_or_error, adc,
6940 NULL_TREE, flags);
6941 if (type == error_mark_node)
6942 return;
6943 if (TREE_CODE (type) == FUNCTION_TYPE)
6945 error ("initializer for %<decltype(auto) %D%> has function type "
6946 "(did you forget the %<()%> ?)", decl);
6947 TREE_TYPE (decl) = error_mark_node;
6948 return;
6950 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
6953 if (ensure_literal_type_for_constexpr_object (decl) == error_mark_node)
6955 DECL_DECLARED_CONSTEXPR_P (decl) = 0;
6956 if (VAR_P (decl) && DECL_CLASS_SCOPE_P (decl))
6958 init = NULL_TREE;
6959 DECL_EXTERNAL (decl) = 1;
6963 if (VAR_P (decl)
6964 && DECL_CLASS_SCOPE_P (decl)
6965 && DECL_INITIALIZED_IN_CLASS_P (decl))
6966 check_static_variable_definition (decl, type);
6968 if (init && TREE_CODE (decl) == FUNCTION_DECL)
6970 tree clone;
6971 if (init == ridpointers[(int)RID_DELETE])
6973 /* FIXME check this is 1st decl. */
6974 DECL_DELETED_FN (decl) = 1;
6975 DECL_DECLARED_INLINE_P (decl) = 1;
6976 DECL_INITIAL (decl) = error_mark_node;
6977 FOR_EACH_CLONE (clone, decl)
6979 DECL_DELETED_FN (clone) = 1;
6980 DECL_DECLARED_INLINE_P (clone) = 1;
6981 DECL_INITIAL (clone) = error_mark_node;
6983 init = NULL_TREE;
6985 else if (init == ridpointers[(int)RID_DEFAULT])
6987 if (defaultable_fn_check (decl))
6988 DECL_DEFAULTED_FN (decl) = 1;
6989 else
6990 DECL_INITIAL (decl) = NULL_TREE;
6994 if (init && VAR_P (decl))
6996 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = 1;
6997 /* If DECL is a reference, then we want to know whether init is a
6998 reference constant; init_const_expr_p as passed tells us whether
6999 it's an rvalue constant. */
7000 if (TYPE_REF_P (type))
7001 init_const_expr_p = potential_constant_expression (init);
7002 if (init_const_expr_p)
7004 /* Set these flags now for templates. We'll update the flags in
7005 store_init_value for instantiations. */
7006 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = 1;
7007 if (decl_maybe_constant_var_p (decl)
7008 /* FIXME setting TREE_CONSTANT on refs breaks the back end. */
7009 && !TYPE_REF_P (type))
7010 TREE_CONSTANT (decl) = 1;
7014 if (processing_template_decl)
7016 bool type_dependent_p;
7018 /* Add this declaration to the statement-tree. */
7019 if (at_function_scope_p ())
7020 add_decl_expr (decl);
7022 type_dependent_p = dependent_type_p (type);
7024 if (check_for_bare_parameter_packs (init))
7026 init = NULL_TREE;
7027 DECL_INITIAL (decl) = NULL_TREE;
7030 /* Generally, initializers in templates are expanded when the
7031 template is instantiated. But, if DECL is a variable constant
7032 then it can be used in future constant expressions, so its value
7033 must be available. */
7035 bool dep_init = false;
7037 if (!VAR_P (decl) || type_dependent_p)
7038 /* We can't do anything if the decl has dependent type. */;
7039 else if (!init && is_concept_var (decl))
7041 error ("variable concept has no initializer");
7042 init = boolean_true_node;
7044 else if (init
7045 && init_const_expr_p
7046 && !TYPE_REF_P (type)
7047 && decl_maybe_constant_var_p (decl)
7048 && !(dep_init = value_dependent_init_p (init)))
7050 /* This variable seems to be a non-dependent constant, so process
7051 its initializer. If check_initializer returns non-null the
7052 initialization wasn't constant after all. */
7053 tree init_code;
7054 cleanups = make_tree_vector ();
7055 init_code = check_initializer (decl, init, flags, &cleanups);
7056 if (init_code == NULL_TREE)
7057 init = NULL_TREE;
7058 release_tree_vector (cleanups);
7060 else
7062 gcc_assert (!DECL_PRETTY_FUNCTION_P (decl));
7063 /* Deduce array size even if the initializer is dependent. */
7064 maybe_deduce_size_from_array_init (decl, init);
7065 /* And complain about multiple initializers. */
7066 if (init && TREE_CODE (init) == TREE_LIST && TREE_CHAIN (init)
7067 && !MAYBE_CLASS_TYPE_P (type))
7068 init = build_x_compound_expr_from_list (init, ELK_INIT,
7069 tf_warning_or_error);
7072 if (init)
7073 DECL_INITIAL (decl) = init;
7075 if (dep_init)
7077 retrofit_lang_decl (decl);
7078 SET_DECL_DEPENDENT_INIT_P (decl, true);
7080 return;
7083 /* Just store non-static data member initializers for later. */
7084 if (init && TREE_CODE (decl) == FIELD_DECL)
7085 DECL_INITIAL (decl) = init;
7087 /* Take care of TYPE_DECLs up front. */
7088 if (TREE_CODE (decl) == TYPE_DECL)
7090 if (type != error_mark_node
7091 && MAYBE_CLASS_TYPE_P (type) && DECL_NAME (decl))
7093 if (TREE_TYPE (DECL_NAME (decl)) && TREE_TYPE (decl) != type)
7094 warning (0, "shadowing previous type declaration of %q#D", decl);
7095 set_identifier_type_value (DECL_NAME (decl), decl);
7098 /* If we have installed this as the canonical typedef for this
7099 type, and that type has not been defined yet, delay emitting
7100 the debug information for it, as we will emit it later. */
7101 if (TYPE_MAIN_DECL (TREE_TYPE (decl)) == decl
7102 && !COMPLETE_TYPE_P (TREE_TYPE (decl)))
7103 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
7105 rest_of_decl_compilation (decl, DECL_FILE_SCOPE_P (decl),
7106 at_eof);
7107 return;
7110 /* A reference will be modified here, as it is initialized. */
7111 if (! DECL_EXTERNAL (decl)
7112 && TREE_READONLY (decl)
7113 && TYPE_REF_P (type))
7115 was_readonly = 1;
7116 TREE_READONLY (decl) = 0;
7119 if (VAR_P (decl))
7121 /* If this is a local variable that will need a mangled name,
7122 register it now. We must do this before processing the
7123 initializer for the variable, since the initialization might
7124 require a guard variable, and since the mangled name of the
7125 guard variable will depend on the mangled name of this
7126 variable. */
7127 if (DECL_FUNCTION_SCOPE_P (decl)
7128 && TREE_STATIC (decl)
7129 && !DECL_ARTIFICIAL (decl))
7131 /* The variable holding an anonymous union will have had its
7132 discriminator set in finish_anon_union, after which it's
7133 NAME will have been cleared. */
7134 if (DECL_NAME (decl))
7135 determine_local_discriminator (decl);
7136 /* Normally has_forced_label_in_static is set during GIMPLE
7137 lowering, but [cd]tors are never actually compiled directly.
7138 We need to set this early so we can deal with the label
7139 address extension. */
7140 if ((DECL_CONSTRUCTOR_P (current_function_decl)
7141 || DECL_DESTRUCTOR_P (current_function_decl))
7142 && init)
7144 walk_tree (&init, notice_forced_label_r, NULL, NULL);
7145 add_local_decl (cfun, decl);
7147 /* And make sure it's in the symbol table for
7148 c_parse_final_cleanups to find. */
7149 varpool_node::get_create (decl);
7152 /* Convert the initializer to the type of DECL, if we have not
7153 already initialized DECL. */
7154 if (!DECL_INITIALIZED_P (decl)
7155 /* If !DECL_EXTERNAL then DECL is being defined. In the
7156 case of a static data member initialized inside the
7157 class-specifier, there can be an initializer even if DECL
7158 is *not* defined. */
7159 && (!DECL_EXTERNAL (decl) || init))
7161 cleanups = make_tree_vector ();
7162 init = check_initializer (decl, init, flags, &cleanups);
7164 /* Handle:
7166 [dcl.init]
7168 The memory occupied by any object of static storage
7169 duration is zero-initialized at program startup before
7170 any other initialization takes place.
7172 We cannot create an appropriate initializer until after
7173 the type of DECL is finalized. If DECL_INITIAL is set,
7174 then the DECL is statically initialized, and any
7175 necessary zero-initialization has already been performed. */
7176 if (TREE_STATIC (decl) && !DECL_INITIAL (decl))
7177 DECL_INITIAL (decl) = build_zero_init (TREE_TYPE (decl),
7178 /*nelts=*/NULL_TREE,
7179 /*static_storage_p=*/true);
7180 /* Remember that the initialization for this variable has
7181 taken place. */
7182 DECL_INITIALIZED_P (decl) = 1;
7183 /* This declaration is the definition of this variable,
7184 unless we are initializing a static data member within
7185 the class specifier. */
7186 if (!DECL_EXTERNAL (decl))
7187 var_definition_p = true;
7189 /* If the variable has an array type, lay out the type, even if
7190 there is no initializer. It is valid to index through the
7191 array, and we must get TYPE_ALIGN set correctly on the array
7192 type. */
7193 else if (TREE_CODE (type) == ARRAY_TYPE)
7194 layout_type (type);
7196 if (TREE_STATIC (decl)
7197 && !at_function_scope_p ()
7198 && current_function_decl == NULL)
7199 /* So decl is a global variable or a static member of a
7200 non local class. Record the types it uses
7201 so that we can decide later to emit debug info for them. */
7202 record_types_used_by_current_var_decl (decl);
7205 /* Add this declaration to the statement-tree. This needs to happen
7206 after the call to check_initializer so that the DECL_EXPR for a
7207 reference temp is added before the DECL_EXPR for the reference itself. */
7208 if (DECL_FUNCTION_SCOPE_P (decl))
7210 /* If we're building a variable sized type, and we might be
7211 reachable other than via the top of the current binding
7212 level, then create a new BIND_EXPR so that we deallocate
7213 the object at the right time. */
7214 if (VAR_P (decl)
7215 && DECL_SIZE (decl)
7216 && !TREE_CONSTANT (DECL_SIZE (decl))
7217 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list))
7219 tree bind;
7220 bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
7221 TREE_SIDE_EFFECTS (bind) = 1;
7222 add_stmt (bind);
7223 BIND_EXPR_BODY (bind) = push_stmt_list ();
7225 add_decl_expr (decl);
7228 /* Let the middle end know about variables and functions -- but not
7229 static data members in uninstantiated class templates. */
7230 if (VAR_OR_FUNCTION_DECL_P (decl))
7232 if (VAR_P (decl))
7234 layout_var_decl (decl);
7235 maybe_commonize_var (decl);
7238 /* This needs to happen after the linkage is set. */
7239 determine_visibility (decl);
7241 if (var_definition_p && TREE_STATIC (decl))
7243 /* If a TREE_READONLY variable needs initialization
7244 at runtime, it is no longer readonly and we need to
7245 avoid MEM_READONLY_P being set on RTL created for it. */
7246 if (init)
7248 if (TREE_READONLY (decl))
7249 TREE_READONLY (decl) = 0;
7250 was_readonly = 0;
7252 else if (was_readonly)
7253 TREE_READONLY (decl) = 1;
7255 /* Likewise if it needs destruction. */
7256 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
7257 TREE_READONLY (decl) = 0;
7260 make_rtl_for_nonlocal_decl (decl, init, asmspec);
7262 /* Check for abstractness of the type. Notice that there is no
7263 need to strip array types here since the check for those types
7264 is already done within create_array_type_for_decl. */
7265 abstract_virtuals_error (decl, type);
7267 if (TREE_TYPE (decl) == error_mark_node)
7268 /* No initialization required. */
7270 else if (TREE_CODE (decl) == FUNCTION_DECL)
7272 if (init)
7274 if (init == ridpointers[(int)RID_DEFAULT])
7276 /* An out-of-class default definition is defined at
7277 the point where it is explicitly defaulted. */
7278 if (DECL_DELETED_FN (decl))
7279 maybe_explain_implicit_delete (decl);
7280 else if (DECL_INITIAL (decl) == error_mark_node)
7281 synthesize_method (decl);
7283 else
7284 error ("function %q#D is initialized like a variable", decl);
7286 /* else no initialization required. */
7288 else if (DECL_EXTERNAL (decl)
7289 && ! (DECL_LANG_SPECIFIC (decl)
7290 && DECL_NOT_REALLY_EXTERN (decl)))
7292 if (init)
7293 DECL_INITIAL (decl) = init;
7295 /* A variable definition. */
7296 else if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
7297 /* Initialize the local variable. */
7298 initialize_local_var (decl, init);
7300 /* If a variable is defined, and then a subsequent
7301 definition with external linkage is encountered, we will
7302 get here twice for the same variable. We want to avoid
7303 calling expand_static_init more than once. For variables
7304 that are not static data members, we can call
7305 expand_static_init only when we actually process the
7306 initializer. It is not legal to redeclare a static data
7307 member, so this issue does not arise in that case. */
7308 else if (var_definition_p && TREE_STATIC (decl))
7309 expand_static_init (decl, init);
7312 /* If a CLEANUP_STMT was created to destroy a temporary bound to a
7313 reference, insert it in the statement-tree now. */
7314 if (cleanups)
7316 unsigned i; tree t;
7317 FOR_EACH_VEC_ELT (*cleanups, i, t)
7318 push_cleanup (decl, t, false);
7319 release_tree_vector (cleanups);
7322 if (was_readonly)
7323 TREE_READONLY (decl) = 1;
7325 if (flag_openmp
7326 && VAR_P (decl)
7327 && lookup_attribute ("omp declare target implicit",
7328 DECL_ATTRIBUTES (decl)))
7330 DECL_ATTRIBUTES (decl)
7331 = remove_attribute ("omp declare target implicit",
7332 DECL_ATTRIBUTES (decl));
7333 complete_type (TREE_TYPE (decl));
7334 if (!cp_omp_mappable_type (TREE_TYPE (decl)))
7335 error ("%q+D in declare target directive does not have mappable type",
7336 decl);
7337 else if (!lookup_attribute ("omp declare target",
7338 DECL_ATTRIBUTES (decl))
7339 && !lookup_attribute ("omp declare target link",
7340 DECL_ATTRIBUTES (decl)))
7341 DECL_ATTRIBUTES (decl)
7342 = tree_cons (get_identifier ("omp declare target"),
7343 NULL_TREE, DECL_ATTRIBUTES (decl));
7346 invoke_plugin_callbacks (PLUGIN_FINISH_DECL, decl);
7349 /* For class TYPE return itself or some its bases that contain
7350 any direct non-static data members. Return error_mark_node if an
7351 error has been diagnosed. */
7353 static tree
7354 find_decomp_class_base (location_t loc, tree type, tree ret)
7356 bool member_seen = false;
7357 for (tree field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
7358 if (TREE_CODE (field) != FIELD_DECL
7359 || DECL_ARTIFICIAL (field)
7360 || DECL_UNNAMED_BIT_FIELD (field))
7361 continue;
7362 else if (ret)
7363 return type;
7364 else if (ANON_AGGR_TYPE_P (TREE_TYPE (field)))
7366 if (TREE_CODE (TREE_TYPE (field)) == RECORD_TYPE)
7367 error_at (loc, "cannot decompose class type %qT because it has an "
7368 "anonymous struct member", type);
7369 else
7370 error_at (loc, "cannot decompose class type %qT because it has an "
7371 "anonymous union member", type);
7372 inform (DECL_SOURCE_LOCATION (field), "declared here");
7373 return error_mark_node;
7375 else if (!accessible_p (type, field, true))
7377 error_at (loc, "cannot decompose inaccessible member %qD of %qT",
7378 field, type);
7379 inform (DECL_SOURCE_LOCATION (field),
7380 TREE_PRIVATE (field)
7381 ? G_("declared private here")
7382 : G_("declared protected here"));
7383 return error_mark_node;
7385 else
7386 member_seen = true;
7388 tree base_binfo, binfo;
7389 tree orig_ret = ret;
7390 int i;
7391 if (member_seen)
7392 ret = type;
7393 for (binfo = TYPE_BINFO (type), i = 0;
7394 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
7396 tree t = find_decomp_class_base (loc, TREE_TYPE (base_binfo), ret);
7397 if (t == error_mark_node)
7398 return error_mark_node;
7399 if (t != NULL_TREE && t != ret)
7401 if (ret == type)
7403 error_at (loc, "cannot decompose class type %qT: both it and "
7404 "its base class %qT have non-static data members",
7405 type, t);
7406 return error_mark_node;
7408 else if (orig_ret != NULL_TREE)
7409 return t;
7410 else if (ret != NULL_TREE)
7412 error_at (loc, "cannot decompose class type %qT: its base "
7413 "classes %qT and %qT have non-static data "
7414 "members", type, ret, t);
7415 return error_mark_node;
7417 else
7418 ret = t;
7421 return ret;
7424 /* Return std::tuple_size<TYPE>::value. */
7426 static tree
7427 get_tuple_size (tree type)
7429 tree args = make_tree_vec (1);
7430 TREE_VEC_ELT (args, 0) = type;
7431 tree inst = lookup_template_class (tuple_size_identifier, args,
7432 /*in_decl*/NULL_TREE,
7433 /*context*/std_node,
7434 /*entering_scope*/false, tf_none);
7435 inst = complete_type (inst);
7436 if (inst == error_mark_node || !COMPLETE_TYPE_P (inst))
7437 return NULL_TREE;
7438 tree val = lookup_qualified_name (inst, value_identifier,
7439 /*type*/false, /*complain*/false);
7440 if (TREE_CODE (val) == VAR_DECL || TREE_CODE (val) == CONST_DECL)
7441 val = maybe_constant_value (val);
7442 if (TREE_CODE (val) == INTEGER_CST)
7443 return val;
7444 else
7445 return error_mark_node;
7448 /* Return std::tuple_element<I,TYPE>::type. */
7450 static tree
7451 get_tuple_element_type (tree type, unsigned i)
7453 tree args = make_tree_vec (2);
7454 TREE_VEC_ELT (args, 0) = build_int_cst (integer_type_node, i);
7455 TREE_VEC_ELT (args, 1) = type;
7456 tree inst = lookup_template_class (tuple_element_identifier, args,
7457 /*in_decl*/NULL_TREE,
7458 /*context*/std_node,
7459 /*entering_scope*/false,
7460 tf_warning_or_error);
7461 return make_typename_type (inst, type_identifier,
7462 none_type, tf_warning_or_error);
7465 /* Return e.get<i>() or get<i>(e). */
7467 static tree
7468 get_tuple_decomp_init (tree decl, unsigned i)
7470 tree targs = make_tree_vec (1);
7471 TREE_VEC_ELT (targs, 0) = build_int_cst (integer_type_node, i);
7473 tree etype = TREE_TYPE (decl);
7474 tree e = convert_from_reference (decl);
7476 /* [The id-expression] e is an lvalue if the type of the entity e is an
7477 lvalue reference and an xvalue otherwise. */
7478 if (!TYPE_REF_P (etype)
7479 || TYPE_REF_IS_RVALUE (etype))
7480 e = move (e);
7482 tree fns = lookup_qualified_name (TREE_TYPE (e), get__identifier,
7483 /*type*/false, /*complain*/false);
7484 bool use_member_get = false;
7486 /* To use a member get, member lookup must find at least one
7487 declaration that is a function template
7488 whose first template parameter is a non-type parameter. */
7489 for (lkp_iterator iter (MAYBE_BASELINK_FUNCTIONS (fns)); iter; ++iter)
7491 tree fn = *iter;
7492 if (TREE_CODE (fn) == TEMPLATE_DECL)
7494 tree tparms = DECL_TEMPLATE_PARMS (fn);
7495 tree parm = TREE_VEC_ELT (INNERMOST_TEMPLATE_PARMS (tparms), 0);
7496 if (TREE_CODE (TREE_VALUE (parm)) == PARM_DECL)
7498 use_member_get = true;
7499 break;
7504 if (use_member_get)
7506 fns = lookup_template_function (fns, targs);
7507 return build_new_method_call (e, fns, /*args*/NULL,
7508 /*path*/NULL_TREE, LOOKUP_NORMAL,
7509 /*fn_p*/NULL, tf_warning_or_error);
7511 else
7513 vec<tree,va_gc> *args = make_tree_vector_single (e);
7514 fns = lookup_template_function (get__identifier, targs);
7515 fns = perform_koenig_lookup (fns, args, tf_warning_or_error);
7516 return finish_call_expr (fns, &args, /*novirt*/false,
7517 /*koenig*/true, tf_warning_or_error);
7521 /* It's impossible to recover the decltype of a tuple decomposition variable
7522 based on the actual type of the variable, so store it in a hash table. */
7524 static GTY((cache)) tree_cache_map *decomp_type_table;
7525 static void
7526 store_decomp_type (tree v, tree t)
7528 if (!decomp_type_table)
7529 decomp_type_table = tree_cache_map::create_ggc (13);
7530 decomp_type_table->put (v, t);
7533 tree
7534 lookup_decomp_type (tree v)
7536 return *decomp_type_table->get (v);
7539 /* Mangle a decomposition declaration if needed. Arguments like
7540 in cp_finish_decomp. */
7542 void
7543 cp_maybe_mangle_decomp (tree decl, tree first, unsigned int count)
7545 if (!processing_template_decl
7546 && !error_operand_p (decl)
7547 && DECL_NAMESPACE_SCOPE_P (decl))
7549 auto_vec<tree, 16> v;
7550 v.safe_grow (count);
7551 tree d = first;
7552 for (unsigned int i = 0; i < count; i++, d = DECL_CHAIN (d))
7553 v[count - i - 1] = d;
7554 SET_DECL_ASSEMBLER_NAME (decl, mangle_decomp (decl, v));
7555 maybe_apply_pragma_weak (decl);
7559 /* Finish a decomposition declaration. DECL is the underlying declaration
7560 "e", FIRST is the head of a chain of decls for the individual identifiers
7561 chained through DECL_CHAIN in reverse order and COUNT is the number of
7562 those decls. */
7564 void
7565 cp_finish_decomp (tree decl, tree first, unsigned int count)
7567 if (error_operand_p (decl))
7569 error_out:
7570 while (count--)
7572 TREE_TYPE (first) = error_mark_node;
7573 if (DECL_HAS_VALUE_EXPR_P (first))
7575 SET_DECL_VALUE_EXPR (first, NULL_TREE);
7576 DECL_HAS_VALUE_EXPR_P (first) = 0;
7578 first = DECL_CHAIN (first);
7580 if (DECL_P (decl) && DECL_NAMESPACE_SCOPE_P (decl))
7581 SET_DECL_ASSEMBLER_NAME (decl, get_identifier ("<decomp>"));
7582 return;
7585 location_t loc = DECL_SOURCE_LOCATION (decl);
7586 if (type_dependent_expression_p (decl)
7587 /* This happens for range for when not in templates.
7588 Still add the DECL_VALUE_EXPRs for later processing. */
7589 || (!processing_template_decl
7590 && type_uses_auto (TREE_TYPE (decl))))
7592 for (unsigned int i = 0; i < count; i++)
7594 if (!DECL_HAS_VALUE_EXPR_P (first))
7596 tree v = build_nt (ARRAY_REF, decl,
7597 size_int (count - i - 1),
7598 NULL_TREE, NULL_TREE);
7599 SET_DECL_VALUE_EXPR (first, v);
7600 DECL_HAS_VALUE_EXPR_P (first) = 1;
7602 if (processing_template_decl)
7603 fit_decomposition_lang_decl (first, decl);
7604 first = DECL_CHAIN (first);
7606 return;
7609 auto_vec<tree, 16> v;
7610 v.safe_grow (count);
7611 tree d = first;
7612 for (unsigned int i = 0; i < count; i++, d = DECL_CHAIN (d))
7614 v[count - i - 1] = d;
7615 fit_decomposition_lang_decl (d, decl);
7618 tree type = TREE_TYPE (decl);
7619 tree dexp = decl;
7621 if (TYPE_REF_P (type))
7623 dexp = convert_from_reference (dexp);
7624 type = complete_type (TREE_TYPE (type));
7625 if (type == error_mark_node)
7626 goto error_out;
7627 if (!COMPLETE_TYPE_P (type))
7629 error_at (loc, "structured binding refers to incomplete type %qT",
7630 type);
7631 goto error_out;
7635 tree eltype = NULL_TREE;
7636 unsigned HOST_WIDE_INT eltscnt = 0;
7637 if (TREE_CODE (type) == ARRAY_TYPE)
7639 tree nelts;
7640 nelts = array_type_nelts_top (type);
7641 if (nelts == error_mark_node)
7642 goto error_out;
7643 if (!tree_fits_uhwi_p (nelts))
7645 error_at (loc, "cannot decompose variable length array %qT", type);
7646 goto error_out;
7648 eltscnt = tree_to_uhwi (nelts);
7649 if (count != eltscnt)
7651 cnt_mismatch:
7652 if (count > eltscnt)
7653 error_n (loc, count,
7654 "%u name provided for structured binding",
7655 "%u names provided for structured binding", count);
7656 else
7657 error_n (loc, count,
7658 "only %u name provided for structured binding",
7659 "only %u names provided for structured binding", count);
7660 inform_n (loc, eltscnt,
7661 "while %qT decomposes into %wu element",
7662 "while %qT decomposes into %wu elements",
7663 type, eltscnt);
7664 goto error_out;
7666 eltype = TREE_TYPE (type);
7667 for (unsigned int i = 0; i < count; i++)
7669 TREE_TYPE (v[i]) = eltype;
7670 layout_decl (v[i], 0);
7671 if (processing_template_decl)
7672 continue;
7673 tree t = unshare_expr (dexp);
7674 t = build4_loc (DECL_SOURCE_LOCATION (v[i]), ARRAY_REF,
7675 eltype, t, size_int (i), NULL_TREE,
7676 NULL_TREE);
7677 SET_DECL_VALUE_EXPR (v[i], t);
7678 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
7681 /* 2 GNU extensions. */
7682 else if (TREE_CODE (type) == COMPLEX_TYPE)
7684 eltscnt = 2;
7685 if (count != eltscnt)
7686 goto cnt_mismatch;
7687 eltype = cp_build_qualified_type (TREE_TYPE (type), TYPE_QUALS (type));
7688 for (unsigned int i = 0; i < count; i++)
7690 TREE_TYPE (v[i]) = eltype;
7691 layout_decl (v[i], 0);
7692 if (processing_template_decl)
7693 continue;
7694 tree t = unshare_expr (dexp);
7695 t = build1_loc (DECL_SOURCE_LOCATION (v[i]),
7696 i ? IMAGPART_EXPR : REALPART_EXPR, eltype,
7698 SET_DECL_VALUE_EXPR (v[i], t);
7699 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
7702 else if (TREE_CODE (type) == VECTOR_TYPE)
7704 if (!TYPE_VECTOR_SUBPARTS (type).is_constant (&eltscnt))
7706 error_at (loc, "cannot decompose variable length vector %qT", type);
7707 goto error_out;
7709 if (count != eltscnt)
7710 goto cnt_mismatch;
7711 eltype = cp_build_qualified_type (TREE_TYPE (type), TYPE_QUALS (type));
7712 for (unsigned int i = 0; i < count; i++)
7714 TREE_TYPE (v[i]) = eltype;
7715 layout_decl (v[i], 0);
7716 if (processing_template_decl)
7717 continue;
7718 tree t = unshare_expr (dexp);
7719 convert_vector_to_array_for_subscript (DECL_SOURCE_LOCATION (v[i]),
7720 &t, size_int (i));
7721 t = build4_loc (DECL_SOURCE_LOCATION (v[i]), ARRAY_REF,
7722 eltype, t, size_int (i), NULL_TREE,
7723 NULL_TREE);
7724 SET_DECL_VALUE_EXPR (v[i], t);
7725 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
7728 else if (tree tsize = get_tuple_size (type))
7730 if (tsize == error_mark_node)
7732 error_at (loc, "%<std::tuple_size<%T>::value%> is not an integral "
7733 "constant expression", type);
7734 goto error_out;
7736 if (!tree_fits_uhwi_p (tsize))
7738 error_n (loc, count,
7739 "%u name provided for structured binding",
7740 "%u names provided for structured binding", count);
7741 inform (loc, "while %qT decomposes into %E elements",
7742 type, tsize);
7743 goto error_out;
7745 eltscnt = tree_to_uhwi (tsize);
7746 if (count != eltscnt)
7747 goto cnt_mismatch;
7748 int save_read = DECL_READ_P (decl);
7749 for (unsigned i = 0; i < count; ++i)
7751 location_t sloc = input_location;
7752 location_t dloc = DECL_SOURCE_LOCATION (v[i]);
7754 input_location = dloc;
7755 tree init = get_tuple_decomp_init (decl, i);
7756 tree eltype = (init == error_mark_node ? error_mark_node
7757 : get_tuple_element_type (type, i));
7758 input_location = sloc;
7760 if (init == error_mark_node || eltype == error_mark_node)
7762 inform (dloc, "in initialization of structured binding "
7763 "variable %qD", v[i]);
7764 goto error_out;
7766 /* Save the decltype away before reference collapse. */
7767 store_decomp_type (v[i], eltype);
7768 eltype = cp_build_reference_type (eltype, !lvalue_p (init));
7769 TREE_TYPE (v[i]) = eltype;
7770 layout_decl (v[i], 0);
7771 if (DECL_HAS_VALUE_EXPR_P (v[i]))
7773 /* In this case the names are variables, not just proxies. */
7774 SET_DECL_VALUE_EXPR (v[i], NULL_TREE);
7775 DECL_HAS_VALUE_EXPR_P (v[i]) = 0;
7777 if (!processing_template_decl)
7778 cp_finish_decl (v[i], init, /*constexpr*/false,
7779 /*asm*/NULL_TREE, LOOKUP_NORMAL);
7781 /* Ignore reads from the underlying decl performed during initialization
7782 of the individual variables. If those will be read, we'll mark
7783 the underlying decl as read at that point. */
7784 DECL_READ_P (decl) = save_read;
7786 else if (TREE_CODE (type) == UNION_TYPE)
7788 error_at (loc, "cannot decompose union type %qT", type);
7789 goto error_out;
7791 else if (!CLASS_TYPE_P (type))
7793 error_at (loc, "cannot decompose non-array non-class type %qT", type);
7794 goto error_out;
7796 else if (LAMBDA_TYPE_P (type))
7798 error_at (loc, "cannot decompose lambda closure type %qT", type);
7799 goto error_out;
7801 else if (processing_template_decl && !COMPLETE_TYPE_P (type))
7802 pedwarn (loc, 0, "structured binding refers to incomplete class type %qT",
7803 type);
7804 else
7806 tree btype = find_decomp_class_base (loc, type, NULL_TREE);
7807 if (btype == error_mark_node)
7808 goto error_out;
7809 else if (btype == NULL_TREE)
7811 error_at (loc, "cannot decompose class type %qT without non-static "
7812 "data members", type);
7813 goto error_out;
7815 for (tree field = TYPE_FIELDS (btype); field; field = TREE_CHAIN (field))
7816 if (TREE_CODE (field) != FIELD_DECL
7817 || DECL_ARTIFICIAL (field)
7818 || DECL_UNNAMED_BIT_FIELD (field))
7819 continue;
7820 else
7821 eltscnt++;
7822 if (count != eltscnt)
7823 goto cnt_mismatch;
7824 tree t = dexp;
7825 if (type != btype)
7827 t = convert_to_base (t, btype, /*check_access*/true,
7828 /*nonnull*/false, tf_warning_or_error);
7829 type = btype;
7831 unsigned int i = 0;
7832 for (tree field = TYPE_FIELDS (btype); field; field = TREE_CHAIN (field))
7833 if (TREE_CODE (field) != FIELD_DECL
7834 || DECL_ARTIFICIAL (field)
7835 || DECL_UNNAMED_BIT_FIELD (field))
7836 continue;
7837 else
7839 tree tt = finish_non_static_data_member (field, unshare_expr (t),
7840 NULL_TREE);
7841 if (REFERENCE_REF_P (tt))
7842 tt = TREE_OPERAND (tt, 0);
7843 TREE_TYPE (v[i]) = TREE_TYPE (tt);
7844 layout_decl (v[i], 0);
7845 if (!processing_template_decl)
7847 SET_DECL_VALUE_EXPR (v[i], tt);
7848 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
7850 i++;
7853 if (processing_template_decl)
7855 for (unsigned int i = 0; i < count; i++)
7856 if (!DECL_HAS_VALUE_EXPR_P (v[i]))
7858 tree a = build_nt (ARRAY_REF, decl, size_int (i),
7859 NULL_TREE, NULL_TREE);
7860 SET_DECL_VALUE_EXPR (v[i], a);
7861 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
7866 /* Returns a declaration for a VAR_DECL as if:
7868 extern "C" TYPE NAME;
7870 had been seen. Used to create compiler-generated global
7871 variables. */
7873 static tree
7874 declare_global_var (tree name, tree type)
7876 tree decl;
7878 push_to_top_level ();
7879 decl = build_decl (input_location, VAR_DECL, name, type);
7880 TREE_PUBLIC (decl) = 1;
7881 DECL_EXTERNAL (decl) = 1;
7882 DECL_ARTIFICIAL (decl) = 1;
7883 DECL_CONTEXT (decl) = FROB_CONTEXT (global_namespace);
7884 /* If the user has explicitly declared this variable (perhaps
7885 because the code we are compiling is part of a low-level runtime
7886 library), then it is possible that our declaration will be merged
7887 with theirs by pushdecl. */
7888 decl = pushdecl (decl);
7889 cp_finish_decl (decl, NULL_TREE, false, NULL_TREE, 0);
7890 pop_from_top_level ();
7892 return decl;
7895 /* Returns the type for the argument to "__cxa_atexit" (or "atexit",
7896 if "__cxa_atexit" is not being used) corresponding to the function
7897 to be called when the program exits. */
7899 static tree
7900 get_atexit_fn_ptr_type (void)
7902 tree fn_type;
7904 if (!atexit_fn_ptr_type_node)
7906 tree arg_type;
7907 if (flag_use_cxa_atexit
7908 && !targetm.cxx.use_atexit_for_cxa_atexit ())
7909 /* The parameter to "__cxa_atexit" is "void (*)(void *)". */
7910 arg_type = ptr_type_node;
7911 else
7912 /* The parameter to "atexit" is "void (*)(void)". */
7913 arg_type = NULL_TREE;
7915 fn_type = build_function_type_list (void_type_node,
7916 arg_type, NULL_TREE);
7917 atexit_fn_ptr_type_node = build_pointer_type (fn_type);
7920 return atexit_fn_ptr_type_node;
7923 /* Returns a pointer to the `atexit' function. Note that if
7924 FLAG_USE_CXA_ATEXIT is nonzero, then this will actually be the new
7925 `__cxa_atexit' function specified in the IA64 C++ ABI. */
7927 static tree
7928 get_atexit_node (void)
7930 tree atexit_fndecl;
7931 tree fn_type;
7932 tree fn_ptr_type;
7933 const char *name;
7934 bool use_aeabi_atexit;
7936 if (atexit_node)
7937 return atexit_node;
7939 if (flag_use_cxa_atexit && !targetm.cxx.use_atexit_for_cxa_atexit ())
7941 /* The declaration for `__cxa_atexit' is:
7943 int __cxa_atexit (void (*)(void *), void *, void *)
7945 We build up the argument types and then the function type
7946 itself. */
7947 tree argtype0, argtype1, argtype2;
7949 use_aeabi_atexit = targetm.cxx.use_aeabi_atexit ();
7950 /* First, build the pointer-to-function type for the first
7951 argument. */
7952 fn_ptr_type = get_atexit_fn_ptr_type ();
7953 /* Then, build the rest of the argument types. */
7954 argtype2 = ptr_type_node;
7955 if (use_aeabi_atexit)
7957 argtype1 = fn_ptr_type;
7958 argtype0 = ptr_type_node;
7960 else
7962 argtype1 = ptr_type_node;
7963 argtype0 = fn_ptr_type;
7965 /* And the final __cxa_atexit type. */
7966 fn_type = build_function_type_list (integer_type_node,
7967 argtype0, argtype1, argtype2,
7968 NULL_TREE);
7969 if (use_aeabi_atexit)
7970 name = "__aeabi_atexit";
7971 else
7972 name = "__cxa_atexit";
7974 else
7976 /* The declaration for `atexit' is:
7978 int atexit (void (*)());
7980 We build up the argument types and then the function type
7981 itself. */
7982 fn_ptr_type = get_atexit_fn_ptr_type ();
7983 /* Build the final atexit type. */
7984 fn_type = build_function_type_list (integer_type_node,
7985 fn_ptr_type, NULL_TREE);
7986 name = "atexit";
7989 /* Now, build the function declaration. */
7990 push_lang_context (lang_name_c);
7991 atexit_fndecl = build_library_fn_ptr (name, fn_type, ECF_LEAF | ECF_NOTHROW);
7992 mark_used (atexit_fndecl);
7993 pop_lang_context ();
7994 atexit_node = decay_conversion (atexit_fndecl, tf_warning_or_error);
7996 return atexit_node;
7999 /* Like get_atexit_node, but for thread-local cleanups. */
8001 static tree
8002 get_thread_atexit_node (void)
8004 /* The declaration for `__cxa_thread_atexit' is:
8006 int __cxa_thread_atexit (void (*)(void *), void *, void *) */
8007 tree fn_type = build_function_type_list (integer_type_node,
8008 get_atexit_fn_ptr_type (),
8009 ptr_type_node, ptr_type_node,
8010 NULL_TREE);
8012 /* Now, build the function declaration. */
8013 tree atexit_fndecl = build_library_fn_ptr ("__cxa_thread_atexit", fn_type,
8014 ECF_LEAF | ECF_NOTHROW);
8015 return decay_conversion (atexit_fndecl, tf_warning_or_error);
8018 /* Returns the __dso_handle VAR_DECL. */
8020 static tree
8021 get_dso_handle_node (void)
8023 if (dso_handle_node)
8024 return dso_handle_node;
8026 /* Declare the variable. */
8027 dso_handle_node = declare_global_var (get_identifier ("__dso_handle"),
8028 ptr_type_node);
8030 #ifdef HAVE_GAS_HIDDEN
8031 if (dso_handle_node != error_mark_node)
8033 DECL_VISIBILITY (dso_handle_node) = VISIBILITY_HIDDEN;
8034 DECL_VISIBILITY_SPECIFIED (dso_handle_node) = 1;
8036 #endif
8038 return dso_handle_node;
8041 /* Begin a new function with internal linkage whose job will be simply
8042 to destroy some particular variable. */
8044 static GTY(()) int start_cleanup_cnt;
8046 static tree
8047 start_cleanup_fn (void)
8049 char name[32];
8050 tree fntype;
8051 tree fndecl;
8052 bool use_cxa_atexit = flag_use_cxa_atexit
8053 && !targetm.cxx.use_atexit_for_cxa_atexit ();
8055 push_to_top_level ();
8057 /* No need to mangle this. */
8058 push_lang_context (lang_name_c);
8060 /* Build the name of the function. */
8061 sprintf (name, "__tcf_%d", start_cleanup_cnt++);
8062 /* Build the function declaration. */
8063 fntype = TREE_TYPE (get_atexit_fn_ptr_type ());
8064 fndecl = build_lang_decl (FUNCTION_DECL, get_identifier (name), fntype);
8065 /* It's a function with internal linkage, generated by the
8066 compiler. */
8067 TREE_PUBLIC (fndecl) = 0;
8068 DECL_ARTIFICIAL (fndecl) = 1;
8069 /* Make the function `inline' so that it is only emitted if it is
8070 actually needed. It is unlikely that it will be inlined, since
8071 it is only called via a function pointer, but we avoid unnecessary
8072 emissions this way. */
8073 DECL_DECLARED_INLINE_P (fndecl) = 1;
8074 DECL_INTERFACE_KNOWN (fndecl) = 1;
8075 /* Build the parameter. */
8076 if (use_cxa_atexit)
8078 tree parmdecl = cp_build_parm_decl (fndecl, NULL_TREE, ptr_type_node);
8079 TREE_USED (parmdecl) = 1;
8080 DECL_READ_P (parmdecl) = 1;
8081 DECL_ARGUMENTS (fndecl) = parmdecl;
8084 pushdecl (fndecl);
8085 start_preparsed_function (fndecl, NULL_TREE, SF_PRE_PARSED);
8087 pop_lang_context ();
8089 return current_function_decl;
8092 /* Finish the cleanup function begun by start_cleanup_fn. */
8094 static void
8095 end_cleanup_fn (void)
8097 expand_or_defer_fn (finish_function (/*inline_p=*/false));
8099 pop_from_top_level ();
8102 /* Generate code to handle the destruction of DECL, an object with
8103 static storage duration. */
8105 tree
8106 register_dtor_fn (tree decl)
8108 tree cleanup;
8109 tree addr;
8110 tree compound_stmt;
8111 tree fcall;
8112 tree type;
8113 bool ob_parm, dso_parm, use_dtor;
8114 tree arg0, arg1, arg2;
8115 tree atex_node;
8117 type = TREE_TYPE (decl);
8118 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
8119 return void_node;
8121 /* If we're using "__cxa_atexit" (or "__cxa_thread_atexit" or
8122 "__aeabi_atexit"), and DECL is a class object, we can just pass the
8123 destructor to "__cxa_atexit"; we don't have to build a temporary
8124 function to do the cleanup. */
8125 dso_parm = (flag_use_cxa_atexit
8126 && !targetm.cxx.use_atexit_for_cxa_atexit ());
8127 ob_parm = (CP_DECL_THREAD_LOCAL_P (decl) || dso_parm);
8128 use_dtor = ob_parm && CLASS_TYPE_P (type);
8129 if (use_dtor)
8131 cleanup = get_class_binding (type, complete_dtor_identifier);
8133 /* Make sure it is accessible. */
8134 perform_or_defer_access_check (TYPE_BINFO (type), cleanup, cleanup,
8135 tf_warning_or_error);
8137 else
8139 /* Call build_cleanup before we enter the anonymous function so
8140 that any access checks will be done relative to the current
8141 scope, rather than the scope of the anonymous function. */
8142 build_cleanup (decl);
8144 /* Now start the function. */
8145 cleanup = start_cleanup_fn ();
8147 /* Now, recompute the cleanup. It may contain SAVE_EXPRs that refer
8148 to the original function, rather than the anonymous one. That
8149 will make the back end think that nested functions are in use,
8150 which causes confusion. */
8151 push_deferring_access_checks (dk_no_check);
8152 fcall = build_cleanup (decl);
8153 pop_deferring_access_checks ();
8155 /* Create the body of the anonymous function. */
8156 compound_stmt = begin_compound_stmt (BCS_FN_BODY);
8157 finish_expr_stmt (fcall);
8158 finish_compound_stmt (compound_stmt);
8159 end_cleanup_fn ();
8162 /* Call atexit with the cleanup function. */
8163 mark_used (cleanup);
8164 cleanup = build_address (cleanup);
8166 if (CP_DECL_THREAD_LOCAL_P (decl))
8167 atex_node = get_thread_atexit_node ();
8168 else
8169 atex_node = get_atexit_node ();
8171 if (use_dtor)
8173 /* We must convert CLEANUP to the type that "__cxa_atexit"
8174 expects. */
8175 cleanup = build_nop (get_atexit_fn_ptr_type (), cleanup);
8176 /* "__cxa_atexit" will pass the address of DECL to the
8177 cleanup function. */
8178 mark_used (decl);
8179 addr = build_address (decl);
8180 /* The declared type of the parameter to "__cxa_atexit" is
8181 "void *". For plain "T*", we could just let the
8182 machinery in cp_build_function_call convert it -- but if the
8183 type is "cv-qualified T *", then we need to convert it
8184 before passing it in, to avoid spurious errors. */
8185 addr = build_nop (ptr_type_node, addr);
8187 else
8188 /* Since the cleanup functions we build ignore the address
8189 they're given, there's no reason to pass the actual address
8190 in, and, in general, it's cheaper to pass NULL than any
8191 other value. */
8192 addr = null_pointer_node;
8194 if (dso_parm)
8195 arg2 = cp_build_addr_expr (get_dso_handle_node (),
8196 tf_warning_or_error);
8197 else if (ob_parm)
8198 /* Just pass NULL to the dso handle parm if we don't actually
8199 have a DSO handle on this target. */
8200 arg2 = null_pointer_node;
8201 else
8202 arg2 = NULL_TREE;
8204 if (ob_parm)
8206 if (!CP_DECL_THREAD_LOCAL_P (decl)
8207 && targetm.cxx.use_aeabi_atexit ())
8209 arg1 = cleanup;
8210 arg0 = addr;
8212 else
8214 arg1 = addr;
8215 arg0 = cleanup;
8218 else
8220 arg0 = cleanup;
8221 arg1 = NULL_TREE;
8223 return cp_build_function_call_nary (atex_node, tf_warning_or_error,
8224 arg0, arg1, arg2, NULL_TREE);
8227 /* DECL is a VAR_DECL with static storage duration. INIT, if present,
8228 is its initializer. Generate code to handle the construction
8229 and destruction of DECL. */
8231 static void
8232 expand_static_init (tree decl, tree init)
8234 gcc_assert (VAR_P (decl));
8235 gcc_assert (TREE_STATIC (decl));
8237 /* Some variables require no dynamic initialization. */
8238 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
8240 /* Make sure the destructor is callable. */
8241 cxx_maybe_build_cleanup (decl, tf_warning_or_error);
8242 if (!init)
8243 return;
8246 if (CP_DECL_THREAD_LOCAL_P (decl) && DECL_GNU_TLS_P (decl)
8247 && !DECL_FUNCTION_SCOPE_P (decl))
8249 if (init)
8250 error ("non-local variable %qD declared %<__thread%> "
8251 "needs dynamic initialization", decl);
8252 else
8253 error ("non-local variable %qD declared %<__thread%> "
8254 "has a non-trivial destructor", decl);
8255 static bool informed;
8256 if (!informed)
8258 inform (DECL_SOURCE_LOCATION (decl),
8259 "C++11 %<thread_local%> allows dynamic initialization "
8260 "and destruction");
8261 informed = true;
8263 return;
8266 if (DECL_FUNCTION_SCOPE_P (decl))
8268 /* Emit code to perform this initialization but once. */
8269 tree if_stmt = NULL_TREE, inner_if_stmt = NULL_TREE;
8270 tree then_clause = NULL_TREE, inner_then_clause = NULL_TREE;
8271 tree guard, guard_addr;
8272 tree flag, begin;
8273 /* We don't need thread-safety code for thread-local vars. */
8274 bool thread_guard = (flag_threadsafe_statics
8275 && !CP_DECL_THREAD_LOCAL_P (decl));
8277 /* Emit code to perform this initialization but once. This code
8278 looks like:
8280 static <type> guard;
8281 if (!__atomic_load (guard.first_byte)) {
8282 if (__cxa_guard_acquire (&guard)) {
8283 bool flag = false;
8284 try {
8285 // Do initialization.
8286 flag = true; __cxa_guard_release (&guard);
8287 // Register variable for destruction at end of program.
8288 } catch {
8289 if (!flag) __cxa_guard_abort (&guard);
8294 Note that the `flag' variable is only set to 1 *after* the
8295 initialization is complete. This ensures that an exception,
8296 thrown during the construction, will cause the variable to
8297 reinitialized when we pass through this code again, as per:
8299 [stmt.dcl]
8301 If the initialization exits by throwing an exception, the
8302 initialization is not complete, so it will be tried again
8303 the next time control enters the declaration.
8305 This process should be thread-safe, too; multiple threads
8306 should not be able to initialize the variable more than
8307 once. */
8309 /* Create the guard variable. */
8310 guard = get_guard (decl);
8312 /* Begin the conditional initialization. */
8313 if_stmt = begin_if_stmt ();
8315 finish_if_stmt_cond (get_guard_cond (guard, thread_guard), if_stmt);
8316 then_clause = begin_compound_stmt (BCS_NO_SCOPE);
8318 if (thread_guard)
8320 tree vfntype = NULL_TREE;
8321 tree acquire_name, release_name, abort_name;
8322 tree acquire_fn, release_fn, abort_fn;
8323 guard_addr = build_address (guard);
8325 acquire_name = get_identifier ("__cxa_guard_acquire");
8326 release_name = get_identifier ("__cxa_guard_release");
8327 abort_name = get_identifier ("__cxa_guard_abort");
8328 acquire_fn = get_global_binding (acquire_name);
8329 release_fn = get_global_binding (release_name);
8330 abort_fn = get_global_binding (abort_name);
8331 if (!acquire_fn)
8332 acquire_fn = push_library_fn
8333 (acquire_name, build_function_type_list (integer_type_node,
8334 TREE_TYPE (guard_addr),
8335 NULL_TREE),
8336 NULL_TREE, ECF_NOTHROW | ECF_LEAF);
8337 if (!release_fn || !abort_fn)
8338 vfntype = build_function_type_list (void_type_node,
8339 TREE_TYPE (guard_addr),
8340 NULL_TREE);
8341 if (!release_fn)
8342 release_fn = push_library_fn (release_name, vfntype, NULL_TREE,
8343 ECF_NOTHROW | ECF_LEAF);
8344 if (!abort_fn)
8345 abort_fn = push_library_fn (abort_name, vfntype, NULL_TREE,
8346 ECF_NOTHROW | ECF_LEAF);
8348 inner_if_stmt = begin_if_stmt ();
8349 finish_if_stmt_cond (build_call_n (acquire_fn, 1, guard_addr),
8350 inner_if_stmt);
8352 inner_then_clause = begin_compound_stmt (BCS_NO_SCOPE);
8353 begin = get_target_expr (boolean_false_node);
8354 flag = TARGET_EXPR_SLOT (begin);
8356 TARGET_EXPR_CLEANUP (begin)
8357 = build3 (COND_EXPR, void_type_node, flag,
8358 void_node,
8359 build_call_n (abort_fn, 1, guard_addr));
8360 CLEANUP_EH_ONLY (begin) = 1;
8362 /* Do the initialization itself. */
8363 init = add_stmt_to_compound (begin, init);
8364 init = add_stmt_to_compound
8365 (init, build2 (MODIFY_EXPR, void_type_node, flag, boolean_true_node));
8366 init = add_stmt_to_compound
8367 (init, build_call_n (release_fn, 1, guard_addr));
8369 else
8370 init = add_stmt_to_compound (init, set_guard (guard));
8372 /* Use atexit to register a function for destroying this static
8373 variable. */
8374 init = add_stmt_to_compound (init, register_dtor_fn (decl));
8376 finish_expr_stmt (init);
8378 if (thread_guard)
8380 finish_compound_stmt (inner_then_clause);
8381 finish_then_clause (inner_if_stmt);
8382 finish_if_stmt (inner_if_stmt);
8385 finish_compound_stmt (then_clause);
8386 finish_then_clause (if_stmt);
8387 finish_if_stmt (if_stmt);
8389 else if (CP_DECL_THREAD_LOCAL_P (decl))
8390 tls_aggregates = tree_cons (init, decl, tls_aggregates);
8391 else
8392 static_aggregates = tree_cons (init, decl, static_aggregates);
8396 /* Make TYPE a complete type based on INITIAL_VALUE.
8397 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
8398 2 if there was no information (in which case assume 0 if DO_DEFAULT),
8399 3 if the initializer list is empty (in pedantic mode). */
8402 cp_complete_array_type (tree *ptype, tree initial_value, bool do_default)
8404 int failure;
8405 tree type, elt_type;
8407 /* Don't get confused by a CONSTRUCTOR for some other type. */
8408 if (initial_value && TREE_CODE (initial_value) == CONSTRUCTOR
8409 && !BRACE_ENCLOSED_INITIALIZER_P (initial_value)
8410 && TREE_CODE (TREE_TYPE (initial_value)) != ARRAY_TYPE)
8411 return 1;
8413 if (initial_value)
8415 unsigned HOST_WIDE_INT i;
8416 tree value;
8418 /* An array of character type can be initialized from a
8419 brace-enclosed string constant.
8421 FIXME: this code is duplicated from reshape_init. Probably
8422 we should just call reshape_init here? */
8423 if (char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (*ptype)))
8424 && TREE_CODE (initial_value) == CONSTRUCTOR
8425 && !vec_safe_is_empty (CONSTRUCTOR_ELTS (initial_value)))
8427 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initial_value);
8428 tree value = (*v)[0].value;
8430 if (TREE_CODE (value) == STRING_CST
8431 && v->length () == 1)
8432 initial_value = value;
8435 /* If any of the elements are parameter packs, we can't actually
8436 complete this type now because the array size is dependent. */
8437 if (TREE_CODE (initial_value) == CONSTRUCTOR)
8439 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (initial_value),
8440 i, value)
8442 if (PACK_EXPANSION_P (value))
8443 return 0;
8448 failure = complete_array_type (ptype, initial_value, do_default);
8450 /* We can create the array before the element type is complete, which
8451 means that we didn't have these two bits set in the original type
8452 either. In completing the type, we are expected to propagate these
8453 bits. See also complete_type which does the same thing for arrays
8454 of fixed size. */
8455 type = *ptype;
8456 if (type != error_mark_node && TYPE_DOMAIN (type))
8458 elt_type = TREE_TYPE (type);
8459 TYPE_NEEDS_CONSTRUCTING (type) = TYPE_NEEDS_CONSTRUCTING (elt_type);
8460 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
8461 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (elt_type);
8464 return failure;
8467 /* As above, but either give an error or reject zero-size arrays, depending
8468 on COMPLAIN. */
8471 cp_complete_array_type_or_error (tree *ptype, tree initial_value,
8472 bool do_default, tsubst_flags_t complain)
8474 int failure;
8475 bool sfinae = !(complain & tf_error);
8476 /* In SFINAE context we can't be lenient about zero-size arrays. */
8477 if (sfinae)
8478 ++pedantic;
8479 failure = cp_complete_array_type (ptype, initial_value, do_default);
8480 if (sfinae)
8481 --pedantic;
8482 if (failure)
8484 if (sfinae)
8485 /* Not an error. */;
8486 else if (failure == 1)
8487 error ("initializer fails to determine size of %qT", *ptype);
8488 else if (failure == 2)
8490 if (do_default)
8491 error ("array size missing in %qT", *ptype);
8493 else if (failure == 3)
8494 error ("zero-size array %qT", *ptype);
8495 *ptype = error_mark_node;
8497 return failure;
8500 /* Return zero if something is declared to be a member of type
8501 CTYPE when in the context of CUR_TYPE. STRING is the error
8502 message to print in that case. Otherwise, quietly return 1. */
8504 static int
8505 member_function_or_else (tree ctype, tree cur_type, enum overload_flags flags)
8507 if (ctype && ctype != cur_type)
8509 if (flags == DTOR_FLAG)
8510 error ("destructor for alien class %qT cannot be a member", ctype);
8511 else
8512 error ("constructor for alien class %qT cannot be a member", ctype);
8513 return 0;
8515 return 1;
8518 /* Subroutine of `grokdeclarator'. */
8520 /* Generate errors possibly applicable for a given set of specifiers.
8521 This is for ARM $7.1.2. */
8523 static void
8524 bad_specifiers (tree object,
8525 enum bad_spec_place type,
8526 int virtualp,
8527 int quals,
8528 int inlinep,
8529 int friendp,
8530 int raises,
8531 const location_t* locations)
8533 switch (type)
8535 case BSP_VAR:
8536 if (virtualp)
8537 error_at (locations[ds_virtual],
8538 "%qD declared as a %<virtual%> variable", object);
8539 if (quals)
8540 error ("%<const%> and %<volatile%> function specifiers on "
8541 "%qD invalid in variable declaration", object);
8542 break;
8543 case BSP_PARM:
8544 if (virtualp)
8545 error_at (locations[ds_virtual],
8546 "%qD declared as a %<virtual%> parameter", object);
8547 if (inlinep)
8548 error_at (locations[ds_inline],
8549 "%qD declared as an %<inline%> parameter", object);
8550 if (quals)
8551 error ("%<const%> and %<volatile%> function specifiers on "
8552 "%qD invalid in parameter declaration", object);
8553 break;
8554 case BSP_TYPE:
8555 if (virtualp)
8556 error_at (locations[ds_virtual],
8557 "%qD declared as a %<virtual%> type", object);
8558 if (inlinep)
8559 error_at (locations[ds_inline],
8560 "%qD declared as an %<inline%> type", object);
8561 if (quals)
8562 error ("%<const%> and %<volatile%> function specifiers on "
8563 "%qD invalid in type declaration", object);
8564 break;
8565 case BSP_FIELD:
8566 if (virtualp)
8567 error_at (locations[ds_virtual],
8568 "%qD declared as a %<virtual%> field", object);
8569 if (inlinep)
8570 error_at (locations[ds_inline],
8571 "%qD declared as an %<inline%> field", object);
8572 if (quals)
8573 error ("%<const%> and %<volatile%> function specifiers on "
8574 "%qD invalid in field declaration", object);
8575 break;
8576 default:
8577 gcc_unreachable();
8579 if (friendp)
8580 error ("%q+D declared as a friend", object);
8581 if (raises
8582 && !flag_noexcept_type
8583 && (TREE_CODE (object) == TYPE_DECL
8584 || (!TYPE_PTRFN_P (TREE_TYPE (object))
8585 && !TYPE_REFFN_P (TREE_TYPE (object))
8586 && !TYPE_PTRMEMFUNC_P (TREE_TYPE (object)))))
8587 error ("%q+D declared with an exception specification", object);
8590 /* DECL is a member function or static data member and is presently
8591 being defined. Check that the definition is taking place in a
8592 valid namespace. */
8594 static void
8595 check_class_member_definition_namespace (tree decl)
8597 /* These checks only apply to member functions and static data
8598 members. */
8599 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl));
8600 /* We check for problems with specializations in pt.c in
8601 check_specialization_namespace, where we can issue better
8602 diagnostics. */
8603 if (processing_specialization)
8604 return;
8605 /* We check this in check_explicit_instantiation_namespace. */
8606 if (processing_explicit_instantiation)
8607 return;
8608 /* [class.mfct]
8610 A member function definition that appears outside of the
8611 class definition shall appear in a namespace scope enclosing
8612 the class definition.
8614 [class.static.data]
8616 The definition for a static data member shall appear in a
8617 namespace scope enclosing the member's class definition. */
8618 if (!is_ancestor (current_namespace, DECL_CONTEXT (decl)))
8619 permerror (input_location, "definition of %qD is not in namespace enclosing %qT",
8620 decl, DECL_CONTEXT (decl));
8623 /* Build a PARM_DECL for the "this" parameter of FN. TYPE is the
8624 METHOD_TYPE for a non-static member function; QUALS are the
8625 cv-qualifiers that apply to the function. */
8627 tree
8628 build_this_parm (tree fn, tree type, cp_cv_quals quals)
8630 tree this_type;
8631 tree qual_type;
8632 tree parm;
8633 cp_cv_quals this_quals;
8635 if (CLASS_TYPE_P (type))
8637 this_type
8638 = cp_build_qualified_type (type, quals & ~TYPE_QUAL_RESTRICT);
8639 this_type = build_pointer_type (this_type);
8641 else
8642 this_type = type_of_this_parm (type);
8643 /* The `this' parameter is implicitly `const'; it cannot be
8644 assigned to. */
8645 this_quals = (quals & TYPE_QUAL_RESTRICT) | TYPE_QUAL_CONST;
8646 qual_type = cp_build_qualified_type (this_type, this_quals);
8647 parm = build_artificial_parm (fn, this_identifier, qual_type);
8648 cp_apply_type_quals_to_decl (this_quals, parm);
8649 return parm;
8652 /* DECL is a static member function. Complain if it was declared
8653 with function-cv-quals. */
8655 static void
8656 check_static_quals (tree decl, cp_cv_quals quals)
8658 if (quals != TYPE_UNQUALIFIED)
8659 error ("static member function %q#D declared with type qualifiers",
8660 decl);
8663 // Check that FN takes no arguments and returns bool.
8664 static void
8665 check_concept_fn (tree fn)
8667 // A constraint is nullary.
8668 if (DECL_ARGUMENTS (fn))
8669 error_at (DECL_SOURCE_LOCATION (fn),
8670 "concept %q#D declared with function parameters", fn);
8672 // The declared return type of the concept shall be bool, and
8673 // it shall not be deduced from it definition.
8674 tree type = TREE_TYPE (TREE_TYPE (fn));
8675 if (is_auto (type))
8676 error_at (DECL_SOURCE_LOCATION (fn),
8677 "concept %q#D declared with a deduced return type", fn);
8678 else if (type != boolean_type_node)
8679 error_at (DECL_SOURCE_LOCATION (fn),
8680 "concept %q#D with non-%<bool%> return type %qT", fn, type);
8683 /* Helper function. Replace the temporary this parameter injected
8684 during cp_finish_omp_declare_simd with the real this parameter. */
8686 static tree
8687 declare_simd_adjust_this (tree *tp, int *walk_subtrees, void *data)
8689 tree this_parm = (tree) data;
8690 if (TREE_CODE (*tp) == PARM_DECL
8691 && DECL_NAME (*tp) == this_identifier
8692 && *tp != this_parm)
8693 *tp = this_parm;
8694 else if (TYPE_P (*tp))
8695 *walk_subtrees = 0;
8696 return NULL_TREE;
8699 /* CTYPE is class type, or null if non-class.
8700 TYPE is type this FUNCTION_DECL should have, either FUNCTION_TYPE
8701 or METHOD_TYPE.
8702 DECLARATOR is the function's name.
8703 PARMS is a chain of PARM_DECLs for the function.
8704 VIRTUALP is truthvalue of whether the function is virtual or not.
8705 FLAGS are to be passed through to `grokclassfn'.
8706 QUALS are qualifiers indicating whether the function is `const'
8707 or `volatile'.
8708 RAISES is a list of exceptions that this function can raise.
8709 CHECK is 1 if we must find this method in CTYPE, 0 if we should
8710 not look, and -1 if we should not call `grokclassfn' at all.
8712 SFK is the kind of special function (if any) for the new function.
8714 Returns `NULL_TREE' if something goes wrong, after issuing
8715 applicable error messages. */
8717 static tree
8718 grokfndecl (tree ctype,
8719 tree type,
8720 tree declarator,
8721 tree parms,
8722 tree orig_declarator,
8723 const cp_decl_specifier_seq *declspecs,
8724 tree decl_reqs,
8725 int virtualp,
8726 enum overload_flags flags,
8727 cp_cv_quals quals,
8728 cp_ref_qualifier rqual,
8729 tree raises,
8730 int check,
8731 int friendp,
8732 int publicp,
8733 int inlinep,
8734 bool deletedp,
8735 special_function_kind sfk,
8736 bool funcdef_flag,
8737 bool late_return_type_p,
8738 int template_count,
8739 tree in_namespace,
8740 tree* attrlist,
8741 location_t location)
8743 tree decl;
8744 int staticp = ctype && TREE_CODE (type) == FUNCTION_TYPE;
8745 tree t;
8747 if (location == UNKNOWN_LOCATION)
8748 location = input_location;
8750 // Was the concept specifier present?
8751 bool concept_p = inlinep & 4;
8753 // Concept declarations must have a corresponding definition.
8754 if (concept_p && !funcdef_flag)
8756 error_at (location, "concept %qD has no definition", declarator);
8757 return NULL_TREE;
8760 type = build_cp_fntype_variant (type, rqual, raises, late_return_type_p);
8762 decl = build_lang_decl_loc (location, FUNCTION_DECL, declarator, type);
8764 /* Set the constraints on the declaration. */
8765 if (flag_concepts)
8767 tree tmpl_reqs = NULL_TREE;
8768 if (processing_template_decl > template_class_depth (ctype))
8769 tmpl_reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
8771 /* Adjust the required expression into a constraint. */
8772 if (decl_reqs)
8773 decl_reqs = normalize_expression (decl_reqs);
8775 tree ci = build_constraints (tmpl_reqs, decl_reqs);
8776 set_constraints (decl, ci);
8779 if (TREE_CODE (type) == METHOD_TYPE)
8781 tree parm = build_this_parm (decl, type, quals);
8782 DECL_CHAIN (parm) = parms;
8783 parms = parm;
8785 /* Allocate space to hold the vptr bit if needed. */
8786 SET_DECL_ALIGN (decl, MINIMUM_METHOD_BOUNDARY);
8789 DECL_ARGUMENTS (decl) = parms;
8790 for (t = parms; t; t = DECL_CHAIN (t))
8791 DECL_CONTEXT (t) = decl;
8793 /* Propagate volatile out from type to decl. */
8794 if (TYPE_VOLATILE (type))
8795 TREE_THIS_VOLATILE (decl) = 1;
8797 /* Setup decl according to sfk. */
8798 switch (sfk)
8800 case sfk_constructor:
8801 case sfk_copy_constructor:
8802 case sfk_move_constructor:
8803 DECL_CXX_CONSTRUCTOR_P (decl) = 1;
8804 DECL_NAME (decl) = ctor_identifier;
8805 break;
8806 case sfk_destructor:
8807 DECL_CXX_DESTRUCTOR_P (decl) = 1;
8808 DECL_NAME (decl) = dtor_identifier;
8809 break;
8810 default:
8811 break;
8814 if (friendp && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)
8816 if (funcdef_flag)
8817 error_at (location,
8818 "defining explicit specialization %qD in friend declaration",
8819 orig_declarator);
8820 else
8822 tree fns = TREE_OPERAND (orig_declarator, 0);
8823 tree args = TREE_OPERAND (orig_declarator, 1);
8825 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
8827 /* Something like `template <class T> friend void f<T>()'. */
8828 error_at (location,
8829 "invalid use of template-id %qD in declaration "
8830 "of primary template",
8831 orig_declarator);
8832 return NULL_TREE;
8836 /* A friend declaration of the form friend void f<>(). Record
8837 the information in the TEMPLATE_ID_EXPR. */
8838 SET_DECL_IMPLICIT_INSTANTIATION (decl);
8840 gcc_assert (identifier_p (fns)
8841 || TREE_CODE (fns) == OVERLOAD
8842 || TREE_CODE (fns) == FUNCTION_DECL);
8843 DECL_TEMPLATE_INFO (decl) = build_template_info (fns, args);
8845 for (t = TYPE_ARG_TYPES (TREE_TYPE (decl)); t; t = TREE_CHAIN (t))
8846 if (TREE_PURPOSE (t)
8847 && TREE_CODE (TREE_PURPOSE (t)) == DEFAULT_ARG)
8849 error_at (defarg_location (TREE_PURPOSE (t)),
8850 "default arguments are not allowed in declaration "
8851 "of friend template specialization %qD",
8852 decl);
8853 return NULL_TREE;
8856 if (inlinep & 1)
8858 error_at (declspecs->locations[ds_inline],
8859 "%<inline%> is not allowed in declaration of friend "
8860 "template specialization %qD",
8861 decl);
8862 return NULL_TREE;
8867 /* C++17 11.3.6/4: "If a friend declaration specifies a default argument
8868 expression, that declaration shall be a definition..." */
8869 if (friendp && !funcdef_flag)
8871 for (tree t = FUNCTION_FIRST_USER_PARMTYPE (decl);
8872 t && t != void_list_node; t = TREE_CHAIN (t))
8873 if (TREE_PURPOSE (t))
8875 permerror (DECL_SOURCE_LOCATION (decl),
8876 "friend declaration of %qD specifies default "
8877 "arguments and isn't a definition", decl);
8878 break;
8882 /* If this decl has namespace scope, set that up. */
8883 if (in_namespace)
8884 set_decl_namespace (decl, in_namespace, friendp);
8885 else if (!ctype)
8886 DECL_CONTEXT (decl) = FROB_CONTEXT (current_decl_namespace ());
8888 /* `main' and builtins have implicit 'C' linkage. */
8889 if (ctype == NULL_TREE
8890 && DECL_FILE_SCOPE_P (decl)
8891 && current_lang_name == lang_name_cplusplus
8892 && (MAIN_NAME_P (declarator)
8893 || (IDENTIFIER_LENGTH (declarator) > 10
8894 && IDENTIFIER_POINTER (declarator)[0] == '_'
8895 && IDENTIFIER_POINTER (declarator)[1] == '_'
8896 && strncmp (IDENTIFIER_POINTER (declarator)+2,
8897 "builtin_", 8) == 0)
8898 || (targetcm.cxx_implicit_extern_c
8899 && (targetcm.cxx_implicit_extern_c
8900 (IDENTIFIER_POINTER (declarator))))))
8901 SET_DECL_LANGUAGE (decl, lang_c);
8903 /* Should probably propagate const out from type to decl I bet (mrs). */
8904 if (staticp)
8906 DECL_STATIC_FUNCTION_P (decl) = 1;
8907 DECL_CONTEXT (decl) = ctype;
8910 if (deletedp)
8911 DECL_DELETED_FN (decl) = 1;
8913 if (ctype)
8915 DECL_CONTEXT (decl) = ctype;
8916 if (funcdef_flag)
8917 check_class_member_definition_namespace (decl);
8920 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
8922 if (PROCESSING_REAL_TEMPLATE_DECL_P())
8923 error_at (location, "cannot declare %<::main%> to be a template");
8924 if (inlinep & 1)
8925 error_at (declspecs->locations[ds_inline],
8926 "cannot declare %<::main%> to be inline");
8927 if (inlinep & 2)
8928 error_at (declspecs->locations[ds_constexpr],
8929 "cannot declare %<::main%> to be %<constexpr%>");
8930 if (!publicp)
8931 error_at (location, "cannot declare %<::main%> to be static");
8932 inlinep = 0;
8933 publicp = 1;
8936 /* Members of anonymous types and local classes have no linkage; make
8937 them internal. If a typedef is made later, this will be changed. */
8938 if (ctype && (!TREE_PUBLIC (TYPE_MAIN_DECL (ctype))
8939 || decl_function_context (TYPE_MAIN_DECL (ctype))))
8940 publicp = 0;
8942 if (publicp && cxx_dialect == cxx98)
8944 /* [basic.link]: A name with no linkage (notably, the name of a class
8945 or enumeration declared in a local scope) shall not be used to
8946 declare an entity with linkage.
8948 DR 757 relaxes this restriction for C++0x. */
8949 no_linkage_error (decl);
8952 TREE_PUBLIC (decl) = publicp;
8953 if (! publicp)
8955 DECL_INTERFACE_KNOWN (decl) = 1;
8956 DECL_NOT_REALLY_EXTERN (decl) = 1;
8959 /* If the declaration was declared inline, mark it as such. */
8960 if (inlinep)
8962 DECL_DECLARED_INLINE_P (decl) = 1;
8963 if (publicp)
8964 DECL_COMDAT (decl) = 1;
8966 if (inlinep & 2)
8967 DECL_DECLARED_CONSTEXPR_P (decl) = true;
8969 // If the concept declaration specifier was found, check
8970 // that the declaration satisfies the necessary requirements.
8971 if (concept_p)
8973 DECL_DECLARED_CONCEPT_P (decl) = true;
8974 check_concept_fn (decl);
8977 DECL_EXTERNAL (decl) = 1;
8978 if (TREE_CODE (type) == FUNCTION_TYPE)
8980 if (quals || rqual)
8981 TREE_TYPE (decl) = apply_memfn_quals (TREE_TYPE (decl),
8982 TYPE_UNQUALIFIED,
8983 REF_QUAL_NONE);
8985 if (quals)
8987 error (ctype
8988 ? G_("static member function %qD cannot have cv-qualifier")
8989 : G_("non-member function %qD cannot have cv-qualifier"),
8990 decl);
8991 quals = TYPE_UNQUALIFIED;
8994 if (rqual)
8996 error (ctype
8997 ? G_("static member function %qD cannot have ref-qualifier")
8998 : G_("non-member function %qD cannot have ref-qualifier"),
8999 decl);
9000 rqual = REF_QUAL_NONE;
9004 if (deduction_guide_p (decl))
9006 if (!DECL_NAMESPACE_SCOPE_P (decl))
9008 error_at (location, "deduction guide %qD must be declared at "
9009 "namespace scope", decl);
9010 return NULL_TREE;
9012 if (funcdef_flag)
9013 error_at (location,
9014 "deduction guide %qD must not have a function body", decl);
9016 else if (IDENTIFIER_ANY_OP_P (DECL_NAME (decl))
9017 && !grok_op_properties (decl, /*complain=*/true))
9018 return NULL_TREE;
9019 else if (UDLIT_OPER_P (DECL_NAME (decl)))
9021 bool long_long_unsigned_p;
9022 bool long_double_p;
9023 const char *suffix = NULL;
9024 /* [over.literal]/6: Literal operators shall not have C linkage. */
9025 if (DECL_LANGUAGE (decl) == lang_c)
9027 error_at (location, "literal operator with C linkage");
9028 maybe_show_extern_c_location ();
9029 return NULL_TREE;
9032 if (DECL_NAMESPACE_SCOPE_P (decl))
9034 if (!check_literal_operator_args (decl, &long_long_unsigned_p,
9035 &long_double_p))
9037 error_at (location, "%qD has invalid argument list", decl);
9038 return NULL_TREE;
9041 suffix = UDLIT_OP_SUFFIX (DECL_NAME (decl));
9042 if (long_long_unsigned_p)
9044 if (cpp_interpret_int_suffix (parse_in, suffix, strlen (suffix)))
9045 warning_at (location, 0, "integer suffix %qs"
9046 " shadowed by implementation", suffix);
9048 else if (long_double_p)
9050 if (cpp_interpret_float_suffix (parse_in, suffix, strlen (suffix)))
9051 warning_at (location, 0, "floating point suffix %qs"
9052 " shadowed by implementation", suffix);
9054 /* 17.6.3.3.5 */
9055 if (suffix[0] != '_'
9056 && !in_system_header_at (location)
9057 && !current_function_decl && !(friendp && !funcdef_flag))
9058 warning_at (location, OPT_Wliteral_suffix,
9059 "literal operator suffixes not preceded by %<_%>"
9060 " are reserved for future standardization");
9062 else
9064 error_at (location, "%qD must be a non-member function", decl);
9065 return NULL_TREE;
9069 if (funcdef_flag)
9070 /* Make the init_value nonzero so pushdecl knows this is not
9071 tentative. error_mark_node is replaced later with the BLOCK. */
9072 DECL_INITIAL (decl) = error_mark_node;
9074 if (TYPE_NOTHROW_P (type) || nothrow_libfn_p (decl))
9075 TREE_NOTHROW (decl) = 1;
9077 if (flag_openmp || flag_openmp_simd)
9079 /* Adjust "omp declare simd" attributes. */
9080 tree ods = lookup_attribute ("omp declare simd", *attrlist);
9081 if (ods)
9083 tree attr;
9084 for (attr = ods; attr;
9085 attr = lookup_attribute ("omp declare simd", TREE_CHAIN (attr)))
9087 if (TREE_CODE (type) == METHOD_TYPE)
9088 walk_tree (&TREE_VALUE (attr), declare_simd_adjust_this,
9089 DECL_ARGUMENTS (decl), NULL);
9090 if (TREE_VALUE (attr) != NULL_TREE)
9092 tree cl = TREE_VALUE (TREE_VALUE (attr));
9093 cl = c_omp_declare_simd_clauses_to_numbers
9094 (DECL_ARGUMENTS (decl), cl);
9095 if (cl)
9096 TREE_VALUE (TREE_VALUE (attr)) = cl;
9097 else
9098 TREE_VALUE (attr) = NULL_TREE;
9104 /* Caller will do the rest of this. */
9105 if (check < 0)
9106 return decl;
9108 if (ctype != NULL_TREE)
9109 grokclassfn (ctype, decl, flags);
9111 /* 12.4/3 */
9112 if (cxx_dialect >= cxx11
9113 && DECL_DESTRUCTOR_P (decl)
9114 && !TYPE_BEING_DEFINED (DECL_CONTEXT (decl))
9115 && !processing_template_decl)
9116 deduce_noexcept_on_destructor (decl);
9118 decl = check_explicit_specialization (orig_declarator, decl,
9119 template_count,
9120 2 * funcdef_flag +
9121 4 * (friendp != 0) +
9122 8 * concept_p,
9123 *attrlist);
9124 if (decl == error_mark_node)
9125 return NULL_TREE;
9127 if (DECL_STATIC_FUNCTION_P (decl))
9128 check_static_quals (decl, quals);
9130 if (attrlist)
9132 cplus_decl_attributes (&decl, *attrlist, 0);
9133 *attrlist = NULL_TREE;
9136 /* Check main's type after attributes have been applied. */
9137 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
9139 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
9140 integer_type_node))
9142 tree oldtypeargs = TYPE_ARG_TYPES (TREE_TYPE (decl));
9143 tree newtype;
9144 error_at (declspecs->locations[ds_type_spec],
9145 "%<::main%> must return %<int%>");
9146 newtype = build_function_type (integer_type_node, oldtypeargs);
9147 TREE_TYPE (decl) = newtype;
9149 if (warn_main)
9150 check_main_parameter_types (decl);
9153 if (ctype != NULL_TREE && check)
9155 tree old_decl = check_classfn (ctype, decl,
9156 (processing_template_decl
9157 > template_class_depth (ctype))
9158 ? current_template_parms
9159 : NULL_TREE);
9161 if (old_decl == error_mark_node)
9162 return NULL_TREE;
9164 if (old_decl)
9166 tree ok;
9167 tree pushed_scope;
9169 if (TREE_CODE (old_decl) == TEMPLATE_DECL)
9170 /* Because grokfndecl is always supposed to return a
9171 FUNCTION_DECL, we pull out the DECL_TEMPLATE_RESULT
9172 here. We depend on our callers to figure out that its
9173 really a template that's being returned. */
9174 old_decl = DECL_TEMPLATE_RESULT (old_decl);
9176 if (DECL_STATIC_FUNCTION_P (old_decl)
9177 && TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE)
9179 /* Remove the `this' parm added by grokclassfn. */
9180 revert_static_member_fn (decl);
9181 check_static_quals (decl, quals);
9183 if (DECL_ARTIFICIAL (old_decl))
9185 error ("definition of implicitly-declared %qD", old_decl);
9186 return NULL_TREE;
9188 else if (DECL_DEFAULTED_FN (old_decl))
9190 error ("definition of explicitly-defaulted %q+D", decl);
9191 inform (DECL_SOURCE_LOCATION (old_decl),
9192 "%q#D explicitly defaulted here", old_decl);
9193 return NULL_TREE;
9196 /* Since we've smashed OLD_DECL to its
9197 DECL_TEMPLATE_RESULT, we must do the same to DECL. */
9198 if (TREE_CODE (decl) == TEMPLATE_DECL)
9199 decl = DECL_TEMPLATE_RESULT (decl);
9201 /* Attempt to merge the declarations. This can fail, in
9202 the case of some invalid specialization declarations. */
9203 pushed_scope = push_scope (ctype);
9204 ok = duplicate_decls (decl, old_decl, friendp);
9205 if (pushed_scope)
9206 pop_scope (pushed_scope);
9207 if (!ok)
9209 error ("no %q#D member function declared in class %qT",
9210 decl, ctype);
9211 return NULL_TREE;
9213 if (ok == error_mark_node)
9214 return NULL_TREE;
9215 return old_decl;
9219 if (DECL_CONSTRUCTOR_P (decl) && !grok_ctor_properties (ctype, decl))
9220 return NULL_TREE;
9222 if (ctype == NULL_TREE || check)
9223 return decl;
9225 if (virtualp)
9226 DECL_VIRTUAL_P (decl) = 1;
9228 return decl;
9231 /* decl is a FUNCTION_DECL.
9232 specifiers are the parsed virt-specifiers.
9234 Set flags to reflect the virt-specifiers.
9236 Returns decl. */
9238 static tree
9239 set_virt_specifiers (tree decl, cp_virt_specifiers specifiers)
9241 if (decl == NULL_TREE)
9242 return decl;
9243 if (specifiers & VIRT_SPEC_OVERRIDE)
9244 DECL_OVERRIDE_P (decl) = 1;
9245 if (specifiers & VIRT_SPEC_FINAL)
9246 DECL_FINAL_P (decl) = 1;
9247 return decl;
9250 /* DECL is a VAR_DECL for a static data member. Set flags to reflect
9251 the linkage that DECL will receive in the object file. */
9253 static void
9254 set_linkage_for_static_data_member (tree decl)
9256 /* A static data member always has static storage duration and
9257 external linkage. Note that static data members are forbidden in
9258 local classes -- the only situation in which a class has
9259 non-external linkage. */
9260 TREE_PUBLIC (decl) = 1;
9261 TREE_STATIC (decl) = 1;
9262 /* For non-template classes, static data members are always put
9263 out in exactly those files where they are defined, just as
9264 with ordinary namespace-scope variables. */
9265 if (!processing_template_decl)
9266 DECL_INTERFACE_KNOWN (decl) = 1;
9269 /* Create a VAR_DECL named NAME with the indicated TYPE.
9271 If SCOPE is non-NULL, it is the class type or namespace containing
9272 the variable. If SCOPE is NULL, the variable should is created in
9273 the innermost enclosing scope. */
9275 static tree
9276 grokvardecl (tree type,
9277 tree name,
9278 tree orig_declarator,
9279 const cp_decl_specifier_seq *declspecs,
9280 int initialized,
9281 int type_quals,
9282 int inlinep,
9283 bool conceptp,
9284 int template_count,
9285 tree scope)
9287 tree decl;
9288 tree explicit_scope;
9290 gcc_assert (!name || identifier_p (name));
9292 bool constp = (type_quals & TYPE_QUAL_CONST) != 0;
9293 bool volatilep = (type_quals & TYPE_QUAL_VOLATILE) != 0;
9295 /* Compute the scope in which to place the variable, but remember
9296 whether or not that scope was explicitly specified by the user. */
9297 explicit_scope = scope;
9298 if (!scope)
9300 /* An explicit "extern" specifier indicates a namespace-scope
9301 variable. */
9302 if (declspecs->storage_class == sc_extern)
9303 scope = current_decl_namespace ();
9304 else if (!at_function_scope_p ())
9305 scope = current_scope ();
9308 if (scope
9309 && (/* If the variable is a namespace-scope variable declared in a
9310 template, we need DECL_LANG_SPECIFIC. */
9311 (TREE_CODE (scope) == NAMESPACE_DECL && processing_template_decl)
9312 /* Similarly for namespace-scope variables with language linkage
9313 other than C++. */
9314 || (TREE_CODE (scope) == NAMESPACE_DECL
9315 && current_lang_name != lang_name_cplusplus)
9316 /* Similarly for static data members. */
9317 || TYPE_P (scope)
9318 /* Similarly for explicit specializations. */
9319 || (orig_declarator
9320 && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)))
9321 decl = build_lang_decl (VAR_DECL, name, type);
9322 else
9323 decl = build_decl (input_location, VAR_DECL, name, type);
9325 if (explicit_scope && TREE_CODE (explicit_scope) == NAMESPACE_DECL)
9326 set_decl_namespace (decl, explicit_scope, 0);
9327 else
9328 DECL_CONTEXT (decl) = FROB_CONTEXT (scope);
9330 if (declspecs->storage_class == sc_extern)
9332 DECL_THIS_EXTERN (decl) = 1;
9333 DECL_EXTERNAL (decl) = !initialized;
9336 if (DECL_CLASS_SCOPE_P (decl))
9338 set_linkage_for_static_data_member (decl);
9339 /* This function is only called with out-of-class definitions. */
9340 DECL_EXTERNAL (decl) = 0;
9341 check_class_member_definition_namespace (decl);
9343 /* At top level, either `static' or no s.c. makes a definition
9344 (perhaps tentative), and absence of `static' makes it public. */
9345 else if (toplevel_bindings_p ())
9347 TREE_PUBLIC (decl) = (declspecs->storage_class != sc_static
9348 && (DECL_THIS_EXTERN (decl)
9349 || ! constp
9350 || volatilep
9351 || inlinep));
9352 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
9354 /* Not at top level, only `static' makes a static definition. */
9355 else
9357 TREE_STATIC (decl) = declspecs->storage_class == sc_static;
9358 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
9361 if (decl_spec_seq_has_spec_p (declspecs, ds_thread))
9363 if (DECL_EXTERNAL (decl) || TREE_STATIC (decl))
9365 CP_DECL_THREAD_LOCAL_P (decl) = true;
9366 if (!processing_template_decl)
9367 set_decl_tls_model (decl, decl_default_tls_model (decl));
9369 if (declspecs->gnu_thread_keyword_p)
9370 SET_DECL_GNU_TLS_P (decl);
9373 /* If the type of the decl has no linkage, make sure that we'll
9374 notice that in mark_used. */
9375 if (cxx_dialect > cxx98
9376 && decl_linkage (decl) != lk_none
9377 && DECL_LANG_SPECIFIC (decl) == NULL
9378 && !DECL_EXTERN_C_P (decl)
9379 && no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/false))
9380 retrofit_lang_decl (decl);
9382 if (TREE_PUBLIC (decl))
9384 /* [basic.link]: A name with no linkage (notably, the name of a class
9385 or enumeration declared in a local scope) shall not be used to
9386 declare an entity with linkage.
9388 DR 757 relaxes this restriction for C++0x. */
9389 if (cxx_dialect < cxx11)
9390 no_linkage_error (decl);
9392 else
9393 DECL_INTERFACE_KNOWN (decl) = 1;
9395 if (DECL_NAME (decl)
9396 && MAIN_NAME_P (DECL_NAME (decl))
9397 && scope == global_namespace)
9398 error ("cannot declare %<::main%> to be a global variable");
9400 /* Check that the variable can be safely declared as a concept.
9401 Note that this also forbids explicit specializations. */
9402 if (conceptp)
9404 if (!processing_template_decl)
9406 error_at (declspecs->locations[ds_concept],
9407 "a non-template variable cannot be %<concept%>");
9408 return NULL_TREE;
9410 else
9411 DECL_DECLARED_CONCEPT_P (decl) = true;
9412 if (!same_type_ignoring_top_level_qualifiers_p (type, boolean_type_node))
9413 error_at (declspecs->locations[ds_type_spec],
9414 "concept must have type %<bool%>");
9416 else if (flag_concepts
9417 && processing_template_decl > template_class_depth (scope))
9419 tree reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
9420 tree ci = build_constraints (reqs, NULL_TREE);
9421 set_constraints (decl, ci);
9424 // Handle explicit specializations and instantiations of variable templates.
9425 if (orig_declarator)
9426 decl = check_explicit_specialization (orig_declarator, decl,
9427 template_count, conceptp * 8);
9429 return decl != error_mark_node ? decl : NULL_TREE;
9432 /* Create and return a canonical pointer to member function type, for
9433 TYPE, which is a POINTER_TYPE to a METHOD_TYPE. */
9435 tree
9436 build_ptrmemfunc_type (tree type)
9438 tree field, fields;
9439 tree t;
9441 if (type == error_mark_node)
9442 return type;
9444 /* Make sure that we always have the unqualified pointer-to-member
9445 type first. */
9446 if (cp_cv_quals quals = cp_type_quals (type))
9448 tree unqual = build_ptrmemfunc_type (TYPE_MAIN_VARIANT (type));
9449 return cp_build_qualified_type (unqual, quals);
9452 /* If a canonical type already exists for this type, use it. We use
9453 this method instead of type_hash_canon, because it only does a
9454 simple equality check on the list of field members. */
9456 t = TYPE_PTRMEMFUNC_TYPE (type);
9457 if (t)
9458 return t;
9460 t = make_node (RECORD_TYPE);
9462 /* Let the front end know this is a pointer to member function. */
9463 TYPE_PTRMEMFUNC_FLAG (t) = 1;
9465 field = build_decl (input_location, FIELD_DECL, pfn_identifier, type);
9466 fields = field;
9468 field = build_decl (input_location, FIELD_DECL, delta_identifier,
9469 delta_type_node);
9470 DECL_CHAIN (field) = fields;
9471 fields = field;
9473 finish_builtin_struct (t, "__ptrmemfunc_type", fields, ptr_type_node);
9475 /* Zap out the name so that the back end will give us the debugging
9476 information for this anonymous RECORD_TYPE. */
9477 TYPE_NAME (t) = NULL_TREE;
9479 /* Cache this pointer-to-member type so that we can find it again
9480 later. */
9481 TYPE_PTRMEMFUNC_TYPE (type) = t;
9483 if (TYPE_STRUCTURAL_EQUALITY_P (type))
9484 SET_TYPE_STRUCTURAL_EQUALITY (t);
9485 else if (TYPE_CANONICAL (type) != type)
9486 TYPE_CANONICAL (t) = build_ptrmemfunc_type (TYPE_CANONICAL (type));
9488 return t;
9491 /* Create and return a pointer to data member type. */
9493 tree
9494 build_ptrmem_type (tree class_type, tree member_type)
9496 if (TREE_CODE (member_type) == METHOD_TYPE)
9498 cp_cv_quals quals = type_memfn_quals (member_type);
9499 cp_ref_qualifier rqual = type_memfn_rqual (member_type);
9500 member_type = build_memfn_type (member_type, class_type, quals, rqual);
9501 return build_ptrmemfunc_type (build_pointer_type (member_type));
9503 else
9505 gcc_assert (TREE_CODE (member_type) != FUNCTION_TYPE);
9506 return build_offset_type (class_type, member_type);
9510 /* DECL is a VAR_DECL defined in-class, whose TYPE is also given.
9511 Check to see that the definition is valid. Issue appropriate error
9512 messages. */
9514 static void
9515 check_static_variable_definition (tree decl, tree type)
9517 /* Avoid redundant diagnostics on out-of-class definitions. */
9518 if (!current_class_type || !TYPE_BEING_DEFINED (current_class_type))
9520 /* Can't check yet if we don't know the type. */
9521 else if (dependent_type_p (type))
9523 /* If DECL is declared constexpr, we'll do the appropriate checks
9524 in check_initializer. Similarly for inline static data members. */
9525 else if (DECL_P (decl)
9526 && (DECL_DECLARED_CONSTEXPR_P (decl)
9527 || undeduced_auto_decl (decl)
9528 || DECL_VAR_DECLARED_INLINE_P (decl)))
9530 else if (cxx_dialect >= cxx11 && !INTEGRAL_OR_ENUMERATION_TYPE_P (type))
9532 if (!COMPLETE_TYPE_P (type))
9533 error_at (DECL_SOURCE_LOCATION (decl),
9534 "in-class initialization of static data member %q#D of "
9535 "incomplete type", decl);
9536 else if (literal_type_p (type))
9537 permerror (DECL_SOURCE_LOCATION (decl),
9538 "%<constexpr%> needed for in-class initialization of "
9539 "static data member %q#D of non-integral type", decl);
9540 else
9541 error_at (DECL_SOURCE_LOCATION (decl),
9542 "in-class initialization of static data member %q#D of "
9543 "non-literal type", decl);
9545 /* Motion 10 at San Diego: If a static const integral data member is
9546 initialized with an integral constant expression, the initializer
9547 may appear either in the declaration (within the class), or in
9548 the definition, but not both. If it appears in the class, the
9549 member is a member constant. The file-scope definition is always
9550 required. */
9551 else if (!ARITHMETIC_TYPE_P (type) && TREE_CODE (type) != ENUMERAL_TYPE)
9552 error_at (DECL_SOURCE_LOCATION (decl),
9553 "invalid in-class initialization of static data member "
9554 "of non-integral type %qT",
9555 type);
9556 else if (!CP_TYPE_CONST_P (type))
9557 error_at (DECL_SOURCE_LOCATION (decl),
9558 "ISO C++ forbids in-class initialization of non-const "
9559 "static member %qD",
9560 decl);
9561 else if (!INTEGRAL_OR_ENUMERATION_TYPE_P (type))
9562 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wpedantic,
9563 "ISO C++ forbids initialization of member constant "
9564 "%qD of non-integral type %qT", decl, type);
9567 /* *expr_p is part of the TYPE_SIZE of a variably-sized array. If any
9568 SAVE_EXPRs in *expr_p wrap expressions with side-effects, break those
9569 expressions out into temporary variables so that walk_tree doesn't
9570 step into them (c++/15764). */
9572 static tree
9573 stabilize_save_expr_r (tree *expr_p, int *walk_subtrees, void *data)
9575 hash_set<tree> *pset = (hash_set<tree> *)data;
9576 tree expr = *expr_p;
9577 if (TREE_CODE (expr) == SAVE_EXPR)
9579 tree op = TREE_OPERAND (expr, 0);
9580 cp_walk_tree (&op, stabilize_save_expr_r, data, pset);
9581 if (TREE_SIDE_EFFECTS (op))
9582 TREE_OPERAND (expr, 0) = get_temp_regvar (TREE_TYPE (op), op);
9583 *walk_subtrees = 0;
9585 else if (!EXPR_P (expr) || !TREE_SIDE_EFFECTS (expr))
9586 *walk_subtrees = 0;
9587 return NULL;
9590 /* Entry point for the above. */
9592 static void
9593 stabilize_vla_size (tree size)
9595 hash_set<tree> pset;
9596 /* Break out any function calls into temporary variables. */
9597 cp_walk_tree (&size, stabilize_save_expr_r, &pset, &pset);
9600 /* Reduce a SIZEOF_EXPR to its value. */
9602 tree
9603 fold_sizeof_expr (tree t)
9605 tree r;
9606 if (SIZEOF_EXPR_TYPE_P (t))
9607 r = cxx_sizeof_or_alignof_type (TREE_TYPE (TREE_OPERAND (t, 0)),
9608 SIZEOF_EXPR, false, false);
9609 else if (TYPE_P (TREE_OPERAND (t, 0)))
9610 r = cxx_sizeof_or_alignof_type (TREE_OPERAND (t, 0), SIZEOF_EXPR,
9611 false, false);
9612 else
9613 r = cxx_sizeof_or_alignof_expr (TREE_OPERAND (t, 0), SIZEOF_EXPR,
9614 false);
9615 if (r == error_mark_node)
9616 r = size_one_node;
9617 return r;
9620 /* Given the SIZE (i.e., number of elements) in an array, compute
9621 an appropriate index type for the array. If non-NULL, NAME is
9622 the name of the entity being declared. */
9624 tree
9625 compute_array_index_type (tree name, tree size, tsubst_flags_t complain)
9627 tree itype;
9628 tree osize = size;
9630 if (error_operand_p (size))
9631 return error_mark_node;
9633 if (!type_dependent_expression_p (size))
9635 osize = size = mark_rvalue_use (size);
9637 if (cxx_dialect < cxx11 && TREE_CODE (size) == NOP_EXPR
9638 && TREE_SIDE_EFFECTS (size))
9639 /* In C++98, we mark a non-constant array bound with a magic
9640 NOP_EXPR with TREE_SIDE_EFFECTS; don't fold in that case. */;
9641 else
9643 size = instantiate_non_dependent_expr_sfinae (size, complain);
9644 size = build_converted_constant_expr (size_type_node, size, complain);
9645 size = maybe_constant_value (size);
9647 if (!TREE_CONSTANT (size))
9648 size = osize;
9651 if (error_operand_p (size))
9652 return error_mark_node;
9654 /* The array bound must be an integer type. */
9655 tree type = TREE_TYPE (size);
9656 if (!INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
9658 if (!(complain & tf_error))
9659 return error_mark_node;
9660 if (name)
9661 error ("size of array %qD has non-integral type %qT", name, type);
9662 else
9663 error ("size of array has non-integral type %qT", type);
9664 size = integer_one_node;
9668 /* A type is dependent if it is...an array type constructed from any
9669 dependent type or whose size is specified by a constant expression
9670 that is value-dependent. */
9671 /* We can only call value_dependent_expression_p on integral constant
9672 expressions; treat non-constant expressions as dependent, too. */
9673 if (processing_template_decl
9674 && (type_dependent_expression_p (size)
9675 || !TREE_CONSTANT (size) || value_dependent_expression_p (size)))
9677 /* We cannot do any checking for a SIZE that isn't known to be
9678 constant. Just build the index type and mark that it requires
9679 structural equality checks. */
9680 itype = build_index_type (build_min (MINUS_EXPR, sizetype,
9681 size, size_one_node));
9682 TYPE_DEPENDENT_P (itype) = 1;
9683 TYPE_DEPENDENT_P_VALID (itype) = 1;
9684 SET_TYPE_STRUCTURAL_EQUALITY (itype);
9685 return itype;
9688 if (TREE_CODE (size) != INTEGER_CST)
9690 tree folded = cp_fully_fold (size);
9691 if (TREE_CODE (folded) == INTEGER_CST)
9692 pedwarn (input_location, OPT_Wpedantic,
9693 "size of array is not an integral constant-expression");
9694 /* Use the folded result for VLAs, too; it will have resolved
9695 SIZEOF_EXPR. */
9696 size = folded;
9699 /* Normally, the array-bound will be a constant. */
9700 if (TREE_CODE (size) == INTEGER_CST)
9702 /* An array must have a positive number of elements. */
9703 if (!valid_constant_size_p (size))
9705 if (!(complain & tf_error))
9706 return error_mark_node;
9708 if (name)
9709 error ("size of array %qD is negative", name);
9710 else
9711 error ("size of array is negative");
9712 size = integer_one_node;
9714 /* As an extension we allow zero-sized arrays. */
9715 else if (integer_zerop (size))
9717 if (!(complain & tf_error))
9718 /* We must fail if performing argument deduction (as
9719 indicated by the state of complain), so that
9720 another substitution can be found. */
9721 return error_mark_node;
9722 else if (in_system_header_at (input_location))
9723 /* Allow them in system headers because glibc uses them. */;
9724 else if (name)
9725 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids zero-size array %qD", name);
9726 else
9727 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids zero-size array");
9730 else if (TREE_CONSTANT (size)
9731 /* We don't allow VLAs at non-function scopes, or during
9732 tentative template substitution. */
9733 || !at_function_scope_p ()
9734 || !(complain & tf_error))
9736 if (!(complain & tf_error))
9737 return error_mark_node;
9738 /* `(int) &fn' is not a valid array bound. */
9739 if (name)
9740 error ("size of array %qD is not an integral constant-expression",
9741 name);
9742 else
9743 error ("size of array is not an integral constant-expression");
9744 size = integer_one_node;
9746 else if (pedantic && warn_vla != 0)
9748 if (name)
9749 pedwarn (input_location, OPT_Wvla, "ISO C++ forbids variable length array %qD", name);
9750 else
9751 pedwarn (input_location, OPT_Wvla, "ISO C++ forbids variable length array");
9753 else if (warn_vla > 0)
9755 if (name)
9756 warning (OPT_Wvla,
9757 "variable length array %qD is used", name);
9758 else
9759 warning (OPT_Wvla,
9760 "variable length array is used");
9763 if (processing_template_decl && !TREE_CONSTANT (size))
9764 /* A variable sized array. */
9765 itype = build_min (MINUS_EXPR, sizetype, size, integer_one_node);
9766 else
9768 /* Compute the index of the largest element in the array. It is
9769 one less than the number of elements in the array. We save
9770 and restore PROCESSING_TEMPLATE_DECL so that computations in
9771 cp_build_binary_op will be appropriately folded. */
9773 processing_template_decl_sentinel s;
9774 itype = cp_build_binary_op (input_location,
9775 MINUS_EXPR,
9776 cp_convert (ssizetype, size, complain),
9777 cp_convert (ssizetype, integer_one_node,
9778 complain),
9779 complain);
9780 itype = maybe_constant_value (itype);
9783 if (!TREE_CONSTANT (itype))
9785 /* A variable sized array. */
9786 itype = variable_size (itype);
9788 stabilize_vla_size (itype);
9790 if (sanitize_flags_p (SANITIZE_VLA)
9791 && current_function_decl != NULL_TREE)
9793 /* We have to add 1 -- in the ubsan routine we generate
9794 LE_EXPR rather than LT_EXPR. */
9795 tree t = fold_build2 (PLUS_EXPR, TREE_TYPE (itype), itype,
9796 build_one_cst (TREE_TYPE (itype)));
9797 t = ubsan_instrument_vla (input_location, t);
9798 finish_expr_stmt (t);
9801 /* Make sure that there was no overflow when creating to a signed
9802 index type. (For example, on a 32-bit machine, an array with
9803 size 2^32 - 1 is too big.) */
9804 else if (TREE_CODE (itype) == INTEGER_CST
9805 && TREE_OVERFLOW (itype))
9807 if (!(complain & tf_error))
9808 return error_mark_node;
9809 error ("overflow in array dimension");
9810 TREE_OVERFLOW (itype) = 0;
9814 /* Create and return the appropriate index type. */
9815 itype = build_index_type (itype);
9817 /* If the index type were dependent, we would have returned early, so
9818 remember that it isn't. */
9819 TYPE_DEPENDENT_P (itype) = 0;
9820 TYPE_DEPENDENT_P_VALID (itype) = 1;
9821 return itype;
9824 /* Returns the scope (if any) in which the entity declared by
9825 DECLARATOR will be located. If the entity was declared with an
9826 unqualified name, NULL_TREE is returned. */
9828 tree
9829 get_scope_of_declarator (const cp_declarator *declarator)
9831 while (declarator && declarator->kind != cdk_id)
9832 declarator = declarator->declarator;
9834 /* If the declarator-id is a SCOPE_REF, the scope in which the
9835 declaration occurs is the first operand. */
9836 if (declarator
9837 && declarator->u.id.qualifying_scope)
9838 return declarator->u.id.qualifying_scope;
9840 /* Otherwise, the declarator is not a qualified name; the entity will
9841 be declared in the current scope. */
9842 return NULL_TREE;
9845 /* Returns an ARRAY_TYPE for an array with SIZE elements of the
9846 indicated TYPE. If non-NULL, NAME is the NAME of the declaration
9847 with this type. */
9849 static tree
9850 create_array_type_for_decl (tree name, tree type, tree size, location_t loc)
9852 tree itype = NULL_TREE;
9854 /* If things have already gone awry, bail now. */
9855 if (type == error_mark_node || size == error_mark_node)
9856 return error_mark_node;
9858 /* 8.3.4/1: If the type of the identifier of D contains the auto
9859 type-specifier, the program is ill-formed. */
9860 if (type_uses_auto (type))
9862 if (name)
9863 error_at (loc, "%qD declared as array of %qT", name, type);
9864 else
9865 error ("creating array of %qT", type);
9866 return error_mark_node;
9869 /* If there are some types which cannot be array elements,
9870 issue an error-message and return. */
9871 switch (TREE_CODE (type))
9873 case VOID_TYPE:
9874 if (name)
9875 error_at (loc, "declaration of %qD as array of void", name);
9876 else
9877 error ("creating array of void");
9878 return error_mark_node;
9880 case FUNCTION_TYPE:
9881 if (name)
9882 error_at (loc, "declaration of %qD as array of functions", name);
9883 else
9884 error ("creating array of functions");
9885 return error_mark_node;
9887 case REFERENCE_TYPE:
9888 if (name)
9889 error_at (loc, "declaration of %qD as array of references", name);
9890 else
9891 error ("creating array of references");
9892 return error_mark_node;
9894 case METHOD_TYPE:
9895 if (name)
9896 error_at (loc, "declaration of %qD as array of function members",
9897 name);
9898 else
9899 error ("creating array of function members");
9900 return error_mark_node;
9902 default:
9903 break;
9906 /* [dcl.array]
9908 The constant expressions that specify the bounds of the arrays
9909 can be omitted only for the first member of the sequence. */
9910 if (TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type))
9912 if (name)
9913 error_at (loc, "declaration of %qD as multidimensional array must "
9914 "have bounds for all dimensions except the first",
9915 name);
9916 else
9917 error ("multidimensional array must have bounds for all "
9918 "dimensions except the first");
9920 return error_mark_node;
9923 /* Figure out the index type for the array. */
9924 if (size)
9925 itype = compute_array_index_type (name, size, tf_warning_or_error);
9927 /* [dcl.array]
9928 T is called the array element type; this type shall not be [...] an
9929 abstract class type. */
9930 abstract_virtuals_error (name, type);
9932 return build_cplus_array_type (type, itype);
9935 /* Returns the smallest location that is not UNKNOWN_LOCATION. */
9937 static location_t
9938 min_location (location_t loca, location_t locb)
9940 if (loca == UNKNOWN_LOCATION
9941 || (locb != UNKNOWN_LOCATION
9942 && linemap_location_before_p (line_table, locb, loca)))
9943 return locb;
9944 return loca;
9947 /* Returns the smallest location != UNKNOWN_LOCATION among the
9948 three stored in LOCATIONS[ds_const], LOCATIONS[ds_volatile],
9949 and LOCATIONS[ds_restrict]. */
9951 static location_t
9952 smallest_type_quals_location (int type_quals, const location_t* locations)
9954 location_t loc = UNKNOWN_LOCATION;
9956 if (type_quals & TYPE_QUAL_CONST)
9957 loc = locations[ds_const];
9959 if (type_quals & TYPE_QUAL_VOLATILE)
9960 loc = min_location (loc, locations[ds_volatile]);
9962 if (type_quals & TYPE_QUAL_RESTRICT)
9963 loc = min_location (loc, locations[ds_restrict]);
9965 return loc;
9968 /* Check that it's OK to declare a function with the indicated TYPE
9969 and TYPE_QUALS. SFK indicates the kind of special function (if any)
9970 that this function is. OPTYPE is the type given in a conversion
9971 operator declaration, or the class type for a constructor/destructor.
9972 Returns the actual return type of the function; that may be different
9973 than TYPE if an error occurs, or for certain special functions. */
9975 static tree
9976 check_special_function_return_type (special_function_kind sfk,
9977 tree type,
9978 tree optype,
9979 int type_quals,
9980 const location_t* locations)
9982 switch (sfk)
9984 case sfk_constructor:
9985 if (type)
9986 error ("return type specification for constructor invalid");
9987 else if (type_quals != TYPE_UNQUALIFIED)
9988 error_at (smallest_type_quals_location (type_quals, locations),
9989 "qualifiers are not allowed on constructor declaration");
9991 if (targetm.cxx.cdtor_returns_this ())
9992 type = build_pointer_type (optype);
9993 else
9994 type = void_type_node;
9995 break;
9997 case sfk_destructor:
9998 if (type)
9999 error ("return type specification for destructor invalid");
10000 else if (type_quals != TYPE_UNQUALIFIED)
10001 error_at (smallest_type_quals_location (type_quals, locations),
10002 "qualifiers are not allowed on destructor declaration");
10004 /* We can't use the proper return type here because we run into
10005 problems with ambiguous bases and covariant returns. */
10006 if (targetm.cxx.cdtor_returns_this ())
10007 type = build_pointer_type (void_type_node);
10008 else
10009 type = void_type_node;
10010 break;
10012 case sfk_conversion:
10013 if (type)
10014 error ("return type specified for %<operator %T%>", optype);
10015 else if (type_quals != TYPE_UNQUALIFIED)
10016 error_at (smallest_type_quals_location (type_quals, locations),
10017 "qualifiers are not allowed on declaration of "
10018 "%<operator %T%>", optype);
10020 type = optype;
10021 break;
10023 case sfk_deduction_guide:
10024 if (type)
10025 error ("return type specified for deduction guide");
10026 else if (type_quals != TYPE_UNQUALIFIED)
10027 error_at (smallest_type_quals_location (type_quals, locations),
10028 "qualifiers are not allowed on declaration of "
10029 "deduction guide");
10030 if (TREE_CODE (optype) == TEMPLATE_TEMPLATE_PARM)
10032 error ("template template parameter %qT in declaration of "
10033 "deduction guide", optype);
10034 type = error_mark_node;
10036 else
10037 type = make_template_placeholder (CLASSTYPE_TI_TEMPLATE (optype));
10038 for (int i = 0; i < ds_last; ++i)
10039 if (i != ds_explicit && locations[i])
10040 error_at (locations[i],
10041 "decl-specifier in declaration of deduction guide");
10042 break;
10044 default:
10045 gcc_unreachable ();
10048 return type;
10051 /* A variable or data member (whose unqualified name is IDENTIFIER)
10052 has been declared with the indicated TYPE. If the TYPE is not
10053 acceptable, issue an error message and return a type to use for
10054 error-recovery purposes. */
10056 tree
10057 check_var_type (tree identifier, tree type)
10059 if (VOID_TYPE_P (type))
10061 if (!identifier)
10062 error ("unnamed variable or field declared void");
10063 else if (identifier_p (identifier))
10065 gcc_assert (!IDENTIFIER_ANY_OP_P (identifier));
10066 error ("variable or field %qE declared void", identifier);
10068 else
10069 error ("variable or field declared void");
10070 type = error_mark_node;
10073 return type;
10076 /* Handle declaring DECL as an inline variable. */
10078 static void
10079 mark_inline_variable (tree decl, location_t loc)
10081 bool inlinep = true;
10082 if (! toplevel_bindings_p ())
10084 error_at (loc, "%<inline%> specifier invalid for variable "
10085 "%qD declared at block scope", decl);
10086 inlinep = false;
10088 else if (cxx_dialect < cxx17)
10089 pedwarn (loc, 0, "inline variables are only available "
10090 "with -std=c++17 or -std=gnu++17");
10091 if (inlinep)
10093 retrofit_lang_decl (decl);
10094 SET_DECL_VAR_DECLARED_INLINE_P (decl);
10099 /* Assign a typedef-given name to a class or enumeration type declared
10100 as anonymous at first. This was split out of grokdeclarator
10101 because it is also used in libcc1. */
10103 void
10104 name_unnamed_type (tree type, tree decl)
10106 gcc_assert (TYPE_UNNAMED_P (type));
10108 /* Replace the anonymous name with the real name everywhere. */
10109 for (tree t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
10111 if (anon_aggrname_p (TYPE_IDENTIFIER (t)))
10112 /* We do not rename the debug info representing the
10113 unnamed tagged type because the standard says in
10114 [dcl.typedef] that the naming applies only for
10115 linkage purposes. */
10116 /*debug_hooks->set_name (t, decl);*/
10117 TYPE_NAME (t) = decl;
10120 if (TYPE_LANG_SPECIFIC (type))
10121 TYPE_WAS_UNNAMED (type) = 1;
10123 /* If this is a typedef within a template class, the nested
10124 type is a (non-primary) template. The name for the
10125 template needs updating as well. */
10126 if (TYPE_LANG_SPECIFIC (type) && CLASSTYPE_TEMPLATE_INFO (type))
10127 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type))
10128 = TYPE_IDENTIFIER (type);
10130 /* Adjust linkage now that we aren't unnamed anymore. */
10131 reset_type_linkage (type);
10133 /* FIXME remangle member functions; member functions of a
10134 type with external linkage have external linkage. */
10136 /* Check that our job is done, and that it would fail if we
10137 attempted to do it again. */
10138 gcc_assert (!TYPE_UNNAMED_P (type));
10141 /* Given declspecs and a declarator (abstract or otherwise), determine
10142 the name and type of the object declared and construct a DECL node
10143 for it.
10145 DECLSPECS points to the representation of declaration-specifier
10146 sequence that precedes declarator.
10148 DECL_CONTEXT says which syntactic context this declaration is in:
10149 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
10150 FUNCDEF for a function definition. Like NORMAL but a few different
10151 error messages in each case. Return value may be zero meaning
10152 this definition is too screwy to try to parse.
10153 MEMFUNCDEF for a function definition. Like FUNCDEF but prepares to
10154 handle member functions (which have FIELD context).
10155 Return value may be zero meaning this definition is too screwy to
10156 try to parse.
10157 PARM for a parameter declaration (either within a function prototype
10158 or before a function body). Make a PARM_DECL, or return void_type_node.
10159 TPARM for a template parameter declaration.
10160 CATCHPARM for a parameter declaration before a catch clause.
10161 TYPENAME if for a typename (in a cast or sizeof).
10162 Don't make a DECL node; just return the ..._TYPE node.
10163 FIELD for a struct or union field; make a FIELD_DECL.
10164 BITFIELD for a field with specified width.
10166 INITIALIZED is as for start_decl.
10168 ATTRLIST is a pointer to the list of attributes, which may be NULL
10169 if there are none; *ATTRLIST may be modified if attributes from inside
10170 the declarator should be applied to the declaration.
10172 When this function is called, scoping variables (such as
10173 CURRENT_CLASS_TYPE) should reflect the scope in which the
10174 declaration occurs, not the scope in which the new declaration will
10175 be placed. For example, on:
10177 void S::f() { ... }
10179 when grokdeclarator is called for `S::f', the CURRENT_CLASS_TYPE
10180 should not be `S'.
10182 Returns a DECL (if a declarator is present), a TYPE (if there is no
10183 declarator, in cases like "struct S;"), or the ERROR_MARK_NODE if an
10184 error occurs. */
10186 tree
10187 grokdeclarator (const cp_declarator *declarator,
10188 cp_decl_specifier_seq *declspecs,
10189 enum decl_context decl_context,
10190 int initialized,
10191 tree* attrlist)
10193 tree type = NULL_TREE;
10194 int longlong = 0;
10195 int explicit_intN = 0;
10196 int virtualp, explicitp, friendp, inlinep, staticp;
10197 int explicit_int = 0;
10198 int explicit_char = 0;
10199 int defaulted_int = 0;
10201 tree typedef_decl = NULL_TREE;
10202 const char *name = NULL;
10203 tree typedef_type = NULL_TREE;
10204 /* True if this declarator is a function definition. */
10205 bool funcdef_flag = false;
10206 cp_declarator_kind innermost_code = cdk_error;
10207 int bitfield = 0;
10208 #if 0
10209 /* See the code below that used this. */
10210 tree decl_attr = NULL_TREE;
10211 #endif
10213 /* Keep track of what sort of function is being processed
10214 so that we can warn about default return values, or explicit
10215 return values which do not match prescribed defaults. */
10216 special_function_kind sfk = sfk_none;
10218 tree dname = NULL_TREE;
10219 tree ctor_return_type = NULL_TREE;
10220 enum overload_flags flags = NO_SPECIAL;
10221 /* cv-qualifiers that apply to the declarator, for a declaration of
10222 a member function. */
10223 cp_cv_quals memfn_quals = TYPE_UNQUALIFIED;
10224 /* virt-specifiers that apply to the declarator, for a declaration of
10225 a member function. */
10226 cp_virt_specifiers virt_specifiers = VIRT_SPEC_UNSPECIFIED;
10227 /* ref-qualifier that applies to the declarator, for a declaration of
10228 a member function. */
10229 cp_ref_qualifier rqual = REF_QUAL_NONE;
10230 /* cv-qualifiers that apply to the type specified by the DECLSPECS. */
10231 int type_quals = TYPE_UNQUALIFIED;
10232 tree raises = NULL_TREE;
10233 int template_count = 0;
10234 tree returned_attrs = NULL_TREE;
10235 tree parms = NULL_TREE;
10236 const cp_declarator *id_declarator;
10237 /* The unqualified name of the declarator; either an
10238 IDENTIFIER_NODE, BIT_NOT_EXPR, or TEMPLATE_ID_EXPR. */
10239 tree unqualified_id;
10240 /* The class type, if any, in which this entity is located,
10241 or NULL_TREE if none. Note that this value may be different from
10242 the current class type; for example if an attempt is made to declare
10243 "A::f" inside "B", this value will be "A". */
10244 tree ctype = current_class_type;
10245 /* The NAMESPACE_DECL for the namespace in which this entity is
10246 located. If an unqualified name is used to declare the entity,
10247 this value will be NULL_TREE, even if the entity is located at
10248 namespace scope. */
10249 tree in_namespace = NULL_TREE;
10250 cp_storage_class storage_class;
10251 bool unsigned_p, signed_p, short_p, long_p, thread_p;
10252 bool type_was_error_mark_node = false;
10253 bool parameter_pack_p = declarator ? declarator->parameter_pack_p : false;
10254 bool template_type_arg = false;
10255 bool template_parm_flag = false;
10256 bool typedef_p = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
10257 bool constexpr_p = decl_spec_seq_has_spec_p (declspecs, ds_constexpr);
10258 bool late_return_type_p = false;
10259 bool array_parameter_p = false;
10260 location_t saved_loc = input_location;
10261 tree reqs = NULL_TREE;
10263 signed_p = decl_spec_seq_has_spec_p (declspecs, ds_signed);
10264 unsigned_p = decl_spec_seq_has_spec_p (declspecs, ds_unsigned);
10265 short_p = decl_spec_seq_has_spec_p (declspecs, ds_short);
10266 long_p = decl_spec_seq_has_spec_p (declspecs, ds_long);
10267 longlong = decl_spec_seq_has_spec_p (declspecs, ds_long_long);
10268 explicit_intN = declspecs->explicit_intN_p;
10269 thread_p = decl_spec_seq_has_spec_p (declspecs, ds_thread);
10271 // Was concept_p specified? Note that ds_concept
10272 // implies ds_constexpr!
10273 bool concept_p = decl_spec_seq_has_spec_p (declspecs, ds_concept);
10274 if (concept_p)
10275 constexpr_p = true;
10277 if (decl_spec_seq_has_spec_p (declspecs, ds_const))
10278 type_quals |= TYPE_QUAL_CONST;
10279 if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
10280 type_quals |= TYPE_QUAL_VOLATILE;
10281 if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
10282 type_quals |= TYPE_QUAL_RESTRICT;
10284 if (decl_context == FUNCDEF)
10285 funcdef_flag = true, decl_context = NORMAL;
10286 else if (decl_context == MEMFUNCDEF)
10287 funcdef_flag = true, decl_context = FIELD;
10288 else if (decl_context == BITFIELD)
10289 bitfield = 1, decl_context = FIELD;
10290 else if (decl_context == TEMPLATE_TYPE_ARG)
10291 template_type_arg = true, decl_context = TYPENAME;
10292 else if (decl_context == TPARM)
10293 template_parm_flag = true, decl_context = PARM;
10295 if (initialized > 1)
10296 funcdef_flag = true;
10298 location_t typespec_loc = smallest_type_quals_location (type_quals,
10299 declspecs->locations);
10300 if (typespec_loc == UNKNOWN_LOCATION)
10301 typespec_loc = declspecs->locations[ds_type_spec];
10302 if (typespec_loc == UNKNOWN_LOCATION)
10303 typespec_loc = input_location;
10305 /* Look inside a declarator for the name being declared
10306 and get it as a string, for an error message. */
10307 for (id_declarator = declarator;
10308 id_declarator;
10309 id_declarator = id_declarator->declarator)
10311 if (id_declarator->kind != cdk_id)
10312 innermost_code = id_declarator->kind;
10314 switch (id_declarator->kind)
10316 case cdk_function:
10317 if (id_declarator->declarator
10318 && id_declarator->declarator->kind == cdk_id)
10320 sfk = id_declarator->declarator->u.id.sfk;
10321 if (sfk == sfk_destructor)
10322 flags = DTOR_FLAG;
10324 break;
10326 case cdk_id:
10328 tree qualifying_scope = id_declarator->u.id.qualifying_scope;
10329 tree decl = id_declarator->u.id.unqualified_name;
10330 if (!decl)
10331 break;
10332 if (qualifying_scope)
10334 if (check_for_bare_parameter_packs (qualifying_scope,
10335 id_declarator->id_loc))
10336 return error_mark_node;
10337 if (at_function_scope_p ())
10339 /* [dcl.meaning]
10341 A declarator-id shall not be qualified except
10342 for ...
10344 None of the cases are permitted in block
10345 scope. */
10346 if (qualifying_scope == global_namespace)
10347 error ("invalid use of qualified-name %<::%D%>",
10348 decl);
10349 else if (TYPE_P (qualifying_scope))
10350 error ("invalid use of qualified-name %<%T::%D%>",
10351 qualifying_scope, decl);
10352 else
10353 error ("invalid use of qualified-name %<%D::%D%>",
10354 qualifying_scope, decl);
10355 return error_mark_node;
10357 else if (TYPE_P (qualifying_scope))
10359 ctype = qualifying_scope;
10360 if (!MAYBE_CLASS_TYPE_P (ctype))
10362 error ("%q#T is not a class or a namespace", ctype);
10363 ctype = NULL_TREE;
10365 else if (innermost_code != cdk_function
10366 && current_class_type
10367 && !uniquely_derived_from_p (ctype,
10368 current_class_type))
10370 error ("invalid use of qualified-name %<%T::%D%>",
10371 qualifying_scope, decl);
10372 return error_mark_node;
10375 else if (TREE_CODE (qualifying_scope) == NAMESPACE_DECL)
10376 in_namespace = qualifying_scope;
10378 switch (TREE_CODE (decl))
10380 case BIT_NOT_EXPR:
10382 if (innermost_code != cdk_function)
10384 error ("declaration of %qD as non-function", decl);
10385 return error_mark_node;
10387 else if (!qualifying_scope
10388 && !(current_class_type && at_class_scope_p ()))
10390 error ("declaration of %qD as non-member", decl);
10391 return error_mark_node;
10394 tree type = TREE_OPERAND (decl, 0);
10395 if (TYPE_P (type))
10396 type = constructor_name (type);
10397 name = identifier_to_locale (IDENTIFIER_POINTER (type));
10398 dname = decl;
10400 break;
10402 case TEMPLATE_ID_EXPR:
10404 tree fns = TREE_OPERAND (decl, 0);
10406 dname = fns;
10407 if (!identifier_p (dname))
10408 dname = OVL_NAME (dname);
10410 /* Fall through. */
10412 case IDENTIFIER_NODE:
10413 if (identifier_p (decl))
10414 dname = decl;
10416 if (IDENTIFIER_KEYWORD_P (dname))
10418 error ("declarator-id missing; using reserved word %qD",
10419 dname);
10420 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
10422 else if (!IDENTIFIER_CONV_OP_P (dname))
10423 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
10424 else
10426 gcc_assert (flags == NO_SPECIAL);
10427 flags = TYPENAME_FLAG;
10428 sfk = sfk_conversion;
10429 tree glob = get_global_binding (dname);
10430 if (glob && TREE_CODE (glob) == TYPE_DECL)
10431 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
10432 else
10433 name = "<invalid operator>";
10435 break;
10437 default:
10438 gcc_unreachable ();
10440 break;
10443 case cdk_array:
10444 case cdk_pointer:
10445 case cdk_reference:
10446 case cdk_ptrmem:
10447 break;
10449 case cdk_decomp:
10450 name = "structured binding";
10451 break;
10453 case cdk_error:
10454 return error_mark_node;
10456 default:
10457 gcc_unreachable ();
10459 if (id_declarator->kind == cdk_id)
10460 break;
10463 /* [dcl.fct.edf]
10465 The declarator in a function-definition shall have the form
10466 D1 ( parameter-declaration-clause) ... */
10467 if (funcdef_flag && innermost_code != cdk_function)
10469 error ("function definition does not declare parameters");
10470 return error_mark_node;
10473 if (flags == TYPENAME_FLAG
10474 && innermost_code != cdk_function
10475 && ! (ctype && !declspecs->any_specifiers_p))
10477 error ("declaration of %qD as non-function", dname);
10478 return error_mark_node;
10481 if (dname && identifier_p (dname))
10483 if (UDLIT_OPER_P (dname)
10484 && innermost_code != cdk_function)
10486 error ("declaration of %qD as non-function", dname);
10487 return error_mark_node;
10490 if (IDENTIFIER_ANY_OP_P (dname))
10492 if (typedef_p)
10494 error ("declaration of %qD as %<typedef%>", dname);
10495 return error_mark_node;
10497 else if (decl_context == PARM || decl_context == CATCHPARM)
10499 error ("declaration of %qD as parameter", dname);
10500 return error_mark_node;
10505 /* Anything declared one level down from the top level
10506 must be one of the parameters of a function
10507 (because the body is at least two levels down). */
10509 /* This heuristic cannot be applied to C++ nodes! Fixed, however,
10510 by not allowing C++ class definitions to specify their parameters
10511 with xdecls (must be spec.d in the parmlist).
10513 Since we now wait to push a class scope until we are sure that
10514 we are in a legitimate method context, we must set oldcname
10515 explicitly (since current_class_name is not yet alive).
10517 We also want to avoid calling this a PARM if it is in a namespace. */
10519 if (decl_context == NORMAL && !toplevel_bindings_p ())
10521 cp_binding_level *b = current_binding_level;
10522 current_binding_level = b->level_chain;
10523 if (current_binding_level != 0 && toplevel_bindings_p ())
10524 decl_context = PARM;
10525 current_binding_level = b;
10528 if (name == NULL)
10529 name = decl_context == PARM ? "parameter" : "type name";
10531 if (concept_p && typedef_p)
10533 error_at (declspecs->locations[ds_concept],
10534 "%<concept%> cannot appear in a typedef declaration");
10535 return error_mark_node;
10538 if (constexpr_p && typedef_p)
10540 error_at (declspecs->locations[ds_constexpr],
10541 "%<constexpr%> cannot appear in a typedef declaration");
10542 return error_mark_node;
10545 /* If there were multiple types specified in the decl-specifier-seq,
10546 issue an error message. */
10547 if (declspecs->multiple_types_p)
10549 error ("two or more data types in declaration of %qs", name);
10550 return error_mark_node;
10553 if (declspecs->conflicting_specifiers_p)
10555 error ("conflicting specifiers in declaration of %qs", name);
10556 return error_mark_node;
10559 /* Extract the basic type from the decl-specifier-seq. */
10560 type = declspecs->type;
10561 if (type == error_mark_node)
10563 type = NULL_TREE;
10564 type_was_error_mark_node = true;
10566 cp_warn_deprecated_use (type);
10567 if (type && TREE_CODE (type) == TYPE_DECL)
10569 typedef_decl = type;
10570 type = TREE_TYPE (typedef_decl);
10571 if (DECL_ARTIFICIAL (typedef_decl))
10572 cp_warn_deprecated_use (type);
10574 /* No type at all: default to `int', and set DEFAULTED_INT
10575 because it was not a user-defined typedef. */
10576 if (type == NULL_TREE)
10578 if (signed_p || unsigned_p || long_p || short_p)
10580 /* These imply 'int'. */
10581 type = integer_type_node;
10582 defaulted_int = 1;
10584 /* If we just have "complex", it is equivalent to "complex double". */
10585 else if (!longlong && !explicit_intN
10586 && decl_spec_seq_has_spec_p (declspecs, ds_complex))
10588 type = double_type_node;
10589 pedwarn (declspecs->locations[ds_complex], OPT_Wpedantic,
10590 "ISO C++ does not support plain %<complex%> meaning "
10591 "%<double complex%>");
10594 /* Gather flags. */
10595 explicit_int = declspecs->explicit_int_p;
10596 explicit_char = declspecs->explicit_char_p;
10598 #if 0
10599 /* See the code below that used this. */
10600 if (typedef_decl)
10601 decl_attr = DECL_ATTRIBUTES (typedef_decl);
10602 #endif
10603 typedef_type = type;
10605 if (sfk == sfk_conversion || sfk == sfk_deduction_guide)
10606 ctor_return_type = TREE_TYPE (dname);
10607 else
10608 ctor_return_type = ctype;
10610 if (sfk != sfk_none)
10612 type = check_special_function_return_type (sfk, type,
10613 ctor_return_type,
10614 type_quals,
10615 declspecs->locations);
10616 type_quals = TYPE_UNQUALIFIED;
10618 else if (type == NULL_TREE)
10620 int is_main;
10622 explicit_int = -1;
10624 /* We handle `main' specially here, because 'main () { }' is so
10625 common. With no options, it is allowed. With -Wreturn-type,
10626 it is a warning. It is only an error with -pedantic-errors. */
10627 is_main = (funcdef_flag
10628 && dname && identifier_p (dname)
10629 && MAIN_NAME_P (dname)
10630 && ctype == NULL_TREE
10631 && in_namespace == NULL_TREE
10632 && current_namespace == global_namespace);
10634 if (type_was_error_mark_node)
10635 /* We've already issued an error, don't complain more. */;
10636 else if (in_system_header_at (input_location) || flag_ms_extensions)
10637 /* Allow it, sigh. */;
10638 else if (! is_main)
10639 permerror (input_location, "ISO C++ forbids declaration of %qs with no type", name);
10640 else if (pedantic)
10641 pedwarn (input_location, OPT_Wpedantic,
10642 "ISO C++ forbids declaration of %qs with no type", name);
10643 else
10644 warning (OPT_Wreturn_type,
10645 "ISO C++ forbids declaration of %qs with no type", name);
10647 if (type_was_error_mark_node && template_parm_flag)
10648 /* FIXME we should be able to propagate the error_mark_node as is
10649 for other contexts too. */
10650 type = error_mark_node;
10651 else
10652 type = integer_type_node;
10655 ctype = NULL_TREE;
10657 if (explicit_intN)
10659 if (! int_n_enabled_p[declspecs->int_n_idx])
10661 error ("%<__int%d%> is not supported by this target",
10662 int_n_data[declspecs->int_n_idx].bitsize);
10663 explicit_intN = false;
10665 else if (pedantic && ! in_system_header_at (input_location))
10666 pedwarn (input_location, OPT_Wpedantic,
10667 "ISO C++ does not support %<__int%d%> for %qs",
10668 int_n_data[declspecs->int_n_idx].bitsize, name);
10671 /* Now process the modifiers that were specified
10672 and check for invalid combinations. */
10674 /* Long double is a special combination. */
10675 if (long_p && !longlong && TYPE_MAIN_VARIANT (type) == double_type_node)
10677 long_p = false;
10678 type = cp_build_qualified_type (long_double_type_node,
10679 cp_type_quals (type));
10682 /* Check all other uses of type modifiers. */
10684 if (unsigned_p || signed_p || long_p || short_p)
10686 location_t loc;
10687 const char *key;
10688 if (unsigned_p)
10690 key = "unsigned";
10691 loc = declspecs->locations[ds_unsigned];
10693 else if (signed_p)
10695 key = "signed";
10696 loc = declspecs->locations[ds_signed];
10698 else if (longlong)
10700 key = "long long";
10701 loc = declspecs->locations[ds_long_long];
10703 else if (long_p)
10705 key = "long";
10706 loc = declspecs->locations[ds_long];
10708 else /* if (short_p) */
10710 key = "short";
10711 loc = declspecs->locations[ds_short];
10714 int ok = 0;
10716 if (signed_p && unsigned_p)
10718 gcc_rich_location richloc (declspecs->locations[ds_signed]);
10719 richloc.add_range (declspecs->locations[ds_unsigned]);
10720 error_at (&richloc,
10721 "%<signed%> and %<unsigned%> specified together");
10723 else if (long_p && short_p)
10725 gcc_rich_location richloc (declspecs->locations[ds_long]);
10726 richloc.add_range (declspecs->locations[ds_short]);
10727 error_at (&richloc, "%<long%> and %<short%> specified together");
10729 else if (TREE_CODE (type) != INTEGER_TYPE
10730 || type == char16_type_node || type == char32_type_node
10731 || ((long_p || short_p)
10732 && (explicit_char || explicit_intN)))
10733 error_at (loc, "%qs specified with %qT", key, type);
10734 else if (!explicit_int && !defaulted_int
10735 && !explicit_char && !explicit_intN)
10737 if (typedef_decl)
10739 pedwarn (loc, OPT_Wpedantic, "%qs specified with %qT",
10740 key, type);
10741 ok = !flag_pedantic_errors;
10743 else if (declspecs->decltype_p)
10744 error_at (loc, "%qs specified with %<decltype%>", key);
10745 else
10746 error_at (loc, "%qs specified with %<typeof%>", key);
10748 else
10749 ok = 1;
10751 /* Discard the type modifiers if they are invalid. */
10752 if (! ok)
10754 unsigned_p = false;
10755 signed_p = false;
10756 long_p = false;
10757 short_p = false;
10758 longlong = 0;
10762 /* Decide whether an integer type is signed or not.
10763 Optionally treat bitfields as signed by default. */
10764 if (unsigned_p
10765 /* [class.bit]
10767 It is implementation-defined whether a plain (neither
10768 explicitly signed or unsigned) char, short, int, or long
10769 bit-field is signed or unsigned.
10771 Naturally, we extend this to long long as well. Note that
10772 this does not include wchar_t. */
10773 || (bitfield && !flag_signed_bitfields
10774 && !signed_p
10775 /* A typedef for plain `int' without `signed' can be
10776 controlled just like plain `int', but a typedef for
10777 `signed int' cannot be so controlled. */
10778 && !(typedef_decl
10779 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl))
10780 && TREE_CODE (type) == INTEGER_TYPE
10781 && !same_type_p (TYPE_MAIN_VARIANT (type), wchar_type_node)))
10783 if (explicit_intN)
10784 type = int_n_trees[declspecs->int_n_idx].unsigned_type;
10785 else if (longlong)
10786 type = long_long_unsigned_type_node;
10787 else if (long_p)
10788 type = long_unsigned_type_node;
10789 else if (short_p)
10790 type = short_unsigned_type_node;
10791 else if (type == char_type_node)
10792 type = unsigned_char_type_node;
10793 else if (typedef_decl)
10794 type = unsigned_type_for (type);
10795 else
10796 type = unsigned_type_node;
10798 else if (signed_p && type == char_type_node)
10799 type = signed_char_type_node;
10800 else if (explicit_intN)
10801 type = int_n_trees[declspecs->int_n_idx].signed_type;
10802 else if (longlong)
10803 type = long_long_integer_type_node;
10804 else if (long_p)
10805 type = long_integer_type_node;
10806 else if (short_p)
10807 type = short_integer_type_node;
10809 if (decl_spec_seq_has_spec_p (declspecs, ds_complex))
10811 if (TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
10812 error ("complex invalid for %qs", name);
10813 /* If a modifier is specified, the resulting complex is the complex
10814 form of TYPE. E.g, "complex short" is "complex short int". */
10815 else if (type == integer_type_node)
10816 type = complex_integer_type_node;
10817 else if (type == float_type_node)
10818 type = complex_float_type_node;
10819 else if (type == double_type_node)
10820 type = complex_double_type_node;
10821 else if (type == long_double_type_node)
10822 type = complex_long_double_type_node;
10823 else
10824 type = build_complex_type (type);
10827 /* If we're using the injected-class-name to form a compound type or a
10828 declaration, replace it with the underlying class so we don't get
10829 redundant typedefs in the debug output. But if we are returning the
10830 type unchanged, leave it alone so that it's available to
10831 maybe_get_template_decl_from_type_decl. */
10832 if (CLASS_TYPE_P (type)
10833 && DECL_SELF_REFERENCE_P (TYPE_NAME (type))
10834 && type == TREE_TYPE (TYPE_NAME (type))
10835 && (declarator || type_quals))
10836 type = DECL_ORIGINAL_TYPE (TYPE_NAME (type));
10838 type_quals |= cp_type_quals (type);
10839 type = cp_build_qualified_type_real
10840 (type, type_quals, ((((typedef_decl && !DECL_ARTIFICIAL (typedef_decl))
10841 || declspecs->decltype_p)
10842 ? tf_ignore_bad_quals : 0) | tf_warning_or_error));
10843 /* We might have ignored or rejected some of the qualifiers. */
10844 type_quals = cp_type_quals (type);
10846 if (cxx_dialect >= cxx17 && type && is_auto (type)
10847 && innermost_code != cdk_function
10848 && id_declarator && declarator != id_declarator)
10849 if (tree tmpl = CLASS_PLACEHOLDER_TEMPLATE (type))
10851 error_at (typespec_loc, "template placeholder type %qT must be followed "
10852 "by a simple declarator-id", type);
10853 inform (DECL_SOURCE_LOCATION (tmpl), "%qD declared here", tmpl);
10856 staticp = 0;
10857 inlinep = decl_spec_seq_has_spec_p (declspecs, ds_inline);
10858 virtualp = decl_spec_seq_has_spec_p (declspecs, ds_virtual);
10859 explicitp = decl_spec_seq_has_spec_p (declspecs, ds_explicit);
10861 storage_class = declspecs->storage_class;
10862 if (storage_class == sc_static)
10863 staticp = 1 + (decl_context == FIELD);
10865 if (virtualp)
10867 if (staticp == 2)
10869 gcc_rich_location richloc (declspecs->locations[ds_virtual]);
10870 richloc.add_range (declspecs->locations[ds_storage_class]);
10871 error_at (&richloc, "member %qD cannot be declared both %<virtual%> "
10872 "and %<static%>", dname);
10873 storage_class = sc_none;
10874 staticp = 0;
10876 if (constexpr_p && cxx_dialect < cxx2a)
10878 gcc_rich_location richloc (declspecs->locations[ds_virtual]);
10879 richloc.add_range (declspecs->locations[ds_constexpr]);
10880 pedwarn (&richloc, OPT_Wpedantic, "member %qD can be declared both "
10881 "%<virtual%> and %<constexpr%> only in -std=c++2a or "
10882 "-std=gnu++2a", dname);
10885 friendp = decl_spec_seq_has_spec_p (declspecs, ds_friend);
10887 /* Issue errors about use of storage classes for parameters. */
10888 if (decl_context == PARM)
10890 if (typedef_p)
10892 error_at (declspecs->locations[ds_typedef],
10893 "typedef declaration invalid in parameter declaration");
10894 return error_mark_node;
10896 else if (template_parm_flag && storage_class != sc_none)
10898 error_at (min_location (declspecs->locations[ds_thread],
10899 declspecs->locations[ds_storage_class]),
10900 "storage class specified for template parameter %qs",
10901 name);
10902 return error_mark_node;
10904 else if (storage_class == sc_static
10905 || storage_class == sc_extern
10906 || thread_p)
10908 error_at (min_location (declspecs->locations[ds_thread],
10909 declspecs->locations[ds_storage_class]),
10910 "storage class specified for parameter %qs", name);
10911 return error_mark_node;
10914 /* Function parameters cannot be concept. */
10915 if (concept_p)
10916 error_at (declspecs->locations[ds_concept],
10917 "a parameter cannot be declared %<concept%>");
10918 /* Function parameters cannot be constexpr. If we saw one, moan
10919 and pretend it wasn't there. */
10920 else if (constexpr_p)
10922 error_at (declspecs->locations[ds_constexpr],
10923 "a parameter cannot be declared %<constexpr%>");
10924 constexpr_p = 0;
10928 /* Give error if `virtual' is used outside of class declaration. */
10929 if (virtualp
10930 && (current_class_name == NULL_TREE || decl_context != FIELD))
10932 error_at (declspecs->locations[ds_virtual],
10933 "%<virtual%> outside class declaration");
10934 virtualp = 0;
10937 if (innermost_code == cdk_decomp)
10939 location_t loc = (declarator->kind == cdk_reference
10940 ? declarator->declarator->id_loc : declarator->id_loc);
10941 if (inlinep)
10942 error_at (declspecs->locations[ds_inline],
10943 "structured binding declaration cannot be %<inline%>");
10944 if (typedef_p)
10945 error_at (declspecs->locations[ds_typedef],
10946 "structured binding declaration cannot be %<typedef%>");
10947 if (constexpr_p)
10948 error_at (declspecs->locations[ds_constexpr], "structured "
10949 "binding declaration cannot be %<constexpr%>");
10950 if (thread_p)
10951 error_at (declspecs->locations[ds_thread],
10952 "structured binding declaration cannot be %qs",
10953 declspecs->gnu_thread_keyword_p
10954 ? "__thread" : "thread_local");
10955 if (concept_p)
10956 error_at (declspecs->locations[ds_concept],
10957 "structured binding declaration cannot be %<concept%>");
10958 switch (storage_class)
10960 case sc_none:
10961 break;
10962 case sc_register:
10963 error_at (loc, "structured binding declaration cannot be "
10964 "%<register%>");
10965 break;
10966 case sc_static:
10967 error_at (loc, "structured binding declaration cannot be "
10968 "%<static%>");
10969 break;
10970 case sc_extern:
10971 error_at (loc, "structured binding declaration cannot be "
10972 "%<extern%>");
10973 break;
10974 case sc_mutable:
10975 error_at (loc, "structured binding declaration cannot be "
10976 "%<mutable%>");
10977 break;
10978 case sc_auto:
10979 error_at (loc, "structured binding declaration cannot be "
10980 "C++98 %<auto%>");
10981 break;
10982 default:
10983 gcc_unreachable ();
10985 if (TREE_CODE (type) != TEMPLATE_TYPE_PARM
10986 || TYPE_IDENTIFIER (type) != auto_identifier)
10988 if (type != error_mark_node)
10990 error_at (loc, "structured binding declaration cannot have "
10991 "type %qT", type);
10992 inform (loc,
10993 "type must be cv-qualified %<auto%> or reference to "
10994 "cv-qualified %<auto%>");
10996 type = build_qualified_type (make_auto (), type_quals);
10997 declspecs->type = type;
10999 inlinep = 0;
11000 typedef_p = 0;
11001 constexpr_p = 0;
11002 thread_p = 0;
11003 concept_p = 0;
11004 storage_class = sc_none;
11005 staticp = 0;
11006 declspecs->storage_class = sc_none;
11007 declspecs->locations[ds_thread] = UNKNOWN_LOCATION;
11010 /* Static anonymous unions are dealt with here. */
11011 if (staticp && decl_context == TYPENAME
11012 && declspecs->type
11013 && ANON_AGGR_TYPE_P (declspecs->type))
11014 decl_context = FIELD;
11016 /* Warn about storage classes that are invalid for certain
11017 kinds of declarations (parameters, typenames, etc.). */
11018 if (thread_p
11019 && ((storage_class
11020 && storage_class != sc_extern
11021 && storage_class != sc_static)
11022 || typedef_p))
11024 error ("multiple storage classes in declaration of %qs", name);
11025 thread_p = false;
11027 if (decl_context != NORMAL
11028 && ((storage_class != sc_none
11029 && storage_class != sc_mutable)
11030 || thread_p))
11032 if ((decl_context == PARM || decl_context == CATCHPARM)
11033 && (storage_class == sc_register
11034 || storage_class == sc_auto))
11036 else if (typedef_p)
11038 else if (decl_context == FIELD
11039 /* C++ allows static class elements. */
11040 && storage_class == sc_static)
11041 /* C++ also allows inlines and signed and unsigned elements,
11042 but in those cases we don't come in here. */
11044 else
11046 location_t loc
11047 = min_location (declspecs->locations[ds_thread],
11048 declspecs->locations[ds_storage_class]);
11049 if (decl_context == FIELD)
11050 error_at (loc, "storage class specified for %qs", name);
11051 else if (decl_context == PARM || decl_context == CATCHPARM)
11052 error_at (loc, "storage class specified for parameter %qs", name);
11053 else
11054 error_at (loc, "storage class specified for typename");
11055 if (storage_class == sc_register
11056 || storage_class == sc_auto
11057 || storage_class == sc_extern
11058 || thread_p)
11059 storage_class = sc_none;
11062 else if (storage_class == sc_extern && funcdef_flag
11063 && ! toplevel_bindings_p ())
11064 error ("nested function %qs declared %<extern%>", name);
11065 else if (toplevel_bindings_p ())
11067 if (storage_class == sc_auto)
11068 error ("top-level declaration of %qs specifies %<auto%>", name);
11070 else if (thread_p
11071 && storage_class != sc_extern
11072 && storage_class != sc_static)
11074 if (declspecs->gnu_thread_keyword_p)
11075 pedwarn (declspecs->locations[ds_thread],
11076 0, "function-scope %qs implicitly auto and "
11077 "declared %<__thread%>", name);
11079 /* When thread_local is applied to a variable of block scope the
11080 storage-class-specifier static is implied if it does not appear
11081 explicitly. */
11082 storage_class = declspecs->storage_class = sc_static;
11083 staticp = 1;
11086 if (storage_class && friendp)
11088 error_at (min_location (declspecs->locations[ds_thread],
11089 declspecs->locations[ds_storage_class]),
11090 "storage class specifiers invalid in friend function "
11091 "declarations");
11092 storage_class = sc_none;
11093 staticp = 0;
11096 if (!id_declarator)
11097 unqualified_id = NULL_TREE;
11098 else
11100 unqualified_id = id_declarator->u.id.unqualified_name;
11101 switch (TREE_CODE (unqualified_id))
11103 case BIT_NOT_EXPR:
11104 unqualified_id = TREE_OPERAND (unqualified_id, 0);
11105 if (TYPE_P (unqualified_id))
11106 unqualified_id = constructor_name (unqualified_id);
11107 break;
11109 case IDENTIFIER_NODE:
11110 case TEMPLATE_ID_EXPR:
11111 break;
11113 default:
11114 gcc_unreachable ();
11118 if (declspecs->std_attributes)
11120 location_t attr_loc = declspecs->locations[ds_std_attribute];
11121 if (warning_at (attr_loc, OPT_Wattributes, "attribute ignored"))
11122 inform (attr_loc, "an attribute that appertains to a type-specifier "
11123 "is ignored");
11126 /* Determine the type of the entity declared by recurring on the
11127 declarator. */
11128 for (; declarator; declarator = declarator->declarator)
11130 const cp_declarator *inner_declarator;
11131 tree attrs;
11133 if (type == error_mark_node)
11134 return error_mark_node;
11136 attrs = declarator->attributes;
11137 if (attrs)
11139 int attr_flags;
11141 attr_flags = 0;
11142 if (declarator == NULL || declarator->kind == cdk_id)
11143 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
11144 if (declarator->kind == cdk_function)
11145 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
11146 if (declarator->kind == cdk_array)
11147 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
11148 returned_attrs = decl_attributes (&type,
11149 chainon (returned_attrs, attrs),
11150 attr_flags);
11153 inner_declarator = declarator->declarator;
11155 /* We don't want to warn in parameter context because we don't
11156 yet know if the parse will succeed, and this might turn out
11157 to be a constructor call. */
11158 if (decl_context != PARM
11159 && decl_context != TYPENAME
11160 && !typedef_p
11161 && declarator->parenthesized != UNKNOWN_LOCATION
11162 /* If the type is class-like and the inner name used a
11163 global namespace qualifier, we need the parens.
11164 Unfortunately all we can tell is whether a qualified name
11165 was used or not. */
11166 && !(inner_declarator
11167 && inner_declarator->kind == cdk_id
11168 && inner_declarator->u.id.qualifying_scope
11169 && (MAYBE_CLASS_TYPE_P (type)
11170 || TREE_CODE (type) == ENUMERAL_TYPE)))
11171 warning_at (declarator->parenthesized, OPT_Wparentheses,
11172 "unnecessary parentheses in declaration of %qs", name);
11173 if (declarator->kind == cdk_id || declarator->kind == cdk_decomp)
11174 break;
11176 switch (declarator->kind)
11178 case cdk_array:
11179 type = create_array_type_for_decl (dname, type,
11180 declarator->u.array.bounds,
11181 declarator->id_loc);
11182 if (!valid_array_size_p (input_location, type, dname))
11183 type = error_mark_node;
11185 if (declarator->std_attributes)
11186 /* [dcl.array]/1:
11188 The optional attribute-specifier-seq appertains to the
11189 array. */
11190 returned_attrs = chainon (returned_attrs,
11191 declarator->std_attributes);
11192 break;
11194 case cdk_function:
11196 tree arg_types;
11197 int funcdecl_p;
11199 /* Declaring a function type. */
11201 input_location = declspecs->locations[ds_type_spec];
11202 abstract_virtuals_error (ACU_RETURN, type);
11203 input_location = saved_loc;
11205 /* Pick up type qualifiers which should be applied to `this'. */
11206 memfn_quals = declarator->u.function.qualifiers;
11207 /* Pick up virt-specifiers. */
11208 virt_specifiers = declarator->u.function.virt_specifiers;
11209 /* And ref-qualifier, too */
11210 rqual = declarator->u.function.ref_qualifier;
11211 /* And tx-qualifier. */
11212 tree tx_qual = declarator->u.function.tx_qualifier;
11213 /* Pick up the exception specifications. */
11214 raises = declarator->u.function.exception_specification;
11215 /* If the exception-specification is ill-formed, let's pretend
11216 there wasn't one. */
11217 if (raises == error_mark_node)
11218 raises = NULL_TREE;
11220 if (reqs)
11221 error_at (location_of (reqs), "requires-clause on return type");
11222 reqs = declarator->u.function.requires_clause;
11224 /* Say it's a definition only for the CALL_EXPR
11225 closest to the identifier. */
11226 funcdecl_p = inner_declarator && inner_declarator->kind == cdk_id;
11228 /* Handle a late-specified return type. */
11229 tree late_return_type = declarator->u.function.late_return_type;
11230 if (funcdecl_p
11231 /* This is the case e.g. for
11232 using T = auto () -> int. */
11233 || inner_declarator == NULL)
11235 if (tree auto_node = type_uses_auto (type))
11237 if (!late_return_type)
11239 if (current_class_type
11240 && LAMBDA_TYPE_P (current_class_type))
11241 /* OK for C++11 lambdas. */;
11242 else if (cxx_dialect < cxx14)
11244 error ("%qs function uses "
11245 "%<auto%> type specifier without trailing "
11246 "return type", name);
11247 inform (input_location, "deduced return type "
11248 "only available with -std=c++14 or "
11249 "-std=gnu++14");
11251 else if (virtualp)
11253 error ("virtual function cannot "
11254 "have deduced return type");
11255 virtualp = false;
11258 else if (!is_auto (type) && sfk != sfk_conversion)
11260 error ("%qs function with trailing return type has"
11261 " %qT as its type rather than plain %<auto%>",
11262 name, type);
11263 return error_mark_node;
11265 else if (is_auto (type) && AUTO_IS_DECLTYPE (type))
11267 if (funcdecl_p)
11268 error ("%qs function with trailing return type has "
11269 "%<decltype(auto)%> as its type rather than "
11270 "plain %<auto%>", name);
11271 else
11272 error ("invalid use of %<decltype(auto)%>");
11273 return error_mark_node;
11275 tree tmpl = CLASS_PLACEHOLDER_TEMPLATE (auto_node);
11276 if (!tmpl)
11277 if (tree late_auto = type_uses_auto (late_return_type))
11278 tmpl = CLASS_PLACEHOLDER_TEMPLATE (late_auto);
11279 if (tmpl)
11281 if (!dguide_name_p (unqualified_id))
11283 error_at (declarator->id_loc, "deduced class "
11284 "type %qD in function return type",
11285 DECL_NAME (tmpl));
11286 inform (DECL_SOURCE_LOCATION (tmpl),
11287 "%qD declared here", tmpl);
11288 return error_mark_node;
11290 else if (!late_return_type)
11292 error_at (declarator->id_loc, "deduction guide "
11293 "for %qT must have trailing return "
11294 "type", TREE_TYPE (tmpl));
11295 inform (DECL_SOURCE_LOCATION (tmpl),
11296 "%qD declared here", tmpl);
11297 return error_mark_node;
11299 else if (CLASS_TYPE_P (late_return_type)
11300 && CLASSTYPE_TEMPLATE_INFO (late_return_type)
11301 && (CLASSTYPE_TI_TEMPLATE (late_return_type)
11302 == tmpl))
11303 /* OK */;
11304 else
11305 error ("trailing return type %qT of deduction guide "
11306 "is not a specialization of %qT",
11307 late_return_type, TREE_TYPE (tmpl));
11310 else if (late_return_type
11311 && sfk != sfk_conversion)
11313 if (cxx_dialect < cxx11)
11314 /* Not using maybe_warn_cpp0x because this should
11315 always be an error. */
11316 error ("trailing return type only available with "
11317 "-std=c++11 or -std=gnu++11");
11318 else
11319 error ("%qs function with trailing return type not "
11320 "declared with %<auto%> type specifier", name);
11321 return error_mark_node;
11324 type = splice_late_return_type (type, late_return_type);
11325 if (type == error_mark_node)
11326 return error_mark_node;
11328 if (late_return_type)
11330 late_return_type_p = true;
11331 type_quals = cp_type_quals (type);
11334 if (type_quals != TYPE_UNQUALIFIED)
11336 if (SCALAR_TYPE_P (type) || VOID_TYPE_P (type))
11337 warning_at (typespec_loc, OPT_Wignored_qualifiers, "type "
11338 "qualifiers ignored on function return type");
11339 /* We now know that the TYPE_QUALS don't apply to the
11340 decl, but to its return type. */
11341 type_quals = TYPE_UNQUALIFIED;
11344 /* Error about some types functions can't return. */
11346 if (TREE_CODE (type) == FUNCTION_TYPE)
11348 error_at (typespec_loc, "%qs declared as function returning "
11349 "a function", name);
11350 return error_mark_node;
11352 if (TREE_CODE (type) == ARRAY_TYPE)
11354 error_at (typespec_loc, "%qs declared as function returning "
11355 "an array", name);
11356 return error_mark_node;
11359 if (ctype == NULL_TREE
11360 && decl_context == FIELD
11361 && funcdecl_p
11362 && friendp == 0)
11363 ctype = current_class_type;
11365 if (ctype && (sfk == sfk_constructor
11366 || sfk == sfk_destructor))
11368 /* We are within a class's scope. If our declarator name
11369 is the same as the class name, and we are defining
11370 a function, then it is a constructor/destructor, and
11371 therefore returns a void type. */
11373 /* ISO C++ 12.4/2. A destructor may not be declared
11374 const or volatile. A destructor may not be static.
11375 A destructor may not be declared with ref-qualifier.
11377 ISO C++ 12.1. A constructor may not be declared
11378 const or volatile. A constructor may not be
11379 virtual. A constructor may not be static.
11380 A constructor may not be declared with ref-qualifier. */
11381 if (staticp == 2)
11382 error ((flags == DTOR_FLAG)
11383 ? G_("destructor cannot be static member function")
11384 : G_("constructor cannot be static member function"));
11385 if (memfn_quals)
11387 error ((flags == DTOR_FLAG)
11388 ? G_("destructors may not be cv-qualified")
11389 : G_("constructors may not be cv-qualified"));
11390 memfn_quals = TYPE_UNQUALIFIED;
11393 if (rqual)
11395 maybe_warn_cpp0x (CPP0X_REF_QUALIFIER);
11396 error ((flags == DTOR_FLAG)
11397 ? G_("destructors may not be ref-qualified")
11398 : G_("constructors may not be ref-qualified"));
11399 rqual = REF_QUAL_NONE;
11402 if (decl_context == FIELD
11403 && !member_function_or_else (ctype,
11404 current_class_type,
11405 flags))
11406 return error_mark_node;
11408 if (flags != DTOR_FLAG)
11410 /* It's a constructor. */
11411 if (explicitp == 1)
11412 explicitp = 2;
11413 if (virtualp)
11415 permerror (declspecs->locations[ds_virtual],
11416 "constructors cannot be declared %<virtual%>");
11417 virtualp = 0;
11419 if (decl_context == FIELD
11420 && sfk != sfk_constructor)
11421 return error_mark_node;
11423 if (decl_context == FIELD)
11424 staticp = 0;
11426 else if (friendp)
11428 if (virtualp)
11430 /* Cannot be both friend and virtual. */
11431 gcc_rich_location richloc (declspecs->locations[ds_virtual]);
11432 richloc.add_range (declspecs->locations[ds_friend]);
11433 error_at (&richloc, "virtual functions cannot be friends");
11434 friendp = 0;
11436 if (decl_context == NORMAL)
11437 error ("friend declaration not in class definition");
11438 if (current_function_decl && funcdef_flag)
11440 error ("can%'t define friend function %qs in a local "
11441 "class definition", name);
11442 friendp = 0;
11445 else if (ctype && sfk == sfk_conversion)
11447 if (explicitp == 1)
11449 maybe_warn_cpp0x (CPP0X_EXPLICIT_CONVERSION);
11450 explicitp = 2;
11452 if (late_return_type_p)
11453 error ("a conversion function cannot have a trailing return type");
11455 else if (sfk == sfk_deduction_guide)
11457 if (explicitp == 1)
11458 explicitp = 2;
11461 tree pushed_scope = NULL_TREE;
11462 if (funcdecl_p
11463 && decl_context != FIELD
11464 && inner_declarator->u.id.qualifying_scope
11465 && CLASS_TYPE_P (inner_declarator->u.id.qualifying_scope))
11466 pushed_scope
11467 = push_scope (inner_declarator->u.id.qualifying_scope);
11469 arg_types = grokparms (declarator->u.function.parameters, &parms);
11471 if (pushed_scope)
11472 pop_scope (pushed_scope);
11474 if (inner_declarator
11475 && inner_declarator->kind == cdk_id
11476 && inner_declarator->u.id.sfk == sfk_destructor
11477 && arg_types != void_list_node)
11479 error ("destructors may not have parameters");
11480 arg_types = void_list_node;
11481 parms = NULL_TREE;
11484 type = build_function_type (type, arg_types);
11486 tree attrs = declarator->std_attributes;
11487 if (tx_qual)
11489 tree att = build_tree_list (tx_qual, NULL_TREE);
11490 /* transaction_safe applies to the type, but
11491 transaction_safe_dynamic applies to the function. */
11492 if (is_attribute_p ("transaction_safe", tx_qual))
11493 attrs = chainon (attrs, att);
11494 else
11495 returned_attrs = chainon (returned_attrs, att);
11497 if (attrs)
11498 /* [dcl.fct]/2:
11500 The optional attribute-specifier-seq appertains to
11501 the function type. */
11502 decl_attributes (&type, attrs, 0);
11504 if (raises)
11505 type = build_exception_variant (type, raises);
11507 break;
11509 case cdk_pointer:
11510 case cdk_reference:
11511 case cdk_ptrmem:
11512 /* Filter out pointers-to-references and references-to-references.
11513 We can get these if a TYPE_DECL is used. */
11515 if (TYPE_REF_P (type))
11517 if (declarator->kind != cdk_reference)
11519 error ("cannot declare pointer to %q#T", type);
11520 type = TREE_TYPE (type);
11523 /* In C++0x, we allow reference to reference declarations
11524 that occur indirectly through typedefs [7.1.3/8 dcl.typedef]
11525 and template type arguments [14.3.1/4 temp.arg.type]. The
11526 check for direct reference to reference declarations, which
11527 are still forbidden, occurs below. Reasoning behind the change
11528 can be found in DR106, DR540, and the rvalue reference
11529 proposals. */
11530 else if (cxx_dialect == cxx98)
11532 error ("cannot declare reference to %q#T", type);
11533 type = TREE_TYPE (type);
11536 else if (VOID_TYPE_P (type))
11538 if (declarator->kind == cdk_reference)
11539 error ("cannot declare reference to %q#T", type);
11540 else if (declarator->kind == cdk_ptrmem)
11541 error ("cannot declare pointer to %q#T member", type);
11544 /* We now know that the TYPE_QUALS don't apply to the decl,
11545 but to the target of the pointer. */
11546 type_quals = TYPE_UNQUALIFIED;
11548 /* This code used to handle METHOD_TYPE, but I don't think it's
11549 possible to get it here anymore. */
11550 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
11551 if (declarator->kind == cdk_ptrmem
11552 && TREE_CODE (type) == FUNCTION_TYPE)
11554 memfn_quals |= type_memfn_quals (type);
11555 type = build_memfn_type (type,
11556 declarator->u.pointer.class_type,
11557 memfn_quals,
11558 rqual);
11559 if (type == error_mark_node)
11560 return error_mark_node;
11562 rqual = REF_QUAL_NONE;
11563 memfn_quals = TYPE_UNQUALIFIED;
11566 if (TREE_CODE (type) == FUNCTION_TYPE
11567 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
11568 || type_memfn_rqual (type) != REF_QUAL_NONE))
11569 error (declarator->kind == cdk_reference
11570 ? G_("cannot declare reference to qualified function type %qT")
11571 : G_("cannot declare pointer to qualified function type %qT"),
11572 type);
11574 /* When the pointed-to type involves components of variable size,
11575 care must be taken to ensure that the size evaluation code is
11576 emitted early enough to dominate all the possible later uses
11577 and late enough for the variables on which it depends to have
11578 been assigned.
11580 This is expected to happen automatically when the pointed-to
11581 type has a name/declaration of it's own, but special attention
11582 is required if the type is anonymous.
11584 We handle the NORMAL and FIELD contexts here by inserting a
11585 dummy statement that just evaluates the size at a safe point
11586 and ensures it is not deferred until e.g. within a deeper
11587 conditional context (c++/43555).
11589 We expect nothing to be needed here for PARM or TYPENAME.
11590 Evaluating the size at this point for TYPENAME would
11591 actually be incorrect, as we might be in the middle of an
11592 expression with side effects on the pointed-to type size
11593 "arguments" prior to the pointer declaration point and the
11594 size evaluation could end up prior to the side effects. */
11596 if (!TYPE_NAME (type)
11597 && (decl_context == NORMAL || decl_context == FIELD)
11598 && at_function_scope_p ()
11599 && variably_modified_type_p (type, NULL_TREE))
11601 TYPE_NAME (type) = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
11602 NULL_TREE, type);
11603 add_decl_expr (TYPE_NAME (type));
11606 if (declarator->kind == cdk_reference)
11608 /* In C++0x, the type we are creating a reference to might be
11609 a typedef which is itself a reference type. In that case,
11610 we follow the reference collapsing rules in
11611 [7.1.3/8 dcl.typedef] to create the final reference type:
11613 "If a typedef TD names a type that is a reference to a type
11614 T, an attempt to create the type 'lvalue reference to cv TD'
11615 creates the type 'lvalue reference to T,' while an attempt
11616 to create the type "rvalue reference to cv TD' creates the
11617 type TD."
11619 if (VOID_TYPE_P (type))
11620 /* We already gave an error. */;
11621 else if (TYPE_REF_P (type))
11623 if (declarator->u.reference.rvalue_ref)
11624 /* Leave type alone. */;
11625 else
11626 type = cp_build_reference_type (TREE_TYPE (type), false);
11628 else
11629 type = cp_build_reference_type
11630 (type, declarator->u.reference.rvalue_ref);
11632 /* In C++0x, we need this check for direct reference to
11633 reference declarations, which are forbidden by
11634 [8.3.2/5 dcl.ref]. Reference to reference declarations
11635 are only allowed indirectly through typedefs and template
11636 type arguments. Example:
11638 void foo(int & &); // invalid ref-to-ref decl
11640 typedef int & int_ref;
11641 void foo(int_ref &); // valid ref-to-ref decl
11643 if (inner_declarator && inner_declarator->kind == cdk_reference)
11644 error ("cannot declare reference to %q#T, which is not "
11645 "a typedef or a template type argument", type);
11647 else if (TREE_CODE (type) == METHOD_TYPE)
11648 type = build_ptrmemfunc_type (build_pointer_type (type));
11649 else if (declarator->kind == cdk_ptrmem)
11651 gcc_assert (TREE_CODE (declarator->u.pointer.class_type)
11652 != NAMESPACE_DECL);
11653 if (declarator->u.pointer.class_type == error_mark_node)
11654 /* We will already have complained. */
11655 type = error_mark_node;
11656 else
11657 type = build_ptrmem_type (declarator->u.pointer.class_type,
11658 type);
11660 else
11661 type = build_pointer_type (type);
11663 /* Process a list of type modifier keywords (such as
11664 const or volatile) that were given inside the `*' or `&'. */
11666 if (declarator->u.pointer.qualifiers)
11668 type
11669 = cp_build_qualified_type (type,
11670 declarator->u.pointer.qualifiers);
11671 type_quals = cp_type_quals (type);
11674 /* Apply C++11 attributes to the pointer, and not to the
11675 type pointed to. This is unlike what is done for GNU
11676 attributes above. It is to comply with [dcl.ptr]/1:
11678 [the optional attribute-specifier-seq (7.6.1) appertains
11679 to the pointer and not to the object pointed to]. */
11680 if (declarator->std_attributes)
11681 decl_attributes (&type, declarator->std_attributes,
11684 ctype = NULL_TREE;
11685 break;
11687 case cdk_error:
11688 break;
11690 default:
11691 gcc_unreachable ();
11695 /* A `constexpr' specifier used in an object declaration declares
11696 the object as `const'. */
11697 if (constexpr_p && innermost_code != cdk_function)
11699 /* DR1688 says that a `constexpr' specifier in combination with
11700 `volatile' is valid. */
11702 if (!TYPE_REF_P (type))
11704 type_quals |= TYPE_QUAL_CONST;
11705 type = cp_build_qualified_type (type, type_quals);
11709 if (unqualified_id && TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR
11710 && TREE_CODE (type) != FUNCTION_TYPE
11711 && TREE_CODE (type) != METHOD_TYPE
11712 && !variable_template_p (TREE_OPERAND (unqualified_id, 0)))
11714 error ("template-id %qD used as a declarator",
11715 unqualified_id);
11716 unqualified_id = dname;
11719 /* If TYPE is a FUNCTION_TYPE, but the function name was explicitly
11720 qualified with a class-name, turn it into a METHOD_TYPE, unless
11721 we know that the function is static. We take advantage of this
11722 opportunity to do other processing that pertains to entities
11723 explicitly declared to be class members. Note that if DECLARATOR
11724 is non-NULL, we know it is a cdk_id declarator; otherwise, we
11725 would not have exited the loop above. */
11726 if (declarator
11727 && declarator->kind == cdk_id
11728 && declarator->u.id.qualifying_scope
11729 && MAYBE_CLASS_TYPE_P (declarator->u.id.qualifying_scope))
11731 ctype = declarator->u.id.qualifying_scope;
11732 ctype = TYPE_MAIN_VARIANT (ctype);
11733 template_count = num_template_headers_for_class (ctype);
11735 if (ctype == current_class_type)
11737 if (friendp)
11739 permerror (input_location, "member functions are implicitly "
11740 "friends of their class");
11741 friendp = 0;
11743 else
11744 permerror (declarator->id_loc,
11745 "extra qualification %<%T::%> on member %qs",
11746 ctype, name);
11748 else if (/* If the qualifying type is already complete, then we
11749 can skip the following checks. */
11750 !COMPLETE_TYPE_P (ctype)
11751 && (/* If the function is being defined, then
11752 qualifying type must certainly be complete. */
11753 funcdef_flag
11754 /* A friend declaration of "T::f" is OK, even if
11755 "T" is a template parameter. But, if this
11756 function is not a friend, the qualifying type
11757 must be a class. */
11758 || (!friendp && !CLASS_TYPE_P (ctype))
11759 /* For a declaration, the type need not be
11760 complete, if either it is dependent (since there
11761 is no meaningful definition of complete in that
11762 case) or the qualifying class is currently being
11763 defined. */
11764 || !(dependent_type_p (ctype)
11765 || currently_open_class (ctype)))
11766 /* Check that the qualifying type is complete. */
11767 && !complete_type_or_else (ctype, NULL_TREE))
11768 return error_mark_node;
11769 else if (TREE_CODE (type) == FUNCTION_TYPE)
11771 if (current_class_type
11772 && (!friendp || funcdef_flag || initialized))
11774 error (funcdef_flag || initialized
11775 ? G_("cannot define member function %<%T::%s%> "
11776 "within %qT")
11777 : G_("cannot declare member function %<%T::%s%> "
11778 "within %qT"),
11779 ctype, name, current_class_type);
11780 return error_mark_node;
11783 else if (typedef_p && current_class_type)
11785 error ("cannot declare member %<%T::%s%> within %qT",
11786 ctype, name, current_class_type);
11787 return error_mark_node;
11791 if (ctype == NULL_TREE && decl_context == FIELD && friendp == 0)
11792 ctype = current_class_type;
11794 /* Now TYPE has the actual type. */
11796 if (returned_attrs)
11798 if (attrlist)
11799 *attrlist = chainon (returned_attrs, *attrlist);
11800 else
11801 attrlist = &returned_attrs;
11804 if (declarator
11805 && declarator->kind == cdk_id
11806 && declarator->std_attributes
11807 && attrlist != NULL)
11809 /* [dcl.meaning]/1: The optional attribute-specifier-seq following
11810 a declarator-id appertains to the entity that is declared. */
11811 if (declarator->std_attributes != error_mark_node)
11812 *attrlist = chainon (*attrlist, declarator->std_attributes);
11813 else
11814 /* We should have already diagnosed the issue (c++/78344). */
11815 gcc_assert (seen_error ());
11818 /* Handle parameter packs. */
11819 if (parameter_pack_p)
11821 if (decl_context == PARM)
11822 /* Turn the type into a pack expansion.*/
11823 type = make_pack_expansion (type);
11824 else
11825 error ("non-parameter %qs cannot be a parameter pack", name);
11828 if ((decl_context == FIELD || decl_context == PARM)
11829 && !processing_template_decl
11830 && variably_modified_type_p (type, NULL_TREE))
11832 if (decl_context == FIELD)
11833 error ("data member may not have variably modified type %qT", type);
11834 else
11835 error ("parameter may not have variably modified type %qT", type);
11836 type = error_mark_node;
11839 if (explicitp == 1 || (explicitp && friendp))
11841 /* [dcl.fct.spec] (C++11) The explicit specifier shall be used only
11842 in the declaration of a constructor or conversion function within
11843 a class definition. */
11844 if (!current_class_type)
11845 error_at (declspecs->locations[ds_explicit],
11846 "%<explicit%> outside class declaration");
11847 else if (friendp)
11848 error_at (declspecs->locations[ds_explicit],
11849 "%<explicit%> in friend declaration");
11850 else
11851 error_at (declspecs->locations[ds_explicit],
11852 "only declarations of constructors and conversion operators "
11853 "can be %<explicit%>");
11854 explicitp = 0;
11857 if (storage_class == sc_mutable)
11859 if (decl_context != FIELD || friendp)
11861 error ("non-member %qs cannot be declared %<mutable%>", name);
11862 storage_class = sc_none;
11864 else if (decl_context == TYPENAME || typedef_p)
11866 error ("non-object member %qs cannot be declared %<mutable%>", name);
11867 storage_class = sc_none;
11869 else if (TREE_CODE (type) == FUNCTION_TYPE
11870 || TREE_CODE (type) == METHOD_TYPE)
11872 error ("function %qs cannot be declared %<mutable%>", name);
11873 storage_class = sc_none;
11875 else if (staticp)
11877 error ("static %qs cannot be declared %<mutable%>", name);
11878 storage_class = sc_none;
11880 else if (type_quals & TYPE_QUAL_CONST)
11882 error ("const %qs cannot be declared %<mutable%>", name);
11883 storage_class = sc_none;
11885 else if (TYPE_REF_P (type))
11887 permerror (input_location, "reference %qs cannot be declared "
11888 "%<mutable%>", name);
11889 storage_class = sc_none;
11893 /* If this is declaring a typedef name, return a TYPE_DECL. */
11894 if (typedef_p && decl_context != TYPENAME)
11896 bool alias_p = decl_spec_seq_has_spec_p (declspecs, ds_alias);
11897 tree decl;
11899 /* This declaration:
11901 typedef void f(int) const;
11903 declares a function type which is not a member of any
11904 particular class, but which is cv-qualified; for
11905 example "f S::*" declares a pointer to a const-qualified
11906 member function of S. We record the cv-qualification in the
11907 function type. */
11908 if ((rqual || memfn_quals) && TREE_CODE (type) == FUNCTION_TYPE)
11910 type = apply_memfn_quals (type, memfn_quals, rqual);
11912 /* We have now dealt with these qualifiers. */
11913 memfn_quals = TYPE_UNQUALIFIED;
11914 rqual = REF_QUAL_NONE;
11917 if (type_uses_auto (type))
11919 if (alias_p)
11920 error_at (declspecs->locations[ds_type_spec],
11921 "%<auto%> not allowed in alias declaration");
11922 else
11923 error_at (declspecs->locations[ds_type_spec],
11924 "typedef declared %<auto%>");
11925 type = error_mark_node;
11928 if (reqs)
11929 error_at (location_of (reqs), "requires-clause on typedef");
11931 if (id_declarator && declarator->u.id.qualifying_scope)
11933 error ("typedef name may not be a nested-name-specifier");
11934 type = error_mark_node;
11937 if (decl_context == FIELD)
11938 decl = build_lang_decl (TYPE_DECL, unqualified_id, type);
11939 else
11940 decl = build_decl (input_location, TYPE_DECL, unqualified_id, type);
11942 if (decl_context != FIELD)
11944 if (!current_function_decl)
11945 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
11946 else if (DECL_MAYBE_IN_CHARGE_CDTOR_P (current_function_decl))
11947 /* The TYPE_DECL is "abstract" because there will be
11948 clones of this constructor/destructor, and there will
11949 be copies of this TYPE_DECL generated in those
11950 clones. The decloning optimization (for space) may
11951 revert this subsequently if it determines that
11952 the clones should share a common implementation. */
11953 DECL_ABSTRACT_P (decl) = true;
11955 else if (current_class_type
11956 && constructor_name_p (unqualified_id, current_class_type))
11957 permerror (input_location, "ISO C++ forbids nested type %qD with same name "
11958 "as enclosing class",
11959 unqualified_id);
11961 /* If the user declares "typedef struct {...} foo" then the
11962 struct will have an anonymous name. Fill that name in now.
11963 Nothing can refer to it, so nothing needs know about the name
11964 change. */
11965 if (type != error_mark_node
11966 && unqualified_id
11967 && TYPE_NAME (type)
11968 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
11969 && TYPE_UNNAMED_P (type)
11970 && declspecs->type_definition_p
11971 && attributes_naming_typedef_ok (*attrlist)
11972 && cp_type_quals (type) == TYPE_UNQUALIFIED)
11973 name_unnamed_type (type, decl);
11975 if (signed_p
11976 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
11977 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
11979 bad_specifiers (decl, BSP_TYPE, virtualp,
11980 memfn_quals != TYPE_UNQUALIFIED,
11981 inlinep, friendp, raises != NULL_TREE,
11982 declspecs->locations);
11984 if (alias_p)
11985 /* Acknowledge that this was written:
11986 `using analias = atype;'. */
11987 TYPE_DECL_ALIAS_P (decl) = 1;
11989 return decl;
11992 /* Detect the case of an array type of unspecified size
11993 which came, as such, direct from a typedef name.
11994 We must copy the type, so that the array's domain can be
11995 individually set by the object's initializer. */
11997 if (type && typedef_type
11998 && TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type)
11999 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type))
12000 type = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
12002 /* Detect where we're using a typedef of function type to declare a
12003 function. PARMS will not be set, so we must create it now. */
12005 if (type == typedef_type && TREE_CODE (type) == FUNCTION_TYPE)
12007 tree decls = NULL_TREE;
12008 tree args;
12010 for (args = TYPE_ARG_TYPES (type);
12011 args && args != void_list_node;
12012 args = TREE_CHAIN (args))
12014 tree decl = cp_build_parm_decl (NULL_TREE, NULL_TREE,
12015 TREE_VALUE (args));
12017 DECL_CHAIN (decl) = decls;
12018 decls = decl;
12021 parms = nreverse (decls);
12023 if (decl_context != TYPENAME)
12025 /* The qualifiers on the function type become the qualifiers on
12026 the non-static member function. */
12027 memfn_quals |= type_memfn_quals (type);
12028 rqual = type_memfn_rqual (type);
12029 type_quals = TYPE_UNQUALIFIED;
12033 /* If this is a type name (such as, in a cast or sizeof),
12034 compute the type and return it now. */
12036 if (decl_context == TYPENAME)
12038 /* Note that here we don't care about type_quals. */
12040 /* Special case: "friend class foo" looks like a TYPENAME context. */
12041 if (friendp)
12043 if (inlinep)
12045 error ("%<inline%> specified for friend class declaration");
12046 inlinep = 0;
12049 if (!current_aggr)
12051 /* Don't allow friend declaration without a class-key. */
12052 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
12053 permerror (input_location, "template parameters cannot be friends");
12054 else if (TREE_CODE (type) == TYPENAME_TYPE)
12055 permerror (input_location, "friend declaration requires class-key, "
12056 "i.e. %<friend class %T::%D%>",
12057 TYPE_CONTEXT (type), TYPENAME_TYPE_FULLNAME (type));
12058 else
12059 permerror (input_location, "friend declaration requires class-key, "
12060 "i.e. %<friend %#T%>",
12061 type);
12064 /* Only try to do this stuff if we didn't already give up. */
12065 if (type != integer_type_node)
12067 /* A friendly class? */
12068 if (current_class_type)
12069 make_friend_class (current_class_type, TYPE_MAIN_VARIANT (type),
12070 /*complain=*/true);
12071 else
12072 error ("trying to make class %qT a friend of global scope",
12073 type);
12075 type = void_type_node;
12078 else if (memfn_quals || rqual)
12080 if (ctype == NULL_TREE
12081 && TREE_CODE (type) == METHOD_TYPE)
12082 ctype = TYPE_METHOD_BASETYPE (type);
12084 if (ctype)
12085 type = build_memfn_type (type, ctype, memfn_quals, rqual);
12086 /* Core issue #547: need to allow this in template type args.
12087 Allow it in general in C++11 for alias-declarations. */
12088 else if ((template_type_arg || cxx_dialect >= cxx11)
12089 && TREE_CODE (type) == FUNCTION_TYPE)
12090 type = apply_memfn_quals (type, memfn_quals, rqual);
12091 else
12092 error ("invalid qualifiers on non-member function type");
12095 if (reqs)
12096 error_at (location_of (reqs), "requires-clause on type-id");
12098 return type;
12100 else if (unqualified_id == NULL_TREE && decl_context != PARM
12101 && decl_context != CATCHPARM
12102 && TREE_CODE (type) != UNION_TYPE
12103 && ! bitfield
12104 && innermost_code != cdk_decomp)
12106 error ("abstract declarator %qT used as declaration", type);
12107 return error_mark_node;
12110 if (!FUNC_OR_METHOD_TYPE_P (type))
12112 /* Only functions may be declared using an operator-function-id. */
12113 if (dname && IDENTIFIER_ANY_OP_P (dname))
12115 error ("declaration of %qD as non-function", dname);
12116 return error_mark_node;
12119 if (reqs)
12120 error_at (location_of (reqs),
12121 "requires-clause on declaration of non-function type %qT",
12122 type);
12125 /* We don't check parameter types here because we can emit a better
12126 error message later. */
12127 if (decl_context != PARM)
12129 type = check_var_type (unqualified_id, type);
12130 if (type == error_mark_node)
12131 return error_mark_node;
12134 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
12135 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
12137 if (decl_context == PARM || decl_context == CATCHPARM)
12139 if (ctype || in_namespace)
12140 error ("cannot use %<::%> in parameter declaration");
12142 if (type_uses_auto (type)
12143 && !(cxx_dialect >= cxx17 && template_parm_flag))
12145 if (cxx_dialect >= cxx14)
12146 error ("%<auto%> parameter not permitted in this context");
12147 else
12148 error ("parameter declared %<auto%>");
12149 type = error_mark_node;
12152 /* A parameter declared as an array of T is really a pointer to T.
12153 One declared as a function is really a pointer to a function.
12154 One declared as a member is really a pointer to member. */
12156 if (TREE_CODE (type) == ARRAY_TYPE)
12158 /* Transfer const-ness of array into that of type pointed to. */
12159 type = build_pointer_type (TREE_TYPE (type));
12160 type_quals = TYPE_UNQUALIFIED;
12161 array_parameter_p = true;
12163 else if (TREE_CODE (type) == FUNCTION_TYPE)
12164 type = build_pointer_type (type);
12167 if (ctype && TREE_CODE (type) == FUNCTION_TYPE && staticp < 2
12168 && !(identifier_p (unqualified_id)
12169 && IDENTIFIER_NEWDEL_OP_P (unqualified_id)))
12171 cp_cv_quals real_quals = memfn_quals;
12172 if (cxx_dialect < cxx14 && constexpr_p
12173 && sfk != sfk_constructor && sfk != sfk_destructor)
12174 real_quals |= TYPE_QUAL_CONST;
12175 type = build_memfn_type (type, ctype, real_quals, rqual);
12179 tree decl = NULL_TREE;
12181 if (decl_context == PARM)
12183 decl = cp_build_parm_decl (NULL_TREE, unqualified_id, type);
12184 DECL_ARRAY_PARAMETER_P (decl) = array_parameter_p;
12186 bad_specifiers (decl, BSP_PARM, virtualp,
12187 memfn_quals != TYPE_UNQUALIFIED,
12188 inlinep, friendp, raises != NULL_TREE,
12189 declspecs->locations);
12191 else if (decl_context == FIELD)
12193 if (!staticp && !friendp && TREE_CODE (type) != METHOD_TYPE)
12194 if (tree auto_node = type_uses_auto (type))
12196 location_t loc = declspecs->locations[ds_type_spec];
12197 if (CLASS_PLACEHOLDER_TEMPLATE (auto_node))
12198 error_at (loc, "invalid use of template-name %qE without an "
12199 "argument list",
12200 CLASS_PLACEHOLDER_TEMPLATE (auto_node));
12201 else
12202 error_at (loc, "non-static data member declared with "
12203 "placeholder %qT", auto_node);
12204 type = error_mark_node;
12207 /* The C99 flexible array extension. */
12208 if (!staticp && TREE_CODE (type) == ARRAY_TYPE
12209 && TYPE_DOMAIN (type) == NULL_TREE)
12211 if (ctype
12212 && (TREE_CODE (ctype) == UNION_TYPE
12213 || TREE_CODE (ctype) == QUAL_UNION_TYPE))
12215 error ("flexible array member in union");
12216 type = error_mark_node;
12218 else
12220 /* Array is a flexible member. */
12221 if (in_system_header_at (input_location))
12222 /* Do not warn on flexible array members in system
12223 headers because glibc uses them. */;
12224 else if (name)
12225 pedwarn (declarator->id_loc, OPT_Wpedantic,
12226 "ISO C++ forbids flexible array member %qs", name);
12227 else
12228 pedwarn (input_location, OPT_Wpedantic,
12229 "ISO C++ forbids flexible array members");
12231 /* Flexible array member has a null domain. */
12232 type = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
12236 if (type == error_mark_node)
12238 /* Happens when declaring arrays of sizes which
12239 are error_mark_node, for example. */
12240 decl = NULL_TREE;
12242 else if (in_namespace && !friendp)
12244 /* Something like struct S { int N::j; }; */
12245 error ("invalid use of %<::%>");
12246 return error_mark_node;
12248 else if (TREE_CODE (type) == FUNCTION_TYPE
12249 || TREE_CODE (type) == METHOD_TYPE)
12251 int publicp = 0;
12252 tree function_context;
12254 if (friendp == 0)
12256 /* This should never happen in pure C++ (the check
12257 could be an assert). It could happen in
12258 Objective-C++ if someone writes invalid code that
12259 uses a function declaration for an instance
12260 variable or property (instance variables and
12261 properties are parsed as FIELD_DECLs, but they are
12262 part of an Objective-C class, not a C++ class).
12263 That code is invalid and is caught by this
12264 check. */
12265 if (!ctype)
12267 error ("declaration of function %qD in invalid context",
12268 unqualified_id);
12269 return error_mark_node;
12272 /* ``A union may [ ... ] not [ have ] virtual functions.''
12273 ARM 9.5 */
12274 if (virtualp && TREE_CODE (ctype) == UNION_TYPE)
12276 error_at (declspecs->locations[ds_virtual],
12277 "function %qD declared %<virtual%> inside a union",
12278 unqualified_id);
12279 return error_mark_node;
12282 if (virtualp
12283 && identifier_p (unqualified_id)
12284 && IDENTIFIER_NEWDEL_OP_P (unqualified_id))
12286 error_at (declspecs->locations[ds_virtual],
12287 "%qD cannot be declared %<virtual%>, since it "
12288 "is always static", unqualified_id);
12289 virtualp = 0;
12293 /* Check that the name used for a destructor makes sense. */
12294 if (sfk == sfk_destructor)
12296 tree uqname = id_declarator->u.id.unqualified_name;
12298 if (!ctype)
12300 gcc_assert (friendp);
12301 error ("expected qualified name in friend declaration "
12302 "for destructor %qD", uqname);
12303 return error_mark_node;
12306 if (!check_dtor_name (ctype, TREE_OPERAND (uqname, 0)))
12308 error ("declaration of %qD as member of %qT",
12309 uqname, ctype);
12310 return error_mark_node;
12312 if (concept_p)
12314 error_at (declspecs->locations[ds_concept],
12315 "a destructor cannot be %<concept%>");
12316 return error_mark_node;
12318 if (constexpr_p)
12320 error_at (declspecs->locations[ds_constexpr],
12321 "a destructor cannot be %<constexpr%>");
12322 return error_mark_node;
12325 else if (sfk == sfk_constructor && friendp && !ctype)
12327 error ("expected qualified name in friend declaration "
12328 "for constructor %qD",
12329 id_declarator->u.id.unqualified_name);
12330 return error_mark_node;
12332 if (sfk == sfk_constructor)
12333 if (concept_p)
12335 error_at (declspecs->locations[ds_concept],
12336 "a constructor cannot be %<concept%>");
12337 return error_mark_node;
12339 if (concept_p)
12341 error_at (declspecs->locations[ds_concept],
12342 "a concept cannot be a member function");
12343 concept_p = false;
12346 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
12348 tree tmpl = TREE_OPERAND (unqualified_id, 0);
12349 if (variable_template_p (tmpl))
12351 error ("specialization of variable template %qD "
12352 "declared as function", tmpl);
12353 inform (DECL_SOURCE_LOCATION (tmpl),
12354 "variable template declared here");
12355 return error_mark_node;
12359 /* Tell grokfndecl if it needs to set TREE_PUBLIC on the node. */
12360 function_context = (ctype != NULL_TREE) ?
12361 decl_function_context (TYPE_MAIN_DECL (ctype)) : NULL_TREE;
12362 publicp = (! friendp || ! staticp)
12363 && function_context == NULL_TREE;
12365 decl = grokfndecl (ctype, type,
12366 TREE_CODE (unqualified_id) != TEMPLATE_ID_EXPR
12367 ? unqualified_id : dname,
12368 parms,
12369 unqualified_id,
12370 declspecs,
12371 reqs,
12372 virtualp, flags, memfn_quals, rqual, raises,
12373 friendp ? -1 : 0, friendp, publicp,
12374 inlinep | (2 * constexpr_p) | (4 * concept_p),
12375 initialized == SD_DELETED, sfk,
12376 funcdef_flag, late_return_type_p,
12377 template_count, in_namespace,
12378 attrlist, declarator->id_loc);
12379 decl = set_virt_specifiers (decl, virt_specifiers);
12380 if (decl == NULL_TREE)
12381 return error_mark_node;
12382 #if 0
12383 /* This clobbers the attrs stored in `decl' from `attrlist'. */
12384 /* The decl and setting of decl_attr is also turned off. */
12385 decl = build_decl_attribute_variant (decl, decl_attr);
12386 #endif
12388 /* [class.conv.ctor]
12390 A constructor declared without the function-specifier
12391 explicit that can be called with a single parameter
12392 specifies a conversion from the type of its first
12393 parameter to the type of its class. Such a constructor
12394 is called a converting constructor. */
12395 if (explicitp == 2)
12396 DECL_NONCONVERTING_P (decl) = 1;
12398 if (declspecs->explicit_specifier)
12399 store_explicit_specifier (decl, declspecs->explicit_specifier);
12401 else if (!staticp && !dependent_type_p (type)
12402 && !COMPLETE_TYPE_P (complete_type (type))
12403 && (!complete_or_array_type_p (type)
12404 || initialized == 0))
12406 if (TREE_CODE (type) != ARRAY_TYPE
12407 || !COMPLETE_TYPE_P (TREE_TYPE (type)))
12409 if (unqualified_id)
12411 error ("field %qD has incomplete type %qT",
12412 unqualified_id, type);
12413 cxx_incomplete_type_inform (strip_array_types (type));
12415 else
12416 error ("name %qT has incomplete type", type);
12418 type = error_mark_node;
12419 decl = NULL_TREE;
12422 else
12424 if (friendp)
12426 error ("%qE is neither function nor member function; "
12427 "cannot be declared friend", unqualified_id);
12428 return error_mark_node;
12430 decl = NULL_TREE;
12433 if (friendp)
12435 /* Friends are treated specially. */
12436 if (ctype == current_class_type)
12437 ; /* We already issued a permerror. */
12438 else if (decl && DECL_NAME (decl))
12440 if (template_class_depth (current_class_type) == 0)
12442 decl = check_explicit_specialization
12443 (unqualified_id, decl, template_count,
12444 2 * funcdef_flag + 4);
12445 if (decl == error_mark_node)
12446 return error_mark_node;
12449 decl = do_friend (ctype, unqualified_id, decl,
12450 *attrlist, flags,
12451 funcdef_flag);
12452 return decl;
12454 else
12455 return error_mark_node;
12458 /* Structure field. It may not be a function, except for C++. */
12460 if (decl == NULL_TREE)
12462 if (staticp)
12464 /* C++ allows static class members. All other work
12465 for this is done by grokfield. */
12466 decl = build_lang_decl_loc (declarator
12467 ? declarator->id_loc
12468 : input_location,
12469 VAR_DECL, unqualified_id, type);
12470 set_linkage_for_static_data_member (decl);
12471 if (concept_p)
12472 error_at (declspecs->locations[ds_concept],
12473 "static data member %qE declared %<concept%>",
12474 unqualified_id);
12475 else if (constexpr_p && !initialized)
12477 error ("%<constexpr%> static data member %qD must have an "
12478 "initializer", decl);
12479 constexpr_p = false;
12482 if (inlinep)
12483 mark_inline_variable (decl, declspecs->locations[ds_inline]);
12485 if (!DECL_VAR_DECLARED_INLINE_P (decl)
12486 && !(cxx_dialect >= cxx17 && constexpr_p))
12487 /* Even if there is an in-class initialization, DECL
12488 is considered undefined until an out-of-class
12489 definition is provided, unless this is an inline
12490 variable. */
12491 DECL_EXTERNAL (decl) = 1;
12493 if (thread_p)
12495 CP_DECL_THREAD_LOCAL_P (decl) = true;
12496 if (!processing_template_decl)
12497 set_decl_tls_model (decl, decl_default_tls_model (decl));
12498 if (declspecs->gnu_thread_keyword_p)
12499 SET_DECL_GNU_TLS_P (decl);
12502 else
12504 if (concept_p)
12505 error_at (declspecs->locations[ds_concept],
12506 "non-static data member %qE declared %<concept%>",
12507 unqualified_id);
12508 else if (constexpr_p)
12510 error_at (declspecs->locations[ds_constexpr],
12511 "non-static data member %qE declared %<constexpr%>",
12512 unqualified_id);
12513 constexpr_p = false;
12515 decl = build_decl (input_location,
12516 FIELD_DECL, unqualified_id, type);
12517 DECL_NONADDRESSABLE_P (decl) = bitfield;
12518 if (bitfield && !unqualified_id)
12520 TREE_NO_WARNING (decl) = 1;
12521 DECL_PADDING_P (decl) = 1;
12524 if (storage_class == sc_mutable)
12526 DECL_MUTABLE_P (decl) = 1;
12527 storage_class = sc_none;
12530 if (initialized)
12532 /* An attempt is being made to initialize a non-static
12533 member. This is new in C++11. */
12534 maybe_warn_cpp0x (CPP0X_NSDMI);
12536 /* If this has been parsed with static storage class, but
12537 errors forced staticp to be cleared, ensure NSDMI is
12538 not present. */
12539 if (declspecs->storage_class == sc_static)
12540 DECL_INITIAL (decl) = error_mark_node;
12544 bad_specifiers (decl, BSP_FIELD, virtualp,
12545 memfn_quals != TYPE_UNQUALIFIED,
12546 staticp ? false : inlinep, friendp,
12547 raises != NULL_TREE,
12548 declspecs->locations);
12551 else if (TREE_CODE (type) == FUNCTION_TYPE
12552 || TREE_CODE (type) == METHOD_TYPE)
12554 tree original_name;
12555 int publicp = 0;
12557 if (!unqualified_id)
12558 return error_mark_node;
12560 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
12561 original_name = dname;
12562 else
12563 original_name = unqualified_id;
12564 // FIXME:gcc_assert (original_name == dname);
12566 if (storage_class == sc_auto)
12567 error ("storage class %<auto%> invalid for function %qs", name);
12568 else if (storage_class == sc_register)
12569 error ("storage class %<register%> invalid for function %qs", name);
12570 else if (thread_p)
12572 if (declspecs->gnu_thread_keyword_p)
12573 error_at (declspecs->locations[ds_thread],
12574 "storage class %<__thread%> invalid for function %qs",
12575 name);
12576 else
12577 error_at (declspecs->locations[ds_thread],
12578 "storage class %<thread_local%> invalid for "
12579 "function %qs", name);
12582 if (virt_specifiers)
12583 error ("virt-specifiers in %qs not allowed outside a class "
12584 "definition", name);
12585 /* Function declaration not at top level.
12586 Storage classes other than `extern' are not allowed
12587 and `extern' makes no difference. */
12588 if (! toplevel_bindings_p ()
12589 && (storage_class == sc_static
12590 || decl_spec_seq_has_spec_p (declspecs, ds_inline))
12591 && pedantic)
12593 if (storage_class == sc_static)
12594 pedwarn (declspecs->locations[ds_storage_class], OPT_Wpedantic,
12595 "%<static%> specifier invalid for function %qs "
12596 "declared out of global scope", name);
12597 else
12598 pedwarn (declspecs->locations[ds_inline], OPT_Wpedantic,
12599 "%<inline%> specifier invalid for function %qs "
12600 "declared out of global scope", name);
12603 if (ctype == NULL_TREE)
12605 if (virtualp)
12607 error ("virtual non-class function %qs", name);
12608 virtualp = 0;
12610 else if (sfk == sfk_constructor
12611 || sfk == sfk_destructor)
12613 error (funcdef_flag
12614 ? G_("%qs defined in a non-class scope")
12615 : G_("%qs declared in a non-class scope"), name);
12616 sfk = sfk_none;
12620 /* Record whether the function is public. */
12621 publicp = (ctype != NULL_TREE
12622 || storage_class != sc_static);
12624 decl = grokfndecl (ctype, type, original_name, parms, unqualified_id,
12625 declspecs,
12626 reqs, virtualp, flags, memfn_quals, rqual, raises,
12627 1, friendp,
12628 publicp,
12629 inlinep | (2 * constexpr_p) | (4 * concept_p),
12630 initialized == SD_DELETED,
12631 sfk,
12632 funcdef_flag,
12633 late_return_type_p,
12634 template_count, in_namespace, attrlist,
12635 declarator->id_loc);
12636 if (decl == NULL_TREE)
12637 return error_mark_node;
12639 if (explicitp == 2)
12640 DECL_NONCONVERTING_P (decl) = 1;
12641 if (staticp == 1)
12643 int invalid_static = 0;
12645 /* Don't allow a static member function in a class, and forbid
12646 declaring main to be static. */
12647 if (TREE_CODE (type) == METHOD_TYPE)
12649 permerror (input_location, "cannot declare member function %qD to have "
12650 "static linkage", decl);
12651 invalid_static = 1;
12653 else if (current_function_decl)
12655 /* 7.1.1: There can be no static function declarations within a
12656 block. */
12657 error_at (declspecs->locations[ds_storage_class],
12658 "cannot declare static function inside another function");
12659 invalid_static = 1;
12662 if (invalid_static)
12664 staticp = 0;
12665 storage_class = sc_none;
12669 else
12671 /* It's a variable. */
12673 /* An uninitialized decl with `extern' is a reference. */
12674 decl = grokvardecl (type, dname, unqualified_id,
12675 declspecs,
12676 initialized,
12677 type_quals,
12678 inlinep,
12679 concept_p,
12680 template_count,
12681 ctype ? ctype : in_namespace);
12682 if (decl == NULL_TREE)
12683 return error_mark_node;
12685 bad_specifiers (decl, BSP_VAR, virtualp,
12686 memfn_quals != TYPE_UNQUALIFIED,
12687 inlinep, friendp, raises != NULL_TREE,
12688 declspecs->locations);
12690 if (ctype)
12692 DECL_CONTEXT (decl) = ctype;
12693 if (staticp == 1)
12695 permerror (input_location, "%<static%> may not be used when defining "
12696 "(as opposed to declaring) a static data member");
12697 staticp = 0;
12698 storage_class = sc_none;
12700 if (storage_class == sc_register && TREE_STATIC (decl))
12702 error ("static member %qD declared %<register%>", decl);
12703 storage_class = sc_none;
12705 if (storage_class == sc_extern && pedantic)
12707 pedwarn (input_location, OPT_Wpedantic,
12708 "cannot explicitly declare member %q#D to have "
12709 "extern linkage", decl);
12710 storage_class = sc_none;
12713 else if (constexpr_p && DECL_EXTERNAL (decl))
12715 error ("declaration of %<constexpr%> variable %qD "
12716 "is not a definition", decl);
12717 constexpr_p = false;
12720 if (inlinep)
12721 mark_inline_variable (decl, declspecs->locations[ds_inline]);
12722 if (innermost_code == cdk_decomp)
12724 gcc_assert (declarator && declarator->kind == cdk_decomp);
12725 DECL_SOURCE_LOCATION (decl) = declarator->id_loc;
12726 DECL_ARTIFICIAL (decl) = 1;
12727 fit_decomposition_lang_decl (decl, NULL_TREE);
12731 if (VAR_P (decl) && !initialized)
12732 if (tree auto_node = type_uses_auto (type))
12733 if (!CLASS_PLACEHOLDER_TEMPLATE (auto_node))
12735 location_t loc = declspecs->locations[ds_type_spec];
12736 error_at (loc, "declaration of %q#D has no initializer", decl);
12737 TREE_TYPE (decl) = error_mark_node;
12740 if (storage_class == sc_extern && initialized && !funcdef_flag)
12742 if (toplevel_bindings_p ())
12744 /* It's common practice (and completely valid) to have a const
12745 be initialized and declared extern. */
12746 if (!(type_quals & TYPE_QUAL_CONST))
12747 warning (0, "%qs initialized and declared %<extern%>", name);
12749 else
12751 error ("%qs has both %<extern%> and initializer", name);
12752 return error_mark_node;
12756 /* Record `register' declaration for warnings on &
12757 and in case doing stupid register allocation. */
12759 if (storage_class == sc_register)
12761 DECL_REGISTER (decl) = 1;
12762 /* Warn about register storage specifiers on PARM_DECLs. */
12763 if (TREE_CODE (decl) == PARM_DECL)
12765 if (cxx_dialect >= cxx17)
12766 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
12767 "ISO C++17 does not allow %<register%> storage "
12768 "class specifier");
12769 else
12770 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
12771 "%<register%> storage class specifier used");
12774 else if (storage_class == sc_extern)
12775 DECL_THIS_EXTERN (decl) = 1;
12776 else if (storage_class == sc_static)
12777 DECL_THIS_STATIC (decl) = 1;
12779 /* Set constexpr flag on vars (functions got it in grokfndecl). */
12780 if (constexpr_p && VAR_P (decl))
12781 DECL_DECLARED_CONSTEXPR_P (decl) = true;
12783 /* Record constancy and volatility on the DECL itself . There's
12784 no need to do this when processing a template; we'll do this
12785 for the instantiated declaration based on the type of DECL. */
12786 if (!processing_template_decl)
12787 cp_apply_type_quals_to_decl (type_quals, decl);
12789 return decl;
12793 /* Subroutine of start_function. Ensure that each of the parameter
12794 types (as listed in PARMS) is complete, as is required for a
12795 function definition. */
12797 static void
12798 require_complete_types_for_parms (tree parms)
12800 for (; parms; parms = DECL_CHAIN (parms))
12802 if (dependent_type_p (TREE_TYPE (parms)))
12803 continue;
12804 if (!VOID_TYPE_P (TREE_TYPE (parms))
12805 && complete_type_or_else (TREE_TYPE (parms), parms))
12807 relayout_decl (parms);
12808 DECL_ARG_TYPE (parms) = type_passed_as (TREE_TYPE (parms));
12810 maybe_warn_parm_abi (TREE_TYPE (parms),
12811 DECL_SOURCE_LOCATION (parms));
12813 else
12814 /* grokparms or complete_type_or_else will have already issued
12815 an error. */
12816 TREE_TYPE (parms) = error_mark_node;
12820 /* Returns nonzero if T is a local variable. */
12823 local_variable_p (const_tree t)
12825 if ((VAR_P (t)
12826 /* A VAR_DECL with a context that is a _TYPE is a static data
12827 member. */
12828 && !TYPE_P (CP_DECL_CONTEXT (t))
12829 /* Any other non-local variable must be at namespace scope. */
12830 && !DECL_NAMESPACE_SCOPE_P (t))
12831 || (TREE_CODE (t) == PARM_DECL))
12832 return 1;
12834 return 0;
12837 /* Like local_variable_p, but suitable for use as a tree-walking
12838 function. */
12840 static tree
12841 local_variable_p_walkfn (tree *tp, int *walk_subtrees,
12842 void * /*data*/)
12844 if (local_variable_p (*tp)
12845 && (!DECL_ARTIFICIAL (*tp) || DECL_NAME (*tp) == this_identifier))
12846 return *tp;
12847 else if (TYPE_P (*tp))
12848 *walk_subtrees = 0;
12850 return NULL_TREE;
12853 /* Check that ARG, which is a default-argument expression for a
12854 parameter DECL, is valid. Returns ARG, or ERROR_MARK_NODE, if
12855 something goes wrong. DECL may also be a _TYPE node, rather than a
12856 DECL, if there is no DECL available. */
12858 tree
12859 check_default_argument (tree decl, tree arg, tsubst_flags_t complain)
12861 tree var;
12862 tree decl_type;
12864 if (TREE_CODE (arg) == DEFAULT_ARG)
12865 /* We get a DEFAULT_ARG when looking at an in-class declaration
12866 with a default argument. Ignore the argument for now; we'll
12867 deal with it after the class is complete. */
12868 return arg;
12870 if (TYPE_P (decl))
12872 decl_type = decl;
12873 decl = NULL_TREE;
12875 else
12876 decl_type = TREE_TYPE (decl);
12878 if (arg == error_mark_node
12879 || decl == error_mark_node
12880 || TREE_TYPE (arg) == error_mark_node
12881 || decl_type == error_mark_node)
12882 /* Something already went wrong. There's no need to check
12883 further. */
12884 return error_mark_node;
12886 /* [dcl.fct.default]
12888 A default argument expression is implicitly converted to the
12889 parameter type. */
12890 ++cp_unevaluated_operand;
12891 /* Avoid digest_init clobbering the initializer. */
12892 tree carg = BRACE_ENCLOSED_INITIALIZER_P (arg) ? unshare_expr (arg): arg;
12893 perform_implicit_conversion_flags (decl_type, carg, complain,
12894 LOOKUP_IMPLICIT);
12895 --cp_unevaluated_operand;
12897 /* Avoid redundant -Wzero-as-null-pointer-constant warnings at
12898 the call sites. */
12899 if (TYPE_PTR_OR_PTRMEM_P (decl_type)
12900 && null_ptr_cst_p (arg))
12901 return nullptr_node;
12903 /* [dcl.fct.default]
12905 Local variables shall not be used in default argument
12906 expressions.
12908 The keyword `this' shall not be used in a default argument of a
12909 member function. */
12910 var = cp_walk_tree_without_duplicates (&arg, local_variable_p_walkfn, NULL);
12911 if (var)
12913 if (complain & tf_warning_or_error)
12915 if (DECL_NAME (var) == this_identifier)
12916 permerror (input_location, "default argument %qE uses %qD",
12917 arg, var);
12918 else
12919 error ("default argument %qE uses local variable %qD", arg, var);
12921 return error_mark_node;
12924 /* All is well. */
12925 return arg;
12928 /* Returns a deprecated type used within TYPE, or NULL_TREE if none. */
12930 static tree
12931 type_is_deprecated (tree type)
12933 enum tree_code code;
12934 if (TREE_DEPRECATED (type))
12935 return type;
12936 if (TYPE_NAME (type))
12938 if (TREE_DEPRECATED (TYPE_NAME (type)))
12939 return type;
12940 else
12941 return NULL_TREE;
12944 /* Do warn about using typedefs to a deprecated class. */
12945 if (OVERLOAD_TYPE_P (type) && type != TYPE_MAIN_VARIANT (type))
12946 return type_is_deprecated (TYPE_MAIN_VARIANT (type));
12948 code = TREE_CODE (type);
12950 if (code == POINTER_TYPE || code == REFERENCE_TYPE
12951 || code == OFFSET_TYPE || code == FUNCTION_TYPE
12952 || code == METHOD_TYPE || code == ARRAY_TYPE)
12953 return type_is_deprecated (TREE_TYPE (type));
12955 if (TYPE_PTRMEMFUNC_P (type))
12956 return type_is_deprecated
12957 (TREE_TYPE (TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (type))));
12959 return NULL_TREE;
12962 /* Decode the list of parameter types for a function type.
12963 Given the list of things declared inside the parens,
12964 return a list of types.
12966 If this parameter does not end with an ellipsis, we append
12967 void_list_node.
12969 *PARMS is set to the chain of PARM_DECLs created. */
12971 tree
12972 grokparms (tree parmlist, tree *parms)
12974 tree result = NULL_TREE;
12975 tree decls = NULL_TREE;
12976 tree parm;
12977 int any_error = 0;
12979 for (parm = parmlist; parm != NULL_TREE; parm = TREE_CHAIN (parm))
12981 tree type = NULL_TREE;
12982 tree init = TREE_PURPOSE (parm);
12983 tree decl = TREE_VALUE (parm);
12985 if (parm == void_list_node)
12986 break;
12988 if (! decl || TREE_TYPE (decl) == error_mark_node)
12989 continue;
12991 type = TREE_TYPE (decl);
12992 if (VOID_TYPE_P (type))
12994 if (same_type_p (type, void_type_node)
12995 && !init
12996 && !DECL_NAME (decl) && !result
12997 && TREE_CHAIN (parm) == void_list_node)
12998 /* DR 577: A parameter list consisting of a single
12999 unnamed parameter of non-dependent type 'void'. */
13000 break;
13001 else if (cv_qualified_p (type))
13002 error_at (DECL_SOURCE_LOCATION (decl),
13003 "invalid use of cv-qualified type %qT in "
13004 "parameter declaration", type);
13005 else
13006 error_at (DECL_SOURCE_LOCATION (decl),
13007 "invalid use of type %<void%> in parameter "
13008 "declaration");
13009 /* It's not a good idea to actually create parameters of
13010 type `void'; other parts of the compiler assume that a
13011 void type terminates the parameter list. */
13012 type = error_mark_node;
13013 TREE_TYPE (decl) = error_mark_node;
13016 if (type != error_mark_node)
13018 if (deprecated_state != DEPRECATED_SUPPRESS)
13020 tree deptype = type_is_deprecated (type);
13021 if (deptype)
13022 cp_warn_deprecated_use (deptype);
13025 /* Top-level qualifiers on the parameters are
13026 ignored for function types. */
13027 type = cp_build_qualified_type (type, 0);
13028 if (TREE_CODE (type) == METHOD_TYPE)
13030 error ("parameter %qD invalidly declared method type", decl);
13031 type = build_pointer_type (type);
13032 TREE_TYPE (decl) = type;
13034 else if (abstract_virtuals_error (decl, type))
13035 any_error = 1; /* Seems like a good idea. */
13036 else if (cxx_dialect < cxx17 && INDIRECT_TYPE_P (type))
13038 /* Before C++17 DR 393:
13039 [dcl.fct]/6, parameter types cannot contain pointers
13040 (references) to arrays of unknown bound. */
13041 tree t = TREE_TYPE (type);
13042 int ptr = TYPE_PTR_P (type);
13044 while (1)
13046 if (TYPE_PTR_P (t))
13047 ptr = 1;
13048 else if (TREE_CODE (t) != ARRAY_TYPE)
13049 break;
13050 else if (!TYPE_DOMAIN (t))
13051 break;
13052 t = TREE_TYPE (t);
13054 if (TREE_CODE (t) == ARRAY_TYPE)
13055 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wpedantic,
13057 ? G_("parameter %qD includes pointer to array of "
13058 "unknown bound %qT")
13059 : G_("parameter %qD includes reference to array of "
13060 "unknown bound %qT"),
13061 decl, t);
13064 if (any_error)
13065 init = NULL_TREE;
13066 else if (init && !processing_template_decl)
13067 init = check_default_argument (decl, init, tf_warning_or_error);
13070 DECL_CHAIN (decl) = decls;
13071 decls = decl;
13072 result = tree_cons (init, type, result);
13074 decls = nreverse (decls);
13075 result = nreverse (result);
13076 if (parm)
13077 result = chainon (result, void_list_node);
13078 *parms = decls;
13080 return result;
13084 /* D is a constructor or overloaded `operator='.
13086 Let T be the class in which D is declared. Then, this function
13087 returns:
13089 -1 if D's is an ill-formed constructor or copy assignment operator
13090 whose first parameter is of type `T'.
13091 0 if D is not a copy constructor or copy assignment
13092 operator.
13093 1 if D is a copy constructor or copy assignment operator whose
13094 first parameter is a reference to non-const qualified T.
13095 2 if D is a copy constructor or copy assignment operator whose
13096 first parameter is a reference to const qualified T.
13098 This function can be used as a predicate. Positive values indicate
13099 a copy constructor and nonzero values indicate a copy assignment
13100 operator. */
13103 copy_fn_p (const_tree d)
13105 tree args;
13106 tree arg_type;
13107 int result = 1;
13109 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
13111 if (TREE_CODE (d) == TEMPLATE_DECL
13112 || (DECL_TEMPLATE_INFO (d)
13113 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
13114 /* Instantiations of template member functions are never copy
13115 functions. Note that member functions of templated classes are
13116 represented as template functions internally, and we must
13117 accept those as copy functions. */
13118 return 0;
13120 args = FUNCTION_FIRST_USER_PARMTYPE (d);
13121 if (!args)
13122 return 0;
13124 arg_type = TREE_VALUE (args);
13125 if (arg_type == error_mark_node)
13126 return 0;
13128 if (TYPE_MAIN_VARIANT (arg_type) == DECL_CONTEXT (d))
13130 /* Pass by value copy assignment operator. */
13131 result = -1;
13133 else if (TYPE_REF_P (arg_type)
13134 && !TYPE_REF_IS_RVALUE (arg_type)
13135 && TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)) == DECL_CONTEXT (d))
13137 if (CP_TYPE_CONST_P (TREE_TYPE (arg_type)))
13138 result = 2;
13140 else
13141 return 0;
13143 args = TREE_CHAIN (args);
13145 if (args && args != void_list_node && !TREE_PURPOSE (args))
13146 /* There are more non-optional args. */
13147 return 0;
13149 return result;
13152 /* D is a constructor or overloaded `operator='.
13154 Let T be the class in which D is declared. Then, this function
13155 returns true when D is a move constructor or move assignment
13156 operator, false otherwise. */
13158 bool
13159 move_fn_p (const_tree d)
13161 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
13163 if (cxx_dialect == cxx98)
13164 /* There are no move constructors if we are in C++98 mode. */
13165 return false;
13167 if (TREE_CODE (d) == TEMPLATE_DECL
13168 || (DECL_TEMPLATE_INFO (d)
13169 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
13170 /* Instantiations of template member functions are never move
13171 functions. Note that member functions of templated classes are
13172 represented as template functions internally, and we must
13173 accept those as move functions. */
13174 return 0;
13176 return move_signature_fn_p (d);
13179 /* D is a constructor or overloaded `operator='.
13181 Then, this function returns true when D has the same signature as a move
13182 constructor or move assignment operator (because either it is such a
13183 ctor/op= or it is a template specialization with the same signature),
13184 false otherwise. */
13186 bool
13187 move_signature_fn_p (const_tree d)
13189 tree args;
13190 tree arg_type;
13191 bool result = false;
13193 args = FUNCTION_FIRST_USER_PARMTYPE (d);
13194 if (!args)
13195 return 0;
13197 arg_type = TREE_VALUE (args);
13198 if (arg_type == error_mark_node)
13199 return 0;
13201 if (TYPE_REF_P (arg_type)
13202 && TYPE_REF_IS_RVALUE (arg_type)
13203 && same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)),
13204 DECL_CONTEXT (d)))
13205 result = true;
13207 args = TREE_CHAIN (args);
13209 if (args && args != void_list_node && !TREE_PURPOSE (args))
13210 /* There are more non-optional args. */
13211 return false;
13213 return result;
13216 /* Remember any special properties of member function DECL. */
13218 void
13219 grok_special_member_properties (tree decl)
13221 tree class_type;
13223 if (!DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
13224 return;
13226 class_type = DECL_CONTEXT (decl);
13227 if (IDENTIFIER_CTOR_P (DECL_NAME (decl)))
13229 int ctor = copy_fn_p (decl);
13231 if (!DECL_ARTIFICIAL (decl))
13232 TYPE_HAS_USER_CONSTRUCTOR (class_type) = 1;
13234 if (ctor > 0)
13236 /* [class.copy]
13238 A non-template constructor for class X is a copy
13239 constructor if its first parameter is of type X&, const
13240 X&, volatile X& or const volatile X&, and either there
13241 are no other parameters or else all other parameters have
13242 default arguments. */
13243 TYPE_HAS_COPY_CTOR (class_type) = 1;
13244 if (user_provided_p (decl))
13245 TYPE_HAS_COMPLEX_COPY_CTOR (class_type) = 1;
13246 if (ctor > 1)
13247 TYPE_HAS_CONST_COPY_CTOR (class_type) = 1;
13249 else if (sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (decl)))
13250 TYPE_HAS_DEFAULT_CONSTRUCTOR (class_type) = 1;
13251 else if (move_fn_p (decl) && user_provided_p (decl))
13252 TYPE_HAS_COMPLEX_MOVE_CTOR (class_type) = 1;
13253 else if (is_list_ctor (decl))
13254 TYPE_HAS_LIST_CTOR (class_type) = 1;
13256 if (DECL_DECLARED_CONSTEXPR_P (decl)
13257 && !ctor && !move_fn_p (decl))
13258 TYPE_HAS_CONSTEXPR_CTOR (class_type) = 1;
13260 else if (DECL_NAME (decl) == assign_op_identifier)
13262 /* [class.copy]
13264 A non-template assignment operator for class X is a copy
13265 assignment operator if its parameter is of type X, X&, const
13266 X&, volatile X& or const volatile X&. */
13268 int assop = copy_fn_p (decl);
13270 if (assop)
13272 TYPE_HAS_COPY_ASSIGN (class_type) = 1;
13273 if (user_provided_p (decl))
13274 TYPE_HAS_COMPLEX_COPY_ASSIGN (class_type) = 1;
13275 if (assop != 1)
13276 TYPE_HAS_CONST_COPY_ASSIGN (class_type) = 1;
13278 else if (move_fn_p (decl) && user_provided_p (decl))
13279 TYPE_HAS_COMPLEX_MOVE_ASSIGN (class_type) = 1;
13281 else if (IDENTIFIER_CONV_OP_P (DECL_NAME (decl)))
13282 TYPE_HAS_CONVERSION (class_type) = true;
13284 /* Destructors are handled in check_methods. */
13287 /* Check a constructor DECL has the correct form. Complains
13288 if the class has a constructor of the form X(X). */
13290 bool
13291 grok_ctor_properties (const_tree ctype, const_tree decl)
13293 int ctor_parm = copy_fn_p (decl);
13295 if (ctor_parm < 0)
13297 /* [class.copy]
13299 A declaration of a constructor for a class X is ill-formed if
13300 its first parameter is of type (optionally cv-qualified) X
13301 and either there are no other parameters or else all other
13302 parameters have default arguments.
13304 We *don't* complain about member template instantiations that
13305 have this form, though; they can occur as we try to decide
13306 what constructor to use during overload resolution. Since
13307 overload resolution will never prefer such a constructor to
13308 the non-template copy constructor (which is either explicitly
13309 or implicitly defined), there's no need to worry about their
13310 existence. Theoretically, they should never even be
13311 instantiated, but that's hard to forestall. */
13312 error ("invalid constructor; you probably meant %<%T (const %T&)%>",
13313 ctype, ctype);
13314 return false;
13317 return true;
13320 /* DECL is a declaration for an overloaded or conversion operator. If
13321 COMPLAIN is true, errors are issued for invalid declarations. */
13323 bool
13324 grok_op_properties (tree decl, bool complain)
13326 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
13327 bool methodp = TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE;
13328 tree name = DECL_NAME (decl);
13329 location_t loc = DECL_SOURCE_LOCATION (decl);
13331 tree class_type = DECL_CONTEXT (decl);
13332 if (class_type && !CLASS_TYPE_P (class_type))
13333 class_type = NULL_TREE;
13335 tree_code operator_code;
13336 unsigned op_flags;
13337 if (IDENTIFIER_CONV_OP_P (name))
13339 /* Conversion operators are TYPE_EXPR for the purposes of this
13340 function. */
13341 operator_code = TYPE_EXPR;
13342 op_flags = OVL_OP_FLAG_UNARY;
13344 else
13346 const ovl_op_info_t *ovl_op = IDENTIFIER_OVL_OP_INFO (name);
13348 operator_code = ovl_op->tree_code;
13349 op_flags = ovl_op->flags;
13350 gcc_checking_assert (operator_code != ERROR_MARK);
13351 DECL_OVERLOADED_OPERATOR_CODE_RAW (decl) = ovl_op->ovl_op_code;
13354 if (op_flags & OVL_OP_FLAG_ALLOC)
13356 /* operator new and operator delete are quite special. */
13357 if (class_type)
13358 switch (op_flags)
13360 case OVL_OP_FLAG_ALLOC:
13361 TYPE_HAS_NEW_OPERATOR (class_type) = 1;
13362 break;
13364 case OVL_OP_FLAG_ALLOC | OVL_OP_FLAG_DELETE:
13365 TYPE_GETS_DELETE (class_type) |= 1;
13366 break;
13368 case OVL_OP_FLAG_ALLOC | OVL_OP_FLAG_VEC:
13369 TYPE_HAS_ARRAY_NEW_OPERATOR (class_type) = 1;
13370 break;
13372 case OVL_OP_FLAG_ALLOC | OVL_OP_FLAG_DELETE | OVL_OP_FLAG_VEC:
13373 TYPE_GETS_DELETE (class_type) |= 2;
13374 break;
13376 default:
13377 gcc_unreachable ();
13380 /* [basic.std.dynamic.allocation]/1:
13382 A program is ill-formed if an allocation function is declared
13383 in a namespace scope other than global scope or declared
13384 static in global scope.
13386 The same also holds true for deallocation functions. */
13387 if (DECL_NAMESPACE_SCOPE_P (decl))
13389 if (CP_DECL_CONTEXT (decl) != global_namespace)
13391 error_at (loc, "%qD may not be declared within a namespace",
13392 decl);
13393 return false;
13396 if (!TREE_PUBLIC (decl))
13398 error_at (loc, "%qD may not be declared as static", decl);
13399 return false;
13403 if (op_flags & OVL_OP_FLAG_DELETE)
13404 coerce_delete_type (decl, loc);
13405 else
13407 DECL_IS_OPERATOR_NEW (decl) = 1;
13408 TREE_TYPE (decl) = coerce_new_type (TREE_TYPE (decl), loc);
13411 return true;
13414 /* An operator function must either be a non-static member function
13415 or have at least one parameter of a class, a reference to a class,
13416 an enumeration, or a reference to an enumeration. 13.4.0.6 */
13417 if (! methodp || DECL_STATIC_FUNCTION_P (decl))
13419 if (operator_code == TYPE_EXPR
13420 || operator_code == CALL_EXPR
13421 || operator_code == COMPONENT_REF
13422 || operator_code == ARRAY_REF
13423 || operator_code == NOP_EXPR)
13425 error_at (loc, "%qD must be a nonstatic member function", decl);
13426 return false;
13429 if (DECL_STATIC_FUNCTION_P (decl))
13431 error_at (loc, "%qD must be either a non-static member "
13432 "function or a non-member function", decl);
13433 return false;
13436 for (tree arg = argtypes; ; arg = TREE_CHAIN (arg))
13438 if (!arg || arg == void_list_node)
13440 if (complain)
13441 error_at(loc, "%qD must have an argument of class or "
13442 "enumerated type", decl);
13443 return false;
13446 tree type = non_reference (TREE_VALUE (arg));
13447 if (type == error_mark_node)
13448 return false;
13450 /* MAYBE_CLASS_TYPE_P, rather than CLASS_TYPE_P, is used
13451 because these checks are performed even on template
13452 functions. */
13453 if (MAYBE_CLASS_TYPE_P (type)
13454 || TREE_CODE (type) == ENUMERAL_TYPE)
13455 break;
13459 if (operator_code == CALL_EXPR)
13460 /* There are no further restrictions on the arguments to an overloaded
13461 "operator ()". */
13462 return true;
13464 if (operator_code == COND_EXPR)
13466 /* 13.4.0.3 */
13467 error_at (loc, "ISO C++ prohibits overloading operator ?:");
13468 return false;
13471 /* Count the number of arguments and check for ellipsis. */
13472 int arity = 0;
13473 for (tree arg = argtypes; arg != void_list_node; arg = TREE_CHAIN (arg))
13475 if (!arg)
13477 /* Variadic. */
13478 error_at (loc, "%qD must not have variable number of arguments",
13479 decl);
13480 return false;
13482 ++arity;
13485 /* Verify correct number of arguments. */
13486 switch (op_flags)
13488 case OVL_OP_FLAG_AMBIARY:
13489 if (arity == 1)
13491 /* We have a unary instance of an ambi-ary op. Remap to the
13492 unary one. */
13493 unsigned alt = ovl_op_alternate[ovl_op_mapping [operator_code]];
13494 const ovl_op_info_t *ovl_op = &ovl_op_info[false][alt];
13495 gcc_checking_assert (ovl_op->flags == OVL_OP_FLAG_UNARY);
13496 operator_code = ovl_op->tree_code;
13497 DECL_OVERLOADED_OPERATOR_CODE_RAW (decl) = ovl_op->ovl_op_code;
13499 else if (arity != 2)
13501 /* This was an ambiguous operator but is invalid. */
13502 error_at (loc,
13503 methodp
13504 ? G_("%qD must have either zero or one argument")
13505 : G_("%qD must have either one or two arguments"), decl);
13506 return false;
13508 else if ((operator_code == POSTINCREMENT_EXPR
13509 || operator_code == POSTDECREMENT_EXPR)
13510 && ! processing_template_decl
13511 /* x++ and x--'s second argument must be an int. */
13512 && ! same_type_p (TREE_VALUE (TREE_CHAIN (argtypes)),
13513 integer_type_node))
13515 error_at (loc,
13516 methodp
13517 ? G_("postfix %qD must have %<int%> as its argument")
13518 : G_("postfix %qD must have %<int%> as its second argument"),
13519 decl);
13520 return false;
13522 break;
13524 case OVL_OP_FLAG_UNARY:
13525 if (arity != 1)
13527 error_at (loc,
13528 methodp
13529 ? G_("%qD must have no arguments")
13530 : G_("%qD must have exactly one argument"), decl);
13531 return false;
13533 break;
13535 case OVL_OP_FLAG_BINARY:
13536 if (arity != 2)
13538 error_at (loc,
13539 methodp
13540 ? G_("%qD must have exactly one argument")
13541 : G_("%qD must have exactly two arguments"), decl);
13542 return false;
13544 break;
13546 default:
13547 gcc_unreachable ();
13550 /* There can be no default arguments. */
13551 for (tree arg = argtypes; arg != void_list_node; arg = TREE_CHAIN (arg))
13552 if (TREE_PURPOSE (arg))
13554 TREE_PURPOSE (arg) = NULL_TREE;
13555 error_at (loc, "%qD cannot have default arguments", decl);
13556 return false;
13559 /* At this point the declaration is well-formed. It may not be
13560 sensible though. */
13562 /* Check member function warnings only on the in-class declaration.
13563 There's no point warning on an out-of-class definition. */
13564 if (class_type && class_type != current_class_type)
13565 return true;
13567 /* Warn about conversion operators that will never be used. */
13568 if (IDENTIFIER_CONV_OP_P (name)
13569 && ! DECL_TEMPLATE_INFO (decl)
13570 && warn_class_conversion)
13572 tree t = TREE_TYPE (name);
13573 int ref = TYPE_REF_P (t);
13575 if (ref)
13576 t = TYPE_MAIN_VARIANT (TREE_TYPE (t));
13578 if (VOID_TYPE_P (t))
13579 warning_at (loc, OPT_Wclass_conversion, "converting %qT to %<void%> "
13580 "will never use a type conversion operator", class_type);
13581 else if (class_type)
13583 if (same_type_ignoring_top_level_qualifiers_p (t, class_type))
13584 warning_at (loc, OPT_Wclass_conversion,
13586 ? G_("converting %qT to a reference to the same type "
13587 "will never use a type conversion operator")
13588 : G_("converting %qT to the same type "
13589 "will never use a type conversion operator"),
13590 class_type);
13591 /* Don't force t to be complete here. */
13592 else if (MAYBE_CLASS_TYPE_P (t)
13593 && COMPLETE_TYPE_P (t)
13594 && DERIVED_FROM_P (t, class_type))
13595 warning_at (loc, OPT_Wclass_conversion,
13597 ? G_("converting %qT to a reference to a base class "
13598 "%qT will never use a type conversion operator")
13599 : G_("converting %qT to a base class %qT "
13600 "will never use a type conversion operator"),
13601 class_type, t);
13605 if (!warn_ecpp)
13606 return true;
13608 /* Effective C++ rules below. */
13610 /* More Effective C++ rule 7. */
13611 if (operator_code == TRUTH_ANDIF_EXPR
13612 || operator_code == TRUTH_ORIF_EXPR
13613 || operator_code == COMPOUND_EXPR)
13614 warning_at (loc, OPT_Weffc__,
13615 "user-defined %qD always evaluates both arguments", decl);
13617 /* More Effective C++ rule 6. */
13618 if (operator_code == POSTINCREMENT_EXPR
13619 || operator_code == POSTDECREMENT_EXPR
13620 || operator_code == PREINCREMENT_EXPR
13621 || operator_code == PREDECREMENT_EXPR)
13623 tree arg = TREE_VALUE (argtypes);
13624 tree ret = TREE_TYPE (TREE_TYPE (decl));
13625 if (methodp || TYPE_REF_P (arg))
13626 arg = TREE_TYPE (arg);
13627 arg = TYPE_MAIN_VARIANT (arg);
13629 if (operator_code == PREINCREMENT_EXPR
13630 || operator_code == PREDECREMENT_EXPR)
13632 if (!TYPE_REF_P (ret)
13633 || !same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (ret)), arg))
13634 warning_at (loc, OPT_Weffc__, "prefix %qD should return %qT", decl,
13635 build_reference_type (arg));
13637 else
13639 if (!same_type_p (TYPE_MAIN_VARIANT (ret), arg))
13640 warning_at (loc, OPT_Weffc__,
13641 "postfix %qD should return %qT", decl, arg);
13645 /* Effective C++ rule 23. */
13646 if (!DECL_ASSIGNMENT_OPERATOR_P (decl)
13647 && (operator_code == PLUS_EXPR
13648 || operator_code == MINUS_EXPR
13649 || operator_code == TRUNC_DIV_EXPR
13650 || operator_code == MULT_EXPR
13651 || operator_code == TRUNC_MOD_EXPR)
13652 && TYPE_REF_P (TREE_TYPE (TREE_TYPE (decl))))
13653 warning_at (loc, OPT_Weffc__, "%qD should return by value", decl);
13655 return true;
13658 /* Return a string giving the keyword associate with CODE. */
13660 static const char *
13661 tag_name (enum tag_types code)
13663 switch (code)
13665 case record_type:
13666 return "struct";
13667 case class_type:
13668 return "class";
13669 case union_type:
13670 return "union";
13671 case enum_type:
13672 return "enum";
13673 case typename_type:
13674 return "typename";
13675 default:
13676 gcc_unreachable ();
13680 /* Name lookup in an elaborated-type-specifier (after the keyword
13681 indicated by TAG_CODE) has found the TYPE_DECL DECL. If the
13682 elaborated-type-specifier is invalid, issue a diagnostic and return
13683 error_mark_node; otherwise, return the *_TYPE to which it referred.
13684 If ALLOW_TEMPLATE_P is true, TYPE may be a class template. */
13686 tree
13687 check_elaborated_type_specifier (enum tag_types tag_code,
13688 tree decl,
13689 bool allow_template_p)
13691 tree type;
13693 /* In the case of:
13695 struct S { struct S *p; };
13697 name lookup will find the TYPE_DECL for the implicit "S::S"
13698 typedef. Adjust for that here. */
13699 if (DECL_SELF_REFERENCE_P (decl))
13700 decl = TYPE_NAME (TREE_TYPE (decl));
13702 type = TREE_TYPE (decl);
13704 /* Check TEMPLATE_TYPE_PARM first because DECL_IMPLICIT_TYPEDEF_P
13705 is false for this case as well. */
13706 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
13708 error ("using template type parameter %qT after %qs",
13709 type, tag_name (tag_code));
13710 return error_mark_node;
13712 /* Accept template template parameters. */
13713 else if (allow_template_p
13714 && (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM
13715 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM))
13717 /* [dcl.type.elab]
13719 If the identifier resolves to a typedef-name or the
13720 simple-template-id resolves to an alias template
13721 specialization, the elaborated-type-specifier is ill-formed.
13723 In other words, the only legitimate declaration to use in the
13724 elaborated type specifier is the implicit typedef created when
13725 the type is declared. */
13726 else if (!DECL_IMPLICIT_TYPEDEF_P (decl)
13727 && !DECL_SELF_REFERENCE_P (decl)
13728 && tag_code != typename_type)
13730 if (alias_template_specialization_p (type))
13731 error ("using alias template specialization %qT after %qs",
13732 type, tag_name (tag_code));
13733 else
13734 error ("using typedef-name %qD after %qs", decl, tag_name (tag_code));
13735 inform (DECL_SOURCE_LOCATION (decl),
13736 "%qD has a previous declaration here", decl);
13737 return error_mark_node;
13739 else if (TREE_CODE (type) != RECORD_TYPE
13740 && TREE_CODE (type) != UNION_TYPE
13741 && tag_code != enum_type
13742 && tag_code != typename_type)
13744 error ("%qT referred to as %qs", type, tag_name (tag_code));
13745 inform (location_of (type), "%qT has a previous declaration here", type);
13746 return error_mark_node;
13748 else if (TREE_CODE (type) != ENUMERAL_TYPE
13749 && tag_code == enum_type)
13751 error ("%qT referred to as enum", type);
13752 inform (location_of (type), "%qT has a previous declaration here", type);
13753 return error_mark_node;
13755 else if (!allow_template_p
13756 && TREE_CODE (type) == RECORD_TYPE
13757 && CLASSTYPE_IS_TEMPLATE (type))
13759 /* If a class template appears as elaborated type specifier
13760 without a template header such as:
13762 template <class T> class C {};
13763 void f(class C); // No template header here
13765 then the required template argument is missing. */
13766 error ("template argument required for %<%s %T%>",
13767 tag_name (tag_code),
13768 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type)));
13769 return error_mark_node;
13772 return type;
13775 /* Lookup NAME in elaborate type specifier in scope according to
13776 SCOPE and issue diagnostics if necessary.
13777 Return *_TYPE node upon success, NULL_TREE when the NAME is not
13778 found, and ERROR_MARK_NODE for type error. */
13780 static tree
13781 lookup_and_check_tag (enum tag_types tag_code, tree name,
13782 tag_scope scope, bool template_header_p)
13784 tree t;
13785 tree decl;
13786 if (scope == ts_global)
13788 /* First try ordinary name lookup, ignoring hidden class name
13789 injected via friend declaration. */
13790 decl = lookup_name_prefer_type (name, 2);
13791 decl = strip_using_decl (decl);
13792 /* If that fails, the name will be placed in the smallest
13793 non-class, non-function-prototype scope according to 3.3.1/5.
13794 We may already have a hidden name declared as friend in this
13795 scope. So lookup again but not ignoring hidden names.
13796 If we find one, that name will be made visible rather than
13797 creating a new tag. */
13798 if (!decl)
13799 decl = lookup_type_scope (name, ts_within_enclosing_non_class);
13801 else
13802 decl = lookup_type_scope (name, scope);
13804 if (decl
13805 && (DECL_CLASS_TEMPLATE_P (decl)
13806 /* If scope is ts_current we're defining a class, so ignore a
13807 template template parameter. */
13808 || (scope != ts_current
13809 && DECL_TEMPLATE_TEMPLATE_PARM_P (decl))))
13810 decl = DECL_TEMPLATE_RESULT (decl);
13812 if (decl && TREE_CODE (decl) == TYPE_DECL)
13814 /* Look for invalid nested type:
13815 class C {
13816 class C {};
13817 }; */
13818 if (scope == ts_current && DECL_SELF_REFERENCE_P (decl))
13820 error ("%qD has the same name as the class in which it is "
13821 "declared",
13822 decl);
13823 return error_mark_node;
13826 /* Two cases we need to consider when deciding if a class
13827 template is allowed as an elaborated type specifier:
13828 1. It is a self reference to its own class.
13829 2. It comes with a template header.
13831 For example:
13833 template <class T> class C {
13834 class C *c1; // DECL_SELF_REFERENCE_P is true
13835 class D;
13837 template <class U> class C; // template_header_p is true
13838 template <class T> class C<T>::D {
13839 class C *c2; // DECL_SELF_REFERENCE_P is true
13840 }; */
13842 t = check_elaborated_type_specifier (tag_code,
13843 decl,
13844 template_header_p
13845 | DECL_SELF_REFERENCE_P (decl));
13846 if (template_header_p && t && CLASS_TYPE_P (t)
13847 && (!CLASSTYPE_TEMPLATE_INFO (t)
13848 || (!PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t)))))
13850 error ("%qT is not a template", t);
13851 inform (location_of (t), "previous declaration here");
13852 if (TYPE_CLASS_SCOPE_P (t)
13853 && CLASSTYPE_TEMPLATE_INFO (TYPE_CONTEXT (t)))
13854 inform (input_location,
13855 "perhaps you want to explicitly add %<%T::%>",
13856 TYPE_CONTEXT (t));
13857 t = error_mark_node;
13860 return t;
13862 else if (decl && TREE_CODE (decl) == TREE_LIST)
13864 error ("reference to %qD is ambiguous", name);
13865 print_candidates (decl);
13866 return error_mark_node;
13868 else
13869 return NULL_TREE;
13872 /* Get the struct, enum or union (TAG_CODE says which) with tag NAME.
13873 Define the tag as a forward-reference if it is not defined.
13875 If a declaration is given, process it here, and report an error if
13876 multiple declarations are not identical.
13878 SCOPE is TS_CURRENT when this is also a definition. Only look in
13879 the current frame for the name (since C++ allows new names in any
13880 scope.) It is TS_WITHIN_ENCLOSING_NON_CLASS if this is a friend
13881 declaration. Only look beginning from the current scope outward up
13882 till the nearest non-class scope. Otherwise it is TS_GLOBAL.
13884 TEMPLATE_HEADER_P is true when this declaration is preceded by
13885 a set of template parameters. */
13887 static tree
13888 xref_tag_1 (enum tag_types tag_code, tree name,
13889 tag_scope scope, bool template_header_p)
13891 enum tree_code code;
13892 tree context = NULL_TREE;
13894 gcc_assert (identifier_p (name));
13896 switch (tag_code)
13898 case record_type:
13899 case class_type:
13900 code = RECORD_TYPE;
13901 break;
13902 case union_type:
13903 code = UNION_TYPE;
13904 break;
13905 case enum_type:
13906 code = ENUMERAL_TYPE;
13907 break;
13908 default:
13909 gcc_unreachable ();
13912 /* In case of anonymous name, xref_tag is only called to
13913 make type node and push name. Name lookup is not required. */
13914 tree t = NULL_TREE;
13915 if (scope != ts_lambda && !anon_aggrname_p (name))
13916 t = lookup_and_check_tag (tag_code, name, scope, template_header_p);
13918 if (t == error_mark_node)
13919 return error_mark_node;
13921 if (scope != ts_current && t && current_class_type
13922 && template_class_depth (current_class_type)
13923 && template_header_p)
13925 if (TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM)
13926 return t;
13928 /* Since SCOPE is not TS_CURRENT, we are not looking at a
13929 definition of this tag. Since, in addition, we are currently
13930 processing a (member) template declaration of a template
13931 class, we must be very careful; consider:
13933 template <class X> struct S1
13935 template <class U> struct S2
13937 template <class V> friend struct S1;
13940 Here, the S2::S1 declaration should not be confused with the
13941 outer declaration. In particular, the inner version should
13942 have a template parameter of level 2, not level 1.
13944 On the other hand, when presented with:
13946 template <class T> struct S1
13948 template <class U> struct S2 {};
13949 template <class U> friend struct S2;
13952 the friend must find S1::S2 eventually. We accomplish this
13953 by making sure that the new type we create to represent this
13954 declaration has the right TYPE_CONTEXT. */
13955 context = TYPE_CONTEXT (t);
13956 t = NULL_TREE;
13959 if (! t)
13961 /* If no such tag is yet defined, create a forward-reference node
13962 and record it as the "definition".
13963 When a real declaration of this type is found,
13964 the forward-reference will be altered into a real type. */
13965 if (code == ENUMERAL_TYPE)
13967 error ("use of enum %q#D without previous declaration", name);
13968 return error_mark_node;
13970 else
13972 t = make_class_type (code);
13973 TYPE_CONTEXT (t) = context;
13974 if (scope == ts_lambda)
13976 /* Mark it as a lambda type. */
13977 CLASSTYPE_LAMBDA_EXPR (t) = error_mark_node;
13978 /* And push it into current scope. */
13979 scope = ts_current;
13981 t = pushtag (name, t, scope);
13984 else
13986 if (template_header_p && MAYBE_CLASS_TYPE_P (t))
13988 /* Check that we aren't trying to overload a class with different
13989 constraints. */
13990 tree constr = NULL_TREE;
13991 if (current_template_parms)
13993 tree reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
13994 constr = build_constraints (reqs, NULL_TREE);
13996 if (!redeclare_class_template (t, current_template_parms, constr))
13997 return error_mark_node;
13999 else if (!processing_template_decl
14000 && CLASS_TYPE_P (t)
14001 && CLASSTYPE_IS_TEMPLATE (t))
14003 error ("redeclaration of %qT as a non-template", t);
14004 inform (location_of (t), "previous declaration %qD", t);
14005 return error_mark_node;
14008 if (scope != ts_within_enclosing_non_class && TYPE_HIDDEN_P (t))
14010 /* This is no longer an invisible friend. Make it
14011 visible. */
14012 tree decl = TYPE_NAME (t);
14014 DECL_ANTICIPATED (decl) = false;
14015 DECL_FRIEND_P (decl) = false;
14017 if (TYPE_TEMPLATE_INFO (t))
14019 tree tmpl = TYPE_TI_TEMPLATE (t);
14020 DECL_ANTICIPATED (tmpl) = false;
14021 DECL_FRIEND_P (tmpl) = false;
14026 return t;
14029 /* Wrapper for xref_tag_1. */
14031 tree
14032 xref_tag (enum tag_types tag_code, tree name,
14033 tag_scope scope, bool template_header_p)
14035 tree ret;
14036 bool subtime;
14037 subtime = timevar_cond_start (TV_NAME_LOOKUP);
14038 ret = xref_tag_1 (tag_code, name, scope, template_header_p);
14039 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
14040 return ret;
14044 tree
14045 xref_tag_from_type (tree old, tree id, tag_scope scope)
14047 enum tag_types tag_kind;
14049 if (TREE_CODE (old) == RECORD_TYPE)
14050 tag_kind = (CLASSTYPE_DECLARED_CLASS (old) ? class_type : record_type);
14051 else
14052 tag_kind = union_type;
14054 if (id == NULL_TREE)
14055 id = TYPE_IDENTIFIER (old);
14057 return xref_tag (tag_kind, id, scope, false);
14060 /* Create the binfo hierarchy for REF with (possibly NULL) base list
14061 BASE_LIST. For each element on BASE_LIST the TREE_PURPOSE is an
14062 access_* node, and the TREE_VALUE is the type of the base-class.
14063 Non-NULL TREE_TYPE indicates virtual inheritance. */
14065 void
14066 xref_basetypes (tree ref, tree base_list)
14068 tree *basep;
14069 tree binfo, base_binfo;
14070 unsigned max_vbases = 0; /* Maximum direct & indirect virtual bases. */
14071 unsigned max_bases = 0; /* Maximum direct bases. */
14072 unsigned max_dvbases = 0; /* Maximum direct virtual bases. */
14073 int i;
14074 tree default_access;
14075 tree igo_prev; /* Track Inheritance Graph Order. */
14077 if (ref == error_mark_node)
14078 return;
14080 /* The base of a derived class is private by default, all others are
14081 public. */
14082 default_access = (TREE_CODE (ref) == RECORD_TYPE
14083 && CLASSTYPE_DECLARED_CLASS (ref)
14084 ? access_private_node : access_public_node);
14086 /* First, make sure that any templates in base-classes are
14087 instantiated. This ensures that if we call ourselves recursively
14088 we do not get confused about which classes are marked and which
14089 are not. */
14090 basep = &base_list;
14091 while (*basep)
14093 tree basetype = TREE_VALUE (*basep);
14095 /* The dependent_type_p call below should really be dependent_scope_p
14096 so that we give a hard error about using an incomplete type as a
14097 base, but we allow it with a pedwarn for backward
14098 compatibility. */
14099 if (processing_template_decl
14100 && CLASS_TYPE_P (basetype) && TYPE_BEING_DEFINED (basetype))
14101 cxx_incomplete_type_diagnostic (NULL_TREE, basetype, DK_PEDWARN);
14102 if (!dependent_type_p (basetype)
14103 && !complete_type_or_else (basetype, NULL))
14104 /* An incomplete type. Remove it from the list. */
14105 *basep = TREE_CHAIN (*basep);
14106 else
14108 max_bases++;
14109 if (TREE_TYPE (*basep))
14110 max_dvbases++;
14111 if (CLASS_TYPE_P (basetype))
14112 max_vbases += vec_safe_length (CLASSTYPE_VBASECLASSES (basetype));
14113 basep = &TREE_CHAIN (*basep);
14116 max_vbases += max_dvbases;
14118 TYPE_MARKED_P (ref) = 1;
14120 /* The binfo slot should be empty, unless this is an (ill-formed)
14121 redefinition. */
14122 gcc_assert (!TYPE_BINFO (ref) || TYPE_SIZE (ref));
14124 gcc_assert (TYPE_MAIN_VARIANT (ref) == ref);
14126 binfo = make_tree_binfo (max_bases);
14128 TYPE_BINFO (ref) = binfo;
14129 BINFO_OFFSET (binfo) = size_zero_node;
14130 BINFO_TYPE (binfo) = ref;
14132 /* Apply base-class info set up to the variants of this type. */
14133 fixup_type_variants (ref);
14135 if (max_bases)
14137 vec_alloc (BINFO_BASE_ACCESSES (binfo), max_bases);
14138 /* A C++98 POD cannot have base classes. */
14139 CLASSTYPE_NON_LAYOUT_POD_P (ref) = true;
14141 if (TREE_CODE (ref) == UNION_TYPE)
14143 error ("derived union %qT invalid", ref);
14144 return;
14148 if (max_bases > 1)
14149 warning (OPT_Wmultiple_inheritance,
14150 "%qT defined with multiple direct bases", ref);
14152 if (max_vbases)
14154 /* An aggregate can't have virtual base classes. */
14155 CLASSTYPE_NON_AGGREGATE (ref) = true;
14157 vec_alloc (CLASSTYPE_VBASECLASSES (ref), max_vbases);
14159 if (max_dvbases)
14160 warning (OPT_Wvirtual_inheritance,
14161 "%qT defined with direct virtual base", ref);
14164 for (igo_prev = binfo; base_list; base_list = TREE_CHAIN (base_list))
14166 tree access = TREE_PURPOSE (base_list);
14167 int via_virtual = TREE_TYPE (base_list) != NULL_TREE;
14168 tree basetype = TREE_VALUE (base_list);
14170 if (access == access_default_node)
14171 access = default_access;
14173 /* Before C++17, an aggregate cannot have base classes. In C++17, an
14174 aggregate can't have virtual, private, or protected base classes. */
14175 if (cxx_dialect < cxx17
14176 || access != access_public_node
14177 || via_virtual)
14178 CLASSTYPE_NON_AGGREGATE (ref) = true;
14180 if (PACK_EXPANSION_P (basetype))
14181 basetype = PACK_EXPANSION_PATTERN (basetype);
14182 if (TREE_CODE (basetype) == TYPE_DECL)
14183 basetype = TREE_TYPE (basetype);
14184 if (!MAYBE_CLASS_TYPE_P (basetype) || TREE_CODE (basetype) == UNION_TYPE)
14186 error ("base type %qT fails to be a struct or class type",
14187 basetype);
14188 goto dropped_base;
14191 base_binfo = NULL_TREE;
14192 if (CLASS_TYPE_P (basetype) && !dependent_scope_p (basetype))
14194 base_binfo = TYPE_BINFO (basetype);
14195 /* The original basetype could have been a typedef'd type. */
14196 basetype = BINFO_TYPE (base_binfo);
14198 /* Inherit flags from the base. */
14199 TYPE_HAS_NEW_OPERATOR (ref)
14200 |= TYPE_HAS_NEW_OPERATOR (basetype);
14201 TYPE_HAS_ARRAY_NEW_OPERATOR (ref)
14202 |= TYPE_HAS_ARRAY_NEW_OPERATOR (basetype);
14203 TYPE_GETS_DELETE (ref) |= TYPE_GETS_DELETE (basetype);
14204 TYPE_HAS_CONVERSION (ref) |= TYPE_HAS_CONVERSION (basetype);
14205 CLASSTYPE_DIAMOND_SHAPED_P (ref)
14206 |= CLASSTYPE_DIAMOND_SHAPED_P (basetype);
14207 CLASSTYPE_REPEATED_BASE_P (ref)
14208 |= CLASSTYPE_REPEATED_BASE_P (basetype);
14211 /* We must do this test after we've seen through a typedef
14212 type. */
14213 if (TYPE_MARKED_P (basetype))
14215 if (basetype == ref)
14216 error ("recursive type %qT undefined", basetype);
14217 else
14218 error ("duplicate base type %qT invalid", basetype);
14219 goto dropped_base;
14222 if (PACK_EXPANSION_P (TREE_VALUE (base_list)))
14223 /* Regenerate the pack expansion for the bases. */
14224 basetype = make_pack_expansion (basetype);
14226 TYPE_MARKED_P (basetype) = 1;
14228 base_binfo = copy_binfo (base_binfo, basetype, ref,
14229 &igo_prev, via_virtual);
14230 if (!BINFO_INHERITANCE_CHAIN (base_binfo))
14231 BINFO_INHERITANCE_CHAIN (base_binfo) = binfo;
14233 BINFO_BASE_APPEND (binfo, base_binfo);
14234 BINFO_BASE_ACCESS_APPEND (binfo, access);
14235 continue;
14237 dropped_base:
14238 /* Update max_vbases to reflect the reality that we are dropping
14239 this base: if it reaches zero we want to undo the vec_alloc
14240 above to avoid inconsistencies during error-recovery: eg, in
14241 build_special_member_call, CLASSTYPE_VBASECLASSES non null
14242 and vtt null (c++/27952). */
14243 if (via_virtual)
14244 max_vbases--;
14245 if (CLASS_TYPE_P (basetype))
14246 max_vbases
14247 -= vec_safe_length (CLASSTYPE_VBASECLASSES (basetype));
14250 if (CLASSTYPE_VBASECLASSES (ref)
14251 && max_vbases == 0)
14252 vec_free (CLASSTYPE_VBASECLASSES (ref));
14254 if (vec_safe_length (CLASSTYPE_VBASECLASSES (ref)) < max_vbases)
14255 /* If we didn't get max_vbases vbases, we must have shared at
14256 least one of them, and are therefore diamond shaped. */
14257 CLASSTYPE_DIAMOND_SHAPED_P (ref) = 1;
14259 /* Unmark all the types. */
14260 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
14261 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
14262 TYPE_MARKED_P (ref) = 0;
14264 /* Now see if we have a repeated base type. */
14265 if (!CLASSTYPE_REPEATED_BASE_P (ref))
14267 for (base_binfo = binfo; base_binfo;
14268 base_binfo = TREE_CHAIN (base_binfo))
14270 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
14272 CLASSTYPE_REPEATED_BASE_P (ref) = 1;
14273 break;
14275 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 1;
14277 for (base_binfo = binfo; base_binfo;
14278 base_binfo = TREE_CHAIN (base_binfo))
14279 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
14280 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
14281 else
14282 break;
14287 /* Copies the enum-related properties from type SRC to type DST.
14288 Used with the underlying type of an enum and the enum itself. */
14289 static void
14290 copy_type_enum (tree dst, tree src)
14292 tree t;
14293 for (t = dst; t; t = TYPE_NEXT_VARIANT (t))
14295 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (src);
14296 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (src);
14297 TYPE_SIZE (t) = TYPE_SIZE (src);
14298 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (src);
14299 SET_TYPE_MODE (dst, TYPE_MODE (src));
14300 TYPE_PRECISION (t) = TYPE_PRECISION (src);
14301 unsigned valign = TYPE_ALIGN (src);
14302 if (TYPE_USER_ALIGN (t))
14303 valign = MAX (valign, TYPE_ALIGN (t));
14304 else
14305 TYPE_USER_ALIGN (t) = TYPE_USER_ALIGN (src);
14306 SET_TYPE_ALIGN (t, valign);
14307 TYPE_UNSIGNED (t) = TYPE_UNSIGNED (src);
14311 /* Begin compiling the definition of an enumeration type.
14312 NAME is its name,
14314 if ENUMTYPE is not NULL_TREE then the type has alredy been found.
14316 UNDERLYING_TYPE is the type that will be used as the storage for
14317 the enumeration type. This should be NULL_TREE if no storage type
14318 was specified.
14320 ATTRIBUTES are any attributes specified after the enum-key.
14322 SCOPED_ENUM_P is true if this is a scoped enumeration type.
14324 if IS_NEW is not NULL, gets TRUE iff a new type is created.
14326 Returns the type object, as yet incomplete.
14327 Also records info about it so that build_enumerator
14328 may be used to declare the individual values as they are read. */
14330 tree
14331 start_enum (tree name, tree enumtype, tree underlying_type,
14332 tree attributes, bool scoped_enum_p, bool *is_new)
14334 tree prevtype = NULL_TREE;
14335 gcc_assert (identifier_p (name));
14337 if (is_new)
14338 *is_new = false;
14339 /* [C++0x dcl.enum]p5:
14341 If not explicitly specified, the underlying type of a scoped
14342 enumeration type is int. */
14343 if (!underlying_type && scoped_enum_p)
14344 underlying_type = integer_type_node;
14346 if (underlying_type)
14347 underlying_type = cv_unqualified (underlying_type);
14349 /* If this is the real definition for a previous forward reference,
14350 fill in the contents in the same object that used to be the
14351 forward reference. */
14352 if (!enumtype)
14353 enumtype = lookup_and_check_tag (enum_type, name,
14354 /*tag_scope=*/ts_current,
14355 /*template_header_p=*/false);
14357 /* In case of a template_decl, the only check that should be deferred
14358 to instantiation time is the comparison of underlying types. */
14359 if (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE)
14361 if (scoped_enum_p != SCOPED_ENUM_P (enumtype))
14363 error_at (input_location, "scoped/unscoped mismatch "
14364 "in enum %q#T", enumtype);
14365 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
14366 "previous definition here");
14367 enumtype = error_mark_node;
14369 else if (ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) != !! underlying_type)
14371 error_at (input_location, "underlying type mismatch "
14372 "in enum %q#T", enumtype);
14373 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
14374 "previous definition here");
14375 enumtype = error_mark_node;
14377 else if (underlying_type && ENUM_UNDERLYING_TYPE (enumtype)
14378 && !same_type_p (underlying_type,
14379 ENUM_UNDERLYING_TYPE (enumtype)))
14381 error_at (input_location, "different underlying type "
14382 "in enum %q#T", enumtype);
14383 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
14384 "previous definition here");
14385 underlying_type = NULL_TREE;
14389 if (!enumtype || TREE_CODE (enumtype) != ENUMERAL_TYPE
14390 || processing_template_decl)
14392 /* In case of error, make a dummy enum to allow parsing to
14393 continue. */
14394 if (enumtype == error_mark_node)
14396 name = make_anon_name ();
14397 enumtype = NULL_TREE;
14400 /* enumtype may be an ENUMERAL_TYPE if this is a redefinition
14401 of an opaque enum, or an opaque enum of an already defined
14402 enumeration (C++11).
14403 In any other case, it'll be NULL_TREE. */
14404 if (!enumtype)
14406 if (is_new)
14407 *is_new = true;
14409 prevtype = enumtype;
14411 /* Do not push the decl more than once. */
14412 if (!enumtype
14413 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
14415 enumtype = cxx_make_type (ENUMERAL_TYPE);
14416 enumtype = pushtag (name, enumtype, /*tag_scope=*/ts_current);
14418 /* std::byte aliases anything. */
14419 if (enumtype != error_mark_node
14420 && TYPE_CONTEXT (enumtype) == std_node
14421 && !strcmp ("byte", TYPE_NAME_STRING (enumtype)))
14422 TYPE_ALIAS_SET (enumtype) = 0;
14424 else
14425 enumtype = xref_tag (enum_type, name, /*tag_scope=*/ts_current,
14426 false);
14428 if (enumtype == error_mark_node)
14429 return error_mark_node;
14431 /* The enum is considered opaque until the opening '{' of the
14432 enumerator list. */
14433 SET_OPAQUE_ENUM_P (enumtype, true);
14434 ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) = !! underlying_type;
14437 SET_SCOPED_ENUM_P (enumtype, scoped_enum_p);
14439 cplus_decl_attributes (&enumtype, attributes, (int)ATTR_FLAG_TYPE_IN_PLACE);
14441 if (underlying_type)
14443 if (ENUM_UNDERLYING_TYPE (enumtype))
14444 /* We already checked that it matches, don't change it to a different
14445 typedef variant. */;
14446 else if (CP_INTEGRAL_TYPE_P (underlying_type))
14448 copy_type_enum (enumtype, underlying_type);
14449 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
14451 else if (dependent_type_p (underlying_type))
14452 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
14453 else
14454 error ("underlying type %qT of %qT must be an integral type",
14455 underlying_type, enumtype);
14458 /* If into a template class, the returned enum is always the first
14459 declaration (opaque or not) seen. This way all the references to
14460 this type will be to the same declaration. The following ones are used
14461 only to check for definition errors. */
14462 if (prevtype && processing_template_decl)
14463 return prevtype;
14464 else
14465 return enumtype;
14468 /* After processing and defining all the values of an enumeration type,
14469 install their decls in the enumeration type.
14470 ENUMTYPE is the type object. */
14472 void
14473 finish_enum_value_list (tree enumtype)
14475 tree values;
14476 tree underlying_type;
14477 tree decl;
14478 tree value;
14479 tree minnode, maxnode;
14480 tree t;
14482 bool fixed_underlying_type_p
14483 = ENUM_UNDERLYING_TYPE (enumtype) != NULL_TREE;
14485 /* We built up the VALUES in reverse order. */
14486 TYPE_VALUES (enumtype) = nreverse (TYPE_VALUES (enumtype));
14488 /* For an enum defined in a template, just set the type of the values;
14489 all further processing is postponed until the template is
14490 instantiated. We need to set the type so that tsubst of a CONST_DECL
14491 works. */
14492 if (processing_template_decl)
14494 for (values = TYPE_VALUES (enumtype);
14495 values;
14496 values = TREE_CHAIN (values))
14497 TREE_TYPE (TREE_VALUE (values)) = enumtype;
14498 return;
14501 /* Determine the minimum and maximum values of the enumerators. */
14502 if (TYPE_VALUES (enumtype))
14504 minnode = maxnode = NULL_TREE;
14506 for (values = TYPE_VALUES (enumtype);
14507 values;
14508 values = TREE_CHAIN (values))
14510 decl = TREE_VALUE (values);
14512 /* [dcl.enum]: Following the closing brace of an enum-specifier,
14513 each enumerator has the type of its enumeration. Prior to the
14514 closing brace, the type of each enumerator is the type of its
14515 initializing value. */
14516 TREE_TYPE (decl) = enumtype;
14518 /* Update the minimum and maximum values, if appropriate. */
14519 value = DECL_INITIAL (decl);
14520 if (value == error_mark_node)
14521 value = integer_zero_node;
14522 /* Figure out what the minimum and maximum values of the
14523 enumerators are. */
14524 if (!minnode)
14525 minnode = maxnode = value;
14526 else if (tree_int_cst_lt (maxnode, value))
14527 maxnode = value;
14528 else if (tree_int_cst_lt (value, minnode))
14529 minnode = value;
14532 else
14533 /* [dcl.enum]
14535 If the enumerator-list is empty, the underlying type is as if
14536 the enumeration had a single enumerator with value 0. */
14537 minnode = maxnode = integer_zero_node;
14539 if (!fixed_underlying_type_p)
14541 /* Compute the number of bits require to represent all values of the
14542 enumeration. We must do this before the type of MINNODE and
14543 MAXNODE are transformed, since tree_int_cst_min_precision relies
14544 on the TREE_TYPE of the value it is passed. */
14545 signop sgn = tree_int_cst_sgn (minnode) >= 0 ? UNSIGNED : SIGNED;
14546 int lowprec = tree_int_cst_min_precision (minnode, sgn);
14547 int highprec = tree_int_cst_min_precision (maxnode, sgn);
14548 int precision = MAX (lowprec, highprec);
14549 unsigned int itk;
14550 bool use_short_enum;
14552 /* Determine the underlying type of the enumeration.
14554 [dcl.enum]
14556 The underlying type of an enumeration is an integral type that
14557 can represent all the enumerator values defined in the
14558 enumeration. It is implementation-defined which integral type is
14559 used as the underlying type for an enumeration except that the
14560 underlying type shall not be larger than int unless the value of
14561 an enumerator cannot fit in an int or unsigned int.
14563 We use "int" or an "unsigned int" as the underlying type, even if
14564 a smaller integral type would work, unless the user has
14565 explicitly requested that we use the smallest possible type. The
14566 user can request that for all enumerations with a command line
14567 flag, or for just one enumeration with an attribute. */
14569 use_short_enum = flag_short_enums
14570 || lookup_attribute ("packed", TYPE_ATTRIBUTES (enumtype));
14572 /* If the precision of the type was specified with an attribute and it
14573 was too small, give an error. Otherwise, use it. */
14574 if (TYPE_PRECISION (enumtype))
14576 if (precision > TYPE_PRECISION (enumtype))
14577 error ("specified mode too small for enumeral values");
14578 else
14580 use_short_enum = true;
14581 precision = TYPE_PRECISION (enumtype);
14585 for (itk = (use_short_enum ? itk_char : itk_int);
14586 itk != itk_none;
14587 itk++)
14589 underlying_type = integer_types[itk];
14590 if (underlying_type != NULL_TREE
14591 && TYPE_PRECISION (underlying_type) >= precision
14592 && TYPE_SIGN (underlying_type) == sgn)
14593 break;
14595 if (itk == itk_none)
14597 /* DR 377
14599 IF no integral type can represent all the enumerator values, the
14600 enumeration is ill-formed. */
14601 error ("no integral type can represent all of the enumerator values "
14602 "for %qT", enumtype);
14603 precision = TYPE_PRECISION (long_long_integer_type_node);
14604 underlying_type = integer_types[itk_unsigned_long_long];
14607 /* [dcl.enum]
14609 The value of sizeof() applied to an enumeration type, an object
14610 of an enumeration type, or an enumerator, is the value of sizeof()
14611 applied to the underlying type. */
14612 copy_type_enum (enumtype, underlying_type);
14614 /* Compute the minimum and maximum values for the type.
14616 [dcl.enum]
14618 For an enumeration where emin is the smallest enumerator and emax
14619 is the largest, the values of the enumeration are the values of the
14620 underlying type in the range bmin to bmax, where bmin and bmax are,
14621 respectively, the smallest and largest values of the smallest bit-
14622 field that can store emin and emax. */
14624 /* The middle-end currently assumes that types with TYPE_PRECISION
14625 narrower than their underlying type are suitably zero or sign
14626 extended to fill their mode. Similarly, it assumes that the front
14627 end assures that a value of a particular type must be within
14628 TYPE_MIN_VALUE and TYPE_MAX_VALUE.
14630 We used to set these fields based on bmin and bmax, but that led
14631 to invalid assumptions like optimizing away bounds checking. So
14632 now we just set the TYPE_PRECISION, TYPE_MIN_VALUE, and
14633 TYPE_MAX_VALUE to the values for the mode above and only restrict
14634 the ENUM_UNDERLYING_TYPE for the benefit of diagnostics. */
14635 ENUM_UNDERLYING_TYPE (enumtype)
14636 = build_distinct_type_copy (underlying_type);
14637 TYPE_PRECISION (ENUM_UNDERLYING_TYPE (enumtype)) = precision;
14638 set_min_and_max_values_for_integral_type
14639 (ENUM_UNDERLYING_TYPE (enumtype), precision, sgn);
14641 /* If -fstrict-enums, still constrain TYPE_MIN/MAX_VALUE. */
14642 if (flag_strict_enums)
14643 set_min_and_max_values_for_integral_type (enumtype, precision, sgn);
14645 else
14646 underlying_type = ENUM_UNDERLYING_TYPE (enumtype);
14648 /* Convert each of the enumerators to the type of the underlying
14649 type of the enumeration. */
14650 for (values = TYPE_VALUES (enumtype); values; values = TREE_CHAIN (values))
14652 location_t saved_location;
14654 decl = TREE_VALUE (values);
14655 saved_location = input_location;
14656 input_location = DECL_SOURCE_LOCATION (decl);
14657 if (fixed_underlying_type_p)
14658 /* If the enumeration type has a fixed underlying type, we
14659 already checked all of the enumerator values. */
14660 value = DECL_INITIAL (decl);
14661 else
14662 value = perform_implicit_conversion (underlying_type,
14663 DECL_INITIAL (decl),
14664 tf_warning_or_error);
14665 input_location = saved_location;
14667 /* Do not clobber shared ints. */
14668 if (value != error_mark_node)
14670 value = copy_node (value);
14672 TREE_TYPE (value) = enumtype;
14674 DECL_INITIAL (decl) = value;
14677 /* Fix up all variant types of this enum type. */
14678 for (t = TYPE_MAIN_VARIANT (enumtype); t; t = TYPE_NEXT_VARIANT (t))
14679 TYPE_VALUES (t) = TYPE_VALUES (enumtype);
14681 if (at_class_scope_p ()
14682 && COMPLETE_TYPE_P (current_class_type)
14683 && UNSCOPED_ENUM_P (enumtype))
14685 insert_late_enum_def_bindings (current_class_type, enumtype);
14686 /* TYPE_FIELDS needs fixup. */
14687 fixup_type_variants (current_class_type);
14690 /* Finish debugging output for this type. */
14691 rest_of_type_compilation (enumtype, namespace_bindings_p ());
14693 /* Each enumerator now has the type of its enumeration. Clear the cache
14694 so that this change in types doesn't confuse us later on. */
14695 clear_cv_and_fold_caches ();
14698 /* Finishes the enum type. This is called only the first time an
14699 enumeration is seen, be it opaque or odinary.
14700 ENUMTYPE is the type object. */
14702 void
14703 finish_enum (tree enumtype)
14705 if (processing_template_decl)
14707 if (at_function_scope_p ())
14708 add_stmt (build_min (TAG_DEFN, enumtype));
14709 return;
14712 /* If this is a forward declaration, there should not be any variants,
14713 though we can get a variant in the middle of an enum-specifier with
14714 wacky code like 'enum E { e = sizeof(const E*) };' */
14715 gcc_assert (enumtype == TYPE_MAIN_VARIANT (enumtype)
14716 && (TYPE_VALUES (enumtype)
14717 || !TYPE_NEXT_VARIANT (enumtype)));
14720 /* Build and install a CONST_DECL for an enumeration constant of the
14721 enumeration type ENUMTYPE whose NAME and VALUE (if any) are provided.
14722 Apply ATTRIBUTES if available. LOC is the location of NAME.
14723 Assignment of sequential values by default is handled here. */
14725 void
14726 build_enumerator (tree name, tree value, tree enumtype, tree attributes,
14727 location_t loc)
14729 tree decl;
14730 tree context;
14731 tree type;
14733 /* scalar_constant_value will pull out this expression, so make sure
14734 it's folded as appropriate. */
14735 if (processing_template_decl)
14736 value = fold_non_dependent_expr (value);
14738 /* If the VALUE was erroneous, pretend it wasn't there; that will
14739 result in the enum being assigned the next value in sequence. */
14740 if (value == error_mark_node)
14741 value = NULL_TREE;
14743 /* Remove no-op casts from the value. */
14744 if (value)
14745 STRIP_TYPE_NOPS (value);
14747 if (! processing_template_decl)
14749 /* Validate and default VALUE. */
14750 if (value != NULL_TREE)
14752 if (!ENUM_UNDERLYING_TYPE (enumtype))
14754 tree tmp_value = build_expr_type_conversion (WANT_INT | WANT_ENUM,
14755 value, true);
14756 if (tmp_value)
14757 value = tmp_value;
14759 else if (! INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P
14760 (TREE_TYPE (value)))
14761 value = perform_implicit_conversion_flags
14762 (ENUM_UNDERLYING_TYPE (enumtype), value, tf_warning_or_error,
14763 LOOKUP_IMPLICIT | LOOKUP_NO_NARROWING);
14765 if (value == error_mark_node)
14766 value = NULL_TREE;
14768 if (value != NULL_TREE)
14770 if (! INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P
14771 (TREE_TYPE (value)))
14773 error ("enumerator value for %qD must have integral or "
14774 "unscoped enumeration type", name);
14775 value = NULL_TREE;
14777 else
14779 value = cxx_constant_value (value);
14781 if (TREE_CODE (value) != INTEGER_CST)
14783 error ("enumerator value for %qD is not an integer "
14784 "constant", name);
14785 value = NULL_TREE;
14791 /* Default based on previous value. */
14792 if (value == NULL_TREE)
14794 if (TYPE_VALUES (enumtype))
14796 tree prev_value;
14798 /* C++03 7.2/4: If no initializer is specified for the first
14799 enumerator, the type is an unspecified integral
14800 type. Otherwise the type is the same as the type of the
14801 initializing value of the preceding enumerator unless the
14802 incremented value is not representable in that type, in
14803 which case the type is an unspecified integral type
14804 sufficient to contain the incremented value. */
14805 prev_value = DECL_INITIAL (TREE_VALUE (TYPE_VALUES (enumtype)));
14806 if (error_operand_p (prev_value))
14807 value = error_mark_node;
14808 else
14810 wi::overflow_type overflowed;
14811 tree type = TREE_TYPE (prev_value);
14812 signop sgn = TYPE_SIGN (type);
14813 widest_int wi = wi::add (wi::to_widest (prev_value), 1, sgn,
14814 &overflowed);
14815 if (!overflowed)
14817 bool pos = !wi::neg_p (wi, sgn);
14818 if (!wi::fits_to_tree_p (wi, type))
14820 unsigned int itk;
14821 for (itk = itk_int; itk != itk_none; itk++)
14823 type = integer_types[itk];
14824 if (type != NULL_TREE
14825 && (pos || !TYPE_UNSIGNED (type))
14826 && wi::fits_to_tree_p (wi, type))
14827 break;
14829 if (type && cxx_dialect < cxx11
14830 && itk > itk_unsigned_long)
14831 pedwarn (input_location, OPT_Wlong_long,
14832 pos ? G_("\
14833 incremented enumerator value is too large for %<unsigned long%>") : G_("\
14834 incremented enumerator value is too large for %<long%>"));
14836 if (type == NULL_TREE)
14837 overflowed = wi::OVF_UNKNOWN;
14838 else
14839 value = wide_int_to_tree (type, wi);
14842 if (overflowed)
14844 error ("overflow in enumeration values at %qD", name);
14845 value = error_mark_node;
14849 else
14850 value = integer_zero_node;
14853 /* Remove no-op casts from the value. */
14854 STRIP_TYPE_NOPS (value);
14856 /* If the underlying type of the enum is fixed, check whether
14857 the enumerator values fits in the underlying type. If it
14858 does not fit, the program is ill-formed [C++0x dcl.enum]. */
14859 if (ENUM_UNDERLYING_TYPE (enumtype)
14860 && value
14861 && TREE_CODE (value) == INTEGER_CST)
14863 if (!int_fits_type_p (value, ENUM_UNDERLYING_TYPE (enumtype)))
14864 error ("enumerator value %qE is outside the range of underlying "
14865 "type %qT", value, ENUM_UNDERLYING_TYPE (enumtype));
14867 /* Convert the value to the appropriate type. */
14868 value = fold_convert (ENUM_UNDERLYING_TYPE (enumtype), value);
14872 /* C++ associates enums with global, function, or class declarations. */
14873 context = current_scope ();
14875 /* Build the actual enumeration constant. Note that the enumeration
14876 constants have the underlying type of the enum (if it is fixed)
14877 or the type of their initializer (if the underlying type of the
14878 enum is not fixed):
14880 [ C++0x dcl.enum ]
14882 If the underlying type is fixed, the type of each enumerator
14883 prior to the closing brace is the underlying type; if the
14884 initializing value of an enumerator cannot be represented by
14885 the underlying type, the program is ill-formed. If the
14886 underlying type is not fixed, the type of each enumerator is
14887 the type of its initializing value.
14889 If the underlying type is not fixed, it will be computed by
14890 finish_enum and we will reset the type of this enumerator. Of
14891 course, if we're processing a template, there may be no value. */
14892 type = value ? TREE_TYPE (value) : NULL_TREE;
14894 decl = build_decl (loc, CONST_DECL, name, type);
14896 DECL_CONTEXT (decl) = enumtype;
14897 TREE_CONSTANT (decl) = 1;
14898 TREE_READONLY (decl) = 1;
14899 DECL_INITIAL (decl) = value;
14901 if (attributes)
14902 cplus_decl_attributes (&decl, attributes, 0);
14904 if (context && context == current_class_type && !SCOPED_ENUM_P (enumtype))
14906 /* In something like `struct S { enum E { i = 7 }; };' we put `i'
14907 on the TYPE_FIELDS list for `S'. (That's so that you can say
14908 things like `S::i' later.) */
14910 /* The enumerator may be getting declared outside of its enclosing
14911 class, like so:
14913 class S { public: enum E : int; }; enum S::E : int { i = 7; };
14915 For which case we need to make sure that the access of `S::i'
14916 matches the access of `S::E'. */
14917 tree saved_cas = current_access_specifier;
14918 if (TREE_PRIVATE (TYPE_NAME (enumtype)))
14919 current_access_specifier = access_private_node;
14920 else if (TREE_PROTECTED (TYPE_NAME (enumtype)))
14921 current_access_specifier = access_protected_node;
14922 else
14923 current_access_specifier = access_public_node;
14925 finish_member_declaration (decl);
14927 current_access_specifier = saved_cas;
14929 else
14930 pushdecl (decl);
14932 /* Add this enumeration constant to the list for this type. */
14933 TYPE_VALUES (enumtype) = tree_cons (name, decl, TYPE_VALUES (enumtype));
14936 /* Look for an enumerator with the given NAME within the enumeration
14937 type ENUMTYPE. This routine is used primarily for qualified name
14938 lookup into an enumerator in C++0x, e.g.,
14940 enum class Color { Red, Green, Blue };
14942 Color color = Color::Red;
14944 Returns the value corresponding to the enumerator, or
14945 NULL_TREE if no such enumerator was found. */
14946 tree
14947 lookup_enumerator (tree enumtype, tree name)
14949 tree e;
14950 gcc_assert (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE);
14952 e = purpose_member (name, TYPE_VALUES (enumtype));
14953 return e? TREE_VALUE (e) : NULL_TREE;
14957 /* We're defining DECL. Make sure that its type is OK. */
14959 static void
14960 check_function_type (tree decl, tree current_function_parms)
14962 tree fntype = TREE_TYPE (decl);
14963 tree return_type = complete_type (TREE_TYPE (fntype));
14965 /* In a function definition, arg types must be complete. */
14966 require_complete_types_for_parms (current_function_parms);
14968 if (dependent_type_p (return_type)
14969 || type_uses_auto (return_type))
14970 return;
14971 if (!COMPLETE_OR_VOID_TYPE_P (return_type))
14973 tree args = TYPE_ARG_TYPES (fntype);
14975 error ("return type %q#T is incomplete", return_type);
14977 /* Make it return void instead. */
14978 if (TREE_CODE (fntype) == METHOD_TYPE)
14979 fntype = build_method_type_directly (TREE_TYPE (TREE_VALUE (args)),
14980 void_type_node,
14981 TREE_CHAIN (args));
14982 else
14983 fntype = build_function_type (void_type_node, args);
14984 fntype = (cp_build_type_attribute_variant
14985 (fntype, TYPE_ATTRIBUTES (TREE_TYPE (decl))));
14986 fntype = cxx_copy_lang_qualifiers (fntype, TREE_TYPE (decl));
14987 TREE_TYPE (decl) = fntype;
14989 else
14991 abstract_virtuals_error (decl, TREE_TYPE (fntype));
14992 maybe_warn_parm_abi (TREE_TYPE (fntype),
14993 DECL_SOURCE_LOCATION (decl));
14997 /* True iff FN is an implicitly-defined default constructor. */
14999 static bool
15000 implicit_default_ctor_p (tree fn)
15002 return (DECL_CONSTRUCTOR_P (fn)
15003 && !user_provided_p (fn)
15004 && sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (fn)));
15007 /* Clobber the contents of *this to let the back end know that the object
15008 storage is dead when we enter the constructor or leave the destructor. */
15010 static tree
15011 build_clobber_this ()
15013 /* Clobbering an empty base is pointless, and harmful if its one byte
15014 TYPE_SIZE overlays real data. */
15015 if (is_empty_class (current_class_type))
15016 return void_node;
15018 /* If we have virtual bases, clobber the whole object, but only if we're in
15019 charge. If we don't have virtual bases, clobber the as-base type so we
15020 don't mess with tail padding. */
15021 bool vbases = CLASSTYPE_VBASECLASSES (current_class_type);
15023 tree ctype = current_class_type;
15024 if (!vbases)
15025 ctype = CLASSTYPE_AS_BASE (ctype);
15027 tree clobber = build_clobber (ctype);
15029 tree thisref = current_class_ref;
15030 if (ctype != current_class_type)
15032 thisref = build_nop (build_reference_type (ctype), current_class_ptr);
15033 thisref = convert_from_reference (thisref);
15036 tree exprstmt = build2 (MODIFY_EXPR, void_type_node, thisref, clobber);
15037 if (vbases)
15038 exprstmt = build_if_in_charge (exprstmt);
15040 return exprstmt;
15043 /* Create the FUNCTION_DECL for a function definition.
15044 DECLSPECS and DECLARATOR are the parts of the declaration;
15045 they describe the function's name and the type it returns,
15046 but twisted together in a fashion that parallels the syntax of C.
15048 FLAGS is a bitwise or of SF_PRE_PARSED (indicating that the
15049 DECLARATOR is really the DECL for the function we are about to
15050 process and that DECLSPECS should be ignored), SF_INCLASS_INLINE
15051 indicating that the function is an inline defined in-class.
15053 This function creates a binding context for the function body
15054 as well as setting up the FUNCTION_DECL in current_function_decl.
15056 For C++, we must first check whether that datum makes any sense.
15057 For example, "class A local_a(1,2);" means that variable local_a
15058 is an aggregate of type A, which should have a constructor
15059 applied to it with the argument list [1, 2].
15061 On entry, DECL_INITIAL (decl1) should be NULL_TREE or error_mark_node,
15062 or may be a BLOCK if the function has been defined previously
15063 in this translation unit. On exit, DECL_INITIAL (decl1) will be
15064 error_mark_node if the function has never been defined, or
15065 a BLOCK if the function has been defined somewhere. */
15067 bool
15068 start_preparsed_function (tree decl1, tree attrs, int flags)
15070 tree ctype = NULL_TREE;
15071 tree fntype;
15072 tree restype;
15073 int doing_friend = 0;
15074 cp_binding_level *bl;
15075 tree current_function_parms;
15076 struct c_fileinfo *finfo
15077 = get_fileinfo (LOCATION_FILE (DECL_SOURCE_LOCATION (decl1)));
15078 bool honor_interface;
15080 /* Sanity check. */
15081 gcc_assert (VOID_TYPE_P (TREE_VALUE (void_list_node)));
15082 gcc_assert (TREE_CHAIN (void_list_node) == NULL_TREE);
15084 fntype = TREE_TYPE (decl1);
15085 if (TREE_CODE (fntype) == METHOD_TYPE)
15086 ctype = TYPE_METHOD_BASETYPE (fntype);
15088 /* ISO C++ 11.4/5. A friend function defined in a class is in
15089 the (lexical) scope of the class in which it is defined. */
15090 if (!ctype && DECL_FRIEND_P (decl1))
15092 ctype = DECL_FRIEND_CONTEXT (decl1);
15094 /* CTYPE could be null here if we're dealing with a template;
15095 for example, `inline friend float foo()' inside a template
15096 will have no CTYPE set. */
15097 if (ctype && TREE_CODE (ctype) != RECORD_TYPE)
15098 ctype = NULL_TREE;
15099 else
15100 doing_friend = 1;
15103 if (DECL_DECLARED_INLINE_P (decl1)
15104 && lookup_attribute ("noinline", attrs))
15105 warning_at (DECL_SOURCE_LOCATION (decl1), 0,
15106 "inline function %qD given attribute noinline", decl1);
15108 /* Handle gnu_inline attribute. */
15109 if (GNU_INLINE_P (decl1))
15111 DECL_EXTERNAL (decl1) = 1;
15112 DECL_NOT_REALLY_EXTERN (decl1) = 0;
15113 DECL_INTERFACE_KNOWN (decl1) = 1;
15114 DECL_DISREGARD_INLINE_LIMITS (decl1) = 1;
15117 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl1))
15118 /* This is a constructor, we must ensure that any default args
15119 introduced by this definition are propagated to the clones
15120 now. The clones are used directly in overload resolution. */
15121 adjust_clone_args (decl1);
15123 /* Sometimes we don't notice that a function is a static member, and
15124 build a METHOD_TYPE for it. Fix that up now. */
15125 gcc_assert (!(ctype != NULL_TREE && DECL_STATIC_FUNCTION_P (decl1)
15126 && TREE_CODE (TREE_TYPE (decl1)) == METHOD_TYPE));
15128 /* Set up current_class_type, and enter the scope of the class, if
15129 appropriate. */
15130 if (ctype)
15131 push_nested_class (ctype);
15132 else if (DECL_STATIC_FUNCTION_P (decl1))
15133 push_nested_class (DECL_CONTEXT (decl1));
15135 /* Now that we have entered the scope of the class, we must restore
15136 the bindings for any template parameters surrounding DECL1, if it
15137 is an inline member template. (Order is important; consider the
15138 case where a template parameter has the same name as a field of
15139 the class.) It is not until after this point that
15140 PROCESSING_TEMPLATE_DECL is guaranteed to be set up correctly. */
15141 if (flags & SF_INCLASS_INLINE)
15142 maybe_begin_member_template_processing (decl1);
15144 /* Effective C++ rule 15. */
15145 if (warn_ecpp
15146 && DECL_ASSIGNMENT_OPERATOR_P (decl1)
15147 && DECL_OVERLOADED_OPERATOR_IS (decl1, NOP_EXPR)
15148 && VOID_TYPE_P (TREE_TYPE (fntype)))
15149 warning (OPT_Weffc__,
15150 "%<operator=%> should return a reference to %<*this%>");
15152 /* Make the init_value nonzero so pushdecl knows this is not tentative.
15153 error_mark_node is replaced below (in poplevel) with the BLOCK. */
15154 if (!DECL_INITIAL (decl1))
15155 DECL_INITIAL (decl1) = error_mark_node;
15157 /* This function exists in static storage.
15158 (This does not mean `static' in the C sense!) */
15159 TREE_STATIC (decl1) = 1;
15161 /* We must call push_template_decl after current_class_type is set
15162 up. (If we are processing inline definitions after exiting a
15163 class scope, current_class_type will be NULL_TREE until set above
15164 by push_nested_class.) */
15165 if (processing_template_decl)
15167 tree newdecl1 = push_template_decl (decl1);
15168 if (newdecl1 == error_mark_node)
15170 if (ctype || DECL_STATIC_FUNCTION_P (decl1))
15171 pop_nested_class ();
15172 return false;
15174 decl1 = newdecl1;
15177 /* Make sure the parameter and return types are reasonable. When
15178 you declare a function, these types can be incomplete, but they
15179 must be complete when you define the function. */
15180 check_function_type (decl1, DECL_ARGUMENTS (decl1));
15182 /* Build the return declaration for the function. */
15183 restype = TREE_TYPE (fntype);
15185 if (DECL_RESULT (decl1) == NULL_TREE)
15187 tree resdecl;
15189 resdecl = build_decl (input_location, RESULT_DECL, 0, restype);
15190 DECL_ARTIFICIAL (resdecl) = 1;
15191 DECL_IGNORED_P (resdecl) = 1;
15192 DECL_RESULT (decl1) = resdecl;
15194 cp_apply_type_quals_to_decl (cp_type_quals (restype), resdecl);
15197 /* Record the decl so that the function name is defined.
15198 If we already have a decl for this name, and it is a FUNCTION_DECL,
15199 use the old decl. */
15200 if (!processing_template_decl && !(flags & SF_PRE_PARSED))
15202 /* A specialization is not used to guide overload resolution. */
15203 if (!DECL_FUNCTION_MEMBER_P (decl1)
15204 && !(DECL_USE_TEMPLATE (decl1) &&
15205 PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl1))))
15207 tree olddecl = pushdecl (decl1);
15209 if (olddecl == error_mark_node)
15210 /* If something went wrong when registering the declaration,
15211 use DECL1; we have to have a FUNCTION_DECL to use when
15212 parsing the body of the function. */
15214 else
15216 /* Otherwise, OLDDECL is either a previous declaration
15217 of the same function or DECL1 itself. */
15219 if (warn_missing_declarations
15220 && olddecl == decl1
15221 && !DECL_MAIN_P (decl1)
15222 && TREE_PUBLIC (decl1)
15223 && !DECL_DECLARED_INLINE_P (decl1))
15225 tree context;
15227 /* Check whether DECL1 is in an anonymous
15228 namespace. */
15229 for (context = DECL_CONTEXT (decl1);
15230 context;
15231 context = DECL_CONTEXT (context))
15233 if (TREE_CODE (context) == NAMESPACE_DECL
15234 && DECL_NAME (context) == NULL_TREE)
15235 break;
15238 if (context == NULL)
15239 warning_at (DECL_SOURCE_LOCATION (decl1),
15240 OPT_Wmissing_declarations,
15241 "no previous declaration for %qD", decl1);
15244 decl1 = olddecl;
15247 else
15249 /* We need to set the DECL_CONTEXT. */
15250 if (!DECL_CONTEXT (decl1) && DECL_TEMPLATE_INFO (decl1))
15251 DECL_CONTEXT (decl1) = DECL_CONTEXT (DECL_TI_TEMPLATE (decl1));
15253 fntype = TREE_TYPE (decl1);
15254 restype = TREE_TYPE (fntype);
15256 /* If #pragma weak applies, mark the decl appropriately now.
15257 The pragma only applies to global functions. Because
15258 determining whether or not the #pragma applies involves
15259 computing the mangled name for the declaration, we cannot
15260 apply the pragma until after we have merged this declaration
15261 with any previous declarations; if the original declaration
15262 has a linkage specification, that specification applies to
15263 the definition as well, and may affect the mangled name. */
15264 if (DECL_FILE_SCOPE_P (decl1))
15265 maybe_apply_pragma_weak (decl1);
15268 /* We are now in the scope of the function being defined. */
15269 current_function_decl = decl1;
15271 /* Save the parm names or decls from this function's declarator
15272 where store_parm_decls will find them. */
15273 current_function_parms = DECL_ARGUMENTS (decl1);
15275 /* Let the user know we're compiling this function. */
15276 announce_function (decl1);
15278 gcc_assert (DECL_INITIAL (decl1));
15280 /* This function may already have been parsed, in which case just
15281 return; our caller will skip over the body without parsing. */
15282 if (DECL_INITIAL (decl1) != error_mark_node)
15283 return true;
15285 /* Initialize RTL machinery. We cannot do this until
15286 CURRENT_FUNCTION_DECL and DECL_RESULT are set up. We do this
15287 even when processing a template; this is how we get
15288 CFUN set up, and our per-function variables initialized.
15289 FIXME factor out the non-RTL stuff. */
15290 bl = current_binding_level;
15291 allocate_struct_function (decl1, processing_template_decl);
15293 /* Initialize the language data structures. Whenever we start
15294 a new function, we destroy temporaries in the usual way. */
15295 cfun->language = ggc_cleared_alloc<language_function> ();
15296 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
15297 current_binding_level = bl;
15299 if (!processing_template_decl && type_uses_auto (restype))
15301 FNDECL_USED_AUTO (decl1) = true;
15302 current_function_auto_return_pattern = restype;
15305 /* Start the statement-tree, start the tree now. */
15306 DECL_SAVED_TREE (decl1) = push_stmt_list ();
15308 /* If we are (erroneously) defining a function that we have already
15309 defined before, wipe out what we knew before. */
15310 if (!DECL_PENDING_INLINE_P (decl1))
15311 DECL_SAVED_FUNCTION_DATA (decl1) = NULL;
15313 if (ctype && !doing_friend && !DECL_STATIC_FUNCTION_P (decl1))
15315 /* We know that this was set up by `grokclassfn'. We do not
15316 wait until `store_parm_decls', since evil parse errors may
15317 never get us to that point. Here we keep the consistency
15318 between `current_class_type' and `current_class_ptr'. */
15319 tree t = DECL_ARGUMENTS (decl1);
15321 gcc_assert (t != NULL_TREE && TREE_CODE (t) == PARM_DECL);
15322 gcc_assert (TYPE_PTR_P (TREE_TYPE (t)));
15324 cp_function_chain->x_current_class_ref
15325 = cp_build_fold_indirect_ref (t);
15326 /* Set this second to avoid shortcut in cp_build_indirect_ref. */
15327 cp_function_chain->x_current_class_ptr = t;
15329 /* Constructors and destructors need to know whether they're "in
15330 charge" of initializing virtual base classes. */
15331 t = DECL_CHAIN (t);
15332 if (DECL_HAS_IN_CHARGE_PARM_P (decl1))
15334 current_in_charge_parm = t;
15335 t = DECL_CHAIN (t);
15337 if (DECL_HAS_VTT_PARM_P (decl1))
15339 gcc_assert (DECL_NAME (t) == vtt_parm_identifier);
15340 current_vtt_parm = t;
15344 honor_interface = (!DECL_TEMPLATE_INSTANTIATION (decl1)
15345 /* Implicitly-defined methods (like the
15346 destructor for a class in which no destructor
15347 is explicitly declared) must not be defined
15348 until their definition is needed. So, we
15349 ignore interface specifications for
15350 compiler-generated functions. */
15351 && !DECL_ARTIFICIAL (decl1));
15353 if (processing_template_decl)
15354 /* Don't mess with interface flags. */;
15355 else if (DECL_INTERFACE_KNOWN (decl1))
15357 tree ctx = decl_function_context (decl1);
15359 if (DECL_NOT_REALLY_EXTERN (decl1))
15360 DECL_EXTERNAL (decl1) = 0;
15362 if (ctx != NULL_TREE && vague_linkage_p (ctx))
15363 /* This is a function in a local class in an extern inline
15364 or template function. */
15365 comdat_linkage (decl1);
15367 /* If this function belongs to an interface, it is public.
15368 If it belongs to someone else's interface, it is also external.
15369 This only affects inlines and template instantiations. */
15370 else if (!finfo->interface_unknown && honor_interface)
15372 if (DECL_DECLARED_INLINE_P (decl1)
15373 || DECL_TEMPLATE_INSTANTIATION (decl1))
15375 DECL_EXTERNAL (decl1)
15376 = (finfo->interface_only
15377 || (DECL_DECLARED_INLINE_P (decl1)
15378 && ! flag_implement_inlines
15379 && !DECL_VINDEX (decl1)));
15381 /* For WIN32 we also want to put these in linkonce sections. */
15382 maybe_make_one_only (decl1);
15384 else
15385 DECL_EXTERNAL (decl1) = 0;
15386 DECL_INTERFACE_KNOWN (decl1) = 1;
15387 /* If this function is in an interface implemented in this file,
15388 make sure that the back end knows to emit this function
15389 here. */
15390 if (!DECL_EXTERNAL (decl1))
15391 mark_needed (decl1);
15393 else if (finfo->interface_unknown && finfo->interface_only
15394 && honor_interface)
15396 /* If MULTIPLE_SYMBOL_SPACES is defined and we saw a #pragma
15397 interface, we will have both finfo->interface_unknown and
15398 finfo->interface_only set. In that case, we don't want to
15399 use the normal heuristics because someone will supply a
15400 #pragma implementation elsewhere, and deducing it here would
15401 produce a conflict. */
15402 comdat_linkage (decl1);
15403 DECL_EXTERNAL (decl1) = 0;
15404 DECL_INTERFACE_KNOWN (decl1) = 1;
15405 DECL_DEFER_OUTPUT (decl1) = 1;
15407 else
15409 /* This is a definition, not a reference.
15410 So clear DECL_EXTERNAL, unless this is a GNU extern inline. */
15411 if (!GNU_INLINE_P (decl1))
15412 DECL_EXTERNAL (decl1) = 0;
15414 if ((DECL_DECLARED_INLINE_P (decl1)
15415 || DECL_TEMPLATE_INSTANTIATION (decl1))
15416 && ! DECL_INTERFACE_KNOWN (decl1))
15417 DECL_DEFER_OUTPUT (decl1) = 1;
15418 else
15419 DECL_INTERFACE_KNOWN (decl1) = 1;
15422 /* Determine the ELF visibility attribute for the function. We must not
15423 do this before calling "pushdecl", as we must allow "duplicate_decls"
15424 to merge any attributes appropriately. We also need to wait until
15425 linkage is set. */
15426 if (!DECL_CLONED_FUNCTION_P (decl1))
15427 determine_visibility (decl1);
15429 if (!processing_template_decl)
15430 maybe_instantiate_noexcept (decl1);
15432 begin_scope (sk_function_parms, decl1);
15434 ++function_depth;
15436 if (DECL_DESTRUCTOR_P (decl1)
15437 || (DECL_CONSTRUCTOR_P (decl1)
15438 && targetm.cxx.cdtor_returns_this ()))
15440 cdtor_label = create_artificial_label (input_location);
15441 LABEL_DECL_CDTOR (cdtor_label) = true;
15444 start_fname_decls ();
15446 store_parm_decls (current_function_parms);
15448 if (!processing_template_decl
15449 && (flag_lifetime_dse > 1)
15450 && DECL_CONSTRUCTOR_P (decl1)
15451 && !DECL_CLONED_FUNCTION_P (decl1)
15452 /* Clobbering an empty base is harmful if it overlays real data. */
15453 && !is_empty_class (current_class_type)
15454 /* We can't clobber safely for an implicitly-defined default constructor
15455 because part of the initialization might happen before we enter the
15456 constructor, via AGGR_INIT_ZERO_FIRST (c++/68006). */
15457 && !implicit_default_ctor_p (decl1))
15458 finish_expr_stmt (build_clobber_this ());
15460 if (!processing_template_decl
15461 && DECL_CONSTRUCTOR_P (decl1)
15462 && sanitize_flags_p (SANITIZE_VPTR)
15463 && !DECL_CLONED_FUNCTION_P (decl1)
15464 && !implicit_default_ctor_p (decl1))
15465 cp_ubsan_maybe_initialize_vtbl_ptrs (current_class_ptr);
15467 start_lambda_scope (decl1);
15469 return true;
15473 /* Like start_preparsed_function, except that instead of a
15474 FUNCTION_DECL, this function takes DECLSPECS and DECLARATOR.
15476 Returns true on success. If the DECLARATOR is not suitable
15477 for a function, we return false, which tells the parser to
15478 skip the entire function. */
15480 bool
15481 start_function (cp_decl_specifier_seq *declspecs,
15482 const cp_declarator *declarator,
15483 tree attrs)
15485 tree decl1;
15487 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1, &attrs);
15488 invoke_plugin_callbacks (PLUGIN_START_PARSE_FUNCTION, decl1);
15489 if (decl1 == error_mark_node)
15490 return false;
15491 /* If the declarator is not suitable for a function definition,
15492 cause a syntax error. */
15493 if (decl1 == NULL_TREE || TREE_CODE (decl1) != FUNCTION_DECL)
15495 error ("invalid function declaration");
15496 return false;
15499 if (DECL_MAIN_P (decl1))
15500 /* main must return int. grokfndecl should have corrected it
15501 (and issued a diagnostic) if the user got it wrong. */
15502 gcc_assert (same_type_p (TREE_TYPE (TREE_TYPE (decl1)),
15503 integer_type_node));
15505 return start_preparsed_function (decl1, attrs, /*flags=*/SF_DEFAULT);
15508 /* Returns true iff an EH_SPEC_BLOCK should be created in the body of
15509 FN. */
15511 static bool
15512 use_eh_spec_block (tree fn)
15514 return (flag_exceptions && flag_enforce_eh_specs
15515 && !processing_template_decl
15516 && !type_throw_all_p (TREE_TYPE (fn))
15517 /* We insert the EH_SPEC_BLOCK only in the original
15518 function; then, it is copied automatically to the
15519 clones. */
15520 && !DECL_CLONED_FUNCTION_P (fn)
15521 /* Implicitly-generated constructors and destructors have
15522 exception specifications. However, those specifications
15523 are the union of the possible exceptions specified by the
15524 constructors/destructors for bases and members, so no
15525 unallowed exception will ever reach this function. By
15526 not creating the EH_SPEC_BLOCK we save a little memory,
15527 and we avoid spurious warnings about unreachable
15528 code. */
15529 && !DECL_DEFAULTED_FN (fn));
15532 /* Store the parameter declarations into the current function declaration.
15533 This is called after parsing the parameter declarations, before
15534 digesting the body of the function.
15536 Also install to binding contour return value identifier, if any. */
15538 static void
15539 store_parm_decls (tree current_function_parms)
15541 tree fndecl = current_function_decl;
15542 tree parm;
15544 /* This is a chain of any other decls that came in among the parm
15545 declarations. If a parm is declared with enum {foo, bar} x;
15546 then CONST_DECLs for foo and bar are put here. */
15547 tree nonparms = NULL_TREE;
15549 if (current_function_parms)
15551 /* This case is when the function was defined with an ANSI prototype.
15552 The parms already have decls, so we need not do anything here
15553 except record them as in effect
15554 and complain if any redundant old-style parm decls were written. */
15556 tree specparms = current_function_parms;
15557 tree next;
15559 /* Must clear this because it might contain TYPE_DECLs declared
15560 at class level. */
15561 current_binding_level->names = NULL;
15563 /* If we're doing semantic analysis, then we'll call pushdecl
15564 for each of these. We must do them in reverse order so that
15565 they end in the correct forward order. */
15566 specparms = nreverse (specparms);
15568 for (parm = specparms; parm; parm = next)
15570 next = DECL_CHAIN (parm);
15571 if (TREE_CODE (parm) == PARM_DECL)
15572 pushdecl (parm);
15573 else
15575 /* If we find an enum constant or a type tag,
15576 put it aside for the moment. */
15577 TREE_CHAIN (parm) = NULL_TREE;
15578 nonparms = chainon (nonparms, parm);
15582 /* Get the decls in their original chain order and record in the
15583 function. This is all and only the PARM_DECLs that were
15584 pushed into scope by the loop above. */
15585 DECL_ARGUMENTS (fndecl) = get_local_decls ();
15587 else
15588 DECL_ARGUMENTS (fndecl) = NULL_TREE;
15590 /* Now store the final chain of decls for the arguments
15591 as the decl-chain of the current lexical scope.
15592 Put the enumerators in as well, at the front so that
15593 DECL_ARGUMENTS is not modified. */
15594 current_binding_level->names = chainon (nonparms, DECL_ARGUMENTS (fndecl));
15596 if (use_eh_spec_block (current_function_decl))
15597 current_eh_spec_block = begin_eh_spec_block ();
15601 /* We have finished doing semantic analysis on DECL, but have not yet
15602 generated RTL for its body. Save away our current state, so that
15603 when we want to generate RTL later we know what to do. */
15605 static void
15606 save_function_data (tree decl)
15608 struct language_function *f;
15610 /* Save the language-specific per-function data so that we can
15611 get it back when we really expand this function. */
15612 gcc_assert (!DECL_PENDING_INLINE_P (decl));
15614 /* Make a copy. */
15615 f = ggc_alloc<language_function> ();
15616 memcpy (f, cp_function_chain, sizeof (struct language_function));
15617 DECL_SAVED_FUNCTION_DATA (decl) = f;
15619 /* Clear out the bits we don't need. */
15620 f->base.x_stmt_tree.x_cur_stmt_list = NULL;
15621 f->bindings = NULL;
15622 f->base.local_typedefs = NULL;
15626 /* Set the return value of the constructor (if present). */
15628 static void
15629 finish_constructor_body (void)
15631 tree val;
15632 tree exprstmt;
15634 if (targetm.cxx.cdtor_returns_this ())
15636 /* Any return from a constructor will end up here. */
15637 add_stmt (build_stmt (input_location, LABEL_EXPR, cdtor_label));
15639 val = DECL_ARGUMENTS (current_function_decl);
15640 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
15641 DECL_RESULT (current_function_decl), val);
15642 /* Return the address of the object. */
15643 exprstmt = build_stmt (input_location, RETURN_EXPR, val);
15644 add_stmt (exprstmt);
15648 /* Do all the processing for the beginning of a destructor; set up the
15649 vtable pointers and cleanups for bases and members. */
15651 static void
15652 begin_destructor_body (void)
15654 tree compound_stmt;
15656 /* If the CURRENT_CLASS_TYPE is incomplete, we will have already
15657 issued an error message. We still want to try to process the
15658 body of the function, but initialize_vtbl_ptrs will crash if
15659 TYPE_BINFO is NULL. */
15660 if (COMPLETE_TYPE_P (current_class_type))
15662 compound_stmt = begin_compound_stmt (0);
15663 /* Make all virtual function table pointers in non-virtual base
15664 classes point to CURRENT_CLASS_TYPE's virtual function
15665 tables. */
15666 initialize_vtbl_ptrs (current_class_ptr);
15667 finish_compound_stmt (compound_stmt);
15669 if (flag_lifetime_dse
15670 /* Clobbering an empty base is harmful if it overlays real data. */
15671 && !is_empty_class (current_class_type))
15673 if (sanitize_flags_p (SANITIZE_VPTR)
15674 && (flag_sanitize_recover & SANITIZE_VPTR) == 0
15675 && TYPE_CONTAINS_VPTR_P (current_class_type))
15677 tree binfo = TYPE_BINFO (current_class_type);
15678 tree ref
15679 = cp_build_fold_indirect_ref (current_class_ptr);
15681 tree vtbl_ptr = build_vfield_ref (ref, TREE_TYPE (binfo));
15682 tree vtbl = build_zero_cst (TREE_TYPE (vtbl_ptr));
15683 tree stmt = cp_build_modify_expr (input_location, vtbl_ptr,
15684 NOP_EXPR, vtbl,
15685 tf_warning_or_error);
15686 /* If the vptr is shared with some virtual nearly empty base,
15687 don't clear it if not in charge, the dtor of the virtual
15688 nearly empty base will do that later. */
15689 if (CLASSTYPE_VBASECLASSES (current_class_type)
15690 && CLASSTYPE_PRIMARY_BINFO (current_class_type)
15691 && BINFO_VIRTUAL_P
15692 (CLASSTYPE_PRIMARY_BINFO (current_class_type)))
15694 stmt = convert_to_void (stmt, ICV_STATEMENT,
15695 tf_warning_or_error);
15696 stmt = build_if_in_charge (stmt);
15698 finish_decl_cleanup (NULL_TREE, stmt);
15700 else
15701 finish_decl_cleanup (NULL_TREE, build_clobber_this ());
15704 /* And insert cleanups for our bases and members so that they
15705 will be properly destroyed if we throw. */
15706 push_base_cleanups ();
15710 /* At the end of every destructor we generate code to delete the object if
15711 necessary. Do that now. */
15713 static void
15714 finish_destructor_body (void)
15716 tree exprstmt;
15718 /* Any return from a destructor will end up here; that way all base
15719 and member cleanups will be run when the function returns. */
15720 add_stmt (build_stmt (input_location, LABEL_EXPR, cdtor_label));
15722 if (targetm.cxx.cdtor_returns_this ())
15724 tree val;
15726 val = DECL_ARGUMENTS (current_function_decl);
15727 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
15728 DECL_RESULT (current_function_decl), val);
15729 /* Return the address of the object. */
15730 exprstmt = build_stmt (input_location, RETURN_EXPR, val);
15731 add_stmt (exprstmt);
15735 /* Do the necessary processing for the beginning of a function body, which
15736 in this case includes member-initializers, but not the catch clauses of
15737 a function-try-block. Currently, this means opening a binding level
15738 for the member-initializers (in a ctor), member cleanups (in a dtor),
15739 and capture proxies (in a lambda operator()). */
15741 tree
15742 begin_function_body (void)
15744 tree stmt;
15746 if (! FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
15747 return NULL_TREE;
15749 if (processing_template_decl)
15750 /* Do nothing now. */;
15751 else
15752 /* Always keep the BLOCK node associated with the outermost pair of
15753 curly braces of a function. These are needed for correct
15754 operation of dwarfout.c. */
15755 keep_next_level (true);
15757 stmt = begin_compound_stmt (BCS_FN_BODY);
15759 if (processing_template_decl)
15760 /* Do nothing now. */;
15761 else if (DECL_DESTRUCTOR_P (current_function_decl))
15762 begin_destructor_body ();
15764 return stmt;
15767 /* Do the processing for the end of a function body. Currently, this means
15768 closing out the cleanups for fully-constructed bases and members, and in
15769 the case of the destructor, deleting the object if desired. Again, this
15770 is only meaningful for [cd]tors, since they are the only functions where
15771 there is a significant distinction between the main body and any
15772 function catch clauses. Handling, say, main() return semantics here
15773 would be wrong, as flowing off the end of a function catch clause for
15774 main() would also need to return 0. */
15776 void
15777 finish_function_body (tree compstmt)
15779 if (compstmt == NULL_TREE)
15780 return;
15782 /* Close the block. */
15783 finish_compound_stmt (compstmt);
15785 if (processing_template_decl)
15786 /* Do nothing now. */;
15787 else if (DECL_CONSTRUCTOR_P (current_function_decl))
15788 finish_constructor_body ();
15789 else if (DECL_DESTRUCTOR_P (current_function_decl))
15790 finish_destructor_body ();
15793 /* Given a function, returns the BLOCK corresponding to the outermost level
15794 of curly braces, skipping the artificial block created for constructor
15795 initializers. */
15797 tree
15798 outer_curly_brace_block (tree fndecl)
15800 tree block = DECL_INITIAL (fndecl);
15801 if (BLOCK_OUTER_CURLY_BRACE_P (block))
15802 return block;
15803 block = BLOCK_SUBBLOCKS (block);
15804 if (BLOCK_OUTER_CURLY_BRACE_P (block))
15805 return block;
15806 block = BLOCK_SUBBLOCKS (block);
15807 gcc_assert (BLOCK_OUTER_CURLY_BRACE_P (block));
15808 return block;
15811 /* If FNDECL is a class's key method, add the class to the list of
15812 keyed classes that should be emitted. */
15814 static void
15815 record_key_method_defined (tree fndecl)
15817 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fndecl)
15818 && DECL_VIRTUAL_P (fndecl)
15819 && !processing_template_decl)
15821 tree fnclass = DECL_CONTEXT (fndecl);
15822 if (fndecl == CLASSTYPE_KEY_METHOD (fnclass))
15823 vec_safe_push (keyed_classes, fnclass);
15827 /* Subroutine of finish_function.
15828 Save the body of constexpr functions for possible
15829 future compile time evaluation. */
15831 static void
15832 maybe_save_function_definition (tree fun)
15834 if (!processing_template_decl
15835 && DECL_DECLARED_CONSTEXPR_P (fun)
15836 && !cp_function_chain->invalid_constexpr
15837 && !DECL_CLONED_FUNCTION_P (fun))
15838 register_constexpr_fundef (fun, DECL_SAVED_TREE (fun));
15841 /* Attempt to add a fix-it hint to RICHLOC suggesting the insertion
15842 of "return *this;" immediately before its location, using FNDECL's
15843 first statement (if any) to give the indentation, if appropriate. */
15845 static void
15846 add_return_star_this_fixit (gcc_rich_location *richloc, tree fndecl)
15848 location_t indent = UNKNOWN_LOCATION;
15849 tree stmts = expr_first (DECL_SAVED_TREE (fndecl));
15850 if (stmts)
15851 indent = EXPR_LOCATION (stmts);
15852 richloc->add_fixit_insert_formatted ("return *this;",
15853 richloc->get_loc (),
15854 indent);
15857 /* Finish up a function declaration and compile that function
15858 all the way to assembler language output. The free the storage
15859 for the function definition. INLINE_P is TRUE if we just
15860 finished processing the body of an in-class inline function
15861 definition. (This processing will have taken place after the
15862 class definition is complete.) */
15864 tree
15865 finish_function (bool inline_p)
15867 tree fndecl = current_function_decl;
15868 tree fntype, ctype = NULL_TREE;
15870 /* When we get some parse errors, we can end up without a
15871 current_function_decl, so cope. */
15872 if (fndecl == NULL_TREE)
15873 return error_mark_node;
15875 finish_lambda_scope ();
15877 if (c_dialect_objc ())
15878 objc_finish_function ();
15880 record_key_method_defined (fndecl);
15882 fntype = TREE_TYPE (fndecl);
15884 /* TREE_READONLY (fndecl) = 1;
15885 This caused &foo to be of type ptr-to-const-function
15886 which then got a warning when stored in a ptr-to-function variable. */
15888 gcc_assert (building_stmt_list_p ());
15889 /* The current function is being defined, so its DECL_INITIAL should
15890 be set, and unless there's a multiple definition, it should be
15891 error_mark_node. */
15892 gcc_assert (DECL_INITIAL (fndecl) == error_mark_node);
15894 /* For a cloned function, we've already got all the code we need;
15895 there's no need to add any extra bits. */
15896 if (!DECL_CLONED_FUNCTION_P (fndecl))
15898 /* Make it so that `main' always returns 0 by default. */
15899 if (DECL_MAIN_P (current_function_decl))
15900 finish_return_stmt (integer_zero_node);
15902 if (use_eh_spec_block (current_function_decl))
15903 finish_eh_spec_block (TYPE_RAISES_EXCEPTIONS
15904 (TREE_TYPE (current_function_decl)),
15905 current_eh_spec_block);
15908 /* If we're saving up tree structure, tie off the function now. */
15909 DECL_SAVED_TREE (fndecl) = pop_stmt_list (DECL_SAVED_TREE (fndecl));
15911 finish_fname_decls ();
15913 /* If this function can't throw any exceptions, remember that. */
15914 if (!processing_template_decl
15915 && !cp_function_chain->can_throw
15916 && !flag_non_call_exceptions
15917 && !decl_replaceable_p (fndecl))
15918 TREE_NOTHROW (fndecl) = 1;
15920 /* This must come after expand_function_end because cleanups might
15921 have declarations (from inline functions) that need to go into
15922 this function's blocks. */
15924 /* If the current binding level isn't the outermost binding level
15925 for this function, either there is a bug, or we have experienced
15926 syntax errors and the statement tree is malformed. */
15927 if (current_binding_level->kind != sk_function_parms)
15929 /* Make sure we have already experienced errors. */
15930 gcc_assert (errorcount);
15932 /* Throw away the broken statement tree and extra binding
15933 levels. */
15934 DECL_SAVED_TREE (fndecl) = alloc_stmt_list ();
15936 while (current_binding_level->kind != sk_function_parms)
15938 if (current_binding_level->kind == sk_class)
15939 pop_nested_class ();
15940 else
15941 poplevel (0, 0, 0);
15944 poplevel (1, 0, 1);
15946 /* Statements should always be full-expressions at the outermost set
15947 of curly braces for a function. */
15948 gcc_assert (stmts_are_full_exprs_p ());
15950 /* If there are no return statements in a function with auto return type,
15951 the return type is void. But if the declared type is something like
15952 auto*, this is an error. */
15953 if (!processing_template_decl && FNDECL_USED_AUTO (fndecl)
15954 && TREE_TYPE (fntype) == current_function_auto_return_pattern)
15956 if (is_auto (current_function_auto_return_pattern))
15958 apply_deduced_return_type (fndecl, void_type_node);
15959 fntype = TREE_TYPE (fndecl);
15961 else if (!current_function_returns_value
15962 && !current_function_returns_null)
15964 error ("no return statements in function returning %qT",
15965 current_function_auto_return_pattern);
15966 inform (input_location, "only plain %<auto%> return type can be "
15967 "deduced to %<void%>");
15971 // If this is a concept, check that the definition is reasonable.
15972 if (DECL_DECLARED_CONCEPT_P (fndecl))
15973 check_function_concept (fndecl);
15975 /* Lambda closure members are implicitly constexpr if possible. */
15976 if (cxx_dialect >= cxx17
15977 && LAMBDA_TYPE_P (CP_DECL_CONTEXT (fndecl)))
15978 DECL_DECLARED_CONSTEXPR_P (fndecl)
15979 = ((processing_template_decl
15980 || is_valid_constexpr_fn (fndecl, /*complain*/false))
15981 && potential_constant_expression (DECL_SAVED_TREE (fndecl)));
15983 /* Save constexpr function body before it gets munged by
15984 the NRV transformation. */
15985 maybe_save_function_definition (fndecl);
15987 /* Invoke the pre-genericize plugin before we start munging things. */
15988 if (!processing_template_decl)
15989 invoke_plugin_callbacks (PLUGIN_PRE_GENERICIZE, fndecl);
15991 /* Perform delayed folding before NRV transformation. */
15992 if (!processing_template_decl)
15993 cp_fold_function (fndecl);
15995 /* Set up the named return value optimization, if we can. Candidate
15996 variables are selected in check_return_expr. */
15997 if (current_function_return_value)
15999 tree r = current_function_return_value;
16000 tree outer;
16002 if (r != error_mark_node
16003 /* This is only worth doing for fns that return in memory--and
16004 simpler, since we don't have to worry about promoted modes. */
16005 && aggregate_value_p (TREE_TYPE (TREE_TYPE (fndecl)), fndecl)
16006 /* Only allow this for variables declared in the outer scope of
16007 the function so we know that their lifetime always ends with a
16008 return; see g++.dg/opt/nrv6.C. We could be more flexible if
16009 we were to do this optimization in tree-ssa. */
16010 && (outer = outer_curly_brace_block (fndecl))
16011 && chain_member (r, BLOCK_VARS (outer)))
16012 finalize_nrv (&DECL_SAVED_TREE (fndecl), r, DECL_RESULT (fndecl));
16014 current_function_return_value = NULL_TREE;
16017 /* Remember that we were in class scope. */
16018 if (current_class_name)
16019 ctype = current_class_type;
16021 /* Must mark the RESULT_DECL as being in this function. */
16022 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
16024 /* Set the BLOCK_SUPERCONTEXT of the outermost function scope to point
16025 to the FUNCTION_DECL node itself. */
16026 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
16028 /* Save away current state, if appropriate. */
16029 if (!processing_template_decl)
16030 save_function_data (fndecl);
16032 /* Complain if there's just no return statement. */
16033 if (warn_return_type
16034 && !VOID_TYPE_P (TREE_TYPE (fntype))
16035 && !dependent_type_p (TREE_TYPE (fntype))
16036 && !current_function_returns_value && !current_function_returns_null
16037 /* Don't complain if we abort or throw. */
16038 && !current_function_returns_abnormally
16039 /* Don't complain if there's an infinite loop. */
16040 && !current_function_infinite_loop
16041 /* Don't complain if we are declared noreturn. */
16042 && !TREE_THIS_VOLATILE (fndecl)
16043 && !DECL_NAME (DECL_RESULT (fndecl))
16044 && !TREE_NO_WARNING (fndecl)
16045 /* Structor return values (if any) are set by the compiler. */
16046 && !DECL_CONSTRUCTOR_P (fndecl)
16047 && !DECL_DESTRUCTOR_P (fndecl)
16048 && targetm.warn_func_return (fndecl))
16050 gcc_rich_location richloc (input_location);
16051 /* Potentially add a "return *this;" fix-it hint for
16052 assignment operators. */
16053 if (IDENTIFIER_ASSIGN_OP_P (DECL_NAME (fndecl)))
16055 tree valtype = TREE_TYPE (DECL_RESULT (fndecl));
16056 if (TREE_CODE (valtype) == REFERENCE_TYPE
16057 && same_type_ignoring_top_level_qualifiers_p
16058 (TREE_TYPE (valtype), TREE_TYPE (current_class_ref)))
16059 if (global_dc->option_enabled (OPT_Wreturn_type,
16060 global_dc->option_state))
16061 add_return_star_this_fixit (&richloc, fndecl);
16063 warning_at (&richloc, OPT_Wreturn_type,
16064 "no return statement in function returning non-void");
16065 TREE_NO_WARNING (fndecl) = 1;
16068 /* Store the end of the function, so that we get good line number
16069 info for the epilogue. */
16070 cfun->function_end_locus = input_location;
16072 /* Complain about parameters that are only set, but never otherwise used. */
16073 if (warn_unused_but_set_parameter
16074 && !processing_template_decl
16075 && errorcount == unused_but_set_errorcount
16076 && !DECL_CLONED_FUNCTION_P (fndecl))
16078 tree decl;
16080 for (decl = DECL_ARGUMENTS (fndecl);
16081 decl;
16082 decl = DECL_CHAIN (decl))
16083 if (TREE_USED (decl)
16084 && TREE_CODE (decl) == PARM_DECL
16085 && !DECL_READ_P (decl)
16086 && DECL_NAME (decl)
16087 && !DECL_ARTIFICIAL (decl)
16088 && !TREE_NO_WARNING (decl)
16089 && !DECL_IN_SYSTEM_HEADER (decl)
16090 && TREE_TYPE (decl) != error_mark_node
16091 && !TYPE_REF_P (TREE_TYPE (decl))
16092 && (!CLASS_TYPE_P (TREE_TYPE (decl))
16093 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (decl))))
16094 warning_at (DECL_SOURCE_LOCATION (decl),
16095 OPT_Wunused_but_set_parameter,
16096 "parameter %qD set but not used", decl);
16097 unused_but_set_errorcount = errorcount;
16100 /* Complain about locally defined typedefs that are not used in this
16101 function. */
16102 maybe_warn_unused_local_typedefs ();
16104 /* Possibly warn about unused parameters. */
16105 if (warn_unused_parameter
16106 && !processing_template_decl
16107 && !DECL_CLONED_FUNCTION_P (fndecl))
16108 do_warn_unused_parameter (fndecl);
16110 /* Genericize before inlining. */
16111 if (!processing_template_decl)
16113 struct language_function *f = DECL_SAVED_FUNCTION_DATA (fndecl);
16114 cp_genericize (fndecl);
16115 /* Clear out the bits we don't need. */
16116 f->x_current_class_ptr = NULL;
16117 f->x_current_class_ref = NULL;
16118 f->x_eh_spec_block = NULL;
16119 f->x_in_charge_parm = NULL;
16120 f->x_vtt_parm = NULL;
16121 f->x_return_value = NULL;
16122 f->bindings = NULL;
16123 f->extern_decl_map = NULL;
16124 f->infinite_loops = NULL;
16127 /* We're leaving the context of this function, so zap cfun. It's still in
16128 DECL_STRUCT_FUNCTION, and we'll restore it in tree_rest_of_compilation. */
16129 set_cfun (NULL);
16130 current_function_decl = NULL;
16132 /* If this is an in-class inline definition, we may have to pop the
16133 bindings for the template parameters that we added in
16134 maybe_begin_member_template_processing when start_function was
16135 called. */
16136 if (inline_p)
16137 maybe_end_member_template_processing ();
16139 /* Leave the scope of the class. */
16140 if (ctype)
16141 pop_nested_class ();
16143 --function_depth;
16145 /* Clean up. */
16146 current_function_decl = NULL_TREE;
16148 invoke_plugin_callbacks (PLUGIN_FINISH_PARSE_FUNCTION, fndecl);
16149 return fndecl;
16152 /* Create the FUNCTION_DECL for a function definition.
16153 DECLSPECS and DECLARATOR are the parts of the declaration;
16154 they describe the return type and the name of the function,
16155 but twisted together in a fashion that parallels the syntax of C.
16157 This function creates a binding context for the function body
16158 as well as setting up the FUNCTION_DECL in current_function_decl.
16160 Returns a FUNCTION_DECL on success.
16162 If the DECLARATOR is not suitable for a function (it defines a datum
16163 instead), we return 0, which tells yyparse to report a parse error.
16165 May return void_type_node indicating that this method is actually
16166 a friend. See grokfield for more details.
16168 Came here with a `.pushlevel' .
16170 DO NOT MAKE ANY CHANGES TO THIS CODE WITHOUT MAKING CORRESPONDING
16171 CHANGES TO CODE IN `grokfield'. */
16173 tree
16174 grokmethod (cp_decl_specifier_seq *declspecs,
16175 const cp_declarator *declarator, tree attrlist)
16177 tree fndecl = grokdeclarator (declarator, declspecs, MEMFUNCDEF, 0,
16178 &attrlist);
16180 if (fndecl == error_mark_node)
16181 return error_mark_node;
16183 if (fndecl == NULL || TREE_CODE (fndecl) != FUNCTION_DECL)
16185 error ("invalid member function declaration");
16186 return error_mark_node;
16189 if (attrlist)
16190 cplus_decl_attributes (&fndecl, attrlist, 0);
16192 /* Pass friends other than inline friend functions back. */
16193 if (fndecl == void_type_node)
16194 return fndecl;
16196 if (DECL_IN_AGGR_P (fndecl))
16198 if (DECL_CLASS_SCOPE_P (fndecl))
16199 error ("%qD is already defined in class %qT", fndecl,
16200 DECL_CONTEXT (fndecl));
16201 return error_mark_node;
16204 check_template_shadow (fndecl);
16206 if (TREE_PUBLIC (fndecl))
16207 DECL_COMDAT (fndecl) = 1;
16208 DECL_DECLARED_INLINE_P (fndecl) = 1;
16209 DECL_NO_INLINE_WARNING_P (fndecl) = 1;
16211 /* We process method specializations in finish_struct_1. */
16212 if (processing_template_decl && !DECL_TEMPLATE_SPECIALIZATION (fndecl))
16214 fndecl = push_template_decl (fndecl);
16215 if (fndecl == error_mark_node)
16216 return fndecl;
16219 if (! DECL_FRIEND_P (fndecl))
16221 if (DECL_CHAIN (fndecl))
16223 fndecl = copy_node (fndecl);
16224 TREE_CHAIN (fndecl) = NULL_TREE;
16228 cp_finish_decl (fndecl, NULL_TREE, false, NULL_TREE, 0);
16230 DECL_IN_AGGR_P (fndecl) = 1;
16231 return fndecl;
16235 /* VAR is a VAR_DECL. If its type is incomplete, remember VAR so that
16236 we can lay it out later, when and if its type becomes complete.
16238 Also handle constexpr variables where the initializer involves
16239 an unlowered PTRMEM_CST because the class isn't complete yet. */
16241 void
16242 maybe_register_incomplete_var (tree var)
16244 gcc_assert (VAR_P (var));
16246 /* Keep track of variables with incomplete types. */
16247 if (!processing_template_decl && TREE_TYPE (var) != error_mark_node
16248 && DECL_EXTERNAL (var))
16250 tree inner_type = TREE_TYPE (var);
16252 while (TREE_CODE (inner_type) == ARRAY_TYPE)
16253 inner_type = TREE_TYPE (inner_type);
16254 inner_type = TYPE_MAIN_VARIANT (inner_type);
16256 if ((!COMPLETE_TYPE_P (inner_type) && CLASS_TYPE_P (inner_type))
16257 /* RTTI TD entries are created while defining the type_info. */
16258 || (TYPE_LANG_SPECIFIC (inner_type)
16259 && TYPE_BEING_DEFINED (inner_type)))
16261 incomplete_var iv = {var, inner_type};
16262 vec_safe_push (incomplete_vars, iv);
16264 else if (!(DECL_LANG_SPECIFIC (var) && DECL_TEMPLATE_INFO (var))
16265 && decl_constant_var_p (var)
16266 && (TYPE_PTRMEM_P (inner_type) || CLASS_TYPE_P (inner_type)))
16268 /* When the outermost open class is complete we can resolve any
16269 pointers-to-members. */
16270 tree context = outermost_open_class ();
16271 incomplete_var iv = {var, context};
16272 vec_safe_push (incomplete_vars, iv);
16277 /* Called when a class type (given by TYPE) is defined. If there are
16278 any existing VAR_DECLs whose type has been completed by this
16279 declaration, update them now. */
16281 void
16282 complete_vars (tree type)
16284 unsigned ix;
16285 incomplete_var *iv;
16287 for (ix = 0; vec_safe_iterate (incomplete_vars, ix, &iv); )
16289 if (same_type_p (type, iv->incomplete_type))
16291 tree var = iv->decl;
16292 tree type = TREE_TYPE (var);
16294 if (type != error_mark_node
16295 && (TYPE_MAIN_VARIANT (strip_array_types (type))
16296 == iv->incomplete_type))
16298 /* Complete the type of the variable. The VAR_DECL itself
16299 will be laid out in expand_expr. */
16300 complete_type (type);
16301 cp_apply_type_quals_to_decl (cp_type_quals (type), var);
16304 /* Remove this entry from the list. */
16305 incomplete_vars->unordered_remove (ix);
16307 else
16308 ix++;
16311 /* Check for pending declarations which may have abstract type. */
16312 complete_type_check_abstract (type);
16315 /* If DECL is of a type which needs a cleanup, build and return an
16316 expression to perform that cleanup here. Return NULL_TREE if no
16317 cleanup need be done. DECL can also be a _REF when called from
16318 split_nonconstant_init_1. */
16320 tree
16321 cxx_maybe_build_cleanup (tree decl, tsubst_flags_t complain)
16323 tree type;
16324 tree attr;
16325 tree cleanup;
16327 /* Assume no cleanup is required. */
16328 cleanup = NULL_TREE;
16330 if (error_operand_p (decl))
16331 return cleanup;
16333 /* Handle "__attribute__((cleanup))". We run the cleanup function
16334 before the destructor since the destructor is what actually
16335 terminates the lifetime of the object. */
16336 if (DECL_P (decl))
16337 attr = lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl));
16338 else
16339 attr = NULL_TREE;
16340 if (attr)
16342 tree id;
16343 tree fn;
16344 tree arg;
16346 /* Get the name specified by the user for the cleanup function. */
16347 id = TREE_VALUE (TREE_VALUE (attr));
16348 /* Look up the name to find the cleanup function to call. It is
16349 important to use lookup_name here because that is what is
16350 used in c-common.c:handle_cleanup_attribute when performing
16351 initial checks on the attribute. Note that those checks
16352 include ensuring that the function found is not an overloaded
16353 function, or an object with an overloaded call operator,
16354 etc.; we can rely on the fact that the function found is an
16355 ordinary FUNCTION_DECL. */
16356 fn = lookup_name (id);
16357 arg = build_address (decl);
16358 if (!mark_used (decl, complain) && !(complain & tf_error))
16359 return error_mark_node;
16360 cleanup = cp_build_function_call_nary (fn, complain, arg, NULL_TREE);
16361 if (cleanup == error_mark_node)
16362 return error_mark_node;
16364 /* Handle ordinary C++ destructors. */
16365 type = TREE_TYPE (decl);
16366 if (type_build_dtor_call (type))
16368 int flags = LOOKUP_NORMAL|LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR;
16369 tree addr;
16370 tree call;
16372 if (TREE_CODE (type) == ARRAY_TYPE)
16373 addr = decl;
16374 else
16375 addr = build_address (decl);
16377 call = build_delete (TREE_TYPE (addr), addr,
16378 sfk_complete_destructor, flags, 0, complain);
16379 if (call == error_mark_node)
16380 cleanup = error_mark_node;
16381 else if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
16382 /* Discard the call. */;
16383 else if (cleanup)
16384 cleanup = cp_build_compound_expr (cleanup, call, complain);
16385 else
16386 cleanup = call;
16389 /* build_delete sets the location of the destructor call to the
16390 current location, even though the destructor is going to be
16391 called later, at the end of the current scope. This can lead to
16392 a "jumpy" behavior for users of debuggers when they step around
16393 the end of the block. So let's unset the location of the
16394 destructor call instead. */
16395 protected_set_expr_location (cleanup, UNKNOWN_LOCATION);
16397 if (cleanup
16398 && DECL_P (decl)
16399 && !lookup_attribute ("warn_unused", TYPE_ATTRIBUTES (TREE_TYPE (decl)))
16400 /* Treat objects with destructors as used; the destructor may do
16401 something substantive. */
16402 && !mark_used (decl, complain) && !(complain & tf_error))
16403 return error_mark_node;
16405 return cleanup;
16409 /* Return the FUNCTION_TYPE that corresponds to MEMFNTYPE, which can be a
16410 FUNCTION_DECL, METHOD_TYPE, FUNCTION_TYPE, pointer or reference to
16411 METHOD_TYPE or FUNCTION_TYPE, or pointer to member function. */
16413 tree
16414 static_fn_type (tree memfntype)
16416 tree fntype;
16417 tree args;
16419 if (TYPE_PTRMEMFUNC_P (memfntype))
16420 memfntype = TYPE_PTRMEMFUNC_FN_TYPE (memfntype);
16421 if (INDIRECT_TYPE_P (memfntype)
16422 || TREE_CODE (memfntype) == FUNCTION_DECL)
16423 memfntype = TREE_TYPE (memfntype);
16424 if (TREE_CODE (memfntype) == FUNCTION_TYPE)
16425 return memfntype;
16426 gcc_assert (TREE_CODE (memfntype) == METHOD_TYPE);
16427 args = TYPE_ARG_TYPES (memfntype);
16428 fntype = build_function_type (TREE_TYPE (memfntype), TREE_CHAIN (args));
16429 fntype = apply_memfn_quals (fntype, type_memfn_quals (memfntype));
16430 fntype = (cp_build_type_attribute_variant
16431 (fntype, TYPE_ATTRIBUTES (memfntype)));
16432 fntype = cxx_copy_lang_qualifiers (fntype, memfntype);
16433 return fntype;
16436 /* DECL was originally constructed as a non-static member function,
16437 but turned out to be static. Update it accordingly. */
16439 void
16440 revert_static_member_fn (tree decl)
16442 tree stype = static_fn_type (decl);
16443 cp_cv_quals quals = type_memfn_quals (stype);
16444 cp_ref_qualifier rqual = type_memfn_rqual (stype);
16446 if (quals != TYPE_UNQUALIFIED || rqual != REF_QUAL_NONE)
16447 stype = apply_memfn_quals (stype, TYPE_UNQUALIFIED, REF_QUAL_NONE);
16449 TREE_TYPE (decl) = stype;
16451 if (DECL_ARGUMENTS (decl))
16452 DECL_ARGUMENTS (decl) = DECL_CHAIN (DECL_ARGUMENTS (decl));
16453 DECL_STATIC_FUNCTION_P (decl) = 1;
16456 /* Return which tree structure is used by T, or TS_CP_GENERIC if T is
16457 one of the language-independent trees. */
16459 enum cp_tree_node_structure_enum
16460 cp_tree_node_structure (union lang_tree_node * t)
16462 switch (TREE_CODE (&t->generic))
16464 case DEFAULT_ARG: return TS_CP_DEFAULT_ARG;
16465 case DEFERRED_NOEXCEPT: return TS_CP_DEFERRED_NOEXCEPT;
16466 case IDENTIFIER_NODE: return TS_CP_IDENTIFIER;
16467 case OVERLOAD: return TS_CP_OVERLOAD;
16468 case TEMPLATE_PARM_INDEX: return TS_CP_TPI;
16469 case PTRMEM_CST: return TS_CP_PTRMEM;
16470 case BASELINK: return TS_CP_BASELINK;
16471 case TEMPLATE_DECL: return TS_CP_TEMPLATE_DECL;
16472 case STATIC_ASSERT: return TS_CP_STATIC_ASSERT;
16473 case ARGUMENT_PACK_SELECT: return TS_CP_ARGUMENT_PACK_SELECT;
16474 case TRAIT_EXPR: return TS_CP_TRAIT_EXPR;
16475 case LAMBDA_EXPR: return TS_CP_LAMBDA_EXPR;
16476 case TEMPLATE_INFO: return TS_CP_TEMPLATE_INFO;
16477 case CONSTRAINT_INFO: return TS_CP_CONSTRAINT_INFO;
16478 case USERDEF_LITERAL: return TS_CP_USERDEF_LITERAL;
16479 default: return TS_CP_GENERIC;
16483 /* Build the void_list_node (void_type_node having been created). */
16484 tree
16485 build_void_list_node (void)
16487 tree t = build_tree_list (NULL_TREE, void_type_node);
16488 return t;
16491 bool
16492 cp_missing_noreturn_ok_p (tree decl)
16494 /* A missing noreturn is ok for the `main' function. */
16495 return DECL_MAIN_P (decl);
16498 /* Return the decl used to identify the COMDAT group into which DECL should
16499 be placed. */
16501 tree
16502 cxx_comdat_group (tree decl)
16504 /* Virtual tables, construction virtual tables, and virtual table
16505 tables all go in a single COMDAT group, named after the primary
16506 virtual table. */
16507 if (VAR_P (decl) && DECL_VTABLE_OR_VTT_P (decl))
16508 decl = CLASSTYPE_VTABLES (DECL_CONTEXT (decl));
16509 /* For all other DECLs, the COMDAT group is the mangled name of the
16510 declaration itself. */
16511 else
16513 while (DECL_THUNK_P (decl))
16515 /* If TARGET_USE_LOCAL_THUNK_ALIAS_P, use_thunk puts the thunk
16516 into the same section as the target function. In that case
16517 we must return target's name. */
16518 tree target = THUNK_TARGET (decl);
16519 if (TARGET_USE_LOCAL_THUNK_ALIAS_P (target)
16520 && DECL_SECTION_NAME (target) != NULL
16521 && DECL_ONE_ONLY (target))
16522 decl = target;
16523 else
16524 break;
16528 return decl;
16531 /* Returns the return type for FN as written by the user, which may include
16532 a placeholder for a deduced return type. */
16534 tree
16535 fndecl_declared_return_type (tree fn)
16537 fn = STRIP_TEMPLATE (fn);
16538 if (FNDECL_USED_AUTO (fn))
16540 struct language_function *f = NULL;
16541 if (DECL_STRUCT_FUNCTION (fn))
16542 f = DECL_STRUCT_FUNCTION (fn)->language;
16543 if (f == NULL)
16544 f = DECL_SAVED_FUNCTION_DATA (fn);
16545 return f->x_auto_return_pattern;
16547 return TREE_TYPE (TREE_TYPE (fn));
16550 /* Returns true iff DECL is a variable or function declared with an auto type
16551 that has not yet been deduced to a real type. */
16553 bool
16554 undeduced_auto_decl (tree decl)
16556 if (cxx_dialect < cxx11)
16557 return false;
16558 return ((VAR_OR_FUNCTION_DECL_P (decl)
16559 || TREE_CODE (decl) == TEMPLATE_DECL)
16560 && type_uses_auto (TREE_TYPE (decl)));
16563 /* Complain if DECL has an undeduced return type. */
16565 bool
16566 require_deduced_type (tree decl, tsubst_flags_t complain)
16568 if (undeduced_auto_decl (decl))
16570 if (complain & tf_error)
16571 error ("use of %qD before deduction of %<auto%>", decl);
16572 return false;
16574 return true;
16577 /* Create a representation of the explicit-specifier with
16578 constant-expression of EXPR. COMPLAIN is as for tsubst. */
16580 tree
16581 build_explicit_specifier (tree expr, tsubst_flags_t complain)
16583 if (processing_template_decl && value_dependent_expression_p (expr))
16584 /* Wait for instantiation, tsubst_function_decl will handle it. */
16585 return expr;
16587 expr = build_converted_constant_expr (boolean_type_node, expr, complain);
16588 expr = instantiate_non_dependent_expr (expr);
16589 expr = cxx_constant_value (expr);
16590 return expr;
16593 #include "gt-cp-decl.h"