PR tree-optimization/85699
[official-gcc.git] / gcc / cp / decl.c
blobfccddd54d69928ef958924a4a082e1fd4545a3a4
1 /* Process declarations and variables for C++ compiler.
2 Copyright (C) 1988-2018 Free Software Foundation, Inc.
3 Contributed by Michael Tiemann (tiemann@cygnus.com)
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
22 /* Process declarations and symbol lookup for C++ front end.
23 Also constructs types; the standard scalar types at initialization,
24 and structure, union, array and enum types when they are declared. */
26 /* ??? not all decl nodes are given the most useful possible
27 line numbers. For example, the CONST_DECLs for enum values. */
29 #include "config.h"
30 #include "system.h"
31 #include "coretypes.h"
32 #include "target.h"
33 #include "c-family/c-target.h"
34 #include "cp-tree.h"
35 #include "timevar.h"
36 #include "stringpool.h"
37 #include "cgraph.h"
38 #include "stor-layout.h"
39 #include "varasm.h"
40 #include "attribs.h"
41 #include "flags.h"
42 #include "tree-iterator.h"
43 #include "decl.h"
44 #include "intl.h"
45 #include "toplev.h"
46 #include "c-family/c-objc.h"
47 #include "c-family/c-pragma.h"
48 #include "c-family/c-ubsan.h"
49 #include "debug.h"
50 #include "plugin.h"
51 #include "builtins.h"
52 #include "gimplify.h"
53 #include "asan.h"
55 /* Possible cases of bad specifiers type used by bad_specifiers. */
56 enum bad_spec_place {
57 BSP_VAR, /* variable */
58 BSP_PARM, /* parameter */
59 BSP_TYPE, /* type */
60 BSP_FIELD /* field */
63 static const char *redeclaration_error_message (tree, tree);
65 static int decl_jump_unsafe (tree);
66 static void require_complete_types_for_parms (tree);
67 static void push_local_name (tree);
68 static tree grok_reference_init (tree, tree, tree, int);
69 static tree grokvardecl (tree, tree, tree, const cp_decl_specifier_seq *,
70 int, int, int, bool, int, tree);
71 static int check_static_variable_definition (tree, tree);
72 static void record_unknown_type (tree, const char *);
73 static tree builtin_function_1 (tree, tree, bool);
74 static int member_function_or_else (tree, tree, enum overload_flags);
75 static tree local_variable_p_walkfn (tree *, int *, void *);
76 static const char *tag_name (enum tag_types);
77 static tree lookup_and_check_tag (enum tag_types, tree, tag_scope, bool);
78 static void maybe_deduce_size_from_array_init (tree, tree);
79 static void layout_var_decl (tree);
80 static tree check_initializer (tree, tree, int, vec<tree, va_gc> **);
81 static void make_rtl_for_nonlocal_decl (tree, tree, const char *);
82 static void save_function_data (tree);
83 static void copy_type_enum (tree , tree);
84 static void check_function_type (tree, tree);
85 static void finish_constructor_body (void);
86 static void begin_destructor_body (void);
87 static void finish_destructor_body (void);
88 static void record_key_method_defined (tree);
89 static tree create_array_type_for_decl (tree, tree, tree);
90 static tree get_atexit_node (void);
91 static tree get_dso_handle_node (void);
92 static tree start_cleanup_fn (void);
93 static void end_cleanup_fn (void);
94 static tree cp_make_fname_decl (location_t, tree, int);
95 static void initialize_predefined_identifiers (void);
96 static tree check_special_function_return_type
97 (special_function_kind, tree, tree, int, const location_t*);
98 static tree push_cp_library_fn (enum tree_code, tree, int);
99 static tree build_cp_library_fn (tree, enum tree_code, tree, int);
100 static void store_parm_decls (tree);
101 static void initialize_local_var (tree, tree);
102 static void expand_static_init (tree, tree);
104 /* The following symbols are subsumed in the cp_global_trees array, and
105 listed here individually for documentation purposes.
107 C++ extensions
108 tree wchar_decl_node;
110 tree vtable_entry_type;
111 tree delta_type_node;
112 tree __t_desc_type_node;
114 tree class_type_node;
115 tree unknown_type_node;
117 Array type `vtable_entry_type[]'
119 tree vtbl_type_node;
120 tree vtbl_ptr_type_node;
122 Namespaces,
124 tree std_node;
125 tree abi_node;
127 A FUNCTION_DECL which can call `abort'. Not necessarily the
128 one that the user will declare, but sufficient to be called
129 by routines that want to abort the program.
131 tree abort_fndecl;
133 Used by RTTI
134 tree type_info_type_node, tinfo_decl_id, tinfo_decl_type;
135 tree tinfo_var_id; */
137 tree cp_global_trees[CPTI_MAX];
139 #define local_names cp_function_chain->x_local_names
141 /* A list of objects which have constructors or destructors
142 which reside in the global scope. The decl is stored in
143 the TREE_VALUE slot and the initializer is stored
144 in the TREE_PURPOSE slot. */
145 tree static_aggregates;
147 /* Like static_aggregates, but for thread_local variables. */
148 tree tls_aggregates;
150 /* -- end of C++ */
152 /* A node for the integer constant 2. */
154 tree integer_two_node;
156 /* vector of static decls. */
157 vec<tree, va_gc> *static_decls;
159 /* vector of keyed classes. */
160 vec<tree, va_gc> *keyed_classes;
162 /* Used only for jumps to as-yet undefined labels, since jumps to
163 defined labels can have their validity checked immediately. */
165 struct GTY((chain_next ("%h.next"))) named_label_use_entry {
166 struct named_label_use_entry *next;
167 /* The binding level to which this entry is *currently* attached.
168 This is initially the binding level in which the goto appeared,
169 but is modified as scopes are closed. */
170 cp_binding_level *binding_level;
171 /* The head of the names list that was current when the goto appeared,
172 or the inner scope popped. These are the decls that will *not* be
173 skipped when jumping to the label. */
174 tree names_in_scope;
175 /* The location of the goto, for error reporting. */
176 location_t o_goto_locus;
177 /* True if an OpenMP structured block scope has been closed since
178 the goto appeared. This means that the branch from the label will
179 illegally exit an OpenMP scope. */
180 bool in_omp_scope;
183 /* A list of all LABEL_DECLs in the function that have names. Here so
184 we can clear out their names' definitions at the end of the
185 function, and so we can check the validity of jumps to these labels. */
187 struct GTY((for_user)) named_label_entry {
189 tree name; /* Name of decl. */
191 tree label_decl; /* LABEL_DECL, unless deleted local label. */
193 named_label_entry *outer; /* Outer shadowed chain. */
195 /* The binding level to which the label is *currently* attached.
196 This is initially set to the binding level in which the label
197 is defined, but is modified as scopes are closed. */
198 cp_binding_level *binding_level;
200 /* The head of the names list that was current when the label was
201 defined, or the inner scope popped. These are the decls that will
202 be skipped when jumping to the label. */
203 tree names_in_scope;
205 /* A vector of all decls from all binding levels that would be
206 crossed by a backward branch to the label. */
207 vec<tree, va_gc> *bad_decls;
209 /* A list of uses of the label, before the label is defined. */
210 named_label_use_entry *uses;
212 /* The following bits are set after the label is defined, and are
213 updated as scopes are popped. They indicate that a jump to the
214 label will illegally enter a scope of the given flavor. */
215 bool in_try_scope;
216 bool in_catch_scope;
217 bool in_omp_scope;
218 bool in_transaction_scope;
219 bool in_constexpr_if;
222 #define named_labels cp_function_chain->x_named_labels
224 /* The number of function bodies which we are currently processing.
225 (Zero if we are at namespace scope, one inside the body of a
226 function, two inside the body of a function in a local class, etc.) */
227 int function_depth;
229 /* Whether the exception-specifier is part of a function type (i.e. C++17). */
230 bool flag_noexcept_type;
232 /* States indicating how grokdeclarator() should handle declspecs marked
233 with __attribute__((deprecated)). An object declared as
234 __attribute__((deprecated)) suppresses warnings of uses of other
235 deprecated items. */
236 enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
239 /* A list of VAR_DECLs whose type was incomplete at the time the
240 variable was declared. */
242 struct GTY(()) incomplete_var {
243 tree decl;
244 tree incomplete_type;
248 static GTY(()) vec<incomplete_var, va_gc> *incomplete_vars;
250 /* Returns the kind of template specialization we are currently
251 processing, given that it's declaration contained N_CLASS_SCOPES
252 explicit scope qualifications. */
254 tmpl_spec_kind
255 current_tmpl_spec_kind (int n_class_scopes)
257 int n_template_parm_scopes = 0;
258 int seen_specialization_p = 0;
259 int innermost_specialization_p = 0;
260 cp_binding_level *b;
262 /* Scan through the template parameter scopes. */
263 for (b = current_binding_level;
264 b->kind == sk_template_parms;
265 b = b->level_chain)
267 /* If we see a specialization scope inside a parameter scope,
268 then something is wrong. That corresponds to a declaration
269 like:
271 template <class T> template <> ...
273 which is always invalid since [temp.expl.spec] forbids the
274 specialization of a class member template if the enclosing
275 class templates are not explicitly specialized as well. */
276 if (b->explicit_spec_p)
278 if (n_template_parm_scopes == 0)
279 innermost_specialization_p = 1;
280 else
281 seen_specialization_p = 1;
283 else if (seen_specialization_p == 1)
284 return tsk_invalid_member_spec;
286 ++n_template_parm_scopes;
289 /* Handle explicit instantiations. */
290 if (processing_explicit_instantiation)
292 if (n_template_parm_scopes != 0)
293 /* We've seen a template parameter list during an explicit
294 instantiation. For example:
296 template <class T> template void f(int);
298 This is erroneous. */
299 return tsk_invalid_expl_inst;
300 else
301 return tsk_expl_inst;
304 if (n_template_parm_scopes < n_class_scopes)
305 /* We've not seen enough template headers to match all the
306 specialized classes present. For example:
308 template <class T> void R<T>::S<T>::f(int);
310 This is invalid; there needs to be one set of template
311 parameters for each class. */
312 return tsk_insufficient_parms;
313 else if (n_template_parm_scopes == n_class_scopes)
314 /* We're processing a non-template declaration (even though it may
315 be a member of a template class.) For example:
317 template <class T> void S<T>::f(int);
319 The `class T' matches the `S<T>', leaving no template headers
320 corresponding to the `f'. */
321 return tsk_none;
322 else if (n_template_parm_scopes > n_class_scopes + 1)
323 /* We've got too many template headers. For example:
325 template <> template <class T> void f (T);
327 There need to be more enclosing classes. */
328 return tsk_excessive_parms;
329 else
330 /* This must be a template. It's of the form:
332 template <class T> template <class U> void S<T>::f(U);
334 This is a specialization if the innermost level was a
335 specialization; otherwise it's just a definition of the
336 template. */
337 return innermost_specialization_p ? tsk_expl_spec : tsk_template;
340 /* Exit the current scope. */
342 void
343 finish_scope (void)
345 poplevel (0, 0, 0);
348 /* When a label goes out of scope, check to see if that label was used
349 in a valid manner, and issue any appropriate warnings or errors. */
351 static void
352 check_label_used (tree label)
354 if (!processing_template_decl)
356 if (DECL_INITIAL (label) == NULL_TREE)
358 location_t location;
360 error ("label %q+D used but not defined", label);
361 location = input_location;
362 /* FIXME want (LOCATION_FILE (input_location), (line)0) */
363 /* Avoid crashing later. */
364 define_label (location, DECL_NAME (label));
366 else
367 warn_for_unused_label (label);
371 /* Helper function to sort named label entries in a vector by DECL_UID. */
373 static int
374 sort_labels (const void *a, const void *b)
376 tree label1 = *(tree const *) a;
377 tree label2 = *(tree const *) b;
379 /* DECL_UIDs can never be equal. */
380 return DECL_UID (label1) > DECL_UID (label2) ? -1 : +1;
383 /* At the end of a function, all labels declared within the function
384 go out of scope. BLOCK is the top-level block for the
385 function. */
387 static void
388 pop_labels (tree block)
390 if (!named_labels)
391 return;
393 /* We need to add the labels to the block chain, so debug
394 information is emitted. But, we want the order to be stable so
395 need to sort them first. Otherwise the debug output could be
396 randomly ordered. I guess it's mostly stable, unless the hash
397 table implementation changes. */
398 auto_vec<tree, 32> labels (named_labels->elements ());
399 hash_table<named_label_hash>::iterator end (named_labels->end ());
400 for (hash_table<named_label_hash>::iterator iter
401 (named_labels->begin ()); iter != end; ++iter)
403 named_label_entry *ent = *iter;
405 gcc_checking_assert (!ent->outer);
406 if (ent->label_decl)
407 labels.quick_push (ent->label_decl);
408 ggc_free (ent);
410 named_labels = NULL;
411 labels.qsort (sort_labels);
413 while (labels.length ())
415 tree label = labels.pop ();
417 DECL_CHAIN (label) = BLOCK_VARS (block);
418 BLOCK_VARS (block) = label;
420 check_label_used (label);
424 /* At the end of a block with local labels, restore the outer definition. */
426 static void
427 pop_local_label (tree id, tree label)
429 check_label_used (label);
430 named_label_entry **slot = named_labels->find_slot_with_hash
431 (id, IDENTIFIER_HASH_VALUE (id), NO_INSERT);
432 named_label_entry *ent = *slot;
434 if (ent->outer)
435 ent = ent->outer;
436 else
438 ent = ggc_cleared_alloc<named_label_entry> ();
439 ent->name = id;
441 *slot = ent;
444 /* The following two routines are used to interface to Objective-C++.
445 The binding level is purposely treated as an opaque type. */
447 void *
448 objc_get_current_scope (void)
450 return current_binding_level;
453 /* The following routine is used by the NeXT-style SJLJ exceptions;
454 variables get marked 'volatile' so as to not be clobbered by
455 _setjmp()/_longjmp() calls. All variables in the current scope,
456 as well as parent scopes up to (but not including) ENCLOSING_BLK
457 shall be thusly marked. */
459 void
460 objc_mark_locals_volatile (void *enclosing_blk)
462 cp_binding_level *scope;
464 for (scope = current_binding_level;
465 scope && scope != enclosing_blk;
466 scope = scope->level_chain)
468 tree decl;
470 for (decl = scope->names; decl; decl = TREE_CHAIN (decl))
471 objc_volatilize_decl (decl);
473 /* Do not climb up past the current function. */
474 if (scope->kind == sk_function_parms)
475 break;
479 /* True if B is the level for the condition of a constexpr if. */
481 static bool
482 level_for_constexpr_if (cp_binding_level *b)
484 return (b->kind == sk_cond && b->this_entity
485 && TREE_CODE (b->this_entity) == IF_STMT
486 && IF_STMT_CONSTEXPR_P (b->this_entity));
489 /* Update data for defined and undefined labels when leaving a scope. */
492 poplevel_named_label_1 (named_label_entry **slot, cp_binding_level *bl)
494 named_label_entry *ent = *slot;
495 cp_binding_level *obl = bl->level_chain;
497 if (ent->binding_level == bl)
499 tree decl;
501 /* ENT->NAMES_IN_SCOPE may contain a mixture of DECLs and
502 TREE_LISTs representing OVERLOADs, so be careful. */
503 for (decl = ent->names_in_scope; decl; decl = (DECL_P (decl)
504 ? DECL_CHAIN (decl)
505 : TREE_CHAIN (decl)))
506 if (decl_jump_unsafe (decl))
507 vec_safe_push (ent->bad_decls, decl);
509 ent->binding_level = obl;
510 ent->names_in_scope = obl->names;
511 switch (bl->kind)
513 case sk_try:
514 ent->in_try_scope = true;
515 break;
516 case sk_catch:
517 ent->in_catch_scope = true;
518 break;
519 case sk_omp:
520 ent->in_omp_scope = true;
521 break;
522 case sk_transaction:
523 ent->in_transaction_scope = true;
524 break;
525 case sk_block:
526 if (level_for_constexpr_if (bl->level_chain))
527 ent->in_constexpr_if = true;
528 break;
529 default:
530 break;
533 else if (ent->uses)
535 struct named_label_use_entry *use;
537 for (use = ent->uses; use ; use = use->next)
538 if (use->binding_level == bl)
540 use->binding_level = obl;
541 use->names_in_scope = obl->names;
542 if (bl->kind == sk_omp)
543 use->in_omp_scope = true;
547 return 1;
550 /* Saved errorcount to avoid -Wunused-but-set-{parameter,variable} warnings
551 when errors were reported, except for -Werror-unused-but-set-*. */
552 static int unused_but_set_errorcount;
554 /* Exit a binding level.
555 Pop the level off, and restore the state of the identifier-decl mappings
556 that were in effect when this level was entered.
558 If KEEP == 1, this level had explicit declarations, so
559 and create a "block" (a BLOCK node) for the level
560 to record its declarations and subblocks for symbol table output.
562 If FUNCTIONBODY is nonzero, this level is the body of a function,
563 so create a block as if KEEP were set and also clear out all
564 label names.
566 If REVERSE is nonzero, reverse the order of decls before putting
567 them into the BLOCK. */
569 tree
570 poplevel (int keep, int reverse, int functionbody)
572 tree link;
573 /* The chain of decls was accumulated in reverse order.
574 Put it into forward order, just for cleanliness. */
575 tree decls;
576 tree subblocks;
577 tree block;
578 tree decl;
579 scope_kind kind;
581 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
582 restart:
584 block = NULL_TREE;
586 gcc_assert (current_binding_level->kind != sk_class
587 && current_binding_level->kind != sk_namespace);
589 if (current_binding_level->kind == sk_cleanup)
590 functionbody = 0;
591 subblocks = functionbody >= 0 ? current_binding_level->blocks : 0;
593 gcc_assert (!vec_safe_length (current_binding_level->class_shadowed));
595 /* We used to use KEEP == 2 to indicate that the new block should go
596 at the beginning of the list of blocks at this binding level,
597 rather than the end. This hack is no longer used. */
598 gcc_assert (keep == 0 || keep == 1);
600 if (current_binding_level->keep)
601 keep = 1;
603 /* Any uses of undefined labels, and any defined labels, now operate
604 under constraints of next binding contour. */
605 if (cfun && !functionbody && named_labels)
606 named_labels->traverse<cp_binding_level *, poplevel_named_label_1>
607 (current_binding_level);
609 /* Get the decls in the order they were written.
610 Usually current_binding_level->names is in reverse order.
611 But parameter decls were previously put in forward order. */
613 decls = current_binding_level->names;
614 if (reverse)
616 decls = nreverse (decls);
617 current_binding_level->names = decls;
620 /* If there were any declarations or structure tags in that level,
621 or if this level is a function body,
622 create a BLOCK to record them for the life of this function. */
623 block = NULL_TREE;
624 /* Avoid function body block if possible. */
625 if (functionbody && subblocks && BLOCK_CHAIN (subblocks) == NULL_TREE)
626 keep = 0;
627 else if (keep == 1 || functionbody)
628 block = make_node (BLOCK);
629 if (block != NULL_TREE)
631 BLOCK_VARS (block) = decls;
632 BLOCK_SUBBLOCKS (block) = subblocks;
635 /* In each subblock, record that this is its superior. */
636 if (keep >= 0)
637 for (link = subblocks; link; link = BLOCK_CHAIN (link))
638 BLOCK_SUPERCONTEXT (link) = block;
640 /* Before we remove the declarations first check for unused variables. */
641 if ((warn_unused_variable || warn_unused_but_set_variable)
642 && current_binding_level->kind != sk_template_parms
643 && !processing_template_decl)
644 for (tree d = get_local_decls (); d; d = TREE_CHAIN (d))
646 /* There are cases where D itself is a TREE_LIST. See in
647 push_local_binding where the list of decls returned by
648 getdecls is built. */
649 decl = TREE_CODE (d) == TREE_LIST ? TREE_VALUE (d) : d;
651 tree type = TREE_TYPE (decl);
652 if (VAR_P (decl)
653 && (! TREE_USED (decl) || !DECL_READ_P (decl))
654 && ! DECL_IN_SYSTEM_HEADER (decl)
655 /* For structured bindings, consider only real variables, not
656 subobjects. */
657 && (DECL_DECOMPOSITION_P (decl) ? !DECL_DECOMP_BASE (decl)
658 : (DECL_NAME (decl) && !DECL_ARTIFICIAL (decl)))
659 && type != error_mark_node
660 && (!CLASS_TYPE_P (type)
661 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
662 || lookup_attribute ("warn_unused",
663 TYPE_ATTRIBUTES (TREE_TYPE (decl)))))
665 if (! TREE_USED (decl))
667 if (!DECL_NAME (decl) && DECL_DECOMPOSITION_P (decl))
668 warning_at (DECL_SOURCE_LOCATION (decl),
669 OPT_Wunused_variable,
670 "unused structured binding declaration");
671 else
672 warning_at (DECL_SOURCE_LOCATION (decl),
673 OPT_Wunused_variable, "unused variable %qD", decl);
675 else if (DECL_CONTEXT (decl) == current_function_decl
676 // For -Wunused-but-set-variable leave references alone.
677 && TREE_CODE (TREE_TYPE (decl)) != REFERENCE_TYPE
678 && errorcount == unused_but_set_errorcount)
680 if (!DECL_NAME (decl) && DECL_DECOMPOSITION_P (decl))
681 warning_at (DECL_SOURCE_LOCATION (decl),
682 OPT_Wunused_but_set_variable, "structured "
683 "binding declaration set but not used");
684 else
685 warning_at (DECL_SOURCE_LOCATION (decl),
686 OPT_Wunused_but_set_variable,
687 "variable %qD set but not used", decl);
688 unused_but_set_errorcount = errorcount;
693 /* Remove declarations for all the DECLs in this level. */
694 for (link = decls; link; link = TREE_CHAIN (link))
696 decl = TREE_CODE (link) == TREE_LIST ? TREE_VALUE (link) : link;
697 tree name = OVL_NAME (decl);
699 /* Remove the binding. */
700 if (TREE_CODE (decl) == LABEL_DECL)
701 pop_local_label (name, decl);
702 else
703 pop_local_binding (name, decl);
706 /* Restore the IDENTIFIER_TYPE_VALUEs. */
707 for (link = current_binding_level->type_shadowed;
708 link; link = TREE_CHAIN (link))
709 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (link), TREE_VALUE (link));
711 /* There may be OVERLOADs (wrapped in TREE_LISTs) on the BLOCK_VARs
712 list if a `using' declaration put them there. The debugging
713 back ends won't understand OVERLOAD, so we remove them here.
714 Because the BLOCK_VARS are (temporarily) shared with
715 CURRENT_BINDING_LEVEL->NAMES we must do this fixup after we have
716 popped all the bindings. Also remove undeduced 'auto' decls,
717 which LTO doesn't understand, and can't have been used by anything. */
718 if (block)
720 tree* d;
722 for (d = &BLOCK_VARS (block); *d; )
724 if (TREE_CODE (*d) == TREE_LIST
725 || (!processing_template_decl
726 && undeduced_auto_decl (*d)))
727 *d = TREE_CHAIN (*d);
728 else
729 d = &DECL_CHAIN (*d);
733 /* If the level being exited is the top level of a function,
734 check over all the labels. */
735 if (functionbody)
737 if (block)
739 /* Since this is the top level block of a function, the vars are
740 the function's parameters. Don't leave them in the BLOCK
741 because they are found in the FUNCTION_DECL instead. */
742 BLOCK_VARS (block) = 0;
743 pop_labels (block);
745 else
746 pop_labels (subblocks);
749 kind = current_binding_level->kind;
750 if (kind == sk_cleanup)
752 tree stmt;
754 /* If this is a temporary binding created for a cleanup, then we'll
755 have pushed a statement list level. Pop that, create a new
756 BIND_EXPR for the block, and insert it into the stream. */
757 stmt = pop_stmt_list (current_binding_level->statement_list);
758 stmt = c_build_bind_expr (input_location, block, stmt);
759 add_stmt (stmt);
762 leave_scope ();
763 if (functionbody)
765 /* The current function is being defined, so its DECL_INITIAL
766 should be error_mark_node. */
767 gcc_assert (DECL_INITIAL (current_function_decl) == error_mark_node);
768 DECL_INITIAL (current_function_decl) = block ? block : subblocks;
769 if (subblocks)
771 if (FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
773 if (BLOCK_SUBBLOCKS (subblocks))
774 BLOCK_OUTER_CURLY_BRACE_P (BLOCK_SUBBLOCKS (subblocks)) = 1;
776 else
777 BLOCK_OUTER_CURLY_BRACE_P (subblocks) = 1;
780 else if (block)
781 current_binding_level->blocks
782 = block_chainon (current_binding_level->blocks, block);
784 /* If we did not make a block for the level just exited,
785 any blocks made for inner levels
786 (since they cannot be recorded as subblocks in that level)
787 must be carried forward so they will later become subblocks
788 of something else. */
789 else if (subblocks)
790 current_binding_level->blocks
791 = block_chainon (current_binding_level->blocks, subblocks);
793 /* Each and every BLOCK node created here in `poplevel' is important
794 (e.g. for proper debugging information) so if we created one
795 earlier, mark it as "used". */
796 if (block)
797 TREE_USED (block) = 1;
799 /* All temporary bindings created for cleanups are popped silently. */
800 if (kind == sk_cleanup)
801 goto restart;
803 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
804 return block;
807 /* Call wrapup_globals_declarations for the globals in NAMESPACE. */
808 /* Diagnose odr-used extern inline variables without definitions
809 in the current TU. */
812 wrapup_namespace_globals ()
814 if (vec<tree, va_gc> *statics = static_decls)
816 tree decl;
817 unsigned int i;
818 FOR_EACH_VEC_ELT (*statics, i, decl)
820 if (warn_unused_function
821 && TREE_CODE (decl) == FUNCTION_DECL
822 && DECL_INITIAL (decl) == 0
823 && DECL_EXTERNAL (decl)
824 && !TREE_PUBLIC (decl)
825 && !DECL_ARTIFICIAL (decl)
826 && !DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl)
827 && !TREE_NO_WARNING (decl))
828 warning_at (DECL_SOURCE_LOCATION (decl),
829 OPT_Wunused_function,
830 "%qF declared %<static%> but never defined", decl);
832 if (VAR_P (decl)
833 && DECL_EXTERNAL (decl)
834 && DECL_INLINE_VAR_P (decl)
835 && DECL_ODR_USED (decl))
836 error_at (DECL_SOURCE_LOCATION (decl),
837 "odr-used inline variable %qD is not defined", decl);
840 /* Clear out the list, so we don't rescan next time. */
841 static_decls = NULL;
843 /* Write out any globals that need to be output. */
844 return wrapup_global_declarations (statics->address (),
845 statics->length ());
847 return 0;
850 /* In C++, you don't have to write `struct S' to refer to `S'; you
851 can just use `S'. We accomplish this by creating a TYPE_DECL as
852 if the user had written `typedef struct S S'. Create and return
853 the TYPE_DECL for TYPE. */
855 tree
856 create_implicit_typedef (tree name, tree type)
858 tree decl;
860 decl = build_decl (input_location, TYPE_DECL, name, type);
861 DECL_ARTIFICIAL (decl) = 1;
862 /* There are other implicit type declarations, like the one *within*
863 a class that allows you to write `S::S'. We must distinguish
864 amongst these. */
865 SET_DECL_IMPLICIT_TYPEDEF_P (decl);
866 TYPE_NAME (type) = decl;
867 TYPE_STUB_DECL (type) = decl;
869 return decl;
872 /* Remember a local name for name-mangling purposes. */
874 static void
875 push_local_name (tree decl)
877 size_t i, nelts;
878 tree t, name;
880 timevar_start (TV_NAME_LOOKUP);
882 name = DECL_NAME (decl);
884 nelts = vec_safe_length (local_names);
885 for (i = 0; i < nelts; i++)
887 t = (*local_names)[i];
888 if (DECL_NAME (t) == name)
890 retrofit_lang_decl (decl);
891 DECL_LANG_SPECIFIC (decl)->u.base.u2sel = 1;
892 if (DECL_DISCRIMINATOR_SET_P (t))
893 DECL_DISCRIMINATOR (decl) = DECL_DISCRIMINATOR (t) + 1;
894 else
895 DECL_DISCRIMINATOR (decl) = 1;
897 (*local_names)[i] = decl;
898 timevar_stop (TV_NAME_LOOKUP);
899 return;
903 vec_safe_push (local_names, decl);
904 timevar_stop (TV_NAME_LOOKUP);
907 /* Subroutine of duplicate_decls: return truthvalue of whether
908 or not types of these decls match.
910 For C++, we must compare the parameter list so that `int' can match
911 `int&' in a parameter position, but `int&' is not confused with
912 `const int&'. */
915 decls_match (tree newdecl, tree olddecl, bool record_versions /* = true */)
917 int types_match;
919 if (newdecl == olddecl)
920 return 1;
922 if (TREE_CODE (newdecl) != TREE_CODE (olddecl))
923 /* If the two DECLs are not even the same kind of thing, we're not
924 interested in their types. */
925 return 0;
927 gcc_assert (DECL_P (newdecl));
929 if (TREE_CODE (newdecl) == FUNCTION_DECL)
931 tree f1 = TREE_TYPE (newdecl);
932 tree f2 = TREE_TYPE (olddecl);
933 tree p1 = TYPE_ARG_TYPES (f1);
934 tree p2 = TYPE_ARG_TYPES (f2);
935 tree r2;
937 /* Specializations of different templates are different functions
938 even if they have the same type. */
939 tree t1 = (DECL_USE_TEMPLATE (newdecl)
940 ? DECL_TI_TEMPLATE (newdecl)
941 : NULL_TREE);
942 tree t2 = (DECL_USE_TEMPLATE (olddecl)
943 ? DECL_TI_TEMPLATE (olddecl)
944 : NULL_TREE);
945 if (t1 != t2)
946 return 0;
948 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
949 && ! (DECL_EXTERN_C_P (newdecl)
950 && DECL_EXTERN_C_P (olddecl)))
951 return 0;
953 /* A new declaration doesn't match a built-in one unless it
954 is also extern "C". */
955 if (DECL_IS_BUILTIN (olddecl)
956 && DECL_EXTERN_C_P (olddecl) && !DECL_EXTERN_C_P (newdecl))
957 return 0;
959 if (TREE_CODE (f1) != TREE_CODE (f2))
960 return 0;
962 /* A declaration with deduced return type should use its pre-deduction
963 type for declaration matching. */
964 r2 = fndecl_declared_return_type (olddecl);
966 if (same_type_p (TREE_TYPE (f1), r2))
968 if (!prototype_p (f2) && DECL_EXTERN_C_P (olddecl)
969 && (DECL_BUILT_IN (olddecl)
970 #ifndef NO_IMPLICIT_EXTERN_C
971 || (DECL_IN_SYSTEM_HEADER (newdecl) && !DECL_CLASS_SCOPE_P (newdecl))
972 || (DECL_IN_SYSTEM_HEADER (olddecl) && !DECL_CLASS_SCOPE_P (olddecl))
973 #endif
976 types_match = self_promoting_args_p (p1);
977 if (p1 == void_list_node)
978 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
980 #ifndef NO_IMPLICIT_EXTERN_C
981 else if (!prototype_p (f1)
982 && (DECL_EXTERN_C_P (olddecl)
983 && DECL_IN_SYSTEM_HEADER (olddecl)
984 && !DECL_CLASS_SCOPE_P (olddecl))
985 && (DECL_EXTERN_C_P (newdecl)
986 && DECL_IN_SYSTEM_HEADER (newdecl)
987 && !DECL_CLASS_SCOPE_P (newdecl)))
989 types_match = self_promoting_args_p (p2);
990 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
992 #endif
993 else
994 types_match =
995 compparms (p1, p2)
996 && type_memfn_rqual (f1) == type_memfn_rqual (f2)
997 && (TYPE_ATTRIBUTES (TREE_TYPE (newdecl)) == NULL_TREE
998 || comp_type_attributes (TREE_TYPE (newdecl),
999 TREE_TYPE (olddecl)) != 0);
1001 else
1002 types_match = 0;
1004 /* The decls dont match if they correspond to two different versions
1005 of the same function. Disallow extern "C" functions to be
1006 versions for now. */
1007 if (types_match
1008 && !DECL_EXTERN_C_P (newdecl)
1009 && !DECL_EXTERN_C_P (olddecl)
1010 && record_versions
1011 && maybe_version_functions (newdecl, olddecl,
1012 (!DECL_FUNCTION_VERSIONED (newdecl)
1013 || !DECL_FUNCTION_VERSIONED (olddecl))))
1014 return 0;
1016 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1018 tree oldres = DECL_TEMPLATE_RESULT (olddecl);
1019 tree newres = DECL_TEMPLATE_RESULT (newdecl);
1021 if (TREE_CODE (newres) != TREE_CODE (oldres))
1022 return 0;
1024 if (!comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1025 DECL_TEMPLATE_PARMS (olddecl)))
1026 return 0;
1028 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1029 types_match = (same_type_p (TREE_TYPE (oldres), TREE_TYPE (newres))
1030 && equivalently_constrained (olddecl, newdecl));
1031 else
1032 // We don't need to check equivalently_constrained for variable and
1033 // function templates because we check it on the results.
1034 types_match = decls_match (oldres, newres);
1036 else
1038 /* Need to check scope for variable declaration (VAR_DECL).
1039 For typedef (TYPE_DECL), scope is ignored. */
1040 if (VAR_P (newdecl)
1041 && CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
1042 /* [dcl.link]
1043 Two declarations for an object with C language linkage
1044 with the same name (ignoring the namespace that qualify
1045 it) that appear in different namespace scopes refer to
1046 the same object. */
1047 && !(DECL_EXTERN_C_P (olddecl) && DECL_EXTERN_C_P (newdecl)))
1048 return 0;
1050 if (TREE_TYPE (newdecl) == error_mark_node)
1051 types_match = TREE_TYPE (olddecl) == error_mark_node;
1052 else if (TREE_TYPE (olddecl) == NULL_TREE)
1053 types_match = TREE_TYPE (newdecl) == NULL_TREE;
1054 else if (TREE_TYPE (newdecl) == NULL_TREE)
1055 types_match = 0;
1056 else
1057 types_match = comptypes (TREE_TYPE (newdecl),
1058 TREE_TYPE (olddecl),
1059 COMPARE_REDECLARATION);
1062 // Normal functions can be constrained, as can variable partial
1063 // specializations.
1064 if (types_match && VAR_OR_FUNCTION_DECL_P (newdecl))
1065 types_match = equivalently_constrained (newdecl, olddecl);
1067 return types_match;
1070 /* NEWDECL and OLDDECL have identical signatures. If they are
1071 different versions adjust them and return true.
1072 If RECORD is set to true, record function versions. */
1074 bool
1075 maybe_version_functions (tree newdecl, tree olddecl, bool record)
1077 if (!targetm.target_option.function_versions (newdecl, olddecl))
1078 return false;
1080 if (!DECL_FUNCTION_VERSIONED (olddecl))
1082 DECL_FUNCTION_VERSIONED (olddecl) = 1;
1083 if (DECL_ASSEMBLER_NAME_SET_P (olddecl))
1084 mangle_decl (olddecl);
1087 if (!DECL_FUNCTION_VERSIONED (newdecl))
1089 DECL_FUNCTION_VERSIONED (newdecl) = 1;
1090 if (DECL_ASSEMBLER_NAME_SET_P (newdecl))
1091 mangle_decl (newdecl);
1094 if (record)
1095 cgraph_node::record_function_versions (olddecl, newdecl);
1097 return true;
1100 /* If NEWDECL is `static' and an `extern' was seen previously,
1101 warn about it. OLDDECL is the previous declaration.
1103 Note that this does not apply to the C++ case of declaring
1104 a variable `extern const' and then later `const'.
1106 Don't complain about built-in functions, since they are beyond
1107 the user's control. */
1109 void
1110 warn_extern_redeclared_static (tree newdecl, tree olddecl)
1112 if (TREE_CODE (newdecl) == TYPE_DECL
1113 || TREE_CODE (newdecl) == TEMPLATE_DECL
1114 || TREE_CODE (newdecl) == CONST_DECL
1115 || TREE_CODE (newdecl) == NAMESPACE_DECL)
1116 return;
1118 /* Don't get confused by static member functions; that's a different
1119 use of `static'. */
1120 if (TREE_CODE (newdecl) == FUNCTION_DECL
1121 && DECL_STATIC_FUNCTION_P (newdecl))
1122 return;
1124 /* If the old declaration was `static', or the new one isn't, then
1125 everything is OK. */
1126 if (DECL_THIS_STATIC (olddecl) || !DECL_THIS_STATIC (newdecl))
1127 return;
1129 /* It's OK to declare a builtin function as `static'. */
1130 if (TREE_CODE (olddecl) == FUNCTION_DECL
1131 && DECL_ARTIFICIAL (olddecl))
1132 return;
1134 if (permerror (DECL_SOURCE_LOCATION (newdecl),
1135 "%qD was declared %<extern%> and later %<static%>", newdecl))
1136 inform (DECL_SOURCE_LOCATION (olddecl),
1137 "previous declaration of %qD", olddecl);
1140 /* NEW_DECL is a redeclaration of OLD_DECL; both are functions or
1141 function templates. If their exception specifications do not
1142 match, issue a diagnostic. */
1144 static void
1145 check_redeclaration_exception_specification (tree new_decl,
1146 tree old_decl)
1148 tree new_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl));
1149 tree old_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl));
1151 /* Two default specs are equivalent, don't force evaluation. */
1152 if (UNEVALUATED_NOEXCEPT_SPEC_P (new_exceptions)
1153 && UNEVALUATED_NOEXCEPT_SPEC_P (old_exceptions))
1154 return;
1156 if (!type_dependent_expression_p (old_decl))
1158 maybe_instantiate_noexcept (new_decl);
1159 maybe_instantiate_noexcept (old_decl);
1161 new_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl));
1162 old_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl));
1164 /* [except.spec]
1166 If any declaration of a function has an exception-specification,
1167 all declarations, including the definition and an explicit
1168 specialization, of that function shall have an
1169 exception-specification with the same set of type-ids. */
1170 if (! DECL_IS_BUILTIN (old_decl)
1171 && !comp_except_specs (new_exceptions, old_exceptions, ce_normal))
1173 const char *const msg
1174 = G_("declaration of %qF has a different exception specifier");
1175 bool complained = true;
1176 location_t new_loc = DECL_SOURCE_LOCATION (new_decl);
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 (DECL_BUILT_IN (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 /* Merge tree bits that correspond to attributes noreturn, nothrow,
1283 const, malloc, and pure from NEWDECL with those of OLDDECL. */
1285 static void
1286 merge_attribute_bits (tree newdecl, tree olddecl)
1288 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1289 TREE_THIS_VOLATILE (olddecl) |= TREE_THIS_VOLATILE (newdecl);
1290 TREE_NOTHROW (newdecl) |= TREE_NOTHROW (olddecl);
1291 TREE_NOTHROW (olddecl) |= TREE_NOTHROW (newdecl);
1292 TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
1293 TREE_READONLY (olddecl) |= TREE_READONLY (newdecl);
1294 DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
1295 DECL_IS_MALLOC (olddecl) |= DECL_IS_MALLOC (newdecl);
1296 DECL_PURE_P (newdecl) |= DECL_PURE_P (olddecl);
1297 DECL_PURE_P (olddecl) |= DECL_PURE_P (newdecl);
1298 DECL_UNINLINABLE (newdecl) |= DECL_UNINLINABLE (olddecl);
1299 DECL_UNINLINABLE (olddecl) |= DECL_UNINLINABLE (newdecl);
1302 #define GNU_INLINE_P(fn) (DECL_DECLARED_INLINE_P (fn) \
1303 && lookup_attribute ("gnu_inline", \
1304 DECL_ATTRIBUTES (fn)))
1306 /* If NEWDECL is a redeclaration of OLDDECL, merge the declarations.
1307 If the redeclaration is invalid, a diagnostic is issued, and the
1308 error_mark_node is returned. Otherwise, OLDDECL is returned.
1310 If NEWDECL is not a redeclaration of OLDDECL, NULL_TREE is
1311 returned.
1313 NEWDECL_IS_FRIEND is true if NEWDECL was declared as a friend. */
1315 tree
1316 duplicate_decls (tree newdecl, tree olddecl, bool newdecl_is_friend)
1318 unsigned olddecl_uid = DECL_UID (olddecl);
1319 int olddecl_friend = 0, types_match = 0, hidden_friend = 0;
1320 int new_defines_function = 0;
1321 tree new_template_info;
1323 if (newdecl == olddecl)
1324 return olddecl;
1326 types_match = decls_match (newdecl, olddecl);
1328 /* If either the type of the new decl or the type of the old decl is an
1329 error_mark_node, then that implies that we have already issued an
1330 error (earlier) for some bogus type specification, and in that case,
1331 it is rather pointless to harass the user with yet more error message
1332 about the same declaration, so just pretend the types match here. */
1333 if (TREE_TYPE (newdecl) == error_mark_node
1334 || TREE_TYPE (olddecl) == error_mark_node)
1335 return error_mark_node;
1337 if (DECL_NAME (newdecl)
1338 && DECL_NAME (olddecl)
1339 && UDLIT_OPER_P (DECL_NAME (newdecl))
1340 && UDLIT_OPER_P (DECL_NAME (olddecl)))
1342 if (TREE_CODE (newdecl) == TEMPLATE_DECL
1343 && TREE_CODE (olddecl) != TEMPLATE_DECL
1344 && check_raw_literal_operator (olddecl))
1345 error ("literal operator template %q+D conflicts with"
1346 " raw literal operator %qD", newdecl, olddecl);
1347 else if (TREE_CODE (newdecl) != TEMPLATE_DECL
1348 && TREE_CODE (olddecl) == TEMPLATE_DECL
1349 && check_raw_literal_operator (newdecl))
1350 error ("raw literal operator %q+D conflicts with"
1351 " literal operator template %qD", newdecl, olddecl);
1354 /* True to merge attributes between the declarations, false to
1355 set OLDDECL's attributes to those of NEWDECL (for template
1356 explicit specializations that specify their own attributes
1357 independent of those specified for the primary template). */
1358 const bool merge_attr = (TREE_CODE (newdecl) != FUNCTION_DECL
1359 || !DECL_TEMPLATE_SPECIALIZATION (newdecl)
1360 || DECL_TEMPLATE_SPECIALIZATION (olddecl));
1362 if (DECL_P (olddecl)
1363 && TREE_CODE (newdecl) == FUNCTION_DECL
1364 && TREE_CODE (olddecl) == FUNCTION_DECL
1365 && merge_attr
1366 && diagnose_mismatched_attributes (olddecl, newdecl))
1368 if (DECL_INITIAL (olddecl))
1369 inform (DECL_SOURCE_LOCATION (olddecl),
1370 "previous definition of %qD was here", olddecl);
1371 else
1372 inform (DECL_SOURCE_LOCATION (olddecl),
1373 "previous declaration of %qD was here", olddecl);
1376 /* Check for redeclaration and other discrepancies. */
1377 if (TREE_CODE (olddecl) == FUNCTION_DECL
1378 && DECL_ARTIFICIAL (olddecl))
1380 gcc_assert (!DECL_HIDDEN_FRIEND_P (olddecl));
1381 if (TREE_CODE (newdecl) != FUNCTION_DECL)
1383 /* Avoid warnings redeclaring built-ins which have not been
1384 explicitly declared. */
1385 if (DECL_ANTICIPATED (olddecl))
1387 if (TREE_PUBLIC (newdecl)
1388 && CP_DECL_CONTEXT (newdecl) == global_namespace)
1389 warning_at (DECL_SOURCE_LOCATION (newdecl),
1390 OPT_Wbuiltin_declaration_mismatch,
1391 "built-in function %qD declared as non-function",
1392 newdecl);
1393 return NULL_TREE;
1396 /* If you declare a built-in or predefined function name as static,
1397 the old definition is overridden, but optionally warn this was a
1398 bad choice of name. */
1399 if (! TREE_PUBLIC (newdecl))
1401 warning (OPT_Wshadow,
1402 DECL_BUILT_IN (olddecl)
1403 ? G_("shadowing built-in function %q#D")
1404 : G_("shadowing library function %q#D"), olddecl);
1405 /* Discard the old built-in function. */
1406 return NULL_TREE;
1408 /* If the built-in is not ansi, then programs can override
1409 it even globally without an error. */
1410 else if (! DECL_BUILT_IN (olddecl))
1411 warning_at (DECL_SOURCE_LOCATION (newdecl), 0,
1412 "library function %q#D redeclared as non-function %q#D",
1413 olddecl, newdecl);
1414 else
1415 error ("declaration of %q+#D conflicts with built-in "
1416 "declaration %q#D", newdecl, olddecl);
1417 return NULL_TREE;
1419 else if (DECL_OMP_DECLARE_REDUCTION_P (olddecl))
1421 gcc_assert (DECL_OMP_DECLARE_REDUCTION_P (newdecl));
1422 error_at (DECL_SOURCE_LOCATION (newdecl),
1423 "redeclaration of %<pragma omp declare reduction%>");
1424 inform (DECL_SOURCE_LOCATION (olddecl),
1425 "previous %<pragma omp declare reduction%> declaration");
1426 return error_mark_node;
1428 else if (!types_match)
1430 /* Avoid warnings redeclaring built-ins which have not been
1431 explicitly declared. */
1432 if (DECL_ANTICIPATED (olddecl))
1434 tree t1, t2;
1436 /* A new declaration doesn't match a built-in one unless it
1437 is also extern "C". */
1438 gcc_assert (DECL_IS_BUILTIN (olddecl));
1439 gcc_assert (DECL_EXTERN_C_P (olddecl));
1440 if (!DECL_EXTERN_C_P (newdecl))
1441 return NULL_TREE;
1443 for (t1 = TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1444 t2 = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1445 t1 || t2;
1446 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
1448 if (!t1 || !t2)
1449 break;
1450 /* FILE, tm types are not known at the time
1451 we create the builtins. */
1452 for (unsigned i = 0;
1453 i < sizeof (builtin_structptr_types)
1454 / sizeof (builtin_structptr_type);
1455 ++i)
1456 if (TREE_VALUE (t2) == builtin_structptr_types[i].node)
1458 tree t = TREE_VALUE (t1);
1460 if (TYPE_PTR_P (t)
1461 && TYPE_IDENTIFIER (TREE_TYPE (t))
1462 == get_identifier (builtin_structptr_types[i].str)
1463 && compparms (TREE_CHAIN (t1), TREE_CHAIN (t2)))
1465 tree oldargs = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1467 TYPE_ARG_TYPES (TREE_TYPE (olddecl))
1468 = TYPE_ARG_TYPES (TREE_TYPE (newdecl));
1469 types_match = decls_match (newdecl, olddecl);
1470 if (types_match)
1471 return duplicate_decls (newdecl, olddecl,
1472 newdecl_is_friend);
1473 TYPE_ARG_TYPES (TREE_TYPE (olddecl)) = oldargs;
1475 goto next_arg;
1478 if (! same_type_p (TREE_VALUE (t1), TREE_VALUE (t2)))
1479 break;
1480 next_arg:;
1483 warning_at (DECL_SOURCE_LOCATION (newdecl),
1484 OPT_Wbuiltin_declaration_mismatch,
1485 "declaration of %q#D conflicts with built-in "
1486 "declaration %q#D", newdecl, olddecl);
1488 else if ((DECL_EXTERN_C_P (newdecl)
1489 && DECL_EXTERN_C_P (olddecl))
1490 || compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1491 TYPE_ARG_TYPES (TREE_TYPE (olddecl))))
1493 /* Don't really override olddecl for __* prefixed builtins
1494 except for __[^b]*_chk, the compiler might be using those
1495 explicitly. */
1496 if (DECL_BUILT_IN (olddecl))
1498 tree id = DECL_NAME (olddecl);
1499 const char *name = IDENTIFIER_POINTER (id);
1500 size_t len;
1502 if (name[0] == '_'
1503 && name[1] == '_'
1504 && (strncmp (name + 2, "builtin_",
1505 strlen ("builtin_")) == 0
1506 || (len = strlen (name)) <= strlen ("___chk")
1507 || memcmp (name + len - strlen ("_chk"),
1508 "_chk", strlen ("_chk") + 1) != 0))
1510 if (DECL_INITIAL (newdecl))
1512 error_at (DECL_SOURCE_LOCATION (newdecl),
1513 "definition of %q#D ambiguates built-in "
1514 "declaration %q#D", newdecl, olddecl);
1515 return error_mark_node;
1517 if (permerror (DECL_SOURCE_LOCATION (newdecl),
1518 "new declaration %q#D ambiguates built-in"
1519 " declaration %q#D", newdecl, olddecl)
1520 && flag_permissive)
1521 inform (DECL_SOURCE_LOCATION (newdecl),
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 (DECL_SOURCE_LOCATION (newdecl),
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 DECL_BUILT_IN (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 && (TREE_CODE (olddecl) != TEMPLATE_DECL
1599 || TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) != TYPE_DECL)
1600 && (TREE_CODE (newdecl) != TEMPLATE_DECL
1601 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != TYPE_DECL))
1603 if ((TREE_CODE (olddecl) == TYPE_DECL && DECL_ARTIFICIAL (olddecl)
1604 && TREE_CODE (newdecl) != TYPE_DECL)
1605 || (TREE_CODE (newdecl) == TYPE_DECL && DECL_ARTIFICIAL (newdecl)
1606 && TREE_CODE (olddecl) != TYPE_DECL))
1608 /* We do nothing special here, because C++ does such nasty
1609 things with TYPE_DECLs. Instead, just let the TYPE_DECL
1610 get shadowed, and know that if we need to find a TYPE_DECL
1611 for a given name, we can look in the IDENTIFIER_TYPE_VALUE
1612 slot of the identifier. */
1613 return NULL_TREE;
1616 if ((TREE_CODE (newdecl) == FUNCTION_DECL
1617 && DECL_FUNCTION_TEMPLATE_P (olddecl))
1618 || (TREE_CODE (olddecl) == FUNCTION_DECL
1619 && DECL_FUNCTION_TEMPLATE_P (newdecl)))
1620 return NULL_TREE;
1623 error ("%q#D redeclared as different kind of symbol", newdecl);
1624 if (TREE_CODE (olddecl) == TREE_LIST)
1625 olddecl = TREE_VALUE (olddecl);
1626 inform (DECL_SOURCE_LOCATION (olddecl),
1627 "previous declaration %q#D", olddecl);
1629 return error_mark_node;
1631 else if (!types_match)
1633 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl))
1634 /* These are certainly not duplicate declarations; they're
1635 from different scopes. */
1636 return NULL_TREE;
1638 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1640 /* The name of a class template may not be declared to refer to
1641 any other template, class, function, object, namespace, value,
1642 or type in the same scope. */
1643 if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == TYPE_DECL
1644 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1646 error ("conflicting declaration of template %q+#D", newdecl);
1647 inform (DECL_SOURCE_LOCATION (olddecl),
1648 "previous declaration %q#D", olddecl);
1649 return error_mark_node;
1651 else if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == FUNCTION_DECL
1652 && TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == FUNCTION_DECL
1653 && compparms (TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl))),
1654 TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (newdecl))))
1655 && comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1656 DECL_TEMPLATE_PARMS (olddecl))
1657 /* Template functions can be disambiguated by
1658 return type. */
1659 && same_type_p (TREE_TYPE (TREE_TYPE (newdecl)),
1660 TREE_TYPE (TREE_TYPE (olddecl)))
1661 // Template functions can also be disambiguated by
1662 // constraints.
1663 && equivalently_constrained (olddecl, newdecl))
1665 error ("ambiguating new declaration %q+#D", newdecl);
1666 inform (DECL_SOURCE_LOCATION (olddecl),
1667 "old declaration %q#D", olddecl);
1669 else if (check_concept_refinement (olddecl, newdecl))
1670 return error_mark_node;
1671 return NULL_TREE;
1673 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1675 if (DECL_EXTERN_C_P (newdecl) && DECL_EXTERN_C_P (olddecl))
1677 error ("conflicting declaration of C function %q+#D",
1678 newdecl);
1679 inform (DECL_SOURCE_LOCATION (olddecl),
1680 "previous declaration %q#D", olddecl);
1681 return NULL_TREE;
1683 /* For function versions, params and types match, but they
1684 are not ambiguous. */
1685 else if ((!DECL_FUNCTION_VERSIONED (newdecl)
1686 && !DECL_FUNCTION_VERSIONED (olddecl))
1687 // The functions have the same parameter types.
1688 && compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1689 TYPE_ARG_TYPES (TREE_TYPE (olddecl)))
1690 // And the same constraints.
1691 && equivalently_constrained (newdecl, olddecl))
1693 error ("ambiguating new declaration of %q+#D", newdecl);
1694 inform (DECL_SOURCE_LOCATION (olddecl),
1695 "old declaration %q#D", olddecl);
1696 return error_mark_node;
1698 else
1699 return NULL_TREE;
1701 else
1703 error ("conflicting declaration %q+#D", newdecl);
1704 inform (DECL_SOURCE_LOCATION (olddecl),
1705 "previous declaration as %q#D", olddecl);
1706 return error_mark_node;
1709 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1710 && ((DECL_TEMPLATE_SPECIALIZATION (olddecl)
1711 && (!DECL_TEMPLATE_INFO (newdecl)
1712 || (DECL_TI_TEMPLATE (newdecl)
1713 != DECL_TI_TEMPLATE (olddecl))))
1714 || (DECL_TEMPLATE_SPECIALIZATION (newdecl)
1715 && (!DECL_TEMPLATE_INFO (olddecl)
1716 || (DECL_TI_TEMPLATE (olddecl)
1717 != DECL_TI_TEMPLATE (newdecl))))))
1718 /* It's OK to have a template specialization and a non-template
1719 with the same type, or to have specializations of two
1720 different templates with the same type. Note that if one is a
1721 specialization, and the other is an instantiation of the same
1722 template, that we do not exit at this point. That situation
1723 can occur if we instantiate a template class, and then
1724 specialize one of its methods. This situation is valid, but
1725 the declarations must be merged in the usual way. */
1726 return NULL_TREE;
1727 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1728 && ((DECL_TEMPLATE_INSTANTIATION (olddecl)
1729 && !DECL_USE_TEMPLATE (newdecl))
1730 || (DECL_TEMPLATE_INSTANTIATION (newdecl)
1731 && !DECL_USE_TEMPLATE (olddecl))))
1732 /* One of the declarations is a template instantiation, and the
1733 other is not a template at all. That's OK. */
1734 return NULL_TREE;
1735 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
1737 /* In [namespace.alias] we have:
1739 In a declarative region, a namespace-alias-definition can be
1740 used to redefine a namespace-alias declared in that declarative
1741 region to refer only to the namespace to which it already
1742 refers.
1744 Therefore, if we encounter a second alias directive for the same
1745 alias, we can just ignore the second directive. */
1746 if (DECL_NAMESPACE_ALIAS (newdecl)
1747 && (DECL_NAMESPACE_ALIAS (newdecl)
1748 == DECL_NAMESPACE_ALIAS (olddecl)))
1749 return olddecl;
1751 /* Leave it to update_binding to merge or report error. */
1752 return NULL_TREE;
1754 else
1756 const char *errmsg = redeclaration_error_message (newdecl, olddecl);
1757 if (errmsg)
1759 error_at (DECL_SOURCE_LOCATION (newdecl), errmsg, newdecl);
1760 if (DECL_NAME (olddecl) != NULL_TREE)
1761 inform (DECL_SOURCE_LOCATION (olddecl),
1762 (DECL_INITIAL (olddecl) && namespace_bindings_p ())
1763 ? G_("%q#D previously defined here")
1764 : G_("%q#D previously declared here"), olddecl);
1765 return error_mark_node;
1767 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1768 && DECL_INITIAL (olddecl) != NULL_TREE
1769 && !prototype_p (TREE_TYPE (olddecl))
1770 && prototype_p (TREE_TYPE (newdecl)))
1772 /* Prototype decl follows defn w/o prototype. */
1773 if (warning_at (DECL_SOURCE_LOCATION (newdecl), 0,
1774 "prototype specified for %q#D", newdecl))
1775 inform (DECL_SOURCE_LOCATION (olddecl),
1776 "previous non-prototype definition here");
1778 else if (VAR_OR_FUNCTION_DECL_P (olddecl)
1779 && DECL_LANGUAGE (newdecl) != DECL_LANGUAGE (olddecl))
1781 /* [dcl.link]
1782 If two declarations of the same function or object
1783 specify different linkage-specifications ..., the program
1784 is ill-formed.... Except for functions with C++ linkage,
1785 a function declaration without a linkage specification
1786 shall not precede the first linkage specification for
1787 that function. A function can be declared without a
1788 linkage specification after an explicit linkage
1789 specification has been seen; the linkage explicitly
1790 specified in the earlier declaration is not affected by
1791 such a function declaration.
1793 DR 563 raises the question why the restrictions on
1794 functions should not also apply to objects. Older
1795 versions of G++ silently ignore the linkage-specification
1796 for this example:
1798 namespace N {
1799 extern int i;
1800 extern "C" int i;
1803 which is clearly wrong. Therefore, we now treat objects
1804 like functions. */
1805 if (current_lang_depth () == 0)
1807 /* There is no explicit linkage-specification, so we use
1808 the linkage from the previous declaration. */
1809 retrofit_lang_decl (newdecl);
1810 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
1812 else
1814 error ("conflicting declaration of %q+#D with %qL linkage",
1815 newdecl, DECL_LANGUAGE (newdecl));
1816 inform (DECL_SOURCE_LOCATION (olddecl),
1817 "previous declaration with %qL linkage",
1818 DECL_LANGUAGE (olddecl));
1822 if (DECL_LANG_SPECIFIC (olddecl) && DECL_USE_TEMPLATE (olddecl))
1824 else if (TREE_CODE (olddecl) == FUNCTION_DECL)
1826 /* Note: free functions, as TEMPLATE_DECLs, are handled below. */
1827 if (DECL_FUNCTION_MEMBER_P (olddecl)
1828 && (/* grokfndecl passes member function templates too
1829 as FUNCTION_DECLs. */
1830 DECL_TEMPLATE_INFO (olddecl)
1831 /* C++11 8.3.6/6.
1832 Default arguments for a member function of a class
1833 template shall be specified on the initial declaration
1834 of the member function within the class template. */
1835 || CLASSTYPE_TEMPLATE_INFO (CP_DECL_CONTEXT (olddecl))))
1836 check_redeclaration_no_default_args (newdecl);
1837 else
1839 tree t1 = FUNCTION_FIRST_USER_PARMTYPE (olddecl);
1840 tree t2 = FUNCTION_FIRST_USER_PARMTYPE (newdecl);
1841 int i = 1;
1843 for (; t1 && t1 != void_list_node;
1844 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2), i++)
1845 if (TREE_PURPOSE (t1) && TREE_PURPOSE (t2))
1847 if (simple_cst_equal (TREE_PURPOSE (t1),
1848 TREE_PURPOSE (t2)) == 1)
1850 if (permerror (input_location,
1851 "default argument given for parameter "
1852 "%d of %q#D", i, newdecl))
1853 inform (DECL_SOURCE_LOCATION (olddecl),
1854 "previous specification in %q#D here",
1855 olddecl);
1857 else
1859 error ("default argument given for parameter %d "
1860 "of %q#D", i, newdecl);
1861 inform (DECL_SOURCE_LOCATION (olddecl),
1862 "previous specification in %q#D here",
1863 olddecl);
1870 /* Do not merge an implicit typedef with an explicit one. In:
1872 class A;
1874 typedef class A A __attribute__ ((foo));
1876 the attribute should apply only to the typedef. */
1877 if (TREE_CODE (olddecl) == TYPE_DECL
1878 && (DECL_IMPLICIT_TYPEDEF_P (olddecl)
1879 || DECL_IMPLICIT_TYPEDEF_P (newdecl)))
1880 return NULL_TREE;
1882 /* If new decl is `static' and an `extern' was seen previously,
1883 warn about it. */
1884 warn_extern_redeclared_static (newdecl, olddecl);
1886 if (!validate_constexpr_redeclaration (olddecl, newdecl))
1887 return error_mark_node;
1889 /* We have committed to returning 1 at this point. */
1890 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1892 /* Now that functions must hold information normally held
1893 by field decls, there is extra work to do so that
1894 declaration information does not get destroyed during
1895 definition. */
1896 if (DECL_VINDEX (olddecl))
1897 DECL_VINDEX (newdecl) = DECL_VINDEX (olddecl);
1898 if (DECL_CONTEXT (olddecl))
1899 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1900 DECL_STATIC_CONSTRUCTOR (newdecl) |= DECL_STATIC_CONSTRUCTOR (olddecl);
1901 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1902 DECL_PURE_VIRTUAL_P (newdecl) |= DECL_PURE_VIRTUAL_P (olddecl);
1903 DECL_VIRTUAL_P (newdecl) |= DECL_VIRTUAL_P (olddecl);
1904 DECL_INVALID_OVERRIDER_P (newdecl) |= DECL_INVALID_OVERRIDER_P (olddecl);
1905 DECL_FINAL_P (newdecl) |= DECL_FINAL_P (olddecl);
1906 DECL_OVERRIDE_P (newdecl) |= DECL_OVERRIDE_P (olddecl);
1907 DECL_THIS_STATIC (newdecl) |= DECL_THIS_STATIC (olddecl);
1908 if (DECL_OVERLOADED_OPERATOR_P (olddecl))
1909 DECL_OVERLOADED_OPERATOR_CODE_RAW (newdecl)
1910 = DECL_OVERLOADED_OPERATOR_CODE_RAW (olddecl);
1911 new_defines_function = DECL_INITIAL (newdecl) != NULL_TREE;
1913 /* Optionally warn about more than one declaration for the same
1914 name, but don't warn about a function declaration followed by a
1915 definition. */
1916 if (warn_redundant_decls && ! DECL_ARTIFICIAL (olddecl)
1917 && !(new_defines_function && DECL_INITIAL (olddecl) == NULL_TREE)
1918 /* Don't warn about extern decl followed by definition. */
1919 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl))
1920 /* Don't warn about friends, let add_friend take care of it. */
1921 && ! (newdecl_is_friend || DECL_FRIEND_P (olddecl))
1922 /* Don't warn about declaration followed by specialization. */
1923 && (! DECL_TEMPLATE_SPECIALIZATION (newdecl)
1924 || DECL_TEMPLATE_SPECIALIZATION (olddecl)))
1926 if (warning_at (DECL_SOURCE_LOCATION (newdecl),
1927 OPT_Wredundant_decls,
1928 "redundant redeclaration of %qD in same scope",
1929 newdecl))
1930 inform (DECL_SOURCE_LOCATION (olddecl),
1931 "previous declaration of %qD", olddecl);
1934 if (!(DECL_TEMPLATE_INSTANTIATION (olddecl)
1935 && DECL_TEMPLATE_SPECIALIZATION (newdecl)))
1937 if (DECL_DELETED_FN (newdecl))
1939 error ("deleted definition of %q+D", newdecl);
1940 inform (DECL_SOURCE_LOCATION (olddecl),
1941 "previous declaration of %qD", olddecl);
1943 DECL_DELETED_FN (newdecl) |= DECL_DELETED_FN (olddecl);
1947 /* Deal with C++: must preserve virtual function table size. */
1948 if (TREE_CODE (olddecl) == TYPE_DECL)
1950 tree newtype = TREE_TYPE (newdecl);
1951 tree oldtype = TREE_TYPE (olddecl);
1953 if (newtype != error_mark_node && oldtype != error_mark_node
1954 && TYPE_LANG_SPECIFIC (newtype) && TYPE_LANG_SPECIFIC (oldtype))
1955 CLASSTYPE_FRIEND_CLASSES (newtype)
1956 = CLASSTYPE_FRIEND_CLASSES (oldtype);
1958 DECL_ORIGINAL_TYPE (newdecl) = DECL_ORIGINAL_TYPE (olddecl);
1961 /* Copy all the DECL_... slots specified in the new decl except for
1962 any that we copy here from the old type. */
1963 if (merge_attr)
1964 DECL_ATTRIBUTES (newdecl)
1965 = (*targetm.merge_decl_attributes) (olddecl, newdecl);
1966 else
1967 DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
1969 if (DECL_DECLARES_FUNCTION_P (olddecl) && DECL_DECLARES_FUNCTION_P (newdecl))
1971 olddecl_friend = DECL_FRIEND_P (olddecl);
1972 hidden_friend = (DECL_ANTICIPATED (olddecl)
1973 && DECL_HIDDEN_FRIEND_P (olddecl)
1974 && newdecl_is_friend);
1975 if (!hidden_friend)
1977 DECL_ANTICIPATED (olddecl) = 0;
1978 DECL_HIDDEN_FRIEND_P (olddecl) = 0;
1982 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1984 tree old_result;
1985 tree new_result;
1986 old_result = DECL_TEMPLATE_RESULT (olddecl);
1987 new_result = DECL_TEMPLATE_RESULT (newdecl);
1988 TREE_TYPE (olddecl) = TREE_TYPE (old_result);
1989 DECL_TEMPLATE_SPECIALIZATIONS (olddecl)
1990 = chainon (DECL_TEMPLATE_SPECIALIZATIONS (olddecl),
1991 DECL_TEMPLATE_SPECIALIZATIONS (newdecl));
1993 DECL_ATTRIBUTES (old_result)
1994 = (*targetm.merge_decl_attributes) (old_result, new_result);
1996 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
1998 /* Per C++11 8.3.6/4, default arguments cannot be added in later
1999 declarations of a function template. */
2000 if (DECL_SOURCE_LOCATION (newdecl)
2001 != DECL_SOURCE_LOCATION (olddecl))
2002 check_redeclaration_no_default_args (newdecl);
2004 check_default_args (newdecl);
2006 if (GNU_INLINE_P (old_result) != GNU_INLINE_P (new_result)
2007 && DECL_INITIAL (new_result))
2009 if (DECL_INITIAL (old_result))
2010 DECL_UNINLINABLE (old_result) = 1;
2011 else
2012 DECL_UNINLINABLE (old_result) = DECL_UNINLINABLE (new_result);
2013 DECL_EXTERNAL (old_result) = DECL_EXTERNAL (new_result);
2014 DECL_NOT_REALLY_EXTERN (old_result)
2015 = DECL_NOT_REALLY_EXTERN (new_result);
2016 DECL_INTERFACE_KNOWN (old_result)
2017 = DECL_INTERFACE_KNOWN (new_result);
2018 DECL_DECLARED_INLINE_P (old_result)
2019 = DECL_DECLARED_INLINE_P (new_result);
2020 DECL_DISREGARD_INLINE_LIMITS (old_result)
2021 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
2024 else
2026 DECL_DECLARED_INLINE_P (old_result)
2027 |= DECL_DECLARED_INLINE_P (new_result);
2028 DECL_DISREGARD_INLINE_LIMITS (old_result)
2029 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
2030 check_redeclaration_exception_specification (newdecl, olddecl);
2032 merge_attribute_bits (new_result, old_result);
2036 /* If the new declaration is a definition, update the file and
2037 line information on the declaration, and also make
2038 the old declaration the same definition. */
2039 if (DECL_INITIAL (new_result) != NULL_TREE)
2041 DECL_SOURCE_LOCATION (olddecl)
2042 = DECL_SOURCE_LOCATION (old_result)
2043 = DECL_SOURCE_LOCATION (newdecl);
2044 DECL_INITIAL (old_result) = DECL_INITIAL (new_result);
2045 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
2047 tree parm;
2048 DECL_ARGUMENTS (old_result)
2049 = DECL_ARGUMENTS (new_result);
2050 for (parm = DECL_ARGUMENTS (old_result); parm;
2051 parm = DECL_CHAIN (parm))
2052 DECL_CONTEXT (parm) = old_result;
2056 return olddecl;
2059 if (types_match)
2061 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2062 check_redeclaration_exception_specification (newdecl, olddecl);
2064 /* Automatically handles default parameters. */
2065 tree oldtype = TREE_TYPE (olddecl);
2066 tree newtype;
2068 /* For typedefs use the old type, as the new type's DECL_NAME points
2069 at newdecl, which will be ggc_freed. */
2070 if (TREE_CODE (newdecl) == TYPE_DECL)
2072 /* But NEWTYPE might have an attribute, honor that. */
2073 tree tem = TREE_TYPE (newdecl);
2074 newtype = oldtype;
2076 if (TYPE_USER_ALIGN (tem))
2078 if (TYPE_ALIGN (tem) > TYPE_ALIGN (newtype))
2079 SET_TYPE_ALIGN (newtype, TYPE_ALIGN (tem));
2080 TYPE_USER_ALIGN (newtype) = true;
2083 /* And remove the new type from the variants list. */
2084 if (TYPE_NAME (TREE_TYPE (newdecl)) == newdecl)
2086 tree remove = TREE_TYPE (newdecl);
2087 for (tree t = TYPE_MAIN_VARIANT (remove); ;
2088 t = TYPE_NEXT_VARIANT (t))
2089 if (TYPE_NEXT_VARIANT (t) == remove)
2091 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (remove);
2092 break;
2096 else if (merge_attr)
2097 newtype = merge_types (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
2098 else
2099 newtype = TREE_TYPE (newdecl);
2101 if (VAR_P (newdecl))
2103 DECL_THIS_EXTERN (newdecl) |= DECL_THIS_EXTERN (olddecl);
2104 /* For already initialized vars, TREE_READONLY could have been
2105 cleared in cp_finish_decl, because the var needs runtime
2106 initialization or destruction. Make sure not to set
2107 TREE_READONLY on it again. */
2108 if (DECL_INITIALIZED_P (olddecl)
2109 && !DECL_EXTERNAL (olddecl)
2110 && !TREE_READONLY (olddecl))
2111 TREE_READONLY (newdecl) = 0;
2112 DECL_INITIALIZED_P (newdecl) |= DECL_INITIALIZED_P (olddecl);
2113 DECL_NONTRIVIALLY_INITIALIZED_P (newdecl)
2114 |= DECL_NONTRIVIALLY_INITIALIZED_P (olddecl);
2115 if (DECL_DEPENDENT_INIT_P (olddecl))
2116 SET_DECL_DEPENDENT_INIT_P (newdecl, true);
2117 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (newdecl)
2118 |= DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (olddecl);
2119 if (DECL_CLASS_SCOPE_P (olddecl))
2120 DECL_DECLARED_CONSTEXPR_P (newdecl)
2121 |= DECL_DECLARED_CONSTEXPR_P (olddecl);
2123 /* Merge the threadprivate attribute from OLDDECL into NEWDECL. */
2124 if (DECL_LANG_SPECIFIC (olddecl)
2125 && CP_DECL_THREADPRIVATE_P (olddecl))
2127 /* Allocate a LANG_SPECIFIC structure for NEWDECL, if needed. */
2128 retrofit_lang_decl (newdecl);
2129 CP_DECL_THREADPRIVATE_P (newdecl) = 1;
2133 /* An explicit specialization of a function template or of a member
2134 function of a class template can be declared transaction_safe
2135 independently of whether the corresponding template entity is declared
2136 transaction_safe. */
2137 if (flag_tm && TREE_CODE (newdecl) == FUNCTION_DECL
2138 && DECL_TEMPLATE_INSTANTIATION (olddecl)
2139 && DECL_TEMPLATE_SPECIALIZATION (newdecl)
2140 && tx_safe_fn_type_p (newtype)
2141 && !tx_safe_fn_type_p (TREE_TYPE (newdecl)))
2142 newtype = tx_unsafe_fn_variant (newtype);
2144 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = newtype;
2146 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2147 check_default_args (newdecl);
2149 /* Lay the type out, unless already done. */
2150 if (! same_type_p (newtype, oldtype)
2151 && TREE_TYPE (newdecl) != error_mark_node
2152 && !(processing_template_decl && uses_template_parms (newdecl)))
2153 layout_type (TREE_TYPE (newdecl));
2155 if ((VAR_P (newdecl)
2156 || TREE_CODE (newdecl) == PARM_DECL
2157 || TREE_CODE (newdecl) == RESULT_DECL
2158 || TREE_CODE (newdecl) == FIELD_DECL
2159 || TREE_CODE (newdecl) == TYPE_DECL)
2160 && !(processing_template_decl && uses_template_parms (newdecl)))
2161 layout_decl (newdecl, 0);
2163 /* Merge deprecatedness. */
2164 if (TREE_DEPRECATED (newdecl))
2165 TREE_DEPRECATED (olddecl) = 1;
2167 /* Preserve function specific target and optimization options */
2168 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2170 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl)
2171 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl))
2172 DECL_FUNCTION_SPECIFIC_TARGET (newdecl)
2173 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl);
2175 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl)
2176 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl))
2177 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl)
2178 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl);
2180 else
2182 /* Merge the const type qualifier. */
2183 if (TREE_READONLY (newdecl))
2184 TREE_READONLY (olddecl) = 1;
2185 /* Merge the volatile type qualifier. */
2186 if (TREE_THIS_VOLATILE (newdecl))
2187 TREE_THIS_VOLATILE (olddecl) = 1;
2190 /* Merge the initialization information. */
2191 if (DECL_INITIAL (newdecl) == NULL_TREE
2192 && DECL_INITIAL (olddecl) != NULL_TREE)
2194 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2195 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2196 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2198 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
2199 DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl);
2203 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2205 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
2206 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
2207 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
2208 DECL_IS_OPERATOR_NEW (newdecl) |= DECL_IS_OPERATOR_NEW (olddecl);
2209 DECL_LOOPING_CONST_OR_PURE_P (newdecl)
2210 |= DECL_LOOPING_CONST_OR_PURE_P (olddecl);
2212 if (merge_attr)
2213 merge_attribute_bits (newdecl, olddecl);
2214 else
2216 /* Merge the noreturn bit. */
2217 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
2218 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
2219 TREE_NOTHROW (olddecl) = TREE_NOTHROW (newdecl);
2220 DECL_IS_MALLOC (olddecl) = DECL_IS_MALLOC (newdecl);
2221 DECL_PURE_P (olddecl) = DECL_PURE_P (newdecl);
2223 /* Keep the old RTL. */
2224 COPY_DECL_RTL (olddecl, newdecl);
2226 else if (VAR_P (newdecl)
2227 && (DECL_SIZE (olddecl) || !DECL_SIZE (newdecl)))
2229 /* Keep the old RTL. We cannot keep the old RTL if the old
2230 declaration was for an incomplete object and the new
2231 declaration is not since many attributes of the RTL will
2232 change. */
2233 COPY_DECL_RTL (olddecl, newdecl);
2236 /* If cannot merge, then use the new type and qualifiers,
2237 and don't preserve the old rtl. */
2238 else
2240 /* Clean out any memory we had of the old declaration. */
2241 tree oldstatic = value_member (olddecl, static_aggregates);
2242 if (oldstatic)
2243 TREE_VALUE (oldstatic) = error_mark_node;
2245 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
2246 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
2247 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
2248 TREE_NOTHROW (olddecl) = TREE_NOTHROW (newdecl);
2249 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
2252 /* Merge the storage class information. */
2253 merge_weak (newdecl, olddecl);
2255 DECL_DEFER_OUTPUT (newdecl) |= DECL_DEFER_OUTPUT (olddecl);
2256 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
2257 TREE_STATIC (olddecl) = TREE_STATIC (newdecl) |= TREE_STATIC (olddecl);
2258 if (! DECL_EXTERNAL (olddecl))
2259 DECL_EXTERNAL (newdecl) = 0;
2260 if (! DECL_COMDAT (olddecl))
2261 DECL_COMDAT (newdecl) = 0;
2263 new_template_info = NULL_TREE;
2264 if (DECL_LANG_SPECIFIC (newdecl) && DECL_LANG_SPECIFIC (olddecl))
2266 bool new_redefines_gnu_inline = false;
2268 if (new_defines_function
2269 && ((DECL_INTERFACE_KNOWN (olddecl)
2270 && TREE_CODE (olddecl) == FUNCTION_DECL)
2271 || (TREE_CODE (olddecl) == TEMPLATE_DECL
2272 && (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl))
2273 == FUNCTION_DECL))))
2275 tree fn = olddecl;
2277 if (TREE_CODE (fn) == TEMPLATE_DECL)
2278 fn = DECL_TEMPLATE_RESULT (olddecl);
2280 new_redefines_gnu_inline = GNU_INLINE_P (fn) && DECL_INITIAL (fn);
2283 if (!new_redefines_gnu_inline)
2285 DECL_INTERFACE_KNOWN (newdecl) |= DECL_INTERFACE_KNOWN (olddecl);
2286 DECL_NOT_REALLY_EXTERN (newdecl) |= DECL_NOT_REALLY_EXTERN (olddecl);
2287 DECL_COMDAT (newdecl) |= DECL_COMDAT (olddecl);
2289 DECL_TEMPLATE_INSTANTIATED (newdecl)
2290 |= DECL_TEMPLATE_INSTANTIATED (olddecl);
2291 DECL_ODR_USED (newdecl) |= DECL_ODR_USED (olddecl);
2293 /* If the OLDDECL is an instantiation and/or specialization,
2294 then the NEWDECL must be too. But, it may not yet be marked
2295 as such if the caller has created NEWDECL, but has not yet
2296 figured out that it is a redeclaration. */
2297 if (!DECL_USE_TEMPLATE (newdecl))
2298 DECL_USE_TEMPLATE (newdecl) = DECL_USE_TEMPLATE (olddecl);
2300 /* Don't really know how much of the language-specific
2301 values we should copy from old to new. */
2302 DECL_IN_AGGR_P (newdecl) = DECL_IN_AGGR_P (olddecl);
2303 DECL_REPO_AVAILABLE_P (newdecl) = DECL_REPO_AVAILABLE_P (olddecl);
2304 DECL_INITIALIZED_IN_CLASS_P (newdecl)
2305 |= DECL_INITIALIZED_IN_CLASS_P (olddecl);
2307 if (LANG_DECL_HAS_MIN (newdecl))
2309 DECL_LANG_SPECIFIC (newdecl)->u.min.u2 =
2310 DECL_LANG_SPECIFIC (olddecl)->u.min.u2;
2311 if (DECL_TEMPLATE_INFO (newdecl))
2313 new_template_info = DECL_TEMPLATE_INFO (newdecl);
2314 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
2315 && DECL_TEMPLATE_SPECIALIZATION (newdecl))
2316 /* Remember the presence of explicit specialization args. */
2317 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (olddecl))
2318 = TINFO_USED_TEMPLATE_ID (new_template_info);
2320 DECL_TEMPLATE_INFO (newdecl) = DECL_TEMPLATE_INFO (olddecl);
2322 /* Only functions have these fields. */
2323 if (DECL_DECLARES_FUNCTION_P (newdecl))
2325 DECL_NONCONVERTING_P (newdecl) = DECL_NONCONVERTING_P (olddecl);
2326 DECL_BEFRIENDING_CLASSES (newdecl)
2327 = chainon (DECL_BEFRIENDING_CLASSES (newdecl),
2328 DECL_BEFRIENDING_CLASSES (olddecl));
2329 /* DECL_THUNKS is only valid for virtual functions,
2330 otherwise it is a DECL_FRIEND_CONTEXT. */
2331 if (DECL_VIRTUAL_P (newdecl))
2332 SET_DECL_THUNKS (newdecl, DECL_THUNKS (olddecl));
2334 /* Only variables have this field. */
2335 else if (VAR_P (newdecl)
2336 && VAR_HAD_UNKNOWN_BOUND (olddecl))
2337 SET_VAR_HAD_UNKNOWN_BOUND (newdecl);
2340 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2342 tree parm;
2344 /* Merge parameter attributes. */
2345 tree oldarg, newarg;
2346 for (oldarg = DECL_ARGUMENTS(olddecl),
2347 newarg = DECL_ARGUMENTS(newdecl);
2348 oldarg && newarg;
2349 oldarg = DECL_CHAIN(oldarg), newarg = DECL_CHAIN(newarg)) {
2350 DECL_ATTRIBUTES (newarg)
2351 = (*targetm.merge_decl_attributes) (oldarg, newarg);
2352 DECL_ATTRIBUTES (oldarg) = DECL_ATTRIBUTES (newarg);
2355 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
2356 && !DECL_TEMPLATE_INSTANTIATION (newdecl))
2358 /* If newdecl is not a specialization, then it is not a
2359 template-related function at all. And that means that we
2360 should have exited above, returning 0. */
2361 gcc_assert (DECL_TEMPLATE_SPECIALIZATION (newdecl));
2363 if (DECL_ODR_USED (olddecl))
2364 /* From [temp.expl.spec]:
2366 If a template, a member template or the member of a class
2367 template is explicitly specialized then that
2368 specialization shall be declared before the first use of
2369 that specialization that would cause an implicit
2370 instantiation to take place, in every translation unit in
2371 which such a use occurs. */
2372 error ("explicit specialization of %qD after first use",
2373 olddecl);
2375 SET_DECL_TEMPLATE_SPECIALIZATION (olddecl);
2376 DECL_COMDAT (newdecl) = (TREE_PUBLIC (newdecl)
2377 && DECL_DECLARED_INLINE_P (newdecl));
2379 /* Don't propagate visibility from the template to the
2380 specialization here. We'll do that in determine_visibility if
2381 appropriate. */
2382 DECL_VISIBILITY_SPECIFIED (olddecl) = 0;
2384 /* [temp.expl.spec/14] We don't inline explicit specialization
2385 just because the primary template says so. */
2386 gcc_assert (!merge_attr);
2388 DECL_DECLARED_INLINE_P (olddecl)
2389 = DECL_DECLARED_INLINE_P (newdecl);
2391 DECL_DISREGARD_INLINE_LIMITS (olddecl)
2392 = DECL_DISREGARD_INLINE_LIMITS (newdecl);
2394 DECL_UNINLINABLE (olddecl) = DECL_UNINLINABLE (newdecl);
2396 else if (new_defines_function && DECL_INITIAL (olddecl))
2398 /* Never inline re-defined extern inline functions.
2399 FIXME: this could be better handled by keeping both
2400 function as separate declarations. */
2401 DECL_UNINLINABLE (newdecl) = 1;
2403 else
2405 if (DECL_PENDING_INLINE_P (olddecl))
2407 DECL_PENDING_INLINE_P (newdecl) = 1;
2408 DECL_PENDING_INLINE_INFO (newdecl)
2409 = DECL_PENDING_INLINE_INFO (olddecl);
2411 else if (DECL_PENDING_INLINE_P (newdecl))
2413 else if (DECL_SAVED_FUNCTION_DATA (newdecl) == NULL)
2414 DECL_SAVED_FUNCTION_DATA (newdecl)
2415 = DECL_SAVED_FUNCTION_DATA (olddecl);
2417 DECL_DECLARED_INLINE_P (newdecl) |= DECL_DECLARED_INLINE_P (olddecl);
2419 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
2420 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
2422 DECL_DISREGARD_INLINE_LIMITS (newdecl)
2423 = DECL_DISREGARD_INLINE_LIMITS (olddecl)
2424 = (DECL_DISREGARD_INLINE_LIMITS (newdecl)
2425 || DECL_DISREGARD_INLINE_LIMITS (olddecl));
2428 /* Preserve abstractness on cloned [cd]tors. */
2429 DECL_ABSTRACT_P (newdecl) = DECL_ABSTRACT_P (olddecl);
2431 /* Update newdecl's parms to point at olddecl. */
2432 for (parm = DECL_ARGUMENTS (newdecl); parm;
2433 parm = DECL_CHAIN (parm))
2434 DECL_CONTEXT (parm) = olddecl;
2436 if (! types_match)
2438 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
2439 COPY_DECL_ASSEMBLER_NAME (newdecl, olddecl);
2440 COPY_DECL_RTL (newdecl, olddecl);
2442 if (! types_match || new_defines_function)
2444 /* These need to be copied so that the names are available.
2445 Note that if the types do match, we'll preserve inline
2446 info and other bits, but if not, we won't. */
2447 DECL_ARGUMENTS (olddecl) = DECL_ARGUMENTS (newdecl);
2448 DECL_RESULT (olddecl) = DECL_RESULT (newdecl);
2450 /* If redeclaring a builtin function, it stays built in
2451 if newdecl is a gnu_inline definition, or if newdecl is just
2452 a declaration. */
2453 if (DECL_BUILT_IN (olddecl)
2454 && (new_defines_function ? GNU_INLINE_P (newdecl) : types_match))
2456 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
2457 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2458 /* If we're keeping the built-in definition, keep the rtl,
2459 regardless of declaration matches. */
2460 COPY_DECL_RTL (olddecl, newdecl);
2461 if (DECL_BUILT_IN_CLASS (newdecl) == BUILT_IN_NORMAL)
2463 enum built_in_function fncode = DECL_FUNCTION_CODE (newdecl);
2464 switch (fncode)
2466 /* If a compatible prototype of these builtin functions
2467 is seen, assume the runtime implements it with the
2468 expected semantics. */
2469 case BUILT_IN_STPCPY:
2470 if (builtin_decl_explicit_p (fncode))
2471 set_builtin_decl_implicit_p (fncode, true);
2472 break;
2473 default:
2474 if (builtin_decl_explicit_p (fncode))
2475 set_builtin_decl_declared_p (fncode, true);
2476 break;
2480 copy_attributes_to_builtin (newdecl);
2482 if (new_defines_function)
2483 /* If defining a function declared with other language
2484 linkage, use the previously declared language linkage. */
2485 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
2486 else if (types_match)
2488 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2489 /* Don't clear out the arguments if we're just redeclaring a
2490 function. */
2491 if (DECL_ARGUMENTS (olddecl))
2492 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
2495 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
2496 NAMESPACE_LEVEL (newdecl) = NAMESPACE_LEVEL (olddecl);
2498 /* Now preserve various other info from the definition. */
2499 TREE_ADDRESSABLE (newdecl) = TREE_ADDRESSABLE (olddecl);
2500 TREE_ASM_WRITTEN (newdecl) = TREE_ASM_WRITTEN (olddecl);
2501 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
2502 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
2504 /* Warn about conflicting visibility specifications. */
2505 if (DECL_VISIBILITY_SPECIFIED (olddecl)
2506 && DECL_VISIBILITY_SPECIFIED (newdecl)
2507 && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
2509 if (warning_at (DECL_SOURCE_LOCATION (newdecl), OPT_Wattributes,
2510 "%qD: visibility attribute ignored because it "
2511 "conflicts with previous declaration", newdecl))
2512 inform (DECL_SOURCE_LOCATION (olddecl),
2513 "previous declaration of %qD", olddecl);
2515 /* Choose the declaration which specified visibility. */
2516 if (DECL_VISIBILITY_SPECIFIED (olddecl))
2518 DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
2519 DECL_VISIBILITY_SPECIFIED (newdecl) = 1;
2521 /* Init priority used to be merged from newdecl to olddecl by the memcpy,
2522 so keep this behavior. */
2523 if (VAR_P (newdecl) && DECL_HAS_INIT_PRIORITY_P (newdecl))
2525 SET_DECL_INIT_PRIORITY (olddecl, DECL_INIT_PRIORITY (newdecl));
2526 DECL_HAS_INIT_PRIORITY_P (olddecl) = 1;
2528 /* Likewise for DECL_ALIGN, DECL_USER_ALIGN and DECL_PACKED. */
2529 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
2531 SET_DECL_ALIGN (newdecl, DECL_ALIGN (olddecl));
2532 DECL_USER_ALIGN (newdecl) |= DECL_USER_ALIGN (olddecl);
2534 DECL_USER_ALIGN (olddecl) = DECL_USER_ALIGN (newdecl);
2535 if (DECL_WARN_IF_NOT_ALIGN (olddecl)
2536 > DECL_WARN_IF_NOT_ALIGN (newdecl))
2537 SET_DECL_WARN_IF_NOT_ALIGN (newdecl,
2538 DECL_WARN_IF_NOT_ALIGN (olddecl));
2539 if (TREE_CODE (newdecl) == FIELD_DECL)
2540 DECL_PACKED (olddecl) = DECL_PACKED (newdecl);
2542 /* The DECL_LANG_SPECIFIC information in OLDDECL will be replaced
2543 with that from NEWDECL below. */
2544 if (DECL_LANG_SPECIFIC (olddecl))
2546 gcc_assert (DECL_LANG_SPECIFIC (olddecl)
2547 != DECL_LANG_SPECIFIC (newdecl));
2548 ggc_free (DECL_LANG_SPECIFIC (olddecl));
2551 /* Merge the USED information. */
2552 if (TREE_USED (olddecl))
2553 TREE_USED (newdecl) = 1;
2554 else if (TREE_USED (newdecl))
2555 TREE_USED (olddecl) = 1;
2556 if (VAR_P (newdecl))
2558 if (DECL_READ_P (olddecl))
2559 DECL_READ_P (newdecl) = 1;
2560 else if (DECL_READ_P (newdecl))
2561 DECL_READ_P (olddecl) = 1;
2563 if (DECL_PRESERVE_P (olddecl))
2564 DECL_PRESERVE_P (newdecl) = 1;
2565 else if (DECL_PRESERVE_P (newdecl))
2566 DECL_PRESERVE_P (olddecl) = 1;
2568 /* Merge the DECL_FUNCTION_VERSIONED information. newdecl will be copied
2569 to olddecl and deleted. */
2570 if (TREE_CODE (newdecl) == FUNCTION_DECL
2571 && DECL_FUNCTION_VERSIONED (olddecl))
2573 /* Set the flag for newdecl so that it gets copied to olddecl. */
2574 DECL_FUNCTION_VERSIONED (newdecl) = 1;
2575 /* newdecl will be purged after copying to olddecl and is no longer
2576 a version. */
2577 cgraph_node::delete_function_version_by_decl (newdecl);
2580 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2582 int function_size;
2583 struct symtab_node *snode = symtab_node::get (olddecl);
2585 function_size = sizeof (struct tree_decl_common);
2587 memcpy ((char *) olddecl + sizeof (struct tree_common),
2588 (char *) newdecl + sizeof (struct tree_common),
2589 function_size - sizeof (struct tree_common));
2591 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2592 (char *) newdecl + sizeof (struct tree_decl_common),
2593 sizeof (struct tree_function_decl) - sizeof (struct tree_decl_common));
2595 /* Preserve symtab node mapping. */
2596 olddecl->decl_with_vis.symtab_node = snode;
2598 if (new_template_info)
2599 /* If newdecl is a template instantiation, it is possible that
2600 the following sequence of events has occurred:
2602 o A friend function was declared in a class template. The
2603 class template was instantiated.
2605 o The instantiation of the friend declaration was
2606 recorded on the instantiation list, and is newdecl.
2608 o Later, however, instantiate_class_template called pushdecl
2609 on the newdecl to perform name injection. But, pushdecl in
2610 turn called duplicate_decls when it discovered that another
2611 declaration of a global function with the same name already
2612 existed.
2614 o Here, in duplicate_decls, we decided to clobber newdecl.
2616 If we're going to do that, we'd better make sure that
2617 olddecl, and not newdecl, is on the list of
2618 instantiations so that if we try to do the instantiation
2619 again we won't get the clobbered declaration. */
2620 reregister_specialization (newdecl,
2621 new_template_info,
2622 olddecl);
2624 else
2626 size_t size = tree_code_size (TREE_CODE (newdecl));
2628 memcpy ((char *) olddecl + sizeof (struct tree_common),
2629 (char *) newdecl + sizeof (struct tree_common),
2630 sizeof (struct tree_decl_common) - sizeof (struct tree_common));
2631 switch (TREE_CODE (newdecl))
2633 case LABEL_DECL:
2634 case VAR_DECL:
2635 case RESULT_DECL:
2636 case PARM_DECL:
2637 case FIELD_DECL:
2638 case TYPE_DECL:
2639 case CONST_DECL:
2641 struct symtab_node *snode = NULL;
2643 if (VAR_P (newdecl)
2644 && (TREE_STATIC (olddecl) || TREE_PUBLIC (olddecl)
2645 || DECL_EXTERNAL (olddecl)))
2646 snode = symtab_node::get (olddecl);
2647 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2648 (char *) newdecl + sizeof (struct tree_decl_common),
2649 size - sizeof (struct tree_decl_common)
2650 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
2651 if (VAR_P (newdecl))
2652 olddecl->decl_with_vis.symtab_node = snode;
2654 break;
2655 default:
2656 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2657 (char *) newdecl + sizeof (struct tree_decl_common),
2658 sizeof (struct tree_decl_non_common) - sizeof (struct tree_decl_common)
2659 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
2660 break;
2664 if (VAR_OR_FUNCTION_DECL_P (newdecl))
2666 if (DECL_EXTERNAL (olddecl)
2667 || TREE_PUBLIC (olddecl)
2668 || TREE_STATIC (olddecl))
2670 /* Merge the section attribute.
2671 We want to issue an error if the sections conflict but that must be
2672 done later in decl_attributes since we are called before attributes
2673 are assigned. */
2674 if (DECL_SECTION_NAME (newdecl) != NULL)
2675 set_decl_section_name (olddecl, DECL_SECTION_NAME (newdecl));
2677 if (DECL_ONE_ONLY (newdecl))
2679 struct symtab_node *oldsym, *newsym;
2680 if (TREE_CODE (olddecl) == FUNCTION_DECL)
2681 oldsym = cgraph_node::get_create (olddecl);
2682 else
2683 oldsym = varpool_node::get_create (olddecl);
2684 newsym = symtab_node::get (newdecl);
2685 oldsym->set_comdat_group (newsym->get_comdat_group ());
2689 if (VAR_P (newdecl)
2690 && CP_DECL_THREAD_LOCAL_P (newdecl))
2692 CP_DECL_THREAD_LOCAL_P (olddecl) = true;
2693 if (!processing_template_decl)
2694 set_decl_tls_model (olddecl, DECL_TLS_MODEL (newdecl));
2698 DECL_UID (olddecl) = olddecl_uid;
2699 if (olddecl_friend)
2700 DECL_FRIEND_P (olddecl) = 1;
2701 if (hidden_friend)
2703 DECL_ANTICIPATED (olddecl) = 1;
2704 DECL_HIDDEN_FRIEND_P (olddecl) = 1;
2707 /* NEWDECL contains the merged attribute lists.
2708 Update OLDDECL to be the same. */
2709 DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
2711 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
2712 so that encode_section_info has a chance to look at the new decl
2713 flags and attributes. */
2714 if (DECL_RTL_SET_P (olddecl)
2715 && (TREE_CODE (olddecl) == FUNCTION_DECL
2716 || (VAR_P (olddecl)
2717 && TREE_STATIC (olddecl))))
2718 make_decl_rtl (olddecl);
2720 /* The NEWDECL will no longer be needed. Because every out-of-class
2721 declaration of a member results in a call to duplicate_decls,
2722 freeing these nodes represents in a significant savings.
2724 Before releasing the node, be sore to remove function from symbol
2725 table that might have been inserted there to record comdat group.
2726 Be sure to however do not free DECL_STRUCT_FUNCTION because this
2727 structure is shared in between newdecl and oldecl. */
2728 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2729 DECL_STRUCT_FUNCTION (newdecl) = NULL;
2730 if (VAR_OR_FUNCTION_DECL_P (newdecl))
2732 struct symtab_node *snode = symtab_node::get (newdecl);
2733 if (snode)
2734 snode->remove ();
2737 /* Remove the associated constraints for newdecl, if any, before
2738 reclaiming memory. */
2739 if (flag_concepts)
2740 remove_constraints (newdecl);
2742 ggc_free (newdecl);
2744 return olddecl;
2747 /* Return zero if the declaration NEWDECL is valid
2748 when the declaration OLDDECL (assumed to be for the same name)
2749 has already been seen.
2750 Otherwise return an error message format string with a %s
2751 where the identifier should go. */
2753 static const char *
2754 redeclaration_error_message (tree newdecl, tree olddecl)
2756 if (TREE_CODE (newdecl) == TYPE_DECL)
2758 /* Because C++ can put things into name space for free,
2759 constructs like "typedef struct foo { ... } foo"
2760 would look like an erroneous redeclaration. */
2761 if (same_type_p (TREE_TYPE (newdecl), TREE_TYPE (olddecl)))
2762 return NULL;
2763 else
2764 return G_("redefinition of %q#D");
2766 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2768 /* If this is a pure function, its olddecl will actually be
2769 the original initialization to `0' (which we force to call
2770 abort()). Don't complain about redefinition in this case. */
2771 if (DECL_LANG_SPECIFIC (olddecl) && DECL_PURE_VIRTUAL_P (olddecl)
2772 && DECL_INITIAL (olddecl) == NULL_TREE)
2773 return NULL;
2775 /* If both functions come from different namespaces, this is not
2776 a redeclaration - this is a conflict with a used function. */
2777 if (DECL_NAMESPACE_SCOPE_P (olddecl)
2778 && DECL_CONTEXT (olddecl) != DECL_CONTEXT (newdecl)
2779 && ! decls_match (olddecl, newdecl))
2780 return G_("%qD conflicts with used function");
2782 /* We'll complain about linkage mismatches in
2783 warn_extern_redeclared_static. */
2785 /* Defining the same name twice is no good. */
2786 if (decl_defined_p (olddecl)
2787 && decl_defined_p (newdecl))
2789 if (DECL_NAME (olddecl) == NULL_TREE)
2790 return G_("%q#D not declared in class");
2791 else if (!GNU_INLINE_P (olddecl)
2792 || GNU_INLINE_P (newdecl))
2793 return G_("redefinition of %q#D");
2796 if (DECL_DECLARED_INLINE_P (olddecl) && DECL_DECLARED_INLINE_P (newdecl))
2798 bool olda = GNU_INLINE_P (olddecl);
2799 bool newa = GNU_INLINE_P (newdecl);
2801 if (olda != newa)
2803 if (newa)
2804 return G_("%q+D redeclared inline with "
2805 "%<gnu_inline%> attribute");
2806 else
2807 return G_("%q+D redeclared inline without "
2808 "%<gnu_inline%> attribute");
2812 check_abi_tag_redeclaration
2813 (olddecl, lookup_attribute ("abi_tag", DECL_ATTRIBUTES (olddecl)),
2814 lookup_attribute ("abi_tag", DECL_ATTRIBUTES (newdecl)));
2816 return NULL;
2818 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
2820 tree nt, ot;
2822 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
2824 if (COMPLETE_TYPE_P (TREE_TYPE (newdecl))
2825 && COMPLETE_TYPE_P (TREE_TYPE (olddecl)))
2826 return G_("redefinition of %q#D");
2827 return NULL;
2830 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != FUNCTION_DECL
2831 || (DECL_TEMPLATE_RESULT (newdecl)
2832 == DECL_TEMPLATE_RESULT (olddecl)))
2833 return NULL;
2835 nt = DECL_TEMPLATE_RESULT (newdecl);
2836 if (DECL_TEMPLATE_INFO (nt))
2837 nt = DECL_TEMPLATE_RESULT (template_for_substitution (nt));
2838 ot = DECL_TEMPLATE_RESULT (olddecl);
2839 if (DECL_TEMPLATE_INFO (ot))
2840 ot = DECL_TEMPLATE_RESULT (template_for_substitution (ot));
2841 if (DECL_INITIAL (nt) && DECL_INITIAL (ot)
2842 && (!GNU_INLINE_P (ot) || GNU_INLINE_P (nt)))
2843 return G_("redefinition of %q#D");
2845 if (DECL_DECLARED_INLINE_P (ot) && DECL_DECLARED_INLINE_P (nt))
2847 bool olda = GNU_INLINE_P (ot);
2848 bool newa = GNU_INLINE_P (nt);
2850 if (olda != newa)
2852 if (newa)
2853 return G_("%q+D redeclared inline with "
2854 "%<gnu_inline%> attribute");
2855 else
2856 return G_("%q+D redeclared inline without "
2857 "%<gnu_inline%> attribute");
2861 /* Core issue #226 (C++0x):
2863 If a friend function template declaration specifies a
2864 default template-argument, that declaration shall be a
2865 definition and shall be the only declaration of the
2866 function template in the translation unit. */
2867 if ((cxx_dialect != cxx98)
2868 && TREE_CODE (ot) == FUNCTION_DECL && DECL_FRIEND_P (ot)
2869 && !check_default_tmpl_args (nt, DECL_TEMPLATE_PARMS (newdecl),
2870 /*is_primary=*/true,
2871 /*is_partial=*/false,
2872 /*is_friend_decl=*/2))
2873 return G_("redeclaration of friend %q#D "
2874 "may not have default template arguments");
2876 return NULL;
2878 else if (VAR_P (newdecl)
2879 && CP_DECL_THREAD_LOCAL_P (newdecl) != CP_DECL_THREAD_LOCAL_P (olddecl)
2880 && (! DECL_LANG_SPECIFIC (olddecl)
2881 || ! CP_DECL_THREADPRIVATE_P (olddecl)
2882 || CP_DECL_THREAD_LOCAL_P (newdecl)))
2884 /* Only variables can be thread-local, and all declarations must
2885 agree on this property. */
2886 if (CP_DECL_THREAD_LOCAL_P (newdecl))
2887 return G_("thread-local declaration of %q#D follows "
2888 "non-thread-local declaration");
2889 else
2890 return G_("non-thread-local declaration of %q#D follows "
2891 "thread-local declaration");
2893 else if (toplevel_bindings_p () || DECL_NAMESPACE_SCOPE_P (newdecl))
2895 /* The objects have been declared at namespace scope. If either
2896 is a member of an anonymous union, then this is an invalid
2897 redeclaration. For example:
2899 int i;
2900 union { int i; };
2902 is invalid. */
2903 if ((VAR_P (newdecl) && DECL_ANON_UNION_VAR_P (newdecl))
2904 || (VAR_P (olddecl) && DECL_ANON_UNION_VAR_P (olddecl)))
2905 return G_("redeclaration of %q#D");
2906 /* If at least one declaration is a reference, there is no
2907 conflict. For example:
2909 int i = 3;
2910 extern int i;
2912 is valid. */
2913 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2914 return NULL;
2916 /* Static data member declared outside a class definition
2917 if the variable is defined within the class with constexpr
2918 specifier is declaration rather than definition (and
2919 deprecated). */
2920 if (cxx_dialect >= cxx17
2921 && VAR_P (olddecl)
2922 && DECL_CLASS_SCOPE_P (olddecl)
2923 && DECL_DECLARED_CONSTEXPR_P (olddecl)
2924 && !DECL_INITIAL (newdecl))
2926 DECL_EXTERNAL (newdecl) = 1;
2927 /* For now, only warn with explicit -Wdeprecated. */
2928 if (global_options_set.x_warn_deprecated
2929 && warning_at (DECL_SOURCE_LOCATION (newdecl), OPT_Wdeprecated,
2930 "redundant redeclaration of %<constexpr%> static "
2931 "data member %qD", newdecl))
2932 inform (DECL_SOURCE_LOCATION (olddecl),
2933 "previous declaration of %qD", olddecl);
2934 return NULL;
2937 /* Reject two definitions. */
2938 return G_("redefinition of %q#D");
2940 else
2942 /* Objects declared with block scope: */
2943 /* Reject two definitions, and reject a definition
2944 together with an external reference. */
2945 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl)))
2946 return G_("redeclaration of %q#D");
2947 return NULL;
2952 /* Hash and equality functions for the named_label table. */
2954 hashval_t
2955 named_label_hash::hash (const value_type entry)
2957 return IDENTIFIER_HASH_VALUE (entry->name);
2960 bool
2961 named_label_hash::equal (const value_type entry, compare_type name)
2963 return name == entry->name;
2966 /* Look for a label named ID in the current function. If one cannot
2967 be found, create one. Return the named_label_entry, or NULL on
2968 failure. */
2970 static named_label_entry *
2971 lookup_label_1 (tree id, bool making_local_p)
2973 /* You can't use labels at global scope. */
2974 if (current_function_decl == NULL_TREE)
2976 error ("label %qE referenced outside of any function", id);
2977 return NULL;
2980 if (!named_labels)
2981 named_labels = hash_table<named_label_hash>::create_ggc (13);
2983 hashval_t hash = IDENTIFIER_HASH_VALUE (id);
2984 named_label_entry **slot
2985 = named_labels->find_slot_with_hash (id, hash, INSERT);
2986 named_label_entry *old = *slot;
2988 if (old && old->label_decl)
2990 if (!making_local_p)
2991 return old;
2993 if (old->binding_level == current_binding_level)
2995 error ("local label %qE conflicts with existing label", id);
2996 inform (DECL_SOURCE_LOCATION (old->label_decl), "previous label");
2997 return NULL;
3001 /* We are making a new decl, create or reuse the named_label_entry */
3002 named_label_entry *ent = NULL;
3003 if (old && !old->label_decl)
3004 ent = old;
3005 else
3007 ent = ggc_cleared_alloc<named_label_entry> ();
3008 ent->name = id;
3009 ent->outer = old;
3010 *slot = ent;
3013 /* Now create the LABEL_DECL. */
3014 tree decl = build_decl (input_location, LABEL_DECL, id, void_type_node);
3016 DECL_CONTEXT (decl) = current_function_decl;
3017 SET_DECL_MODE (decl, VOIDmode);
3018 if (making_local_p)
3020 C_DECLARED_LABEL_FLAG (decl) = true;
3021 DECL_CHAIN (decl) = current_binding_level->names;
3022 current_binding_level->names = decl;
3025 ent->label_decl = decl;
3027 return ent;
3030 /* Wrapper for lookup_label_1. */
3032 tree
3033 lookup_label (tree id)
3035 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
3036 named_label_entry *ent = lookup_label_1 (id, false);
3037 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
3038 return ent ? ent->label_decl : NULL_TREE;
3041 tree
3042 declare_local_label (tree id)
3044 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
3045 named_label_entry *ent = lookup_label_1 (id, true);
3046 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
3047 return ent ? ent->label_decl : NULL_TREE;
3050 /* Returns nonzero if it is ill-formed to jump past the declaration of
3051 DECL. Returns 2 if it's also a real problem. */
3053 static int
3054 decl_jump_unsafe (tree decl)
3056 /* [stmt.dcl]/3: A program that jumps from a point where a local variable
3057 with automatic storage duration is not in scope to a point where it is
3058 in scope is ill-formed unless the variable has scalar type, class type
3059 with a trivial default constructor and a trivial destructor, a
3060 cv-qualified version of one of these types, or an array of one of the
3061 preceding types and is declared without an initializer (8.5). */
3062 tree type = TREE_TYPE (decl);
3064 if (!VAR_P (decl) || TREE_STATIC (decl)
3065 || type == error_mark_node)
3066 return 0;
3068 if (DECL_NONTRIVIALLY_INITIALIZED_P (decl)
3069 || variably_modified_type_p (type, NULL_TREE))
3070 return 2;
3072 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
3073 return 1;
3075 return 0;
3078 /* A subroutine of check_previous_goto_1 and check_goto to identify a branch
3079 to the user. */
3081 static bool
3082 identify_goto (tree decl, location_t loc, const location_t *locus,
3083 diagnostic_t diag_kind)
3085 bool complained
3086 = emit_diagnostic (diag_kind, loc, 0,
3087 decl ? N_("jump to label %qD")
3088 : N_("jump to case label"), decl);
3089 if (complained && locus)
3090 inform (*locus, " from here");
3091 return complained;
3094 /* Check that a single previously seen jump to a newly defined label
3095 is OK. DECL is the LABEL_DECL or 0; LEVEL is the binding_level for
3096 the jump context; NAMES are the names in scope in LEVEL at the jump
3097 context; LOCUS is the source position of the jump or 0. Returns
3098 true if all is well. */
3100 static bool
3101 check_previous_goto_1 (tree decl, cp_binding_level* level, tree names,
3102 bool exited_omp, const location_t *locus)
3104 cp_binding_level *b;
3105 bool complained = false;
3106 int identified = 0;
3107 bool saw_eh = false, saw_omp = false, saw_tm = false, saw_cxif = false;
3109 if (exited_omp)
3111 complained = identify_goto (decl, input_location, locus, DK_ERROR);
3112 if (complained)
3113 inform (input_location, " exits OpenMP structured block");
3114 saw_omp = true;
3115 identified = 2;
3118 for (b = current_binding_level; b ; b = b->level_chain)
3120 tree new_decls, old_decls = (b == level ? names : NULL_TREE);
3122 for (new_decls = b->names; new_decls != old_decls;
3123 new_decls = (DECL_P (new_decls) ? DECL_CHAIN (new_decls)
3124 : TREE_CHAIN (new_decls)))
3126 int problem = decl_jump_unsafe (new_decls);
3127 if (! problem)
3128 continue;
3130 if (!identified)
3132 complained = identify_goto (decl, input_location, locus,
3133 DK_PERMERROR);
3134 identified = 1;
3136 if (complained)
3138 if (problem > 1)
3139 inform (DECL_SOURCE_LOCATION (new_decls),
3140 " crosses initialization of %q#D", new_decls);
3141 else
3142 inform (DECL_SOURCE_LOCATION (new_decls),
3143 " enters scope of %q#D, which has "
3144 "non-trivial destructor", new_decls);
3148 if (b == level)
3149 break;
3151 const char *inf = NULL;
3152 location_t loc = input_location;
3153 switch (b->kind)
3155 case sk_try:
3156 if (!saw_eh)
3157 inf = N_("enters try block");
3158 saw_eh = true;
3159 break;
3161 case sk_catch:
3162 if (!saw_eh)
3163 inf = N_("enters catch block");
3164 saw_eh = true;
3165 break;
3167 case sk_omp:
3168 if (!saw_omp)
3169 inf = N_("enters OpenMP structured block");
3170 saw_omp = true;
3171 break;
3173 case sk_transaction:
3174 if (!saw_tm)
3175 inf = N_("enters synchronized or atomic statement");
3176 saw_tm = true;
3177 break;
3179 case sk_block:
3180 if (!saw_cxif && level_for_constexpr_if (b->level_chain))
3182 inf = N_("enters constexpr if statement");
3183 loc = EXPR_LOCATION (b->level_chain->this_entity);
3184 saw_cxif = true;
3186 break;
3188 default:
3189 break;
3192 if (inf)
3194 if (identified < 2)
3195 complained = identify_goto (decl, input_location, locus, DK_ERROR);
3196 identified = 2;
3197 if (complained)
3198 inform (loc, " %s", inf);
3202 return !identified;
3205 static void
3206 check_previous_goto (tree decl, struct named_label_use_entry *use)
3208 check_previous_goto_1 (decl, use->binding_level,
3209 use->names_in_scope, use->in_omp_scope,
3210 &use->o_goto_locus);
3213 static bool
3214 check_switch_goto (cp_binding_level* level)
3216 return check_previous_goto_1 (NULL_TREE, level, level->names, false, NULL);
3219 /* Check that a new jump to a label DECL is OK. Called by
3220 finish_goto_stmt. */
3222 void
3223 check_goto (tree decl)
3225 /* We can't know where a computed goto is jumping.
3226 So we assume that it's OK. */
3227 if (TREE_CODE (decl) != LABEL_DECL)
3228 return;
3230 /* We didn't record any information about this label when we created it,
3231 and there's not much point since it's trivial to analyze as a return. */
3232 if (decl == cdtor_label)
3233 return;
3235 hashval_t hash = IDENTIFIER_HASH_VALUE (DECL_NAME (decl));
3236 named_label_entry **slot
3237 = named_labels->find_slot_with_hash (DECL_NAME (decl), hash, NO_INSERT);
3238 named_label_entry *ent = *slot;
3240 /* If the label hasn't been defined yet, defer checking. */
3241 if (! DECL_INITIAL (decl))
3243 /* Don't bother creating another use if the last goto had the
3244 same data, and will therefore create the same set of errors. */
3245 if (ent->uses
3246 && ent->uses->names_in_scope == current_binding_level->names)
3247 return;
3249 named_label_use_entry *new_use
3250 = ggc_alloc<named_label_use_entry> ();
3251 new_use->binding_level = current_binding_level;
3252 new_use->names_in_scope = current_binding_level->names;
3253 new_use->o_goto_locus = input_location;
3254 new_use->in_omp_scope = false;
3256 new_use->next = ent->uses;
3257 ent->uses = new_use;
3258 return;
3261 bool saw_catch = false, complained = false;
3262 int identified = 0;
3263 tree bad;
3264 unsigned ix;
3266 if (ent->in_try_scope || ent->in_catch_scope || ent->in_transaction_scope
3267 || ent->in_constexpr_if
3268 || ent->in_omp_scope || !vec_safe_is_empty (ent->bad_decls))
3270 diagnostic_t diag_kind = DK_PERMERROR;
3271 if (ent->in_try_scope || ent->in_catch_scope || ent->in_constexpr_if
3272 || ent->in_transaction_scope || ent->in_omp_scope)
3273 diag_kind = DK_ERROR;
3274 complained = identify_goto (decl, DECL_SOURCE_LOCATION (decl),
3275 &input_location, diag_kind);
3276 identified = 1 + (diag_kind == DK_ERROR);
3279 FOR_EACH_VEC_SAFE_ELT (ent->bad_decls, ix, bad)
3281 int u = decl_jump_unsafe (bad);
3283 if (u > 1 && DECL_ARTIFICIAL (bad))
3285 /* Can't skip init of __exception_info. */
3286 if (identified == 1)
3288 complained = identify_goto (decl, DECL_SOURCE_LOCATION (decl),
3289 &input_location, DK_ERROR);
3290 identified = 2;
3292 if (complained)
3293 inform (DECL_SOURCE_LOCATION (bad), " enters catch block");
3294 saw_catch = true;
3296 else if (complained)
3298 if (u > 1)
3299 inform (DECL_SOURCE_LOCATION (bad),
3300 " skips initialization of %q#D", bad);
3301 else
3302 inform (DECL_SOURCE_LOCATION (bad),
3303 " enters scope of %q#D which has "
3304 "non-trivial destructor", bad);
3308 if (complained)
3310 if (ent->in_try_scope)
3311 inform (input_location, " enters try block");
3312 else if (ent->in_catch_scope && !saw_catch)
3313 inform (input_location, " enters catch block");
3314 else if (ent->in_transaction_scope)
3315 inform (input_location, " enters synchronized or atomic statement");
3316 else if (ent->in_constexpr_if)
3317 inform (input_location, " enters %<constexpr%> if statement");
3320 if (ent->in_omp_scope)
3322 if (complained)
3323 inform (input_location, " enters OpenMP structured block");
3325 else if (flag_openmp)
3326 for (cp_binding_level *b = current_binding_level; b ; b = b->level_chain)
3328 if (b == ent->binding_level)
3329 break;
3330 if (b->kind == sk_omp)
3332 if (identified < 2)
3334 complained = identify_goto (decl,
3335 DECL_SOURCE_LOCATION (decl),
3336 &input_location, DK_ERROR);
3337 identified = 2;
3339 if (complained)
3340 inform (input_location, " exits OpenMP structured block");
3341 break;
3346 /* Check that a return is ok wrt OpenMP structured blocks.
3347 Called by finish_return_stmt. Returns true if all is well. */
3349 bool
3350 check_omp_return (void)
3352 for (cp_binding_level *b = current_binding_level; b ; b = b->level_chain)
3353 if (b->kind == sk_omp)
3355 error ("invalid exit from OpenMP structured block");
3356 return false;
3358 else if (b->kind == sk_function_parms)
3359 break;
3360 return true;
3363 /* Define a label, specifying the location in the source file.
3364 Return the LABEL_DECL node for the label. */
3366 static tree
3367 define_label_1 (location_t location, tree name)
3369 /* After labels, make any new cleanups in the function go into their
3370 own new (temporary) binding contour. */
3371 for (cp_binding_level *p = current_binding_level;
3372 p->kind != sk_function_parms;
3373 p = p->level_chain)
3374 p->more_cleanups_ok = 0;
3376 named_label_entry *ent = lookup_label_1 (name, false);
3377 tree decl = ent->label_decl;
3379 if (DECL_INITIAL (decl) != NULL_TREE)
3381 error ("duplicate label %qD", decl);
3382 return error_mark_node;
3384 else
3386 /* Mark label as having been defined. */
3387 DECL_INITIAL (decl) = error_mark_node;
3388 /* Say where in the source. */
3389 DECL_SOURCE_LOCATION (decl) = location;
3391 ent->binding_level = current_binding_level;
3392 ent->names_in_scope = current_binding_level->names;
3394 for (named_label_use_entry *use = ent->uses; use; use = use->next)
3395 check_previous_goto (decl, use);
3396 ent->uses = NULL;
3399 return decl;
3402 /* Wrapper for define_label_1. */
3404 tree
3405 define_label (location_t location, tree name)
3407 bool running = timevar_cond_start (TV_NAME_LOOKUP);
3408 tree ret = define_label_1 (location, name);
3409 timevar_cond_stop (TV_NAME_LOOKUP, running);
3410 return ret;
3414 struct cp_switch
3416 cp_binding_level *level;
3417 struct cp_switch *next;
3418 /* The SWITCH_STMT being built. */
3419 tree switch_stmt;
3420 /* A splay-tree mapping the low element of a case range to the high
3421 element, or NULL_TREE if there is no high element. Used to
3422 determine whether or not a new case label duplicates an old case
3423 label. We need a tree, rather than simply a hash table, because
3424 of the GNU case range extension. */
3425 splay_tree cases;
3426 /* Remember whether there was a case value that is outside the
3427 range of the original type of the controlling expression. */
3428 bool outside_range_p;
3429 /* Remember whether a default: case label has been seen. */
3430 bool has_default_p;
3431 /* Remember whether a BREAK_STMT has been seen in this SWITCH_STMT. */
3432 bool break_stmt_seen_p;
3433 /* Set if inside of {FOR,DO,WHILE}_BODY nested inside of a switch,
3434 where BREAK_STMT doesn't belong to the SWITCH_STMT. */
3435 bool in_loop_body_p;
3438 /* A stack of the currently active switch statements. The innermost
3439 switch statement is on the top of the stack. There is no need to
3440 mark the stack for garbage collection because it is only active
3441 during the processing of the body of a function, and we never
3442 collect at that point. */
3444 static struct cp_switch *switch_stack;
3446 /* Called right after a switch-statement condition is parsed.
3447 SWITCH_STMT is the switch statement being parsed. */
3449 void
3450 push_switch (tree switch_stmt)
3452 struct cp_switch *p = XNEW (struct cp_switch);
3453 p->level = current_binding_level;
3454 p->next = switch_stack;
3455 p->switch_stmt = switch_stmt;
3456 p->cases = splay_tree_new (case_compare, NULL, NULL);
3457 p->outside_range_p = false;
3458 p->has_default_p = false;
3459 p->break_stmt_seen_p = false;
3460 p->in_loop_body_p = false;
3461 switch_stack = p;
3464 void
3465 pop_switch (void)
3467 struct cp_switch *cs = switch_stack;
3468 location_t switch_location;
3470 /* Emit warnings as needed. */
3471 switch_location = EXPR_LOC_OR_LOC (cs->switch_stmt, input_location);
3472 const bool bool_cond_p
3473 = (SWITCH_STMT_TYPE (cs->switch_stmt)
3474 && TREE_CODE (SWITCH_STMT_TYPE (cs->switch_stmt)) == BOOLEAN_TYPE);
3475 if (!processing_template_decl)
3476 c_do_switch_warnings (cs->cases, switch_location,
3477 SWITCH_STMT_TYPE (cs->switch_stmt),
3478 SWITCH_STMT_COND (cs->switch_stmt),
3479 bool_cond_p, cs->outside_range_p);
3481 /* For the benefit of block_may_fallthru remember if the switch body
3482 case labels cover all possible values and if there are break; stmts. */
3483 if (cs->has_default_p
3484 || (!processing_template_decl
3485 && c_switch_covers_all_cases_p (cs->cases,
3486 SWITCH_STMT_TYPE (cs->switch_stmt))))
3487 SWITCH_STMT_ALL_CASES_P (cs->switch_stmt) = 1;
3488 if (!cs->break_stmt_seen_p)
3489 SWITCH_STMT_NO_BREAK_P (cs->switch_stmt) = 1;
3490 gcc_assert (!cs->in_loop_body_p);
3491 splay_tree_delete (cs->cases);
3492 switch_stack = switch_stack->next;
3493 free (cs);
3496 /* Note that a BREAK_STMT is about to be added. If it is inside of
3497 a SWITCH_STMT and not inside of a loop body inside of it, note
3498 in switch_stack we've seen a BREAK_STMT. */
3500 void
3501 note_break_stmt (void)
3503 if (switch_stack && !switch_stack->in_loop_body_p)
3504 switch_stack->break_stmt_seen_p = true;
3507 /* Note the start of processing of an iteration statement's body.
3508 The note_break_stmt function will do nothing while processing it.
3509 Return a flag that should be passed to note_iteration_stmt_body_end. */
3511 bool
3512 note_iteration_stmt_body_start (void)
3514 if (!switch_stack)
3515 return false;
3516 bool ret = switch_stack->in_loop_body_p;
3517 switch_stack->in_loop_body_p = true;
3518 return ret;
3521 /* Note the end of processing of an iteration statement's body. */
3523 void
3524 note_iteration_stmt_body_end (bool prev)
3526 if (switch_stack)
3527 switch_stack->in_loop_body_p = prev;
3530 /* Convert a case constant VALUE in a switch to the type TYPE of the switch
3531 condition. Note that if TYPE and VALUE are already integral we don't
3532 really do the conversion because the language-independent
3533 warning/optimization code will work better that way. */
3535 static tree
3536 case_conversion (tree type, tree value)
3538 if (value == NULL_TREE)
3539 return value;
3541 value = mark_rvalue_use (value);
3543 if (cxx_dialect >= cxx11
3544 && (SCOPED_ENUM_P (type)
3545 || !INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (value))))
3547 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
3548 type = type_promotes_to (type);
3549 value = (perform_implicit_conversion_flags
3550 (type, value, tf_warning_or_error,
3551 LOOKUP_IMPLICIT | LOOKUP_NO_NON_INTEGRAL));
3553 return cxx_constant_value (value);
3556 /* Note that we've seen a definition of a case label, and complain if this
3557 is a bad place for one. */
3559 tree
3560 finish_case_label (location_t loc, tree low_value, tree high_value)
3562 tree cond, r;
3563 cp_binding_level *p;
3564 tree type;
3566 if (low_value == NULL_TREE && high_value == NULL_TREE)
3567 switch_stack->has_default_p = true;
3569 if (processing_template_decl)
3571 tree label;
3573 /* For templates, just add the case label; we'll do semantic
3574 analysis at instantiation-time. */
3575 label = build_decl (loc, LABEL_DECL, NULL_TREE, NULL_TREE);
3576 return add_stmt (build_case_label (low_value, high_value, label));
3579 /* Find the condition on which this switch statement depends. */
3580 cond = SWITCH_STMT_COND (switch_stack->switch_stmt);
3581 if (cond && TREE_CODE (cond) == TREE_LIST)
3582 cond = TREE_VALUE (cond);
3584 if (!check_switch_goto (switch_stack->level))
3585 return error_mark_node;
3587 type = SWITCH_STMT_TYPE (switch_stack->switch_stmt);
3589 low_value = case_conversion (type, low_value);
3590 high_value = case_conversion (type, high_value);
3592 r = c_add_case_label (loc, switch_stack->cases, cond, type,
3593 low_value, high_value,
3594 &switch_stack->outside_range_p);
3596 /* After labels, make any new cleanups in the function go into their
3597 own new (temporary) binding contour. */
3598 for (p = current_binding_level;
3599 p->kind != sk_function_parms;
3600 p = p->level_chain)
3601 p->more_cleanups_ok = 0;
3603 return r;
3606 struct typename_info {
3607 tree scope;
3608 tree name;
3609 tree template_id;
3610 bool enum_p;
3611 bool class_p;
3614 struct typename_hasher : ggc_ptr_hash<tree_node>
3616 typedef typename_info *compare_type;
3618 /* Hash a TYPENAME_TYPE. */
3620 static hashval_t
3621 hash (tree t)
3623 hashval_t hash;
3625 hash = (htab_hash_pointer (TYPE_CONTEXT (t))
3626 ^ htab_hash_pointer (TYPE_IDENTIFIER (t)));
3628 return hash;
3631 /* Compare two TYPENAME_TYPEs. */
3633 static bool
3634 equal (tree t1, const typename_info *t2)
3636 return (TYPE_IDENTIFIER (t1) == t2->name
3637 && TYPE_CONTEXT (t1) == t2->scope
3638 && TYPENAME_TYPE_FULLNAME (t1) == t2->template_id
3639 && TYPENAME_IS_ENUM_P (t1) == t2->enum_p
3640 && TYPENAME_IS_CLASS_P (t1) == t2->class_p);
3644 /* Build a TYPENAME_TYPE. If the type is `typename T::t', CONTEXT is
3645 the type of `T', NAME is the IDENTIFIER_NODE for `t'.
3647 Returns the new TYPENAME_TYPE. */
3649 static GTY (()) hash_table<typename_hasher> *typename_htab;
3651 tree
3652 build_typename_type (tree context, tree name, tree fullname,
3653 enum tag_types tag_type)
3655 tree t;
3656 tree d;
3657 typename_info ti;
3658 tree *e;
3659 hashval_t hash;
3661 if (typename_htab == NULL)
3662 typename_htab = hash_table<typename_hasher>::create_ggc (61);
3664 ti.scope = FROB_CONTEXT (context);
3665 ti.name = name;
3666 ti.template_id = fullname;
3667 ti.enum_p = tag_type == enum_type;
3668 ti.class_p = (tag_type == class_type
3669 || tag_type == record_type
3670 || tag_type == union_type);
3671 hash = (htab_hash_pointer (ti.scope)
3672 ^ htab_hash_pointer (ti.name));
3674 /* See if we already have this type. */
3675 e = typename_htab->find_slot_with_hash (&ti, hash, INSERT);
3676 if (*e)
3677 t = *e;
3678 else
3680 /* Build the TYPENAME_TYPE. */
3681 t = cxx_make_type (TYPENAME_TYPE);
3682 TYPE_CONTEXT (t) = ti.scope;
3683 TYPENAME_TYPE_FULLNAME (t) = ti.template_id;
3684 TYPENAME_IS_ENUM_P (t) = ti.enum_p;
3685 TYPENAME_IS_CLASS_P (t) = ti.class_p;
3687 /* Build the corresponding TYPE_DECL. */
3688 d = build_decl (input_location, TYPE_DECL, name, t);
3689 TYPE_NAME (TREE_TYPE (d)) = d;
3690 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
3691 DECL_CONTEXT (d) = FROB_CONTEXT (context);
3692 DECL_ARTIFICIAL (d) = 1;
3694 /* Store it in the hash table. */
3695 *e = t;
3697 /* TYPENAME_TYPEs must always be compared structurally, because
3698 they may or may not resolve down to another type depending on
3699 the currently open classes. */
3700 SET_TYPE_STRUCTURAL_EQUALITY (t);
3703 return t;
3706 /* Resolve `typename CONTEXT::NAME'. TAG_TYPE indicates the tag
3707 provided to name the type. Returns an appropriate type, unless an
3708 error occurs, in which case error_mark_node is returned. If we
3709 locate a non-artificial TYPE_DECL and TF_KEEP_TYPE_DECL is set, we
3710 return that, rather than the _TYPE it corresponds to, in other
3711 cases we look through the type decl. If TF_ERROR is set, complain
3712 about errors, otherwise be quiet. */
3714 tree
3715 make_typename_type (tree context, tree name, enum tag_types tag_type,
3716 tsubst_flags_t complain)
3718 tree fullname;
3719 tree t;
3720 bool want_template;
3722 if (name == error_mark_node
3723 || context == NULL_TREE
3724 || context == error_mark_node)
3725 return error_mark_node;
3727 if (TYPE_P (name))
3729 if (!(TYPE_LANG_SPECIFIC (name)
3730 && (CLASSTYPE_IS_TEMPLATE (name)
3731 || CLASSTYPE_USE_TEMPLATE (name))))
3732 name = TYPE_IDENTIFIER (name);
3733 else
3734 /* Create a TEMPLATE_ID_EXPR for the type. */
3735 name = build_nt (TEMPLATE_ID_EXPR,
3736 CLASSTYPE_TI_TEMPLATE (name),
3737 CLASSTYPE_TI_ARGS (name));
3739 else if (TREE_CODE (name) == TYPE_DECL)
3740 name = DECL_NAME (name);
3742 fullname = name;
3744 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
3746 name = TREE_OPERAND (name, 0);
3747 if (DECL_TYPE_TEMPLATE_P (name))
3748 name = TREE_OPERAND (fullname, 0) = DECL_NAME (name);
3749 if (TREE_CODE (name) != IDENTIFIER_NODE)
3751 if (complain & tf_error)
3752 error ("%qD is not a type", name);
3753 return error_mark_node;
3756 if (TREE_CODE (name) == TEMPLATE_DECL)
3758 if (complain & tf_error)
3759 error ("%qD used without template parameters", name);
3760 return error_mark_node;
3762 gcc_assert (identifier_p (name));
3763 gcc_assert (TYPE_P (context));
3765 if (!MAYBE_CLASS_TYPE_P (context))
3767 if (complain & tf_error)
3768 error ("%q#T is not a class", context);
3769 return error_mark_node;
3772 /* When the CONTEXT is a dependent type, NAME could refer to a
3773 dependent base class of CONTEXT. But look inside it anyway
3774 if CONTEXT is a currently open scope, in case it refers to a
3775 member of the current instantiation or a non-dependent base;
3776 lookup will stop when we hit a dependent base. */
3777 if (!dependent_scope_p (context))
3778 /* We should only set WANT_TYPE when we're a nested typename type.
3779 Then we can give better diagnostics if we find a non-type. */
3780 t = lookup_field (context, name, 2, /*want_type=*/true);
3781 else
3782 t = NULL_TREE;
3784 if ((!t || TREE_CODE (t) == TREE_LIST) && dependent_type_p (context))
3785 return build_typename_type (context, name, fullname, tag_type);
3787 want_template = TREE_CODE (fullname) == TEMPLATE_ID_EXPR;
3789 if (!t)
3791 if (complain & tf_error)
3793 if (!COMPLETE_TYPE_P (context))
3794 cxx_incomplete_type_error (NULL_TREE, context);
3795 else
3796 error (want_template ? G_("no class template named %q#T in %q#T")
3797 : G_("no type named %q#T in %q#T"), name, context);
3799 return error_mark_node;
3802 /* Pull out the template from an injected-class-name (or multiple). */
3803 if (want_template)
3804 t = maybe_get_template_decl_from_type_decl (t);
3806 if (TREE_CODE (t) == TREE_LIST)
3808 if (complain & tf_error)
3810 error ("lookup of %qT in %qT is ambiguous", name, context);
3811 print_candidates (t);
3813 return error_mark_node;
3816 if (want_template && !DECL_TYPE_TEMPLATE_P (t))
3818 if (complain & tf_error)
3819 error ("%<typename %T::%D%> names %q#T, which is not a class template",
3820 context, name, t);
3821 return error_mark_node;
3823 if (!want_template && TREE_CODE (t) != TYPE_DECL)
3825 if (complain & tf_error)
3826 error ("%<typename %T::%D%> names %q#T, which is not a type",
3827 context, name, t);
3828 return error_mark_node;
3831 if (!perform_or_defer_access_check (TYPE_BINFO (context), t, t, complain))
3832 return error_mark_node;
3834 /* If we are currently parsing a template and if T is a typedef accessed
3835 through CONTEXT then we need to remember and check access of T at
3836 template instantiation time. */
3837 add_typedef_to_current_template_for_access_check (t, context, input_location);
3839 if (want_template)
3840 return lookup_template_class (t, TREE_OPERAND (fullname, 1),
3841 NULL_TREE, context,
3842 /*entering_scope=*/0,
3843 complain | tf_user);
3845 if (DECL_ARTIFICIAL (t) || !(complain & tf_keep_type_decl))
3846 t = TREE_TYPE (t);
3848 maybe_record_typedef_use (t);
3850 return t;
3853 /* Resolve `CONTEXT::template NAME'. Returns a TEMPLATE_DECL if the name
3854 can be resolved or an UNBOUND_CLASS_TEMPLATE, unless an error occurs,
3855 in which case error_mark_node is returned.
3857 If PARM_LIST is non-NULL, also make sure that the template parameter
3858 list of TEMPLATE_DECL matches.
3860 If COMPLAIN zero, don't complain about any errors that occur. */
3862 tree
3863 make_unbound_class_template (tree context, tree name, tree parm_list,
3864 tsubst_flags_t complain)
3866 tree t;
3867 tree d;
3869 if (TYPE_P (name))
3870 name = TYPE_IDENTIFIER (name);
3871 else if (DECL_P (name))
3872 name = DECL_NAME (name);
3873 gcc_assert (identifier_p (name));
3875 if (!dependent_type_p (context)
3876 || currently_open_class (context))
3878 tree tmpl = NULL_TREE;
3880 if (MAYBE_CLASS_TYPE_P (context))
3881 tmpl = lookup_field (context, name, 0, false);
3883 if (tmpl && TREE_CODE (tmpl) == TYPE_DECL)
3884 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
3886 if (!tmpl || !DECL_TYPE_TEMPLATE_P (tmpl))
3888 if (complain & tf_error)
3889 error ("no class template named %q#T in %q#T", name, context);
3890 return error_mark_node;
3893 if (parm_list
3894 && !comp_template_parms (DECL_TEMPLATE_PARMS (tmpl), parm_list))
3896 if (complain & tf_error)
3898 error ("template parameters do not match template %qD", tmpl);
3899 inform (DECL_SOURCE_LOCATION (tmpl),
3900 "%qD declared here", tmpl);
3902 return error_mark_node;
3905 if (!perform_or_defer_access_check (TYPE_BINFO (context), tmpl, tmpl,
3906 complain))
3907 return error_mark_node;
3909 return tmpl;
3912 /* Build the UNBOUND_CLASS_TEMPLATE. */
3913 t = cxx_make_type (UNBOUND_CLASS_TEMPLATE);
3914 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
3915 TREE_TYPE (t) = NULL_TREE;
3916 SET_TYPE_STRUCTURAL_EQUALITY (t);
3918 /* Build the corresponding TEMPLATE_DECL. */
3919 d = build_decl (input_location, TEMPLATE_DECL, name, t);
3920 TYPE_NAME (TREE_TYPE (d)) = d;
3921 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
3922 DECL_CONTEXT (d) = FROB_CONTEXT (context);
3923 DECL_ARTIFICIAL (d) = 1;
3924 DECL_TEMPLATE_PARMS (d) = parm_list;
3926 return t;
3931 /* Push the declarations of builtin types into the global namespace.
3932 RID_INDEX is the index of the builtin type in the array
3933 RID_POINTERS. NAME is the name used when looking up the builtin
3934 type. TYPE is the _TYPE node for the builtin type.
3936 The calls to set_global_binding below should be
3937 eliminated. Built-in types should not be looked up name; their
3938 names are keywords that the parser can recognize. However, there
3939 is code in c-common.c that uses identifier_global_value to look up
3940 built-in types by name. */
3942 void
3943 record_builtin_type (enum rid rid_index,
3944 const char* name,
3945 tree type)
3947 tree decl = NULL_TREE;
3949 if (name)
3951 tree tname = get_identifier (name);
3952 tree tdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, tname, type);
3953 DECL_ARTIFICIAL (tdecl) = 1;
3954 set_global_binding (tdecl);
3955 decl = tdecl;
3958 if ((int) rid_index < (int) RID_MAX)
3959 if (tree rname = ridpointers[(int) rid_index])
3960 if (!decl || DECL_NAME (decl) != rname)
3962 tree rdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, rname, type);
3963 DECL_ARTIFICIAL (rdecl) = 1;
3964 set_global_binding (rdecl);
3965 if (!decl)
3966 decl = rdecl;
3969 if (decl)
3971 if (!TYPE_NAME (type))
3972 TYPE_NAME (type) = decl;
3973 debug_hooks->type_decl (decl, 0);
3977 /* Push a type into the namespace so that the back ends ignore it. */
3979 static void
3980 record_unknown_type (tree type, const char* name)
3982 tree decl = pushdecl (build_decl (UNKNOWN_LOCATION,
3983 TYPE_DECL, get_identifier (name), type));
3984 /* Make sure the "unknown type" typedecl gets ignored for debug info. */
3985 DECL_IGNORED_P (decl) = 1;
3986 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
3987 TYPE_SIZE (type) = TYPE_SIZE (void_type_node);
3988 SET_TYPE_ALIGN (type, 1);
3989 TYPE_USER_ALIGN (type) = 0;
3990 SET_TYPE_MODE (type, TYPE_MODE (void_type_node));
3993 /* Create all the predefined identifiers. */
3995 static void
3996 initialize_predefined_identifiers (void)
3998 struct predefined_identifier
4000 const char *name; /* Name. */
4001 tree *node; /* Node to store it in. */
4002 cp_identifier_kind kind; /* Kind of identifier. */
4005 /* A table of identifiers to create at startup. */
4006 static const predefined_identifier predefined_identifiers[] = {
4007 {"C++", &lang_name_cplusplus, cik_normal},
4008 {"C", &lang_name_c, cik_normal},
4009 /* Some of these names have a trailing space so that it is
4010 impossible for them to conflict with names written by users. */
4011 {"__ct ", &ctor_identifier, cik_ctor},
4012 {"__ct_base ", &base_ctor_identifier, cik_ctor},
4013 {"__ct_comp ", &complete_ctor_identifier, cik_ctor},
4014 {"__dt ", &dtor_identifier, cik_dtor},
4015 {"__dt_base ", &base_dtor_identifier, cik_dtor},
4016 {"__dt_comp ", &complete_dtor_identifier, cik_dtor},
4017 {"__dt_del ", &deleting_dtor_identifier, cik_dtor},
4018 {"__conv_op ", &conv_op_identifier, cik_conv_op},
4019 {"__in_chrg", &in_charge_identifier, cik_normal},
4020 {"this", &this_identifier, cik_normal},
4021 {"__delta", &delta_identifier, cik_normal},
4022 {"__pfn", &pfn_identifier, cik_normal},
4023 {"_vptr", &vptr_identifier, cik_normal},
4024 {"__vtt_parm", &vtt_parm_identifier, cik_normal},
4025 {"::", &global_identifier, cik_normal},
4026 {"std", &std_identifier, cik_normal},
4027 /* The demangler expects anonymous namespaces to be called
4028 something starting with '_GLOBAL__N_'. It no longer needs
4029 to be unique to the TU. */
4030 {"_GLOBAL__N_1", &anon_identifier, cik_normal},
4031 {"auto", &auto_identifier, cik_normal},
4032 {"decltype(auto)", &decltype_auto_identifier, cik_normal},
4033 {"initializer_list", &init_list_identifier, cik_normal},
4034 {NULL, NULL, cik_normal}
4037 for (const predefined_identifier *pid = predefined_identifiers;
4038 pid->name; ++pid)
4040 *pid->node = get_identifier (pid->name);
4041 /* Some of these identifiers already have a special kind. */
4042 if (pid->kind != cik_normal)
4043 set_identifier_kind (*pid->node, pid->kind);
4047 /* Create the predefined scalar types of C,
4048 and some nodes representing standard constants (0, 1, (void *)0).
4049 Initialize the global binding level.
4050 Make definitions for built-in primitive functions. */
4052 void
4053 cxx_init_decl_processing (void)
4055 tree void_ftype;
4056 tree void_ftype_ptr;
4058 /* Create all the identifiers we need. */
4059 initialize_predefined_identifiers ();
4061 /* Create the global variables. */
4062 push_to_top_level ();
4064 current_function_decl = NULL_TREE;
4065 current_binding_level = NULL;
4066 /* Enter the global namespace. */
4067 gcc_assert (global_namespace == NULL_TREE);
4068 global_namespace = build_lang_decl (NAMESPACE_DECL, global_identifier,
4069 void_type_node);
4070 TREE_PUBLIC (global_namespace) = 1;
4071 DECL_CONTEXT (global_namespace)
4072 = build_translation_unit_decl (get_identifier (main_input_filename));
4073 /* Remember whether we want the empty class passing ABI change warning
4074 in this TU. */
4075 TRANSLATION_UNIT_WARN_EMPTY_P (DECL_CONTEXT (global_namespace))
4076 = warn_abi && abi_version_crosses (12);
4077 debug_hooks->register_main_translation_unit
4078 (DECL_CONTEXT (global_namespace));
4079 begin_scope (sk_namespace, global_namespace);
4080 current_namespace = global_namespace;
4082 if (flag_visibility_ms_compat)
4083 default_visibility = VISIBILITY_HIDDEN;
4085 /* Initially, C. */
4086 current_lang_name = lang_name_c;
4088 /* Create the `std' namespace. */
4089 push_namespace (std_identifier);
4090 std_node = current_namespace;
4091 pop_namespace ();
4093 flag_noexcept_type = (cxx_dialect >= cxx17);
4095 c_common_nodes_and_builtins ();
4097 integer_two_node = build_int_cst (NULL_TREE, 2);
4099 /* Guess at the initial static decls size. */
4100 vec_alloc (static_decls, 500);
4102 /* ... and keyed classes. */
4103 vec_alloc (keyed_classes, 100);
4105 record_builtin_type (RID_BOOL, "bool", boolean_type_node);
4106 truthvalue_type_node = boolean_type_node;
4107 truthvalue_false_node = boolean_false_node;
4108 truthvalue_true_node = boolean_true_node;
4110 empty_except_spec = build_tree_list (NULL_TREE, NULL_TREE);
4111 noexcept_true_spec = build_tree_list (boolean_true_node, NULL_TREE);
4112 noexcept_false_spec = build_tree_list (boolean_false_node, NULL_TREE);
4113 noexcept_deferred_spec = build_tree_list (make_node (DEFERRED_NOEXCEPT),
4114 NULL_TREE);
4116 #if 0
4117 record_builtin_type (RID_MAX, NULL, string_type_node);
4118 #endif
4120 delta_type_node = ptrdiff_type_node;
4121 vtable_index_type = ptrdiff_type_node;
4123 vtt_parm_type = build_pointer_type (const_ptr_type_node);
4124 void_ftype = build_function_type_list (void_type_node, NULL_TREE);
4125 void_ftype_ptr = build_function_type_list (void_type_node,
4126 ptr_type_node, NULL_TREE);
4127 void_ftype_ptr
4128 = build_exception_variant (void_ftype_ptr, empty_except_spec);
4130 /* Create the conversion operator marker. This operator's DECL_NAME
4131 is in the identifier table, so we can use identifier equality to
4132 find it. */
4133 conv_op_marker = build_lang_decl (FUNCTION_DECL, conv_op_identifier,
4134 void_ftype);
4136 /* C++ extensions */
4138 unknown_type_node = make_node (LANG_TYPE);
4139 record_unknown_type (unknown_type_node, "unknown type");
4141 /* Indirecting an UNKNOWN_TYPE node yields an UNKNOWN_TYPE node. */
4142 TREE_TYPE (unknown_type_node) = unknown_type_node;
4144 /* Looking up TYPE_POINTER_TO and TYPE_REFERENCE_TO yield the same
4145 result. */
4146 TYPE_POINTER_TO (unknown_type_node) = unknown_type_node;
4147 TYPE_REFERENCE_TO (unknown_type_node) = unknown_type_node;
4149 init_list_type_node = make_node (LANG_TYPE);
4150 record_unknown_type (init_list_type_node, "init list");
4153 /* Make sure we get a unique function type, so we can give
4154 its pointer type a name. (This wins for gdb.) */
4155 tree vfunc_type = make_node (FUNCTION_TYPE);
4156 TREE_TYPE (vfunc_type) = integer_type_node;
4157 TYPE_ARG_TYPES (vfunc_type) = NULL_TREE;
4158 layout_type (vfunc_type);
4160 vtable_entry_type = build_pointer_type (vfunc_type);
4162 record_builtin_type (RID_MAX, "__vtbl_ptr_type", vtable_entry_type);
4164 vtbl_type_node
4165 = build_cplus_array_type (vtable_entry_type, NULL_TREE);
4166 layout_type (vtbl_type_node);
4167 vtbl_type_node = cp_build_qualified_type (vtbl_type_node, TYPE_QUAL_CONST);
4168 record_builtin_type (RID_MAX, NULL, vtbl_type_node);
4169 vtbl_ptr_type_node = build_pointer_type (vtable_entry_type);
4170 layout_type (vtbl_ptr_type_node);
4171 record_builtin_type (RID_MAX, NULL, vtbl_ptr_type_node);
4173 push_namespace (get_identifier ("__cxxabiv1"));
4174 abi_node = current_namespace;
4175 pop_namespace ();
4177 global_type_node = make_node (LANG_TYPE);
4178 record_unknown_type (global_type_node, "global type");
4180 any_targ_node = make_node (LANG_TYPE);
4181 record_unknown_type (any_targ_node, "any type");
4183 /* Now, C++. */
4184 current_lang_name = lang_name_cplusplus;
4186 if (aligned_new_threshold > 1
4187 && !pow2p_hwi (aligned_new_threshold))
4189 error ("-faligned-new=%d is not a power of two", aligned_new_threshold);
4190 aligned_new_threshold = 1;
4192 if (aligned_new_threshold == -1)
4193 aligned_new_threshold = (cxx_dialect >= cxx17) ? 1 : 0;
4194 if (aligned_new_threshold == 1)
4195 aligned_new_threshold = malloc_alignment () / BITS_PER_UNIT;
4198 tree newattrs, extvisattr;
4199 tree newtype, deltype;
4200 tree ptr_ftype_sizetype;
4201 tree new_eh_spec;
4203 ptr_ftype_sizetype
4204 = build_function_type_list (ptr_type_node, size_type_node, NULL_TREE);
4205 if (cxx_dialect == cxx98)
4207 tree bad_alloc_id;
4208 tree bad_alloc_type_node;
4209 tree bad_alloc_decl;
4211 push_namespace (std_identifier);
4212 bad_alloc_id = get_identifier ("bad_alloc");
4213 bad_alloc_type_node = make_class_type (RECORD_TYPE);
4214 TYPE_CONTEXT (bad_alloc_type_node) = current_namespace;
4215 bad_alloc_decl
4216 = create_implicit_typedef (bad_alloc_id, bad_alloc_type_node);
4217 DECL_CONTEXT (bad_alloc_decl) = current_namespace;
4218 pop_namespace ();
4220 new_eh_spec
4221 = add_exception_specifier (NULL_TREE, bad_alloc_type_node, -1);
4223 else
4224 new_eh_spec = noexcept_false_spec;
4226 /* Ensure attribs.c is initialized. */
4227 init_attributes ();
4229 /* Ensure constraint.cc is initialized. */
4230 init_constraint_processing ();
4232 extvisattr = build_tree_list (get_identifier ("externally_visible"),
4233 NULL_TREE);
4234 newattrs = tree_cons (get_identifier ("alloc_size"),
4235 build_tree_list (NULL_TREE, integer_one_node),
4236 extvisattr);
4237 newtype = cp_build_type_attribute_variant (ptr_ftype_sizetype, newattrs);
4238 newtype = build_exception_variant (newtype, new_eh_spec);
4239 deltype = cp_build_type_attribute_variant (void_ftype_ptr, extvisattr);
4240 deltype = build_exception_variant (deltype, empty_except_spec);
4241 tree opnew = push_cp_library_fn (NEW_EXPR, newtype, 0);
4242 DECL_IS_MALLOC (opnew) = 1;
4243 DECL_IS_OPERATOR_NEW (opnew) = 1;
4244 opnew = push_cp_library_fn (VEC_NEW_EXPR, newtype, 0);
4245 DECL_IS_MALLOC (opnew) = 1;
4246 DECL_IS_OPERATOR_NEW (opnew) = 1;
4247 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4248 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4249 if (flag_sized_deallocation)
4251 /* Also push the sized deallocation variants:
4252 void operator delete(void*, std::size_t) throw();
4253 void operator delete[](void*, std::size_t) throw(); */
4254 tree void_ftype_ptr_size
4255 = build_function_type_list (void_type_node, ptr_type_node,
4256 size_type_node, NULL_TREE);
4257 deltype = cp_build_type_attribute_variant (void_ftype_ptr_size,
4258 extvisattr);
4259 deltype = build_exception_variant (deltype, empty_except_spec);
4260 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4261 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4264 if (aligned_new_threshold)
4266 push_namespace (std_identifier);
4267 tree align_id = get_identifier ("align_val_t");
4268 align_type_node = start_enum (align_id, NULL_TREE, size_type_node,
4269 NULL_TREE, /*scoped*/true, NULL);
4270 pop_namespace ();
4272 /* operator new (size_t, align_val_t); */
4273 newtype = build_function_type_list (ptr_type_node, size_type_node,
4274 align_type_node, NULL_TREE);
4275 newtype = cp_build_type_attribute_variant (newtype, newattrs);
4276 newtype = build_exception_variant (newtype, new_eh_spec);
4277 opnew = push_cp_library_fn (NEW_EXPR, newtype, 0);
4278 DECL_IS_MALLOC (opnew) = 1;
4279 DECL_IS_OPERATOR_NEW (opnew) = 1;
4280 opnew = push_cp_library_fn (VEC_NEW_EXPR, newtype, 0);
4281 DECL_IS_MALLOC (opnew) = 1;
4282 DECL_IS_OPERATOR_NEW (opnew) = 1;
4284 /* operator delete (void *, align_val_t); */
4285 deltype = build_function_type_list (void_type_node, ptr_type_node,
4286 align_type_node, NULL_TREE);
4287 deltype = cp_build_type_attribute_variant (deltype, extvisattr);
4288 deltype = build_exception_variant (deltype, empty_except_spec);
4289 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4290 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4292 if (flag_sized_deallocation)
4294 /* operator delete (void *, size_t, align_val_t); */
4295 deltype = build_function_type_list (void_type_node, ptr_type_node,
4296 size_type_node, align_type_node,
4297 NULL_TREE);
4298 deltype = cp_build_type_attribute_variant (deltype, extvisattr);
4299 deltype = build_exception_variant (deltype, empty_except_spec);
4300 push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4301 push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4305 nullptr_type_node = make_node (NULLPTR_TYPE);
4306 TYPE_SIZE (nullptr_type_node) = bitsize_int (GET_MODE_BITSIZE (ptr_mode));
4307 TYPE_SIZE_UNIT (nullptr_type_node) = size_int (GET_MODE_SIZE (ptr_mode));
4308 TYPE_UNSIGNED (nullptr_type_node) = 1;
4309 TYPE_PRECISION (nullptr_type_node) = GET_MODE_BITSIZE (ptr_mode);
4310 if (abi_version_at_least (9))
4311 SET_TYPE_ALIGN (nullptr_type_node, GET_MODE_ALIGNMENT (ptr_mode));
4312 SET_TYPE_MODE (nullptr_type_node, ptr_mode);
4313 record_builtin_type (RID_MAX, "decltype(nullptr)", nullptr_type_node);
4314 nullptr_node = build_int_cst (nullptr_type_node, 0);
4317 abort_fndecl
4318 = build_library_fn_ptr ("__cxa_pure_virtual", void_ftype,
4319 ECF_NORETURN | ECF_NOTHROW | ECF_COLD);
4321 /* Perform other language dependent initializations. */
4322 init_class_processing ();
4323 init_rtti_processing ();
4324 init_template_processing ();
4326 if (flag_exceptions)
4327 init_exception_processing ();
4329 if (! supports_one_only ())
4330 flag_weak = 0;
4332 make_fname_decl = cp_make_fname_decl;
4333 start_fname_decls ();
4335 /* Show we use EH for cleanups. */
4336 if (flag_exceptions)
4337 using_eh_for_cleanups ();
4340 /* Generate an initializer for a function naming variable from
4341 NAME. NAME may be NULL, to indicate a dependent name. TYPE_P is
4342 filled in with the type of the init. */
4344 tree
4345 cp_fname_init (const char* name, tree *type_p)
4347 tree domain = NULL_TREE;
4348 tree type;
4349 tree init = NULL_TREE;
4350 size_t length = 0;
4352 if (name)
4354 length = strlen (name);
4355 domain = build_index_type (size_int (length));
4356 init = build_string (length + 1, name);
4359 type = cp_build_qualified_type (char_type_node, TYPE_QUAL_CONST);
4360 type = build_cplus_array_type (type, domain);
4362 *type_p = type;
4364 if (init)
4365 TREE_TYPE (init) = type;
4366 else
4367 init = error_mark_node;
4369 return init;
4372 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give
4373 the decl, LOC is the location to give the decl, NAME is the
4374 initialization string and TYPE_DEP indicates whether NAME depended
4375 on the type of the function. We make use of that to detect
4376 __PRETTY_FUNCTION__ inside a template fn. This is being done lazily
4377 at the point of first use, so we mustn't push the decl now. */
4379 static tree
4380 cp_make_fname_decl (location_t loc, tree id, int type_dep)
4382 const char *const name = (type_dep && processing_template_decl
4383 ? NULL : fname_as_string (type_dep));
4384 tree type;
4385 tree init = cp_fname_init (name, &type);
4386 tree decl = build_decl (loc, VAR_DECL, id, type);
4388 if (name)
4389 free (CONST_CAST (char *, name));
4391 TREE_STATIC (decl) = 1;
4392 TREE_READONLY (decl) = 1;
4393 DECL_ARTIFICIAL (decl) = 1;
4395 TREE_USED (decl) = 1;
4397 if (current_function_decl)
4399 DECL_CONTEXT (decl) = current_function_decl;
4400 decl = pushdecl_outermost_localscope (decl);
4401 cp_finish_decl (decl, init, /*init_const_expr_p=*/false, NULL_TREE,
4402 LOOKUP_ONLYCONVERTING);
4404 else
4406 DECL_THIS_STATIC (decl) = true;
4407 pushdecl_top_level_and_finish (decl, init);
4410 return decl;
4413 static tree
4414 builtin_function_1 (tree decl, tree context, bool is_global)
4416 tree id = DECL_NAME (decl);
4417 const char *name = IDENTIFIER_POINTER (id);
4419 retrofit_lang_decl (decl);
4421 DECL_ARTIFICIAL (decl) = 1;
4422 SET_DECL_LANGUAGE (decl, lang_c);
4423 /* Runtime library routines are, by definition, available in an
4424 external shared object. */
4425 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
4426 DECL_VISIBILITY_SPECIFIED (decl) = 1;
4428 DECL_CONTEXT (decl) = context;
4430 /* A function in the user's namespace should have an explicit
4431 declaration before it is used. Mark the built-in function as
4432 anticipated but not actually declared. */
4433 if (name[0] != '_' || name[1] != '_')
4434 DECL_ANTICIPATED (decl) = 1;
4435 else if (strncmp (name + 2, "builtin_", strlen ("builtin_")) != 0)
4437 size_t len = strlen (name);
4439 /* Treat __*_chk fortification functions as anticipated as well,
4440 unless they are __builtin_*. */
4441 if (len > strlen ("___chk")
4442 && memcmp (name + len - strlen ("_chk"),
4443 "_chk", strlen ("_chk") + 1) == 0)
4444 DECL_ANTICIPATED (decl) = 1;
4447 if (is_global)
4448 pushdecl_top_level (decl);
4449 else
4450 pushdecl (decl);
4452 return decl;
4455 tree
4456 cxx_builtin_function (tree decl)
4458 tree id = DECL_NAME (decl);
4459 const char *name = IDENTIFIER_POINTER (id);
4460 /* All builtins that don't begin with an '_' should additionally
4461 go in the 'std' namespace. */
4462 if (name[0] != '_')
4464 tree decl2 = copy_node(decl);
4465 push_namespace (std_identifier);
4466 builtin_function_1 (decl2, std_node, false);
4467 pop_namespace ();
4470 return builtin_function_1 (decl, NULL_TREE, false);
4473 /* Like cxx_builtin_function, but guarantee the function is added to the global
4474 scope. This is to allow function specific options to add new machine
4475 dependent builtins when the target ISA changes via attribute((target(...)))
4476 which saves space on program startup if the program does not use non-generic
4477 ISAs. */
4479 tree
4480 cxx_builtin_function_ext_scope (tree decl)
4483 tree id = DECL_NAME (decl);
4484 const char *name = IDENTIFIER_POINTER (id);
4485 /* All builtins that don't begin with an '_' should additionally
4486 go in the 'std' namespace. */
4487 if (name[0] != '_')
4489 tree decl2 = copy_node(decl);
4490 push_namespace (std_identifier);
4491 builtin_function_1 (decl2, std_node, true);
4492 pop_namespace ();
4495 return builtin_function_1 (decl, NULL_TREE, true);
4498 /* Generate a FUNCTION_DECL with the typical flags for a runtime library
4499 function. Not called directly. */
4501 static tree
4502 build_library_fn (tree name, enum tree_code operator_code, tree type,
4503 int ecf_flags)
4505 tree fn = build_lang_decl (FUNCTION_DECL, name, type);
4506 DECL_EXTERNAL (fn) = 1;
4507 TREE_PUBLIC (fn) = 1;
4508 DECL_ARTIFICIAL (fn) = 1;
4509 DECL_OVERLOADED_OPERATOR_CODE_RAW (fn)
4510 = OVL_OP_INFO (false, operator_code)->ovl_op_code;
4511 SET_DECL_LANGUAGE (fn, lang_c);
4512 /* Runtime library routines are, by definition, available in an
4513 external shared object. */
4514 DECL_VISIBILITY (fn) = VISIBILITY_DEFAULT;
4515 DECL_VISIBILITY_SPECIFIED (fn) = 1;
4516 set_call_expr_flags (fn, ecf_flags);
4517 return fn;
4520 /* Returns the _DECL for a library function with C++ linkage. */
4522 static tree
4523 build_cp_library_fn (tree name, enum tree_code operator_code, tree type,
4524 int ecf_flags)
4526 tree fn = build_library_fn (name, operator_code, type, ecf_flags);
4527 DECL_CONTEXT (fn) = FROB_CONTEXT (current_namespace);
4528 SET_DECL_LANGUAGE (fn, lang_cplusplus);
4529 return fn;
4532 /* Like build_library_fn, but takes a C string instead of an
4533 IDENTIFIER_NODE. */
4535 tree
4536 build_library_fn_ptr (const char* name, tree type, int ecf_flags)
4538 return build_library_fn (get_identifier (name), ERROR_MARK, type, ecf_flags);
4541 /* Like build_cp_library_fn, but takes a C string instead of an
4542 IDENTIFIER_NODE. */
4544 tree
4545 build_cp_library_fn_ptr (const char* name, tree type, int ecf_flags)
4547 return build_cp_library_fn (get_identifier (name), ERROR_MARK, type,
4548 ecf_flags);
4551 /* Like build_library_fn, but also pushes the function so that we will
4552 be able to find it via get_global_binding. Also, the function
4553 may throw exceptions listed in RAISES. */
4555 tree
4556 push_library_fn (tree name, tree type, tree raises, int ecf_flags)
4558 tree fn;
4560 if (raises)
4561 type = build_exception_variant (type, raises);
4563 fn = build_library_fn (name, ERROR_MARK, type, ecf_flags);
4564 pushdecl_top_level (fn);
4565 return fn;
4568 /* Like build_cp_library_fn, but also pushes the function so that it
4569 will be found by normal lookup. */
4571 static tree
4572 push_cp_library_fn (enum tree_code operator_code, tree type,
4573 int ecf_flags)
4575 tree fn = build_cp_library_fn (ovl_op_identifier (false, operator_code),
4576 operator_code, type, ecf_flags);
4577 pushdecl (fn);
4578 if (flag_tm)
4579 apply_tm_attr (fn, get_identifier ("transaction_safe"));
4580 return fn;
4583 /* Like push_library_fn, but takes a TREE_LIST of parm types rather than
4584 a FUNCTION_TYPE. */
4586 tree
4587 push_void_library_fn (tree name, tree parmtypes, int ecf_flags)
4589 tree type = build_function_type (void_type_node, parmtypes);
4590 return push_library_fn (name, type, NULL_TREE, ecf_flags);
4593 /* Like push_library_fn, but also note that this function throws
4594 and does not return. Used for __throw_foo and the like. */
4596 tree
4597 push_throw_library_fn (tree name, tree type)
4599 tree fn = push_library_fn (name, type, NULL_TREE, ECF_NORETURN | ECF_COLD);
4600 return fn;
4603 /* When we call finish_struct for an anonymous union, we create
4604 default copy constructors and such. But, an anonymous union
4605 shouldn't have such things; this function undoes the damage to the
4606 anonymous union type T.
4608 (The reason that we create the synthesized methods is that we don't
4609 distinguish `union { int i; }' from `typedef union { int i; } U'.
4610 The first is an anonymous union; the second is just an ordinary
4611 union type.) */
4613 void
4614 fixup_anonymous_aggr (tree t)
4616 /* Wipe out memory of synthesized methods. */
4617 TYPE_HAS_USER_CONSTRUCTOR (t) = 0;
4618 TYPE_HAS_DEFAULT_CONSTRUCTOR (t) = 0;
4619 TYPE_HAS_COPY_CTOR (t) = 0;
4620 TYPE_HAS_CONST_COPY_CTOR (t) = 0;
4621 TYPE_HAS_COPY_ASSIGN (t) = 0;
4622 TYPE_HAS_CONST_COPY_ASSIGN (t) = 0;
4624 /* Splice the implicitly generated functions out of TYPE_FIELDS. */
4625 for (tree probe, *prev_p = &TYPE_FIELDS (t); (probe = *prev_p);)
4626 if (TREE_CODE (probe) == FUNCTION_DECL && DECL_ARTIFICIAL (probe))
4627 *prev_p = DECL_CHAIN (probe);
4628 else
4629 prev_p = &DECL_CHAIN (probe);
4631 /* Anonymous aggregates cannot have fields with ctors, dtors or complex
4632 assignment operators (because they cannot have these methods themselves).
4633 For anonymous unions this is already checked because they are not allowed
4634 in any union, otherwise we have to check it. */
4635 if (TREE_CODE (t) != UNION_TYPE)
4637 tree field, type;
4639 for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
4640 if (TREE_CODE (field) == FIELD_DECL)
4642 type = TREE_TYPE (field);
4643 if (CLASS_TYPE_P (type))
4645 if (TYPE_NEEDS_CONSTRUCTING (type))
4646 error ("member %q+#D with constructor not allowed "
4647 "in anonymous aggregate", field);
4648 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
4649 error ("member %q+#D with destructor not allowed "
4650 "in anonymous aggregate", field);
4651 if (TYPE_HAS_COMPLEX_COPY_ASSIGN (type))
4652 error ("member %q+#D with copy assignment operator "
4653 "not allowed in anonymous aggregate", field);
4659 /* Warn for an attribute located at LOCATION that appertains to the
4660 class type CLASS_TYPE that has not been properly placed after its
4661 class-key, in it class-specifier. */
4663 void
4664 warn_misplaced_attr_for_class_type (source_location location,
4665 tree class_type)
4667 gcc_assert (OVERLOAD_TYPE_P (class_type));
4669 if (warning_at (location, OPT_Wattributes,
4670 "attribute ignored in declaration "
4671 "of %q#T", class_type))
4672 inform (location,
4673 "attribute for %q#T must follow the %qs keyword",
4674 class_type, class_key_or_enum_as_string (class_type));
4677 /* Make sure that a declaration with no declarator is well-formed, i.e.
4678 just declares a tagged type or anonymous union.
4680 Returns the type declared; or NULL_TREE if none. */
4682 tree
4683 check_tag_decl (cp_decl_specifier_seq *declspecs,
4684 bool explicit_type_instantiation_p)
4686 int saw_friend = decl_spec_seq_has_spec_p (declspecs, ds_friend);
4687 int saw_typedef = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
4688 /* If a class, struct, or enum type is declared by the DECLSPECS
4689 (i.e, if a class-specifier, enum-specifier, or non-typename
4690 elaborated-type-specifier appears in the DECLSPECS),
4691 DECLARED_TYPE is set to the corresponding type. */
4692 tree declared_type = NULL_TREE;
4693 bool error_p = false;
4695 if (declspecs->multiple_types_p)
4696 error ("multiple types in one declaration");
4697 else if (declspecs->redefined_builtin_type)
4699 if (!in_system_header_at (input_location))
4700 permerror (declspecs->locations[ds_redefined_builtin_type_spec],
4701 "redeclaration of C++ built-in type %qT",
4702 declspecs->redefined_builtin_type);
4703 return NULL_TREE;
4706 if (declspecs->type
4707 && TYPE_P (declspecs->type)
4708 && ((TREE_CODE (declspecs->type) != TYPENAME_TYPE
4709 && MAYBE_CLASS_TYPE_P (declspecs->type))
4710 || TREE_CODE (declspecs->type) == ENUMERAL_TYPE))
4711 declared_type = declspecs->type;
4712 else if (declspecs->type == error_mark_node)
4713 error_p = true;
4714 if (declared_type == NULL_TREE && ! saw_friend && !error_p)
4715 permerror (input_location, "declaration does not declare anything");
4716 else if (declared_type != NULL_TREE && type_uses_auto (declared_type))
4718 error_at (declspecs->locations[ds_type_spec],
4719 "%<auto%> can only be specified for variables "
4720 "or function declarations");
4721 return error_mark_node;
4723 /* Check for an anonymous union. */
4724 else if (declared_type && RECORD_OR_UNION_CODE_P (TREE_CODE (declared_type))
4725 && TYPE_UNNAMED_P (declared_type))
4727 /* 7/3 In a simple-declaration, the optional init-declarator-list
4728 can be omitted only when declaring a class (clause 9) or
4729 enumeration (7.2), that is, when the decl-specifier-seq contains
4730 either a class-specifier, an elaborated-type-specifier with
4731 a class-key (9.1), or an enum-specifier. In these cases and
4732 whenever a class-specifier or enum-specifier is present in the
4733 decl-specifier-seq, the identifiers in these specifiers are among
4734 the names being declared by the declaration (as class-name,
4735 enum-names, or enumerators, depending on the syntax). In such
4736 cases, and except for the declaration of an unnamed bit-field (9.6),
4737 the decl-specifier-seq shall introduce one or more names into the
4738 program, or shall redeclare a name introduced by a previous
4739 declaration. [Example:
4740 enum { }; // ill-formed
4741 typedef class { }; // ill-formed
4742 --end example] */
4743 if (saw_typedef)
4745 error ("missing type-name in typedef-declaration");
4746 return NULL_TREE;
4748 /* Anonymous unions are objects, so they can have specifiers. */;
4749 SET_ANON_AGGR_TYPE_P (declared_type);
4751 if (TREE_CODE (declared_type) != UNION_TYPE
4752 && !in_system_header_at (input_location))
4753 pedwarn (input_location, OPT_Wpedantic, "ISO C++ prohibits anonymous structs");
4756 else
4758 if (decl_spec_seq_has_spec_p (declspecs, ds_inline))
4759 error_at (declspecs->locations[ds_inline],
4760 "%<inline%> can only be specified for functions");
4761 else if (decl_spec_seq_has_spec_p (declspecs, ds_virtual))
4762 error_at (declspecs->locations[ds_virtual],
4763 "%<virtual%> can only be specified for functions");
4764 else if (saw_friend
4765 && (!current_class_type
4766 || current_scope () != current_class_type))
4767 error_at (declspecs->locations[ds_friend],
4768 "%<friend%> can only be specified inside a class");
4769 else if (decl_spec_seq_has_spec_p (declspecs, ds_explicit))
4770 error_at (declspecs->locations[ds_explicit],
4771 "%<explicit%> can only be specified for constructors");
4772 else if (declspecs->storage_class)
4773 error_at (declspecs->locations[ds_storage_class],
4774 "a storage class can only be specified for objects "
4775 "and functions");
4776 else if (decl_spec_seq_has_spec_p (declspecs, ds_const))
4777 error_at (declspecs->locations[ds_const],
4778 "%<const%> can only be specified for objects and "
4779 "functions");
4780 else if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
4781 error_at (declspecs->locations[ds_volatile],
4782 "%<volatile%> can only be specified for objects and "
4783 "functions");
4784 else if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
4785 error_at (declspecs->locations[ds_restrict],
4786 "%<__restrict%> can only be specified for objects and "
4787 "functions");
4788 else if (decl_spec_seq_has_spec_p (declspecs, ds_thread))
4789 error_at (declspecs->locations[ds_thread],
4790 "%<__thread%> can only be specified for objects "
4791 "and functions");
4792 else if (saw_typedef)
4793 warning_at (declspecs->locations[ds_typedef], 0,
4794 "%<typedef%> was ignored in this declaration");
4795 else if (decl_spec_seq_has_spec_p (declspecs, ds_constexpr))
4796 error_at (declspecs->locations[ds_constexpr],
4797 "%<constexpr%> cannot be used for type declarations");
4800 if (declspecs->attributes && warn_attributes && declared_type)
4802 location_t loc;
4803 if (!CLASS_TYPE_P (declared_type)
4804 || !CLASSTYPE_TEMPLATE_INSTANTIATION (declared_type))
4805 /* For a non-template class, use the name location. */
4806 loc = location_of (declared_type);
4807 else
4808 /* For a template class (an explicit instantiation), use the
4809 current location. */
4810 loc = input_location;
4812 if (explicit_type_instantiation_p)
4813 /* [dcl.attr.grammar]/4:
4815 No attribute-specifier-seq shall appertain to an explicit
4816 instantiation. */
4818 if (warning_at (loc, OPT_Wattributes,
4819 "attribute ignored in explicit instantiation %q#T",
4820 declared_type))
4821 inform (loc,
4822 "no attribute can be applied to "
4823 "an explicit instantiation");
4825 else
4826 warn_misplaced_attr_for_class_type (loc, declared_type);
4829 return declared_type;
4832 /* Called when a declaration is seen that contains no names to declare.
4833 If its type is a reference to a structure, union or enum inherited
4834 from a containing scope, shadow that tag name for the current scope
4835 with a forward reference.
4836 If its type defines a new named structure or union
4837 or defines an enum, it is valid but we need not do anything here.
4838 Otherwise, it is an error.
4840 C++: may have to grok the declspecs to learn about static,
4841 complain for anonymous unions.
4843 Returns the TYPE declared -- or NULL_TREE if none. */
4845 tree
4846 shadow_tag (cp_decl_specifier_seq *declspecs)
4848 tree t = check_tag_decl (declspecs,
4849 /*explicit_type_instantiation_p=*/false);
4851 if (!t)
4852 return NULL_TREE;
4854 if (maybe_process_partial_specialization (t) == error_mark_node)
4855 return NULL_TREE;
4857 /* This is where the variables in an anonymous union are
4858 declared. An anonymous union declaration looks like:
4859 union { ... } ;
4860 because there is no declarator after the union, the parser
4861 sends that declaration here. */
4862 if (ANON_AGGR_TYPE_P (t))
4864 fixup_anonymous_aggr (t);
4866 if (TYPE_FIELDS (t))
4868 tree decl = grokdeclarator (/*declarator=*/NULL,
4869 declspecs, NORMAL, 0, NULL);
4870 finish_anon_union (decl);
4874 return t;
4877 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
4879 tree
4880 groktypename (cp_decl_specifier_seq *type_specifiers,
4881 const cp_declarator *declarator,
4882 bool is_template_arg)
4884 tree attrs;
4885 tree type;
4886 enum decl_context context
4887 = is_template_arg ? TEMPLATE_TYPE_ARG : TYPENAME;
4888 attrs = type_specifiers->attributes;
4889 type_specifiers->attributes = NULL_TREE;
4890 type = grokdeclarator (declarator, type_specifiers, context, 0, &attrs);
4891 if (attrs && type != error_mark_node)
4893 if (CLASS_TYPE_P (type))
4894 warning (OPT_Wattributes, "ignoring attributes applied to class type %qT "
4895 "outside of definition", type);
4896 else if (MAYBE_CLASS_TYPE_P (type))
4897 /* A template type parameter or other dependent type. */
4898 warning (OPT_Wattributes, "ignoring attributes applied to dependent "
4899 "type %qT without an associated declaration", type);
4900 else
4901 cplus_decl_attributes (&type, attrs, 0);
4903 return type;
4906 /* Process a DECLARATOR for a function-scope variable declaration,
4907 namespace-scope variable declaration, or function declaration.
4908 (Function definitions go through start_function; class member
4909 declarations appearing in the body of the class go through
4910 grokfield.) The DECL corresponding to the DECLARATOR is returned.
4911 If an error occurs, the error_mark_node is returned instead.
4913 DECLSPECS are the decl-specifiers for the declaration. INITIALIZED is
4914 SD_INITIALIZED if an explicit initializer is present, or SD_DEFAULTED
4915 for an explicitly defaulted function, or SD_DELETED for an explicitly
4916 deleted function, but 0 (SD_UNINITIALIZED) if this is a variable
4917 implicitly initialized via a default constructor. ATTRIBUTES and
4918 PREFIX_ATTRIBUTES are GNU attributes associated with this declaration.
4920 The scope represented by the context of the returned DECL is pushed
4921 (if it is not the global namespace) and is assigned to
4922 *PUSHED_SCOPE_P. The caller is then responsible for calling
4923 pop_scope on *PUSHED_SCOPE_P if it is set. */
4925 tree
4926 start_decl (const cp_declarator *declarator,
4927 cp_decl_specifier_seq *declspecs,
4928 int initialized,
4929 tree attributes,
4930 tree prefix_attributes,
4931 tree *pushed_scope_p)
4933 tree decl;
4934 tree context;
4935 bool was_public;
4936 int flags;
4937 bool alias;
4939 *pushed_scope_p = NULL_TREE;
4941 /* An object declared as __attribute__((deprecated)) suppresses
4942 warnings of uses of other deprecated items. */
4943 if (lookup_attribute ("deprecated", attributes))
4944 deprecated_state = DEPRECATED_SUPPRESS;
4946 attributes = chainon (attributes, prefix_attributes);
4948 decl = grokdeclarator (declarator, declspecs, NORMAL, initialized,
4949 &attributes);
4951 deprecated_state = DEPRECATED_NORMAL;
4953 if (decl == NULL_TREE || VOID_TYPE_P (decl)
4954 || decl == error_mark_node)
4955 return error_mark_node;
4957 context = CP_DECL_CONTEXT (decl);
4958 if (context != global_namespace)
4959 *pushed_scope_p = push_scope (context);
4961 /* Is it valid for this decl to have an initializer at all?
4962 If not, set INITIALIZED to zero, which will indirectly
4963 tell `cp_finish_decl' to ignore the initializer once it is parsed. */
4964 if (initialized
4965 && TREE_CODE (decl) == TYPE_DECL)
4967 error ("typedef %qD is initialized (use decltype instead)", decl);
4968 return error_mark_node;
4971 if (initialized)
4973 if (! toplevel_bindings_p ()
4974 && DECL_EXTERNAL (decl))
4975 warning (0, "declaration of %q#D has %<extern%> and is initialized",
4976 decl);
4977 DECL_EXTERNAL (decl) = 0;
4978 if (toplevel_bindings_p ())
4979 TREE_STATIC (decl) = 1;
4981 alias = lookup_attribute ("alias", DECL_ATTRIBUTES (decl)) != 0;
4983 if (alias && TREE_CODE (decl) == FUNCTION_DECL)
4984 record_key_method_defined (decl);
4986 /* If this is a typedef that names the class for linkage purposes
4987 (7.1.3p8), apply any attributes directly to the type. */
4988 if (TREE_CODE (decl) == TYPE_DECL
4989 && OVERLOAD_TYPE_P (TREE_TYPE (decl))
4990 && decl == TYPE_NAME (TYPE_MAIN_VARIANT (TREE_TYPE (decl))))
4991 flags = ATTR_FLAG_TYPE_IN_PLACE;
4992 else
4993 flags = 0;
4995 /* Set attributes here so if duplicate decl, will have proper attributes. */
4996 cplus_decl_attributes (&decl, attributes, flags);
4998 /* Dllimported symbols cannot be defined. Static data members (which
4999 can be initialized in-class and dllimported) go through grokfield,
5000 not here, so we don't need to exclude those decls when checking for
5001 a definition. */
5002 if (initialized && DECL_DLLIMPORT_P (decl))
5004 error ("definition of %q#D is marked %<dllimport%>", decl);
5005 DECL_DLLIMPORT_P (decl) = 0;
5008 /* If #pragma weak was used, mark the decl weak now. */
5009 if (!processing_template_decl && !DECL_DECOMPOSITION_P (decl))
5010 maybe_apply_pragma_weak (decl);
5012 if (TREE_CODE (decl) == FUNCTION_DECL
5013 && DECL_DECLARED_INLINE_P (decl)
5014 && DECL_UNINLINABLE (decl)
5015 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
5016 warning_at (DECL_SOURCE_LOCATION (decl), 0,
5017 "inline function %qD given attribute noinline", decl);
5019 if (TYPE_P (context) && COMPLETE_TYPE_P (complete_type (context)))
5021 bool this_tmpl = (processing_template_decl
5022 > template_class_depth (context));
5023 if (VAR_P (decl))
5025 tree field = lookup_field (context, DECL_NAME (decl), 0, false);
5026 if (field == NULL_TREE
5027 || !(VAR_P (field) || variable_template_p (field)))
5028 error ("%q+#D is not a static data member of %q#T", decl, context);
5029 else if (variable_template_p (field)
5030 && (DECL_LANG_SPECIFIC (decl)
5031 && DECL_TEMPLATE_SPECIALIZATION (decl)))
5032 /* OK, specialization was already checked. */;
5033 else if (variable_template_p (field) && !this_tmpl)
5035 error_at (DECL_SOURCE_LOCATION (decl),
5036 "non-member-template declaration of %qD", decl);
5037 inform (DECL_SOURCE_LOCATION (field), "does not match "
5038 "member template declaration here");
5039 return error_mark_node;
5041 else
5043 if (variable_template_p (field))
5044 field = DECL_TEMPLATE_RESULT (field);
5046 if (DECL_CONTEXT (field) != context)
5048 if (!same_type_p (DECL_CONTEXT (field), context))
5049 permerror (input_location, "ISO C++ does not permit %<%T::%D%> "
5050 "to be defined as %<%T::%D%>",
5051 DECL_CONTEXT (field), DECL_NAME (decl),
5052 context, DECL_NAME (decl));
5053 DECL_CONTEXT (decl) = DECL_CONTEXT (field);
5055 /* Static data member are tricky; an in-class initialization
5056 still doesn't provide a definition, so the in-class
5057 declaration will have DECL_EXTERNAL set, but will have an
5058 initialization. Thus, duplicate_decls won't warn
5059 about this situation, and so we check here. */
5060 if (initialized && DECL_INITIALIZED_IN_CLASS_P (field))
5061 error ("duplicate initialization of %qD", decl);
5062 field = duplicate_decls (decl, field,
5063 /*newdecl_is_friend=*/false);
5064 if (field == error_mark_node)
5065 return error_mark_node;
5066 else if (field)
5067 decl = field;
5070 else
5072 tree field = check_classfn (context, decl,
5073 this_tmpl
5074 ? current_template_parms
5075 : NULL_TREE);
5076 if (field && field != error_mark_node
5077 && duplicate_decls (decl, field,
5078 /*newdecl_is_friend=*/false))
5079 decl = field;
5082 /* cp_finish_decl sets DECL_EXTERNAL if DECL_IN_AGGR_P is set. */
5083 DECL_IN_AGGR_P (decl) = 0;
5084 /* Do not mark DECL as an explicit specialization if it was not
5085 already marked as an instantiation; a declaration should
5086 never be marked as a specialization unless we know what
5087 template is being specialized. */
5088 if (DECL_LANG_SPECIFIC (decl) && DECL_USE_TEMPLATE (decl))
5090 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
5091 if (TREE_CODE (decl) == FUNCTION_DECL)
5092 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
5093 && DECL_DECLARED_INLINE_P (decl));
5094 else
5095 DECL_COMDAT (decl) = false;
5097 /* [temp.expl.spec] An explicit specialization of a static data
5098 member of a template is a definition if the declaration
5099 includes an initializer; otherwise, it is a declaration.
5101 We check for processing_specialization so this only applies
5102 to the new specialization syntax. */
5103 if (!initialized && processing_specialization)
5104 DECL_EXTERNAL (decl) = 1;
5107 if (DECL_EXTERNAL (decl) && ! DECL_TEMPLATE_SPECIALIZATION (decl)
5108 /* Aliases are definitions. */
5109 && !alias)
5110 permerror (input_location, "declaration of %q#D outside of class is not definition",
5111 decl);
5114 was_public = TREE_PUBLIC (decl);
5116 /* Enter this declaration into the symbol table. Don't push the plain
5117 VAR_DECL for a variable template. */
5118 if (!template_parm_scope_p ()
5119 || !VAR_P (decl))
5120 decl = maybe_push_decl (decl);
5122 if (processing_template_decl)
5123 decl = push_template_decl (decl);
5124 if (decl == error_mark_node)
5125 return error_mark_node;
5127 if (VAR_P (decl)
5128 && DECL_NAMESPACE_SCOPE_P (decl) && !TREE_PUBLIC (decl) && !was_public
5129 && !DECL_THIS_STATIC (decl) && !DECL_ARTIFICIAL (decl))
5131 /* This is a const variable with implicit 'static'. Set
5132 DECL_THIS_STATIC so we can tell it from variables that are
5133 !TREE_PUBLIC because of the anonymous namespace. */
5134 gcc_assert (CP_TYPE_CONST_P (TREE_TYPE (decl)) || errorcount);
5135 DECL_THIS_STATIC (decl) = 1;
5138 if (current_function_decl && VAR_P (decl)
5139 && DECL_DECLARED_CONSTEXPR_P (current_function_decl))
5141 bool ok = false;
5142 if (CP_DECL_THREAD_LOCAL_P (decl))
5143 error ("%qD declared %<thread_local%> in %<constexpr%> function",
5144 decl);
5145 else if (TREE_STATIC (decl))
5146 error ("%qD declared %<static%> in %<constexpr%> function", decl);
5147 else
5148 ok = true;
5149 if (!ok)
5150 cp_function_chain->invalid_constexpr = true;
5153 if (!processing_template_decl && VAR_P (decl))
5154 start_decl_1 (decl, initialized);
5156 return decl;
5159 /* Process the declaration of a variable DECL. INITIALIZED is true
5160 iff DECL is explicitly initialized. (INITIALIZED is false if the
5161 variable is initialized via an implicitly-called constructor.)
5162 This function must be called for ordinary variables (including, for
5163 example, implicit instantiations of templates), but must not be
5164 called for template declarations. */
5166 void
5167 start_decl_1 (tree decl, bool initialized)
5169 tree type;
5170 bool complete_p;
5171 bool aggregate_definition_p;
5173 gcc_assert (!processing_template_decl);
5175 if (error_operand_p (decl))
5176 return;
5178 gcc_assert (VAR_P (decl));
5180 type = TREE_TYPE (decl);
5181 complete_p = COMPLETE_TYPE_P (type);
5182 aggregate_definition_p = MAYBE_CLASS_TYPE_P (type) && !DECL_EXTERNAL (decl);
5184 /* If an explicit initializer is present, or if this is a definition
5185 of an aggregate, then we need a complete type at this point.
5186 (Scalars are always complete types, so there is nothing to
5187 check.) This code just sets COMPLETE_P; errors (if necessary)
5188 are issued below. */
5189 if ((initialized || aggregate_definition_p)
5190 && !complete_p
5191 && COMPLETE_TYPE_P (complete_type (type)))
5193 complete_p = true;
5194 /* We will not yet have set TREE_READONLY on DECL if the type
5195 was "const", but incomplete, before this point. But, now, we
5196 have a complete type, so we can try again. */
5197 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
5200 if (initialized)
5201 /* Is it valid for this decl to have an initializer at all? */
5203 /* Don't allow initializations for incomplete types except for
5204 arrays which might be completed by the initialization. */
5205 if (complete_p)
5206 ; /* A complete type is ok. */
5207 else if (type_uses_auto (type))
5208 ; /* An auto type is ok. */
5209 else if (TREE_CODE (type) != ARRAY_TYPE)
5211 error ("variable %q#D has initializer but incomplete type", decl);
5212 type = TREE_TYPE (decl) = error_mark_node;
5214 else if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (type))))
5216 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
5217 error ("elements of array %q#D have incomplete type", decl);
5218 /* else we already gave an error in start_decl. */
5221 else if (aggregate_definition_p && !complete_p)
5223 if (type_uses_auto (type))
5224 gcc_assert (CLASS_PLACEHOLDER_TEMPLATE (type));
5225 else
5227 error ("aggregate %q#D has incomplete type and cannot be defined",
5228 decl);
5229 /* Change the type so that assemble_variable will give
5230 DECL an rtl we can live with: (mem (const_int 0)). */
5231 type = TREE_TYPE (decl) = error_mark_node;
5235 /* Create a new scope to hold this declaration if necessary.
5236 Whether or not a new scope is necessary cannot be determined
5237 until after the type has been completed; if the type is a
5238 specialization of a class template it is not until after
5239 instantiation has occurred that TYPE_HAS_NONTRIVIAL_DESTRUCTOR
5240 will be set correctly. */
5241 maybe_push_cleanup_level (type);
5244 /* Handle initialization of references. DECL, TYPE, and INIT have the
5245 same meaning as in cp_finish_decl. *CLEANUP must be NULL on entry,
5246 but will be set to a new CLEANUP_STMT if a temporary is created
5247 that must be destroyed subsequently.
5249 Returns an initializer expression to use to initialize DECL, or
5250 NULL if the initialization can be performed statically.
5252 Quotes on semantics can be found in ARM 8.4.3. */
5254 static tree
5255 grok_reference_init (tree decl, tree type, tree init, int flags)
5257 if (init == NULL_TREE)
5259 if ((DECL_LANG_SPECIFIC (decl) == 0
5260 || DECL_IN_AGGR_P (decl) == 0)
5261 && ! DECL_THIS_EXTERN (decl))
5262 error ("%qD declared as reference but not initialized", decl);
5263 return NULL_TREE;
5266 if (TREE_CODE (init) == TREE_LIST)
5267 init = build_x_compound_expr_from_list (init, ELK_INIT,
5268 tf_warning_or_error);
5270 tree ttype = TREE_TYPE (type);
5271 if (TREE_CODE (ttype) != ARRAY_TYPE
5272 && TREE_CODE (TREE_TYPE (init)) == ARRAY_TYPE)
5273 /* Note: default conversion is only called in very special cases. */
5274 init = decay_conversion (init, tf_warning_or_error);
5276 /* check_initializer handles this for non-reference variables, but for
5277 references we need to do it here or the initializer will get the
5278 incomplete array type and confuse later calls to
5279 cp_complete_array_type. */
5280 if (TREE_CODE (ttype) == ARRAY_TYPE
5281 && TYPE_DOMAIN (ttype) == NULL_TREE
5282 && (BRACE_ENCLOSED_INITIALIZER_P (init)
5283 || TREE_CODE (init) == STRING_CST))
5285 cp_complete_array_type (&ttype, init, false);
5286 if (ttype != TREE_TYPE (type))
5287 type = cp_build_reference_type (ttype, TYPE_REF_IS_RVALUE (type));
5290 /* Convert INIT to the reference type TYPE. This may involve the
5291 creation of a temporary, whose lifetime must be the same as that
5292 of the reference. If so, a DECL_EXPR for the temporary will be
5293 added just after the DECL_EXPR for DECL. That's why we don't set
5294 DECL_INITIAL for local references (instead assigning to them
5295 explicitly); we need to allow the temporary to be initialized
5296 first. */
5297 return initialize_reference (type, init, flags,
5298 tf_warning_or_error);
5301 /* Designated initializers in arrays are not supported in GNU C++.
5302 The parser cannot detect this error since it does not know whether
5303 a given brace-enclosed initializer is for a class type or for an
5304 array. This function checks that CE does not use a designated
5305 initializer. If it does, an error is issued. Returns true if CE
5306 is valid, i.e., does not have a designated initializer. */
5308 bool
5309 check_array_designated_initializer (constructor_elt *ce,
5310 unsigned HOST_WIDE_INT index)
5312 /* Designated initializers for array elements are not supported. */
5313 if (ce->index)
5315 /* The parser only allows identifiers as designated
5316 initializers. */
5317 if (ce->index == error_mark_node)
5319 error ("name used in a GNU-style designated "
5320 "initializer for an array");
5321 return false;
5323 else if (identifier_p (ce->index))
5325 error ("name %qD used in a GNU-style designated "
5326 "initializer for an array", ce->index);
5327 return false;
5330 tree ce_index = build_expr_type_conversion (WANT_INT | WANT_ENUM,
5331 ce->index, true);
5332 if (ce_index
5333 && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (ce_index))
5334 && (TREE_CODE (ce_index = fold_non_dependent_expr (ce_index))
5335 == INTEGER_CST))
5337 /* A C99 designator is OK if it matches the current index. */
5338 if (wi::to_wide (ce_index) == index)
5340 ce->index = ce_index;
5341 return true;
5343 else
5344 sorry ("non-trivial designated initializers not supported");
5346 else
5347 error ("C99 designator %qE is not an integral constant-expression",
5348 ce->index);
5350 return false;
5353 return true;
5356 /* When parsing `int a[] = {1, 2};' we don't know the size of the
5357 array until we finish parsing the initializer. If that's the
5358 situation we're in, update DECL accordingly. */
5360 static void
5361 maybe_deduce_size_from_array_init (tree decl, tree init)
5363 tree type = TREE_TYPE (decl);
5365 if (TREE_CODE (type) == ARRAY_TYPE
5366 && TYPE_DOMAIN (type) == NULL_TREE
5367 && TREE_CODE (decl) != TYPE_DECL)
5369 /* do_default is really a C-ism to deal with tentative definitions.
5370 But let's leave it here to ease the eventual merge. */
5371 int do_default = !DECL_EXTERNAL (decl);
5372 tree initializer = init ? init : DECL_INITIAL (decl);
5373 int failure = 0;
5375 /* Check that there are no designated initializers in INIT, as
5376 those are not supported in GNU C++, and as the middle-end
5377 will crash if presented with a non-numeric designated
5378 initializer. */
5379 if (initializer && BRACE_ENCLOSED_INITIALIZER_P (initializer))
5381 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initializer);
5382 constructor_elt *ce;
5383 HOST_WIDE_INT i;
5384 FOR_EACH_VEC_SAFE_ELT (v, i, ce)
5386 if (instantiation_dependent_expression_p (ce->index))
5387 return;
5388 if (!check_array_designated_initializer (ce, i))
5389 failure = 1;
5393 if (failure)
5394 TREE_TYPE (decl) = error_mark_node;
5395 else
5397 failure = cp_complete_array_type (&TREE_TYPE (decl), initializer,
5398 do_default);
5399 if (failure == 1)
5401 error_at (EXPR_LOC_OR_LOC (initializer,
5402 DECL_SOURCE_LOCATION (decl)),
5403 "initializer fails to determine size of %qD", decl);
5405 else if (failure == 2)
5407 if (do_default)
5409 error_at (DECL_SOURCE_LOCATION (decl),
5410 "array size missing in %qD", decl);
5412 /* If a `static' var's size isn't known, make it extern as
5413 well as static, so it does not get allocated. If it's not
5414 `static', then don't mark it extern; finish_incomplete_decl
5415 will give it a default size and it will get allocated. */
5416 else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
5417 DECL_EXTERNAL (decl) = 1;
5419 else if (failure == 3)
5421 error_at (DECL_SOURCE_LOCATION (decl),
5422 "zero-size array %qD", decl);
5426 cp_apply_type_quals_to_decl (cp_type_quals (TREE_TYPE (decl)), decl);
5428 relayout_decl (decl);
5432 /* Set DECL_SIZE, DECL_ALIGN, etc. for DECL (a VAR_DECL), and issue
5433 any appropriate error messages regarding the layout. */
5435 static void
5436 layout_var_decl (tree decl)
5438 tree type;
5440 type = TREE_TYPE (decl);
5441 if (type == error_mark_node)
5442 return;
5444 /* If we haven't already laid out this declaration, do so now.
5445 Note that we must not call complete type for an external object
5446 because it's type might involve templates that we are not
5447 supposed to instantiate yet. (And it's perfectly valid to say
5448 `extern X x' for some incomplete type `X'.) */
5449 if (!DECL_EXTERNAL (decl))
5450 complete_type (type);
5451 if (!DECL_SIZE (decl)
5452 && TREE_TYPE (decl) != error_mark_node
5453 && complete_or_array_type_p (type))
5454 layout_decl (decl, 0);
5456 if (!DECL_EXTERNAL (decl) && DECL_SIZE (decl) == NULL_TREE)
5458 /* An automatic variable with an incomplete type: that is an error.
5459 Don't talk about array types here, since we took care of that
5460 message in grokdeclarator. */
5461 error_at (DECL_SOURCE_LOCATION (decl),
5462 "storage size of %qD isn%'t known", decl);
5463 TREE_TYPE (decl) = error_mark_node;
5465 #if 0
5466 /* Keep this code around in case we later want to control debug info
5467 based on whether a type is "used". (jason 1999-11-11) */
5469 else if (!DECL_EXTERNAL (decl) && MAYBE_CLASS_TYPE_P (ttype))
5470 /* Let debugger know it should output info for this type. */
5471 note_debug_info_needed (ttype);
5473 if (TREE_STATIC (decl) && DECL_CLASS_SCOPE_P (decl))
5474 note_debug_info_needed (DECL_CONTEXT (decl));
5475 #endif
5477 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
5478 && DECL_SIZE (decl) != NULL_TREE
5479 && ! TREE_CONSTANT (DECL_SIZE (decl)))
5481 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
5482 constant_expression_warning (DECL_SIZE (decl));
5483 else
5485 error_at (DECL_SOURCE_LOCATION (decl),
5486 "storage size of %qD isn%'t constant", decl);
5487 TREE_TYPE (decl) = error_mark_node;
5492 /* If a local static variable is declared in an inline function, or if
5493 we have a weak definition, we must endeavor to create only one
5494 instance of the variable at link-time. */
5496 void
5497 maybe_commonize_var (tree decl)
5499 /* Static data in a function with comdat linkage also has comdat
5500 linkage. */
5501 if ((TREE_STATIC (decl)
5502 /* Don't mess with __FUNCTION__. */
5503 && ! DECL_ARTIFICIAL (decl)
5504 && DECL_FUNCTION_SCOPE_P (decl)
5505 && vague_linkage_p (DECL_CONTEXT (decl)))
5506 || (TREE_PUBLIC (decl) && DECL_INLINE_VAR_P (decl)))
5508 if (flag_weak)
5510 /* With weak symbols, we simply make the variable COMDAT;
5511 that will cause copies in multiple translations units to
5512 be merged. */
5513 comdat_linkage (decl);
5515 else
5517 if (DECL_INITIAL (decl) == NULL_TREE
5518 || DECL_INITIAL (decl) == error_mark_node)
5520 /* Without weak symbols, we can use COMMON to merge
5521 uninitialized variables. */
5522 TREE_PUBLIC (decl) = 1;
5523 DECL_COMMON (decl) = 1;
5525 else
5527 /* While for initialized variables, we must use internal
5528 linkage -- which means that multiple copies will not
5529 be merged. */
5530 TREE_PUBLIC (decl) = 0;
5531 DECL_COMMON (decl) = 0;
5532 const char *msg;
5533 if (DECL_INLINE_VAR_P (decl))
5534 msg = G_("sorry: semantics of inline variable "
5535 "%q#D are wrong (you%'ll wind up with "
5536 "multiple copies)");
5537 else
5538 msg = G_("sorry: semantics of inline function "
5539 "static data %q#D are wrong (you%'ll wind "
5540 "up with multiple copies)");
5541 if (warning_at (DECL_SOURCE_LOCATION (decl), 0,
5542 msg, decl))
5543 inform (DECL_SOURCE_LOCATION (decl),
5544 "you can work around this by removing the initializer");
5550 /* Issue an error message if DECL is an uninitialized const variable.
5551 CONSTEXPR_CONTEXT_P is true when the function is called in a constexpr
5552 context from potential_constant_expression. Returns true if all is well,
5553 false otherwise. */
5555 bool
5556 check_for_uninitialized_const_var (tree decl, bool constexpr_context_p,
5557 tsubst_flags_t complain)
5559 tree type = strip_array_types (TREE_TYPE (decl));
5561 /* ``Unless explicitly declared extern, a const object does not have
5562 external linkage and must be initialized. ($8.4; $12.1)'' ARM
5563 7.1.6 */
5564 if (VAR_P (decl)
5565 && TREE_CODE (type) != REFERENCE_TYPE
5566 && (constexpr_context_p
5567 || CP_TYPE_CONST_P (type) || var_in_constexpr_fn (decl))
5568 && !DECL_NONTRIVIALLY_INITIALIZED_P (decl))
5570 tree field = default_init_uninitialized_part (type);
5571 if (!field)
5572 return true;
5574 if (!constexpr_context_p)
5576 if (CP_TYPE_CONST_P (type))
5578 if (complain & tf_error)
5579 permerror (DECL_SOURCE_LOCATION (decl),
5580 "uninitialized const %qD", decl);
5582 else
5584 if (!is_instantiation_of_constexpr (current_function_decl)
5585 && (complain & tf_error))
5586 error_at (DECL_SOURCE_LOCATION (decl),
5587 "uninitialized variable %qD in %<constexpr%> "
5588 "function", decl);
5589 cp_function_chain->invalid_constexpr = true;
5592 else if (complain & tf_error)
5593 error_at (DECL_SOURCE_LOCATION (decl),
5594 "uninitialized variable %qD in %<constexpr%> context",
5595 decl);
5597 if (CLASS_TYPE_P (type) && (complain & tf_error))
5599 tree defaulted_ctor;
5601 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)),
5602 "%q#T has no user-provided default constructor", type);
5603 defaulted_ctor = in_class_defaulted_default_constructor (type);
5604 if (defaulted_ctor)
5605 inform (DECL_SOURCE_LOCATION (defaulted_ctor),
5606 "constructor is not user-provided because it is "
5607 "explicitly defaulted in the class body");
5608 inform (DECL_SOURCE_LOCATION (field),
5609 "and the implicitly-defined constructor does not "
5610 "initialize %q#D", field);
5613 return false;
5616 return true;
5619 /* Structure holding the current initializer being processed by reshape_init.
5620 CUR is a pointer to the current element being processed, END is a pointer
5621 after the last element present in the initializer. */
5622 struct reshape_iter
5624 constructor_elt *cur;
5625 constructor_elt *end;
5628 static tree reshape_init_r (tree, reshape_iter *, bool, tsubst_flags_t);
5630 /* FIELD is a FIELD_DECL or NULL. In the former case, the value
5631 returned is the next FIELD_DECL (possibly FIELD itself) that can be
5632 initialized. If there are no more such fields, the return value
5633 will be NULL. */
5635 tree
5636 next_initializable_field (tree field)
5638 while (field
5639 && (TREE_CODE (field) != FIELD_DECL
5640 || DECL_UNNAMED_BIT_FIELD (field)
5641 || (DECL_ARTIFICIAL (field)
5642 && !(cxx_dialect >= cxx17 && DECL_FIELD_IS_BASE (field)))))
5643 field = DECL_CHAIN (field);
5645 return field;
5648 /* Return true for [dcl.init.list] direct-list-initialization from
5649 single element of enumeration with a fixed underlying type. */
5651 bool
5652 is_direct_enum_init (tree type, tree init)
5654 if (cxx_dialect >= cxx17
5655 && TREE_CODE (type) == ENUMERAL_TYPE
5656 && ENUM_FIXED_UNDERLYING_TYPE_P (type)
5657 && TREE_CODE (init) == CONSTRUCTOR
5658 && CONSTRUCTOR_IS_DIRECT_INIT (init)
5659 && CONSTRUCTOR_NELTS (init) == 1)
5660 return true;
5661 return false;
5664 /* Subroutine of reshape_init_array and reshape_init_vector, which does
5665 the actual work. ELT_TYPE is the element type of the array. MAX_INDEX is an
5666 INTEGER_CST representing the size of the array minus one (the maximum index),
5667 or NULL_TREE if the array was declared without specifying the size. D is
5668 the iterator within the constructor. */
5670 static tree
5671 reshape_init_array_1 (tree elt_type, tree max_index, reshape_iter *d,
5672 tsubst_flags_t complain)
5674 tree new_init;
5675 bool sized_array_p = (max_index && TREE_CONSTANT (max_index));
5676 unsigned HOST_WIDE_INT max_index_cst = 0;
5677 unsigned HOST_WIDE_INT index;
5679 /* The initializer for an array is always a CONSTRUCTOR. */
5680 new_init = build_constructor (init_list_type_node, NULL);
5682 if (sized_array_p)
5684 /* Minus 1 is used for zero sized arrays. */
5685 if (integer_all_onesp (max_index))
5686 return new_init;
5688 if (tree_fits_uhwi_p (max_index))
5689 max_index_cst = tree_to_uhwi (max_index);
5690 /* sizetype is sign extended, not zero extended. */
5691 else
5692 max_index_cst = tree_to_uhwi (fold_convert (size_type_node, max_index));
5695 /* Loop until there are no more initializers. */
5696 for (index = 0;
5697 d->cur != d->end && (!sized_array_p || index <= max_index_cst);
5698 ++index)
5700 tree elt_init;
5701 constructor_elt *old_cur = d->cur;
5703 check_array_designated_initializer (d->cur, index);
5704 elt_init = reshape_init_r (elt_type, d, /*first_initializer_p=*/false,
5705 complain);
5706 if (elt_init == error_mark_node)
5707 return error_mark_node;
5708 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init),
5709 size_int (index), elt_init);
5710 if (!TREE_CONSTANT (elt_init))
5711 TREE_CONSTANT (new_init) = false;
5713 /* This can happen with an invalid initializer (c++/54501). */
5714 if (d->cur == old_cur && !sized_array_p)
5715 break;
5718 return new_init;
5721 /* Subroutine of reshape_init_r, processes the initializers for arrays.
5722 Parameters are the same of reshape_init_r. */
5724 static tree
5725 reshape_init_array (tree type, reshape_iter *d, tsubst_flags_t complain)
5727 tree max_index = NULL_TREE;
5729 gcc_assert (TREE_CODE (type) == ARRAY_TYPE);
5731 if (TYPE_DOMAIN (type))
5732 max_index = array_type_nelts (type);
5734 return reshape_init_array_1 (TREE_TYPE (type), max_index, d, complain);
5737 /* Subroutine of reshape_init_r, processes the initializers for vectors.
5738 Parameters are the same of reshape_init_r. */
5740 static tree
5741 reshape_init_vector (tree type, reshape_iter *d, tsubst_flags_t complain)
5743 tree max_index = NULL_TREE;
5745 gcc_assert (VECTOR_TYPE_P (type));
5747 if (COMPOUND_LITERAL_P (d->cur->value))
5749 tree value = d->cur->value;
5750 if (!same_type_p (TREE_TYPE (value), type))
5752 if (complain & tf_error)
5753 error ("invalid type %qT as initializer for a vector of type %qT",
5754 TREE_TYPE (d->cur->value), type);
5755 value = error_mark_node;
5757 ++d->cur;
5758 return value;
5761 /* For a vector, we initialize it as an array of the appropriate size. */
5762 if (VECTOR_TYPE_P (type))
5763 max_index = size_int (TYPE_VECTOR_SUBPARTS (type) - 1);
5765 return reshape_init_array_1 (TREE_TYPE (type), max_index, d, complain);
5768 /* Subroutine of reshape_init_r, processes the initializers for classes
5769 or union. Parameters are the same of reshape_init_r. */
5771 static tree
5772 reshape_init_class (tree type, reshape_iter *d, bool first_initializer_p,
5773 tsubst_flags_t complain)
5775 tree field;
5776 tree new_init;
5778 gcc_assert (CLASS_TYPE_P (type));
5780 /* The initializer for a class is always a CONSTRUCTOR. */
5781 new_init = build_constructor (init_list_type_node, NULL);
5782 field = next_initializable_field (TYPE_FIELDS (type));
5784 if (!field)
5786 /* [dcl.init.aggr]
5788 An initializer for an aggregate member that is an
5789 empty class shall have the form of an empty
5790 initializer-list {}. */
5791 if (!first_initializer_p)
5793 if (complain & tf_error)
5794 error ("initializer for %qT must be brace-enclosed", type);
5795 return error_mark_node;
5797 return new_init;
5800 /* Loop through the initializable fields, gathering initializers. */
5801 while (d->cur != d->end)
5803 tree field_init;
5804 constructor_elt *old_cur = d->cur;
5806 /* Handle designated initializers, as an extension. */
5807 if (d->cur->index)
5809 if (d->cur->index == error_mark_node)
5810 return error_mark_node;
5812 if (TREE_CODE (d->cur->index) == FIELD_DECL)
5814 /* We already reshaped this. */
5815 if (field != d->cur->index)
5817 tree id = DECL_NAME (d->cur->index);
5818 gcc_assert (id);
5819 gcc_checking_assert (d->cur->index
5820 == get_class_binding (type, id, false));
5821 field = d->cur->index;
5824 else if (TREE_CODE (d->cur->index) == IDENTIFIER_NODE)
5825 field = get_class_binding (type, d->cur->index, false);
5826 else
5828 if (complain & tf_error)
5829 error ("%<[%E] =%> used in a GNU-style designated initializer"
5830 " for class %qT", d->cur->index, type);
5831 return error_mark_node;
5834 if (!field || TREE_CODE (field) != FIELD_DECL)
5836 if (complain & tf_error)
5837 error ("%qT has no non-static data member named %qD", type,
5838 d->cur->index);
5839 return error_mark_node;
5843 /* If we processed all the member of the class, we are done. */
5844 if (!field)
5845 break;
5847 field_init = reshape_init_r (TREE_TYPE (field), d,
5848 /*first_initializer_p=*/false, complain);
5849 if (field_init == error_mark_node)
5850 return error_mark_node;
5852 if (d->cur == old_cur && d->cur->index)
5854 /* This can happen with an invalid initializer for a flexible
5855 array member (c++/54441). */
5856 if (complain & tf_error)
5857 error ("invalid initializer for %q#D", field);
5858 return error_mark_node;
5861 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init), field, field_init);
5863 /* [dcl.init.aggr]
5865 When a union is initialized with a brace-enclosed
5866 initializer, the braces shall only contain an
5867 initializer for the first member of the union. */
5868 if (TREE_CODE (type) == UNION_TYPE)
5869 break;
5871 field = next_initializable_field (DECL_CHAIN (field));
5874 return new_init;
5877 /* Subroutine of reshape_init_r. We're in a context where C99 initializer
5878 designators are not valid; either complain or return true to indicate
5879 that reshape_init_r should return error_mark_node. */
5881 static bool
5882 has_designator_problem (reshape_iter *d, tsubst_flags_t complain)
5884 if (d->cur->index)
5886 if (complain & tf_error)
5887 error ("C99 designator %qE outside aggregate initializer",
5888 d->cur->index);
5889 else
5890 return true;
5892 return false;
5895 /* Subroutine of reshape_init, which processes a single initializer (part of
5896 a CONSTRUCTOR). TYPE is the type of the variable being initialized, D is the
5897 iterator within the CONSTRUCTOR which points to the initializer to process.
5898 FIRST_INITIALIZER_P is true if this is the first initializer of the
5899 outermost CONSTRUCTOR node. */
5901 static tree
5902 reshape_init_r (tree type, reshape_iter *d, bool first_initializer_p,
5903 tsubst_flags_t complain)
5905 tree init = d->cur->value;
5907 if (error_operand_p (init))
5908 return error_mark_node;
5910 if (first_initializer_p && !CP_AGGREGATE_TYPE_P (type)
5911 && has_designator_problem (d, complain))
5912 return error_mark_node;
5914 if (TREE_CODE (type) == COMPLEX_TYPE)
5916 /* A complex type can be initialized from one or two initializers,
5917 but braces are not elided. */
5918 d->cur++;
5919 if (BRACE_ENCLOSED_INITIALIZER_P (init))
5921 if (CONSTRUCTOR_NELTS (init) > 2)
5923 if (complain & tf_error)
5924 error ("too many initializers for %qT", type);
5925 else
5926 return error_mark_node;
5929 else if (first_initializer_p && d->cur != d->end)
5931 vec<constructor_elt, va_gc> *v = 0;
5932 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, init);
5933 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, d->cur->value);
5934 if (has_designator_problem (d, complain))
5935 return error_mark_node;
5936 d->cur++;
5937 init = build_constructor (init_list_type_node, v);
5939 return init;
5942 /* A non-aggregate type is always initialized with a single
5943 initializer. */
5944 if (!CP_AGGREGATE_TYPE_P (type))
5946 /* It is invalid to initialize a non-aggregate type with a
5947 brace-enclosed initializer before C++0x.
5948 We need to check for BRACE_ENCLOSED_INITIALIZER_P here because
5949 of g++.old-deja/g++.mike/p7626.C: a pointer-to-member constant is
5950 a CONSTRUCTOR (with a record type). */
5951 if (TREE_CODE (init) == CONSTRUCTOR
5952 /* Don't complain about a capture-init. */
5953 && !CONSTRUCTOR_IS_DIRECT_INIT (init)
5954 && BRACE_ENCLOSED_INITIALIZER_P (init)) /* p7626.C */
5956 if (SCALAR_TYPE_P (type))
5958 if (cxx_dialect < cxx11
5959 /* Isn't value-initialization. */
5960 || CONSTRUCTOR_NELTS (init) > 0)
5962 if (complain & tf_error)
5963 error ("braces around scalar initializer for type %qT",
5964 type);
5965 init = error_mark_node;
5968 else
5969 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
5972 d->cur++;
5973 return init;
5976 /* "If T is a class type and the initializer list has a single element of
5977 type cv U, where U is T or a class derived from T, the object is
5978 initialized from that element." Even if T is an aggregate. */
5979 if (cxx_dialect >= cxx11 && (CLASS_TYPE_P (type) || VECTOR_TYPE_P (type))
5980 && first_initializer_p
5981 && d->end - d->cur == 1
5982 && reference_related_p (type, TREE_TYPE (init)))
5984 d->cur++;
5985 return init;
5988 /* [dcl.init.aggr]
5990 All implicit type conversions (clause _conv_) are considered when
5991 initializing the aggregate member with an initializer from an
5992 initializer-list. If the initializer can initialize a member,
5993 the member is initialized. Otherwise, if the member is itself a
5994 non-empty subaggregate, brace elision is assumed and the
5995 initializer is considered for the initialization of the first
5996 member of the subaggregate. */
5997 if (TREE_CODE (init) != CONSTRUCTOR
5998 /* But don't try this for the first initializer, since that would be
5999 looking through the outermost braces; A a2 = { a1 }; is not a
6000 valid aggregate initialization. */
6001 && !first_initializer_p
6002 && (same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (init))
6003 || can_convert_arg (type, TREE_TYPE (init), init, LOOKUP_NORMAL,
6004 complain)))
6006 d->cur++;
6007 return init;
6010 /* [dcl.init.string]
6012 A char array (whether plain char, signed char, or unsigned char)
6013 can be initialized by a string-literal (optionally enclosed in
6014 braces); a wchar_t array can be initialized by a wide
6015 string-literal (optionally enclosed in braces). */
6016 if (TREE_CODE (type) == ARRAY_TYPE
6017 && char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (type))))
6019 tree str_init = init;
6021 /* Strip one level of braces if and only if they enclose a single
6022 element (as allowed by [dcl.init.string]). */
6023 if (!first_initializer_p
6024 && TREE_CODE (str_init) == CONSTRUCTOR
6025 && CONSTRUCTOR_NELTS (str_init) == 1)
6027 str_init = (*CONSTRUCTOR_ELTS (str_init))[0].value;
6030 /* If it's a string literal, then it's the initializer for the array
6031 as a whole. Otherwise, continue with normal initialization for
6032 array types (one value per array element). */
6033 if (TREE_CODE (str_init) == STRING_CST)
6035 if (has_designator_problem (d, complain))
6036 return error_mark_node;
6037 d->cur++;
6038 return str_init;
6042 /* The following cases are about aggregates. If we are not within a full
6043 initializer already, and there is not a CONSTRUCTOR, it means that there
6044 is a missing set of braces (that is, we are processing the case for
6045 which reshape_init exists). */
6046 if (!first_initializer_p)
6048 if (TREE_CODE (init) == CONSTRUCTOR)
6050 if (TREE_TYPE (init) && TYPE_PTRMEMFUNC_P (TREE_TYPE (init)))
6051 /* There is no need to reshape pointer-to-member function
6052 initializers, as they are always constructed correctly
6053 by the front end. */
6055 else if (COMPOUND_LITERAL_P (init))
6056 /* For a nested compound literal, there is no need to reshape since
6057 brace elision is not allowed. Even if we decided to allow it,
6058 we should add a call to reshape_init in finish_compound_literal,
6059 before calling digest_init, so changing this code would still
6060 not be necessary. */
6061 gcc_assert (!BRACE_ENCLOSED_INITIALIZER_P (init));
6062 else
6064 ++d->cur;
6065 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
6066 return reshape_init (type, init, complain);
6070 if (complain & tf_warning)
6071 warning (OPT_Wmissing_braces,
6072 "missing braces around initializer for %qT",
6073 type);
6076 /* Dispatch to specialized routines. */
6077 if (CLASS_TYPE_P (type))
6078 return reshape_init_class (type, d, first_initializer_p, complain);
6079 else if (TREE_CODE (type) == ARRAY_TYPE)
6080 return reshape_init_array (type, d, complain);
6081 else if (VECTOR_TYPE_P (type))
6082 return reshape_init_vector (type, d, complain);
6083 else
6084 gcc_unreachable();
6087 /* Undo the brace-elision allowed by [dcl.init.aggr] in a
6088 brace-enclosed aggregate initializer.
6090 INIT is the CONSTRUCTOR containing the list of initializers describing
6091 a brace-enclosed initializer for an entity of the indicated aggregate TYPE.
6092 It may not presently match the shape of the TYPE; for example:
6094 struct S { int a; int b; };
6095 struct S a[] = { 1, 2, 3, 4 };
6097 Here INIT will hold a vector of four elements, rather than a
6098 vector of two elements, each itself a vector of two elements. This
6099 routine transforms INIT from the former form into the latter. The
6100 revised CONSTRUCTOR node is returned. */
6102 tree
6103 reshape_init (tree type, tree init, tsubst_flags_t complain)
6105 vec<constructor_elt, va_gc> *v;
6106 reshape_iter d;
6107 tree new_init;
6109 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
6111 v = CONSTRUCTOR_ELTS (init);
6113 /* An empty constructor does not need reshaping, and it is always a valid
6114 initializer. */
6115 if (vec_safe_is_empty (v))
6116 return init;
6118 /* Handle [dcl.init.list] direct-list-initialization from
6119 single element of enumeration with a fixed underlying type. */
6120 if (is_direct_enum_init (type, init))
6122 tree elt = CONSTRUCTOR_ELT (init, 0)->value;
6123 type = cv_unqualified (type);
6124 if (check_narrowing (ENUM_UNDERLYING_TYPE (type), elt, complain))
6126 warning_sentinel w (warn_useless_cast);
6127 warning_sentinel w2 (warn_ignored_qualifiers);
6128 return cp_build_c_cast (type, elt, tf_warning_or_error);
6130 else
6131 return error_mark_node;
6134 /* Recurse on this CONSTRUCTOR. */
6135 d.cur = &(*v)[0];
6136 d.end = d.cur + v->length ();
6138 new_init = reshape_init_r (type, &d, true, complain);
6139 if (new_init == error_mark_node)
6140 return error_mark_node;
6142 /* Make sure all the element of the constructor were used. Otherwise,
6143 issue an error about exceeding initializers. */
6144 if (d.cur != d.end)
6146 if (complain & tf_error)
6147 error ("too many initializers for %qT", type);
6148 return error_mark_node;
6151 if (CONSTRUCTOR_IS_DIRECT_INIT (init)
6152 && BRACE_ENCLOSED_INITIALIZER_P (new_init))
6153 CONSTRUCTOR_IS_DIRECT_INIT (new_init) = true;
6155 return new_init;
6158 /* Verify array initializer. Returns true if errors have been reported. */
6160 bool
6161 check_array_initializer (tree decl, tree type, tree init)
6163 tree element_type = TREE_TYPE (type);
6165 /* The array type itself need not be complete, because the
6166 initializer may tell us how many elements are in the array.
6167 But, the elements of the array must be complete. */
6168 if (!COMPLETE_TYPE_P (complete_type (element_type)))
6170 if (decl)
6171 error_at (DECL_SOURCE_LOCATION (decl),
6172 "elements of array %q#D have incomplete type", decl);
6173 else
6174 error ("elements of array %q#T have incomplete type", type);
6175 return true;
6177 /* A compound literal can't have variable size. */
6178 if (init && !decl
6179 && ((COMPLETE_TYPE_P (type) && !TREE_CONSTANT (TYPE_SIZE (type)))
6180 || !TREE_CONSTANT (TYPE_SIZE (element_type))))
6182 error ("variable-sized compound literal");
6183 return true;
6185 return false;
6188 /* Subroutine of check_initializer; args are passed down from that function.
6189 Set stmts_are_full_exprs_p to 1 across a call to build_aggr_init. */
6191 static tree
6192 build_aggr_init_full_exprs (tree decl, tree init, int flags)
6195 gcc_assert (stmts_are_full_exprs_p ());
6196 return build_aggr_init (decl, init, flags, tf_warning_or_error);
6199 /* Verify INIT (the initializer for DECL), and record the
6200 initialization in DECL_INITIAL, if appropriate. CLEANUP is as for
6201 grok_reference_init.
6203 If the return value is non-NULL, it is an expression that must be
6204 evaluated dynamically to initialize DECL. */
6206 static tree
6207 check_initializer (tree decl, tree init, int flags, vec<tree, va_gc> **cleanups)
6209 tree type = TREE_TYPE (decl);
6210 tree init_code = NULL;
6211 tree core_type;
6213 /* Things that are going to be initialized need to have complete
6214 type. */
6215 TREE_TYPE (decl) = type = complete_type (TREE_TYPE (decl));
6217 if (DECL_HAS_VALUE_EXPR_P (decl))
6219 /* A variable with DECL_HAS_VALUE_EXPR_P set is just a placeholder,
6220 it doesn't have storage to be initialized. */
6221 gcc_assert (init == NULL_TREE);
6222 return NULL_TREE;
6225 if (type == error_mark_node)
6226 /* We will have already complained. */
6227 return NULL_TREE;
6229 if (TREE_CODE (type) == ARRAY_TYPE)
6231 if (check_array_initializer (decl, type, init))
6232 return NULL_TREE;
6234 else if (!COMPLETE_TYPE_P (type))
6236 error_at (DECL_SOURCE_LOCATION (decl),
6237 "%q#D has incomplete type", decl);
6238 TREE_TYPE (decl) = error_mark_node;
6239 return NULL_TREE;
6241 else
6242 /* There is no way to make a variable-sized class type in GNU C++. */
6243 gcc_assert (TREE_CONSTANT (TYPE_SIZE (type)));
6245 if (init && BRACE_ENCLOSED_INITIALIZER_P (init))
6247 int init_len = CONSTRUCTOR_NELTS (init);
6248 if (SCALAR_TYPE_P (type))
6250 if (init_len == 0)
6252 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
6253 init = build_zero_init (type, NULL_TREE, false);
6255 else if (init_len != 1 && TREE_CODE (type) != COMPLEX_TYPE)
6257 error_at (EXPR_LOC_OR_LOC (init, DECL_SOURCE_LOCATION (decl)),
6258 "scalar object %qD requires one element in "
6259 "initializer", decl);
6260 TREE_TYPE (decl) = error_mark_node;
6261 return NULL_TREE;
6266 if (TREE_CODE (decl) == CONST_DECL)
6268 gcc_assert (TREE_CODE (type) != REFERENCE_TYPE);
6270 DECL_INITIAL (decl) = init;
6272 gcc_assert (init != NULL_TREE);
6273 init = NULL_TREE;
6275 else if (!init && DECL_REALLY_EXTERN (decl))
6277 else if (init || type_build_ctor_call (type)
6278 || TREE_CODE (type) == REFERENCE_TYPE)
6280 if (TREE_CODE (type) == REFERENCE_TYPE)
6282 init = grok_reference_init (decl, type, init, flags);
6283 flags |= LOOKUP_ALREADY_DIGESTED;
6285 else if (!init)
6286 check_for_uninitialized_const_var (decl, /*constexpr_context_p=*/false,
6287 tf_warning_or_error);
6288 /* Do not reshape constructors of vectors (they don't need to be
6289 reshaped. */
6290 else if (BRACE_ENCLOSED_INITIALIZER_P (init))
6292 if (is_std_init_list (type))
6294 init = perform_implicit_conversion (type, init,
6295 tf_warning_or_error);
6296 flags |= LOOKUP_ALREADY_DIGESTED;
6298 else if (TYPE_NON_AGGREGATE_CLASS (type))
6300 /* Don't reshape if the class has constructors. */
6301 if (cxx_dialect == cxx98)
6302 error_at (EXPR_LOC_OR_LOC (init, DECL_SOURCE_LOCATION (decl)),
6303 "in C++98 %qD must be initialized by "
6304 "constructor, not by %<{...}%>",
6305 decl);
6307 else if (VECTOR_TYPE_P (type) && TYPE_VECTOR_OPAQUE (type))
6309 error ("opaque vector types cannot be initialized");
6310 init = error_mark_node;
6312 else
6314 init = reshape_init (type, init, tf_warning_or_error);
6315 flags |= LOOKUP_NO_NARROWING;
6318 else if (TREE_CODE (init) == TREE_LIST
6319 && TREE_TYPE (init) != unknown_type_node
6320 && !MAYBE_CLASS_TYPE_P (type))
6322 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
6324 /* We get here with code like `int a (2);' */
6325 init = build_x_compound_expr_from_list (init, ELK_INIT,
6326 tf_warning_or_error);
6329 /* If DECL has an array type without a specific bound, deduce the
6330 array size from the initializer. */
6331 maybe_deduce_size_from_array_init (decl, init);
6332 type = TREE_TYPE (decl);
6333 if (type == error_mark_node)
6334 return NULL_TREE;
6336 if (((type_build_ctor_call (type) || CLASS_TYPE_P (type))
6337 && !(flags & LOOKUP_ALREADY_DIGESTED)
6338 && !(init && BRACE_ENCLOSED_INITIALIZER_P (init)
6339 && CP_AGGREGATE_TYPE_P (type)
6340 && (CLASS_TYPE_P (type)
6341 || !TYPE_NEEDS_CONSTRUCTING (type)
6342 || type_has_extended_temps (type))))
6343 || (DECL_DECOMPOSITION_P (decl) && TREE_CODE (type) == ARRAY_TYPE))
6345 init_code = build_aggr_init_full_exprs (decl, init, flags);
6347 /* A constructor call is a non-trivial initializer even if
6348 it isn't explicitly written. */
6349 if (TREE_SIDE_EFFECTS (init_code))
6350 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = true;
6352 /* If this is a constexpr initializer, expand_default_init will
6353 have returned an INIT_EXPR rather than a CALL_EXPR. In that
6354 case, pull the initializer back out and pass it down into
6355 store_init_value. */
6356 while (TREE_CODE (init_code) == EXPR_STMT
6357 || TREE_CODE (init_code) == CONVERT_EXPR)
6358 init_code = TREE_OPERAND (init_code, 0);
6359 if (TREE_CODE (init_code) == INIT_EXPR)
6361 init = TREE_OPERAND (init_code, 1);
6362 init_code = NULL_TREE;
6363 /* Don't call digest_init; it's unnecessary and will complain
6364 about aggregate initialization of non-aggregate classes. */
6365 flags |= LOOKUP_ALREADY_DIGESTED;
6367 else if (DECL_DECLARED_CONSTEXPR_P (decl))
6369 /* Declared constexpr, but no suitable initializer; massage
6370 init appropriately so we can pass it into store_init_value
6371 for the error. */
6372 if (CLASS_TYPE_P (type)
6373 && (!init || TREE_CODE (init) == TREE_LIST))
6375 init = build_functional_cast (type, init, tf_none);
6376 if (TREE_CODE (init) == TARGET_EXPR)
6377 TARGET_EXPR_DIRECT_INIT_P (init) = true;
6379 init_code = NULL_TREE;
6381 else
6382 init = NULL_TREE;
6385 if (init && TREE_CODE (init) != TREE_VEC)
6387 /* In aggregate initialization of a variable, each element
6388 initialization is a full-expression because there is no
6389 enclosing expression. */
6390 gcc_assert (stmts_are_full_exprs_p ());
6392 init_code = store_init_value (decl, init, cleanups, flags);
6394 if (pedantic && TREE_CODE (type) == ARRAY_TYPE
6395 && DECL_INITIAL (decl)
6396 && TREE_CODE (DECL_INITIAL (decl)) == STRING_CST
6397 && PAREN_STRING_LITERAL_P (DECL_INITIAL (decl)))
6398 warning_at (EXPR_LOC_OR_LOC (DECL_INITIAL (decl),
6399 DECL_SOURCE_LOCATION (decl)),
6400 0, "array %qD initialized by parenthesized "
6401 "string literal %qE",
6402 decl, DECL_INITIAL (decl));
6403 init = NULL;
6406 else
6408 if (CLASS_TYPE_P (core_type = strip_array_types (type))
6409 && (CLASSTYPE_READONLY_FIELDS_NEED_INIT (core_type)
6410 || CLASSTYPE_REF_FIELDS_NEED_INIT (core_type)))
6411 diagnose_uninitialized_cst_or_ref_member (core_type, /*using_new=*/false,
6412 /*complain=*/true);
6414 check_for_uninitialized_const_var (decl, /*constexpr_context_p=*/false,
6415 tf_warning_or_error);
6418 if (init && init != error_mark_node)
6419 init_code = build2 (INIT_EXPR, type, decl, init);
6421 if (init_code)
6423 /* We might have set these in cp_finish_decl. */
6424 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = false;
6425 TREE_CONSTANT (decl) = false;
6428 if (init_code
6429 && (DECL_IN_AGGR_P (decl)
6430 && DECL_INITIALIZED_IN_CLASS_P (decl)
6431 && !DECL_VAR_DECLARED_INLINE_P (decl)))
6433 static int explained = 0;
6435 if (cxx_dialect < cxx11)
6436 error ("initializer invalid for static member with constructor");
6437 else if (cxx_dialect < cxx17)
6438 error ("non-constant in-class initialization invalid for static "
6439 "member %qD", decl);
6440 else
6441 error ("non-constant in-class initialization invalid for non-inline "
6442 "static member %qD", decl);
6443 if (!explained)
6445 inform (input_location,
6446 "(an out of class initialization is required)");
6447 explained = 1;
6449 return NULL_TREE;
6452 return init_code;
6455 /* If DECL is not a local variable, give it RTL. */
6457 static void
6458 make_rtl_for_nonlocal_decl (tree decl, tree init, const char* asmspec)
6460 int toplev = toplevel_bindings_p ();
6461 int defer_p;
6463 /* Set the DECL_ASSEMBLER_NAME for the object. */
6464 if (asmspec)
6466 /* The `register' keyword, when used together with an
6467 asm-specification, indicates that the variable should be
6468 placed in a particular register. */
6469 if (VAR_P (decl) && DECL_REGISTER (decl))
6471 set_user_assembler_name (decl, asmspec);
6472 DECL_HARD_REGISTER (decl) = 1;
6474 else
6476 if (TREE_CODE (decl) == FUNCTION_DECL
6477 && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
6478 set_builtin_user_assembler_name (decl, asmspec);
6479 set_user_assembler_name (decl, asmspec);
6483 /* Handle non-variables up front. */
6484 if (!VAR_P (decl))
6486 rest_of_decl_compilation (decl, toplev, at_eof);
6487 return;
6490 /* If we see a class member here, it should be a static data
6491 member. */
6492 if (DECL_LANG_SPECIFIC (decl) && DECL_IN_AGGR_P (decl))
6494 gcc_assert (TREE_STATIC (decl));
6495 /* An in-class declaration of a static data member should be
6496 external; it is only a declaration, and not a definition. */
6497 if (init == NULL_TREE)
6498 gcc_assert (DECL_EXTERNAL (decl)
6499 || !TREE_PUBLIC (decl)
6500 || DECL_INLINE_VAR_P (decl));
6503 /* We don't create any RTL for local variables. */
6504 if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
6505 return;
6507 /* We defer emission of local statics until the corresponding
6508 DECL_EXPR is expanded. But with constexpr its function might never
6509 be expanded, so go ahead and tell cgraph about the variable now. */
6510 defer_p = ((DECL_FUNCTION_SCOPE_P (decl)
6511 && !var_in_maybe_constexpr_fn (decl))
6512 || DECL_VIRTUAL_P (decl));
6514 /* Defer template instantiations. */
6515 if (DECL_LANG_SPECIFIC (decl)
6516 && DECL_IMPLICIT_INSTANTIATION (decl))
6517 defer_p = 1;
6519 /* If we're not deferring, go ahead and assemble the variable. */
6520 if (!defer_p)
6521 rest_of_decl_compilation (decl, toplev, at_eof);
6524 /* walk_tree helper for wrap_temporary_cleanups, below. */
6526 static tree
6527 wrap_cleanups_r (tree *stmt_p, int *walk_subtrees, void *data)
6529 /* Stop at types or full-expression boundaries. */
6530 if (TYPE_P (*stmt_p)
6531 || TREE_CODE (*stmt_p) == CLEANUP_POINT_EXPR)
6533 *walk_subtrees = 0;
6534 return NULL_TREE;
6537 if (TREE_CODE (*stmt_p) == TARGET_EXPR)
6539 tree guard = (tree)data;
6540 tree tcleanup = TARGET_EXPR_CLEANUP (*stmt_p);
6542 tcleanup = build2 (TRY_CATCH_EXPR, void_type_node, tcleanup, guard);
6543 /* Tell honor_protect_cleanup_actions to handle this as a separate
6544 cleanup. */
6545 TRY_CATCH_IS_CLEANUP (tcleanup) = 1;
6547 TARGET_EXPR_CLEANUP (*stmt_p) = tcleanup;
6550 return NULL_TREE;
6553 /* We're initializing a local variable which has a cleanup GUARD. If there
6554 are any temporaries used in the initializer INIT of this variable, we
6555 need to wrap their cleanups with TRY_CATCH_EXPR (, GUARD) so that the
6556 variable will be cleaned up properly if one of them throws.
6558 Unfortunately, there's no way to express this properly in terms of
6559 nesting, as the regions for the temporaries overlap the region for the
6560 variable itself; if there are two temporaries, the variable needs to be
6561 the first thing destroyed if either of them throws. However, we only
6562 want to run the variable's cleanup if it actually got constructed. So
6563 we need to guard the temporary cleanups with the variable's cleanup if
6564 they are run on the normal path, but not if they are run on the
6565 exceptional path. We implement this by telling
6566 honor_protect_cleanup_actions to strip the variable cleanup from the
6567 exceptional path. */
6569 static void
6570 wrap_temporary_cleanups (tree init, tree guard)
6572 cp_walk_tree_without_duplicates (&init, wrap_cleanups_r, (void *)guard);
6575 /* Generate code to initialize DECL (a local variable). */
6577 static void
6578 initialize_local_var (tree decl, tree init)
6580 tree type = TREE_TYPE (decl);
6581 tree cleanup;
6582 int already_used;
6584 gcc_assert (VAR_P (decl)
6585 || TREE_CODE (decl) == RESULT_DECL);
6586 gcc_assert (!TREE_STATIC (decl));
6588 if (DECL_SIZE (decl) == NULL_TREE)
6590 /* If we used it already as memory, it must stay in memory. */
6591 DECL_INITIAL (decl) = NULL_TREE;
6592 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
6593 return;
6596 if (type == error_mark_node)
6597 return;
6599 /* Compute and store the initial value. */
6600 already_used = TREE_USED (decl) || TREE_USED (type);
6601 if (TREE_USED (type))
6602 DECL_READ_P (decl) = 1;
6604 /* Generate a cleanup, if necessary. */
6605 cleanup = cxx_maybe_build_cleanup (decl, tf_warning_or_error);
6607 /* Perform the initialization. */
6608 if (init)
6610 tree rinit = (TREE_CODE (init) == INIT_EXPR
6611 ? TREE_OPERAND (init, 1) : NULL_TREE);
6612 if (rinit && !TREE_SIDE_EFFECTS (rinit))
6614 /* Stick simple initializers in DECL_INITIAL so that
6615 -Wno-init-self works (c++/34772). */
6616 gcc_assert (TREE_OPERAND (init, 0) == decl);
6617 DECL_INITIAL (decl) = rinit;
6619 if (warn_init_self && TREE_CODE (type) == REFERENCE_TYPE)
6621 STRIP_NOPS (rinit);
6622 if (rinit == decl)
6623 warning_at (DECL_SOURCE_LOCATION (decl),
6624 OPT_Winit_self,
6625 "reference %qD is initialized with itself", decl);
6628 else
6630 int saved_stmts_are_full_exprs_p;
6632 /* If we're only initializing a single object, guard the
6633 destructors of any temporaries used in its initializer with
6634 its destructor. This isn't right for arrays because each
6635 element initialization is a full-expression. */
6636 if (cleanup && TREE_CODE (type) != ARRAY_TYPE)
6637 wrap_temporary_cleanups (init, cleanup);
6639 gcc_assert (building_stmt_list_p ());
6640 saved_stmts_are_full_exprs_p = stmts_are_full_exprs_p ();
6641 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
6642 finish_expr_stmt (init);
6643 current_stmt_tree ()->stmts_are_full_exprs_p =
6644 saved_stmts_are_full_exprs_p;
6648 /* Set this to 0 so we can tell whether an aggregate which was
6649 initialized was ever used. Don't do this if it has a
6650 destructor, so we don't complain about the 'resource
6651 allocation is initialization' idiom. Now set
6652 attribute((unused)) on types so decls of that type will be
6653 marked used. (see TREE_USED, above.) */
6654 if (TYPE_NEEDS_CONSTRUCTING (type)
6655 && ! already_used
6656 && TYPE_HAS_TRIVIAL_DESTRUCTOR (type)
6657 && DECL_NAME (decl))
6658 TREE_USED (decl) = 0;
6659 else if (already_used)
6660 TREE_USED (decl) = 1;
6662 if (cleanup)
6663 finish_decl_cleanup (decl, cleanup);
6666 /* DECL is a VAR_DECL for a compiler-generated variable with static
6667 storage duration (like a virtual table) whose initializer is a
6668 compile-time constant. Initialize the variable and provide it to the
6669 back end. */
6671 void
6672 initialize_artificial_var (tree decl, vec<constructor_elt, va_gc> *v)
6674 tree init;
6675 gcc_assert (DECL_ARTIFICIAL (decl));
6676 init = build_constructor (TREE_TYPE (decl), v);
6677 gcc_assert (TREE_CODE (init) == CONSTRUCTOR);
6678 DECL_INITIAL (decl) = init;
6679 DECL_INITIALIZED_P (decl) = 1;
6680 determine_visibility (decl);
6681 layout_var_decl (decl);
6682 maybe_commonize_var (decl);
6683 make_rtl_for_nonlocal_decl (decl, init, /*asmspec=*/NULL);
6686 /* INIT is the initializer for a variable, as represented by the
6687 parser. Returns true iff INIT is value-dependent. */
6689 static bool
6690 value_dependent_init_p (tree init)
6692 if (TREE_CODE (init) == TREE_LIST)
6693 /* A parenthesized initializer, e.g.: int i (3, 2); ? */
6694 return any_value_dependent_elements_p (init);
6695 else if (TREE_CODE (init) == CONSTRUCTOR)
6696 /* A brace-enclosed initializer, e.g.: int i = { 3 }; ? */
6698 if (dependent_type_p (TREE_TYPE (init)))
6699 return true;
6701 vec<constructor_elt, va_gc> *elts;
6702 size_t nelts;
6703 size_t i;
6705 elts = CONSTRUCTOR_ELTS (init);
6706 nelts = vec_safe_length (elts);
6707 for (i = 0; i < nelts; ++i)
6708 if (value_dependent_init_p ((*elts)[i].value))
6709 return true;
6711 else
6712 /* It must be a simple expression, e.g., int i = 3; */
6713 return value_dependent_expression_p (init);
6715 return false;
6718 // Returns true if a DECL is VAR_DECL with the concept specifier.
6719 static inline bool
6720 is_concept_var (tree decl)
6722 return (VAR_P (decl)
6723 // Not all variables have DECL_LANG_SPECIFIC.
6724 && DECL_LANG_SPECIFIC (decl)
6725 && DECL_DECLARED_CONCEPT_P (decl));
6728 /* A helper function to be called via walk_tree. If any label exists
6729 under *TP, it is (going to be) forced. Set has_forced_label_in_static. */
6731 static tree
6732 notice_forced_label_r (tree *tp, int *walk_subtrees, void *)
6734 if (TYPE_P (*tp))
6735 *walk_subtrees = 0;
6736 if (TREE_CODE (*tp) == LABEL_DECL)
6737 cfun->has_forced_label_in_static = 1;
6738 return NULL_TREE;
6741 /* Finish processing of a declaration;
6742 install its line number and initial value.
6743 If the length of an array type is not known before,
6744 it must be determined now, from the initial value, or it is an error.
6746 INIT is the initializer (if any) for DECL. If INIT_CONST_EXPR_P is
6747 true, then INIT is an integral constant expression.
6749 FLAGS is LOOKUP_ONLYCONVERTING if the = init syntax was used, else 0
6750 if the (init) syntax was used. */
6752 void
6753 cp_finish_decl (tree decl, tree init, bool init_const_expr_p,
6754 tree asmspec_tree, int flags)
6756 tree type;
6757 vec<tree, va_gc> *cleanups = NULL;
6758 const char *asmspec = NULL;
6759 int was_readonly = 0;
6760 bool var_definition_p = false;
6761 tree auto_node;
6763 if (decl == error_mark_node)
6764 return;
6765 else if (! decl)
6767 if (init)
6768 error ("assignment (not initialization) in declaration");
6769 return;
6772 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
6773 /* Parameters are handled by store_parm_decls, not cp_finish_decl. */
6774 gcc_assert (TREE_CODE (decl) != PARM_DECL);
6776 type = TREE_TYPE (decl);
6777 if (type == error_mark_node)
6778 return;
6780 /* Warn about register storage specifiers except when in GNU global
6781 or local register variable extension. */
6782 if (VAR_P (decl) && DECL_REGISTER (decl) && asmspec_tree == NULL_TREE)
6784 if (cxx_dialect >= cxx17)
6785 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
6786 "ISO C++17 does not allow %<register%> storage "
6787 "class specifier");
6788 else
6789 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
6790 "%<register%> storage class specifier used");
6793 /* If a name was specified, get the string. */
6794 if (at_namespace_scope_p ())
6795 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
6796 if (asmspec_tree && asmspec_tree != error_mark_node)
6797 asmspec = TREE_STRING_POINTER (asmspec_tree);
6799 if (current_class_type
6800 && CP_DECL_CONTEXT (decl) == current_class_type
6801 && TYPE_BEING_DEFINED (current_class_type)
6802 && !CLASSTYPE_TEMPLATE_INSTANTIATION (current_class_type)
6803 && (DECL_INITIAL (decl) || init))
6804 DECL_INITIALIZED_IN_CLASS_P (decl) = 1;
6806 if (TREE_CODE (decl) != FUNCTION_DECL
6807 && (auto_node = type_uses_auto (type)))
6809 tree d_init;
6810 if (init == NULL_TREE)
6812 if (DECL_LANG_SPECIFIC (decl)
6813 && DECL_TEMPLATE_INSTANTIATION (decl)
6814 && !DECL_TEMPLATE_INSTANTIATED (decl))
6816 /* init is null because we're deferring instantiating the
6817 initializer until we need it. Well, we need it now. */
6818 instantiate_decl (decl, /*defer_ok*/true, /*expl*/false);
6819 return;
6822 gcc_assert (CLASS_PLACEHOLDER_TEMPLATE (auto_node));
6824 d_init = init;
6825 if (d_init)
6827 if (TREE_CODE (d_init) == TREE_LIST
6828 && !CLASS_PLACEHOLDER_TEMPLATE (auto_node))
6829 d_init = build_x_compound_expr_from_list (d_init, ELK_INIT,
6830 tf_warning_or_error);
6831 d_init = resolve_nondeduced_context (d_init, tf_warning_or_error);
6833 enum auto_deduction_context adc = adc_variable_type;
6834 if (VAR_P (decl) && DECL_DECOMPOSITION_P (decl))
6835 adc = adc_decomp_type;
6836 type = TREE_TYPE (decl) = do_auto_deduction (type, d_init, auto_node,
6837 tf_warning_or_error, adc,
6838 NULL_TREE, flags);
6839 if (type == error_mark_node)
6840 return;
6841 if (TREE_CODE (type) == FUNCTION_TYPE)
6843 error ("initializer for %<decltype(auto) %D%> has function type "
6844 "(did you forget the %<()%> ?)", decl);
6845 TREE_TYPE (decl) = error_mark_node;
6846 return;
6848 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
6851 if (ensure_literal_type_for_constexpr_object (decl) == error_mark_node)
6853 DECL_DECLARED_CONSTEXPR_P (decl) = 0;
6854 if (VAR_P (decl) && DECL_CLASS_SCOPE_P (decl))
6856 init = NULL_TREE;
6857 DECL_EXTERNAL (decl) = 1;
6861 if (VAR_P (decl)
6862 && DECL_CLASS_SCOPE_P (decl)
6863 && DECL_INITIALIZED_IN_CLASS_P (decl))
6864 check_static_variable_definition (decl, type);
6866 if (init && TREE_CODE (decl) == FUNCTION_DECL)
6868 tree clone;
6869 if (init == ridpointers[(int)RID_DELETE])
6871 /* FIXME check this is 1st decl. */
6872 DECL_DELETED_FN (decl) = 1;
6873 DECL_DECLARED_INLINE_P (decl) = 1;
6874 DECL_INITIAL (decl) = error_mark_node;
6875 FOR_EACH_CLONE (clone, decl)
6877 DECL_DELETED_FN (clone) = 1;
6878 DECL_DECLARED_INLINE_P (clone) = 1;
6879 DECL_INITIAL (clone) = error_mark_node;
6881 init = NULL_TREE;
6883 else if (init == ridpointers[(int)RID_DEFAULT])
6885 if (defaultable_fn_check (decl))
6886 DECL_DEFAULTED_FN (decl) = 1;
6887 else
6888 DECL_INITIAL (decl) = NULL_TREE;
6892 if (init && VAR_P (decl))
6894 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = 1;
6895 /* If DECL is a reference, then we want to know whether init is a
6896 reference constant; init_const_expr_p as passed tells us whether
6897 it's an rvalue constant. */
6898 if (TREE_CODE (type) == REFERENCE_TYPE)
6899 init_const_expr_p = potential_constant_expression (init);
6900 if (init_const_expr_p)
6902 /* Set these flags now for templates. We'll update the flags in
6903 store_init_value for instantiations. */
6904 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = 1;
6905 if (decl_maybe_constant_var_p (decl)
6906 /* FIXME setting TREE_CONSTANT on refs breaks the back end. */
6907 && TREE_CODE (type) != REFERENCE_TYPE)
6908 TREE_CONSTANT (decl) = 1;
6912 if (processing_template_decl)
6914 bool type_dependent_p;
6916 /* Add this declaration to the statement-tree. */
6917 if (at_function_scope_p ())
6918 add_decl_expr (decl);
6920 type_dependent_p = dependent_type_p (type);
6922 if (check_for_bare_parameter_packs (init))
6924 init = NULL_TREE;
6925 DECL_INITIAL (decl) = NULL_TREE;
6928 /* Generally, initializers in templates are expanded when the
6929 template is instantiated. But, if DECL is a variable constant
6930 then it can be used in future constant expressions, so its value
6931 must be available. */
6933 bool dep_init = false;
6935 if (!VAR_P (decl) || type_dependent_p)
6936 /* We can't do anything if the decl has dependent type. */;
6937 else if (!init && is_concept_var (decl))
6939 error ("variable concept has no initializer");
6940 init = boolean_true_node;
6942 else if (init
6943 && init_const_expr_p
6944 && TREE_CODE (type) != REFERENCE_TYPE
6945 && decl_maybe_constant_var_p (decl)
6946 && !(dep_init = value_dependent_init_p (init)))
6948 /* This variable seems to be a non-dependent constant, so process
6949 its initializer. If check_initializer returns non-null the
6950 initialization wasn't constant after all. */
6951 tree init_code;
6952 cleanups = make_tree_vector ();
6953 init_code = check_initializer (decl, init, flags, &cleanups);
6954 if (init_code == NULL_TREE)
6955 init = NULL_TREE;
6956 release_tree_vector (cleanups);
6958 else if (!DECL_PRETTY_FUNCTION_P (decl))
6960 /* Deduce array size even if the initializer is dependent. */
6961 maybe_deduce_size_from_array_init (decl, init);
6962 /* And complain about multiple initializers. */
6963 if (init && TREE_CODE (init) == TREE_LIST && TREE_CHAIN (init)
6964 && !MAYBE_CLASS_TYPE_P (type))
6965 init = build_x_compound_expr_from_list (init, ELK_INIT,
6966 tf_warning_or_error);
6969 if (init)
6971 if (TREE_CODE (init) == TREE_LIST)
6972 lookup_list_keep (init, true);
6973 DECL_INITIAL (decl) = init;
6975 if (dep_init)
6977 retrofit_lang_decl (decl);
6978 SET_DECL_DEPENDENT_INIT_P (decl, true);
6980 return;
6983 /* Just store non-static data member initializers for later. */
6984 if (init && TREE_CODE (decl) == FIELD_DECL)
6985 DECL_INITIAL (decl) = init;
6987 /* Take care of TYPE_DECLs up front. */
6988 if (TREE_CODE (decl) == TYPE_DECL)
6990 if (type != error_mark_node
6991 && MAYBE_CLASS_TYPE_P (type) && DECL_NAME (decl))
6993 if (TREE_TYPE (DECL_NAME (decl)) && TREE_TYPE (decl) != type)
6994 warning (0, "shadowing previous type declaration of %q#D", decl);
6995 set_identifier_type_value (DECL_NAME (decl), decl);
6998 /* If we have installed this as the canonical typedef for this
6999 type, and that type has not been defined yet, delay emitting
7000 the debug information for it, as we will emit it later. */
7001 if (TYPE_MAIN_DECL (TREE_TYPE (decl)) == decl
7002 && !COMPLETE_TYPE_P (TREE_TYPE (decl)))
7003 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
7005 rest_of_decl_compilation (decl, DECL_FILE_SCOPE_P (decl),
7006 at_eof);
7007 return;
7010 /* A reference will be modified here, as it is initialized. */
7011 if (! DECL_EXTERNAL (decl)
7012 && TREE_READONLY (decl)
7013 && TREE_CODE (type) == REFERENCE_TYPE)
7015 was_readonly = 1;
7016 TREE_READONLY (decl) = 0;
7019 if (VAR_P (decl))
7021 /* If this is a local variable that will need a mangled name,
7022 register it now. We must do this before processing the
7023 initializer for the variable, since the initialization might
7024 require a guard variable, and since the mangled name of the
7025 guard variable will depend on the mangled name of this
7026 variable. */
7027 if (DECL_FUNCTION_SCOPE_P (decl)
7028 && TREE_STATIC (decl)
7029 && !DECL_ARTIFICIAL (decl))
7031 push_local_name (decl);
7032 /* Normally has_forced_label_in_static is set during GIMPLE
7033 lowering, but [cd]tors are never actually compiled directly.
7034 We need to set this early so we can deal with the label
7035 address extension. */
7036 if ((DECL_CONSTRUCTOR_P (current_function_decl)
7037 || DECL_DESTRUCTOR_P (current_function_decl))
7038 && init)
7040 walk_tree (&init, notice_forced_label_r, NULL, NULL);
7041 add_local_decl (cfun, decl);
7043 /* And make sure it's in the symbol table for
7044 c_parse_final_cleanups to find. */
7045 varpool_node::get_create (decl);
7048 /* Convert the initializer to the type of DECL, if we have not
7049 already initialized DECL. */
7050 if (!DECL_INITIALIZED_P (decl)
7051 /* If !DECL_EXTERNAL then DECL is being defined. In the
7052 case of a static data member initialized inside the
7053 class-specifier, there can be an initializer even if DECL
7054 is *not* defined. */
7055 && (!DECL_EXTERNAL (decl) || init))
7057 cleanups = make_tree_vector ();
7058 init = check_initializer (decl, init, flags, &cleanups);
7060 /* Handle:
7062 [dcl.init]
7064 The memory occupied by any object of static storage
7065 duration is zero-initialized at program startup before
7066 any other initialization takes place.
7068 We cannot create an appropriate initializer until after
7069 the type of DECL is finalized. If DECL_INITIAL is set,
7070 then the DECL is statically initialized, and any
7071 necessary zero-initialization has already been performed. */
7072 if (TREE_STATIC (decl) && !DECL_INITIAL (decl))
7073 DECL_INITIAL (decl) = build_zero_init (TREE_TYPE (decl),
7074 /*nelts=*/NULL_TREE,
7075 /*static_storage_p=*/true);
7076 /* Remember that the initialization for this variable has
7077 taken place. */
7078 DECL_INITIALIZED_P (decl) = 1;
7079 /* This declaration is the definition of this variable,
7080 unless we are initializing a static data member within
7081 the class specifier. */
7082 if (!DECL_EXTERNAL (decl))
7083 var_definition_p = true;
7085 /* If the variable has an array type, lay out the type, even if
7086 there is no initializer. It is valid to index through the
7087 array, and we must get TYPE_ALIGN set correctly on the array
7088 type. */
7089 else if (TREE_CODE (type) == ARRAY_TYPE)
7090 layout_type (type);
7092 if (TREE_STATIC (decl)
7093 && !at_function_scope_p ()
7094 && current_function_decl == NULL)
7095 /* So decl is a global variable or a static member of a
7096 non local class. Record the types it uses
7097 so that we can decide later to emit debug info for them. */
7098 record_types_used_by_current_var_decl (decl);
7101 /* Add this declaration to the statement-tree. This needs to happen
7102 after the call to check_initializer so that the DECL_EXPR for a
7103 reference temp is added before the DECL_EXPR for the reference itself. */
7104 if (DECL_FUNCTION_SCOPE_P (decl))
7106 /* If we're building a variable sized type, and we might be
7107 reachable other than via the top of the current binding
7108 level, then create a new BIND_EXPR so that we deallocate
7109 the object at the right time. */
7110 if (VAR_P (decl)
7111 && DECL_SIZE (decl)
7112 && !TREE_CONSTANT (DECL_SIZE (decl))
7113 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list))
7115 tree bind;
7116 bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
7117 TREE_SIDE_EFFECTS (bind) = 1;
7118 add_stmt (bind);
7119 BIND_EXPR_BODY (bind) = push_stmt_list ();
7121 add_decl_expr (decl);
7124 /* Let the middle end know about variables and functions -- but not
7125 static data members in uninstantiated class templates. */
7126 if (VAR_OR_FUNCTION_DECL_P (decl))
7128 if (VAR_P (decl))
7130 layout_var_decl (decl);
7131 maybe_commonize_var (decl);
7134 /* This needs to happen after the linkage is set. */
7135 determine_visibility (decl);
7137 if (var_definition_p && TREE_STATIC (decl))
7139 /* If a TREE_READONLY variable needs initialization
7140 at runtime, it is no longer readonly and we need to
7141 avoid MEM_READONLY_P being set on RTL created for it. */
7142 if (init)
7144 if (TREE_READONLY (decl))
7145 TREE_READONLY (decl) = 0;
7146 was_readonly = 0;
7148 else if (was_readonly)
7149 TREE_READONLY (decl) = 1;
7151 /* Likewise if it needs destruction. */
7152 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
7153 TREE_READONLY (decl) = 0;
7156 make_rtl_for_nonlocal_decl (decl, init, asmspec);
7158 /* Check for abstractness of the type. Notice that there is no
7159 need to strip array types here since the check for those types
7160 is already done within create_array_type_for_decl. */
7161 abstract_virtuals_error (decl, type);
7163 if (TREE_TYPE (decl) == error_mark_node)
7164 /* No initialization required. */
7166 else if (TREE_CODE (decl) == FUNCTION_DECL)
7168 if (init)
7170 if (init == ridpointers[(int)RID_DEFAULT])
7172 /* An out-of-class default definition is defined at
7173 the point where it is explicitly defaulted. */
7174 if (DECL_DELETED_FN (decl))
7175 maybe_explain_implicit_delete (decl);
7176 else if (DECL_INITIAL (decl) == error_mark_node)
7177 synthesize_method (decl);
7179 else
7180 error ("function %q#D is initialized like a variable", decl);
7182 /* else no initialization required. */
7184 else if (DECL_EXTERNAL (decl)
7185 && ! (DECL_LANG_SPECIFIC (decl)
7186 && DECL_NOT_REALLY_EXTERN (decl)))
7188 if (init)
7189 DECL_INITIAL (decl) = init;
7191 /* A variable definition. */
7192 else if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
7193 /* Initialize the local variable. */
7194 initialize_local_var (decl, init);
7196 /* If a variable is defined, and then a subsequent
7197 definition with external linkage is encountered, we will
7198 get here twice for the same variable. We want to avoid
7199 calling expand_static_init more than once. For variables
7200 that are not static data members, we can call
7201 expand_static_init only when we actually process the
7202 initializer. It is not legal to redeclare a static data
7203 member, so this issue does not arise in that case. */
7204 else if (var_definition_p && TREE_STATIC (decl))
7205 expand_static_init (decl, init);
7208 /* If a CLEANUP_STMT was created to destroy a temporary bound to a
7209 reference, insert it in the statement-tree now. */
7210 if (cleanups)
7212 unsigned i; tree t;
7213 FOR_EACH_VEC_ELT (*cleanups, i, t)
7214 push_cleanup (decl, t, false);
7215 release_tree_vector (cleanups);
7218 if (was_readonly)
7219 TREE_READONLY (decl) = 1;
7221 invoke_plugin_callbacks (PLUGIN_FINISH_DECL, decl);
7224 /* For class TYPE return itself or some its bases that contain
7225 any direct non-static data members. Return error_mark_node if an
7226 error has been diagnosed. */
7228 static tree
7229 find_decomp_class_base (location_t loc, tree type, tree ret)
7231 bool member_seen = false;
7232 for (tree field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
7233 if (TREE_CODE (field) != FIELD_DECL
7234 || DECL_ARTIFICIAL (field)
7235 || DECL_UNNAMED_BIT_FIELD (field))
7236 continue;
7237 else if (ret)
7238 return type;
7239 else if (ANON_AGGR_TYPE_P (TREE_TYPE (field)))
7241 if (TREE_CODE (TREE_TYPE (field)) == RECORD_TYPE)
7242 error_at (loc, "cannot decompose class type %qT because it has an "
7243 "anonymous struct member", type);
7244 else
7245 error_at (loc, "cannot decompose class type %qT because it has an "
7246 "anonymous union member", type);
7247 inform (DECL_SOURCE_LOCATION (field), "declared here");
7248 return error_mark_node;
7250 else if (!accessible_p (type, field, true))
7252 error_at (loc, "cannot decompose inaccessible member %qD of %qT",
7253 field, type);
7254 inform (DECL_SOURCE_LOCATION (field),
7255 TREE_PRIVATE (field)
7256 ? G_("declared private here")
7257 : G_("declared protected here"));
7258 return error_mark_node;
7260 else
7261 member_seen = true;
7263 tree base_binfo, binfo;
7264 tree orig_ret = ret;
7265 int i;
7266 if (member_seen)
7267 ret = type;
7268 for (binfo = TYPE_BINFO (type), i = 0;
7269 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
7271 tree t = find_decomp_class_base (loc, TREE_TYPE (base_binfo), ret);
7272 if (t == error_mark_node)
7273 return error_mark_node;
7274 if (t != NULL_TREE && t != ret)
7276 if (ret == type)
7278 error_at (loc, "cannot decompose class type %qT: both it and "
7279 "its base class %qT have non-static data members",
7280 type, t);
7281 return error_mark_node;
7283 else if (orig_ret != NULL_TREE)
7284 return t;
7285 else if (ret != NULL_TREE)
7287 error_at (loc, "cannot decompose class type %qT: its base "
7288 "classes %qT and %qT have non-static data "
7289 "members", type, ret, t);
7290 return error_mark_node;
7292 else
7293 ret = t;
7296 return ret;
7299 /* Return std::tuple_size<TYPE>::value. */
7301 static tree
7302 get_tuple_size (tree type)
7304 tree args = make_tree_vec (1);
7305 TREE_VEC_ELT (args, 0) = type;
7306 tree inst = lookup_template_class (get_identifier ("tuple_size"), args,
7307 /*in_decl*/NULL_TREE,
7308 /*context*/std_node,
7309 /*entering_scope*/false, tf_none);
7310 inst = complete_type (inst);
7311 if (inst == error_mark_node || !COMPLETE_TYPE_P (inst))
7312 return NULL_TREE;
7313 tree val = lookup_qualified_name (inst, get_identifier ("value"),
7314 /*type*/false, /*complain*/false);
7315 if (TREE_CODE (val) == VAR_DECL || TREE_CODE (val) == CONST_DECL)
7316 val = maybe_constant_value (val);
7317 if (TREE_CODE (val) == INTEGER_CST)
7318 return val;
7319 else
7320 return error_mark_node;
7323 /* Return std::tuple_element<I,TYPE>::type. */
7325 static tree
7326 get_tuple_element_type (tree type, unsigned i)
7328 tree args = make_tree_vec (2);
7329 TREE_VEC_ELT (args, 0) = build_int_cst (integer_type_node, i);
7330 TREE_VEC_ELT (args, 1) = type;
7331 tree inst = lookup_template_class (get_identifier ("tuple_element"), args,
7332 /*in_decl*/NULL_TREE,
7333 /*context*/std_node,
7334 /*entering_scope*/false,
7335 tf_warning_or_error);
7336 return make_typename_type (inst, get_identifier ("type"),
7337 none_type, tf_warning_or_error);
7340 /* Return e.get<i>() or get<i>(e). */
7342 static tree
7343 get_tuple_decomp_init (tree decl, unsigned i)
7345 tree get_id = get_identifier ("get");
7346 tree targs = make_tree_vec (1);
7347 TREE_VEC_ELT (targs, 0) = build_int_cst (integer_type_node, i);
7349 tree etype = TREE_TYPE (decl);
7350 tree e = convert_from_reference (decl);
7352 /* [The id-expression] e is an lvalue if the type of the entity e is an
7353 lvalue reference and an xvalue otherwise. */
7354 if (TREE_CODE (etype) != REFERENCE_TYPE
7355 || TYPE_REF_IS_RVALUE (etype))
7356 e = move (e);
7358 tree fns = lookup_qualified_name (TREE_TYPE (e), get_id,
7359 /*type*/false, /*complain*/false);
7360 bool use_member_get = false;
7362 /* To use a member get, member lookup must find at least one
7363 declaration that is a function template
7364 whose first template parameter is a non-type parameter. */
7365 for (lkp_iterator iter (MAYBE_BASELINK_FUNCTIONS (fns)); iter; ++iter)
7367 tree fn = *iter;
7368 if (TREE_CODE (fn) == TEMPLATE_DECL)
7370 tree tparms = DECL_TEMPLATE_PARMS (fn);
7371 tree parm = TREE_VEC_ELT (INNERMOST_TEMPLATE_PARMS (tparms), 0);
7372 if (TREE_CODE (TREE_VALUE (parm)) == PARM_DECL)
7374 use_member_get = true;
7375 break;
7380 if (use_member_get)
7382 fns = lookup_template_function (fns, targs);
7383 return build_new_method_call (e, fns, /*args*/NULL,
7384 /*path*/NULL_TREE, LOOKUP_NORMAL,
7385 /*fn_p*/NULL, tf_warning_or_error);
7387 else
7389 vec<tree,va_gc> *args = make_tree_vector_single (e);
7390 fns = lookup_template_function (get_id, targs);
7391 fns = perform_koenig_lookup (fns, args, tf_warning_or_error);
7392 return finish_call_expr (fns, &args, /*novirt*/false,
7393 /*koenig*/true, tf_warning_or_error);
7397 /* It's impossible to recover the decltype of a tuple decomposition variable
7398 based on the actual type of the variable, so store it in a hash table. */
7400 static GTY((cache)) tree_cache_map *decomp_type_table;
7401 static void
7402 store_decomp_type (tree v, tree t)
7404 if (!decomp_type_table)
7405 decomp_type_table = tree_cache_map::create_ggc (13);
7406 decomp_type_table->put (v, t);
7409 tree
7410 lookup_decomp_type (tree v)
7412 return *decomp_type_table->get (v);
7415 /* Mangle a decomposition declaration if needed. Arguments like
7416 in cp_finish_decomp. */
7418 void
7419 cp_maybe_mangle_decomp (tree decl, tree first, unsigned int count)
7421 if (!processing_template_decl
7422 && !error_operand_p (decl)
7423 && DECL_NAMESPACE_SCOPE_P (decl))
7425 auto_vec<tree, 16> v;
7426 v.safe_grow (count);
7427 tree d = first;
7428 for (unsigned int i = 0; i < count; i++, d = DECL_CHAIN (d))
7429 v[count - i - 1] = d;
7430 SET_DECL_ASSEMBLER_NAME (decl, mangle_decomp (decl, v));
7431 maybe_apply_pragma_weak (decl);
7435 /* Finish a decomposition declaration. DECL is the underlying declaration
7436 "e", FIRST is the head of a chain of decls for the individual identifiers
7437 chained through DECL_CHAIN in reverse order and COUNT is the number of
7438 those decls. */
7440 void
7441 cp_finish_decomp (tree decl, tree first, unsigned int count)
7443 if (error_operand_p (decl))
7445 error_out:
7446 while (count--)
7448 TREE_TYPE (first) = error_mark_node;
7449 if (DECL_HAS_VALUE_EXPR_P (first))
7451 SET_DECL_VALUE_EXPR (first, NULL_TREE);
7452 DECL_HAS_VALUE_EXPR_P (first) = 0;
7454 first = DECL_CHAIN (first);
7456 if (DECL_P (decl) && DECL_NAMESPACE_SCOPE_P (decl))
7457 SET_DECL_ASSEMBLER_NAME (decl, get_identifier ("<decomp>"));
7458 return;
7461 location_t loc = DECL_SOURCE_LOCATION (decl);
7462 if (type_dependent_expression_p (decl)
7463 /* This happens for range for when not in templates.
7464 Still add the DECL_VALUE_EXPRs for later processing. */
7465 || (!processing_template_decl
7466 && type_uses_auto (TREE_TYPE (decl))))
7468 for (unsigned int i = 0; i < count; i++)
7470 if (!DECL_HAS_VALUE_EXPR_P (first))
7472 tree v = build_nt (ARRAY_REF, decl,
7473 size_int (count - i - 1),
7474 NULL_TREE, NULL_TREE);
7475 SET_DECL_VALUE_EXPR (first, v);
7476 DECL_HAS_VALUE_EXPR_P (first) = 1;
7478 if (processing_template_decl)
7479 fit_decomposition_lang_decl (first, decl);
7480 first = DECL_CHAIN (first);
7482 return;
7485 auto_vec<tree, 16> v;
7486 v.safe_grow (count);
7487 tree d = first;
7488 for (unsigned int i = 0; i < count; i++, d = DECL_CHAIN (d))
7490 v[count - i - 1] = d;
7491 fit_decomposition_lang_decl (d, decl);
7494 tree type = TREE_TYPE (decl);
7495 tree dexp = decl;
7497 if (TREE_CODE (type) == REFERENCE_TYPE)
7499 dexp = convert_from_reference (dexp);
7500 type = complete_type (TREE_TYPE (type));
7501 if (type == error_mark_node)
7502 goto error_out;
7503 if (!COMPLETE_TYPE_P (type))
7505 error_at (loc, "structured binding refers to incomplete type %qT",
7506 type);
7507 goto error_out;
7511 tree eltype = NULL_TREE;
7512 unsigned HOST_WIDE_INT eltscnt = 0;
7513 if (TREE_CODE (type) == ARRAY_TYPE)
7515 tree nelts;
7516 nelts = array_type_nelts_top (type);
7517 if (nelts == error_mark_node)
7518 goto error_out;
7519 if (!tree_fits_uhwi_p (nelts))
7521 error_at (loc, "cannot decompose variable length array %qT", type);
7522 goto error_out;
7524 eltscnt = tree_to_uhwi (nelts);
7525 if (count != eltscnt)
7527 cnt_mismatch:
7528 if (count > eltscnt)
7529 error_n (loc, count,
7530 "%u name provided for structured binding",
7531 "%u names provided for structured binding", count);
7532 else
7533 error_n (loc, count,
7534 "only %u name provided for structured binding",
7535 "only %u names provided for structured binding", count);
7536 inform_n (loc, eltscnt,
7537 "while %qT decomposes into %wu element",
7538 "while %qT decomposes into %wu elements",
7539 type, eltscnt);
7540 goto error_out;
7542 eltype = TREE_TYPE (type);
7543 for (unsigned int i = 0; i < count; i++)
7545 TREE_TYPE (v[i]) = eltype;
7546 layout_decl (v[i], 0);
7547 if (processing_template_decl)
7548 continue;
7549 tree t = unshare_expr (dexp);
7550 t = build4_loc (DECL_SOURCE_LOCATION (v[i]), ARRAY_REF,
7551 eltype, t, size_int (i), NULL_TREE,
7552 NULL_TREE);
7553 SET_DECL_VALUE_EXPR (v[i], t);
7554 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
7557 /* 2 GNU extensions. */
7558 else if (TREE_CODE (type) == COMPLEX_TYPE)
7560 eltscnt = 2;
7561 if (count != eltscnt)
7562 goto cnt_mismatch;
7563 eltype = cp_build_qualified_type (TREE_TYPE (type), TYPE_QUALS (type));
7564 for (unsigned int i = 0; i < count; i++)
7566 TREE_TYPE (v[i]) = eltype;
7567 layout_decl (v[i], 0);
7568 if (processing_template_decl)
7569 continue;
7570 tree t = unshare_expr (dexp);
7571 t = build1_loc (DECL_SOURCE_LOCATION (v[i]),
7572 i ? IMAGPART_EXPR : REALPART_EXPR, eltype,
7574 SET_DECL_VALUE_EXPR (v[i], t);
7575 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
7578 else if (TREE_CODE (type) == VECTOR_TYPE)
7580 if (!TYPE_VECTOR_SUBPARTS (type).is_constant (&eltscnt))
7582 error_at (loc, "cannot decompose variable length vector %qT", type);
7583 goto error_out;
7585 if (count != eltscnt)
7586 goto cnt_mismatch;
7587 eltype = cp_build_qualified_type (TREE_TYPE (type), TYPE_QUALS (type));
7588 for (unsigned int i = 0; i < count; i++)
7590 TREE_TYPE (v[i]) = eltype;
7591 layout_decl (v[i], 0);
7592 if (processing_template_decl)
7593 continue;
7594 tree t = unshare_expr (dexp);
7595 convert_vector_to_array_for_subscript (DECL_SOURCE_LOCATION (v[i]),
7596 &t, size_int (i));
7597 t = build4_loc (DECL_SOURCE_LOCATION (v[i]), ARRAY_REF,
7598 eltype, t, size_int (i), NULL_TREE,
7599 NULL_TREE);
7600 SET_DECL_VALUE_EXPR (v[i], t);
7601 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
7604 else if (tree tsize = get_tuple_size (type))
7606 if (tsize == error_mark_node)
7608 error_at (loc, "%<std::tuple_size<%T>::value%> is not an integral "
7609 "constant expression", type);
7610 goto error_out;
7612 if (!tree_fits_uhwi_p (tsize))
7614 error_n (loc, count,
7615 "%u name provided for structured binding",
7616 "%u names provided for structured binding", count);
7617 inform (loc, "while %qT decomposes into %E elements",
7618 type, tsize);
7619 goto error_out;
7621 eltscnt = tree_to_uhwi (tsize);
7622 if (count != eltscnt)
7623 goto cnt_mismatch;
7624 int save_read = DECL_READ_P (decl);
7625 for (unsigned i = 0; i < count; ++i)
7627 location_t sloc = input_location;
7628 location_t dloc = DECL_SOURCE_LOCATION (v[i]);
7630 input_location = dloc;
7631 tree init = get_tuple_decomp_init (decl, i);
7632 tree eltype = (init == error_mark_node ? error_mark_node
7633 : get_tuple_element_type (type, i));
7634 input_location = sloc;
7636 if (init == error_mark_node || eltype == error_mark_node)
7638 inform (dloc, "in initialization of structured binding "
7639 "variable %qD", v[i]);
7640 goto error_out;
7642 /* Save the decltype away before reference collapse. */
7643 store_decomp_type (v[i], eltype);
7644 eltype = cp_build_reference_type (eltype, !lvalue_p (init));
7645 TREE_TYPE (v[i]) = eltype;
7646 layout_decl (v[i], 0);
7647 if (DECL_HAS_VALUE_EXPR_P (v[i]))
7649 /* In this case the names are variables, not just proxies. */
7650 SET_DECL_VALUE_EXPR (v[i], NULL_TREE);
7651 DECL_HAS_VALUE_EXPR_P (v[i]) = 0;
7653 if (!processing_template_decl)
7654 cp_finish_decl (v[i], init, /*constexpr*/false,
7655 /*asm*/NULL_TREE, LOOKUP_NORMAL);
7657 /* Ignore reads from the underlying decl performed during initialization
7658 of the individual variables. If those will be read, we'll mark
7659 the underlying decl as read at that point. */
7660 DECL_READ_P (decl) = save_read;
7662 else if (TREE_CODE (type) == UNION_TYPE)
7664 error_at (loc, "cannot decompose union type %qT", type);
7665 goto error_out;
7667 else if (!CLASS_TYPE_P (type))
7669 error_at (loc, "cannot decompose non-array non-class type %qT", type);
7670 goto error_out;
7672 else if (LAMBDA_TYPE_P (type))
7674 error_at (loc, "cannot decompose lambda closure type %qT", type);
7675 goto error_out;
7677 else if (processing_template_decl && !COMPLETE_TYPE_P (type))
7678 pedwarn (loc, 0, "structured binding refers to incomplete class type %qT",
7679 type);
7680 else
7682 tree btype = find_decomp_class_base (loc, type, NULL_TREE);
7683 if (btype == error_mark_node)
7684 goto error_out;
7685 else if (btype == NULL_TREE)
7687 error_at (loc, "cannot decompose class type %qT without non-static "
7688 "data members", type);
7689 goto error_out;
7691 for (tree field = TYPE_FIELDS (btype); field; field = TREE_CHAIN (field))
7692 if (TREE_CODE (field) != FIELD_DECL
7693 || DECL_ARTIFICIAL (field)
7694 || DECL_UNNAMED_BIT_FIELD (field))
7695 continue;
7696 else
7697 eltscnt++;
7698 if (count != eltscnt)
7699 goto cnt_mismatch;
7700 tree t = dexp;
7701 if (type != btype)
7703 t = convert_to_base (t, btype, /*check_access*/true,
7704 /*nonnull*/false, tf_warning_or_error);
7705 type = btype;
7707 unsigned int i = 0;
7708 for (tree field = TYPE_FIELDS (btype); field; field = TREE_CHAIN (field))
7709 if (TREE_CODE (field) != FIELD_DECL
7710 || DECL_ARTIFICIAL (field)
7711 || DECL_UNNAMED_BIT_FIELD (field))
7712 continue;
7713 else
7715 tree tt = finish_non_static_data_member (field, unshare_expr (t),
7716 NULL_TREE);
7717 if (REFERENCE_REF_P (tt))
7718 tt = TREE_OPERAND (tt, 0);
7719 TREE_TYPE (v[i]) = TREE_TYPE (tt);
7720 layout_decl (v[i], 0);
7721 if (!processing_template_decl)
7723 SET_DECL_VALUE_EXPR (v[i], tt);
7724 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
7726 i++;
7729 if (processing_template_decl)
7731 for (unsigned int i = 0; i < count; i++)
7732 if (!DECL_HAS_VALUE_EXPR_P (v[i]))
7734 tree a = build_nt (ARRAY_REF, decl, size_int (i),
7735 NULL_TREE, NULL_TREE);
7736 SET_DECL_VALUE_EXPR (v[i], a);
7737 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
7742 /* Returns a declaration for a VAR_DECL as if:
7744 extern "C" TYPE NAME;
7746 had been seen. Used to create compiler-generated global
7747 variables. */
7749 static tree
7750 declare_global_var (tree name, tree type)
7752 tree decl;
7754 push_to_top_level ();
7755 decl = build_decl (input_location, VAR_DECL, name, type);
7756 TREE_PUBLIC (decl) = 1;
7757 DECL_EXTERNAL (decl) = 1;
7758 DECL_ARTIFICIAL (decl) = 1;
7759 DECL_CONTEXT (decl) = FROB_CONTEXT (global_namespace);
7760 /* If the user has explicitly declared this variable (perhaps
7761 because the code we are compiling is part of a low-level runtime
7762 library), then it is possible that our declaration will be merged
7763 with theirs by pushdecl. */
7764 decl = pushdecl (decl);
7765 cp_finish_decl (decl, NULL_TREE, false, NULL_TREE, 0);
7766 pop_from_top_level ();
7768 return decl;
7771 /* Returns the type for the argument to "__cxa_atexit" (or "atexit",
7772 if "__cxa_atexit" is not being used) corresponding to the function
7773 to be called when the program exits. */
7775 static tree
7776 get_atexit_fn_ptr_type (void)
7778 tree fn_type;
7780 if (!atexit_fn_ptr_type_node)
7782 tree arg_type;
7783 if (flag_use_cxa_atexit
7784 && !targetm.cxx.use_atexit_for_cxa_atexit ())
7785 /* The parameter to "__cxa_atexit" is "void (*)(void *)". */
7786 arg_type = ptr_type_node;
7787 else
7788 /* The parameter to "atexit" is "void (*)(void)". */
7789 arg_type = NULL_TREE;
7791 fn_type = build_function_type_list (void_type_node,
7792 arg_type, NULL_TREE);
7793 atexit_fn_ptr_type_node = build_pointer_type (fn_type);
7796 return atexit_fn_ptr_type_node;
7799 /* Returns a pointer to the `atexit' function. Note that if
7800 FLAG_USE_CXA_ATEXIT is nonzero, then this will actually be the new
7801 `__cxa_atexit' function specified in the IA64 C++ ABI. */
7803 static tree
7804 get_atexit_node (void)
7806 tree atexit_fndecl;
7807 tree fn_type;
7808 tree fn_ptr_type;
7809 const char *name;
7810 bool use_aeabi_atexit;
7812 if (atexit_node)
7813 return atexit_node;
7815 if (flag_use_cxa_atexit && !targetm.cxx.use_atexit_for_cxa_atexit ())
7817 /* The declaration for `__cxa_atexit' is:
7819 int __cxa_atexit (void (*)(void *), void *, void *)
7821 We build up the argument types and then the function type
7822 itself. */
7823 tree argtype0, argtype1, argtype2;
7825 use_aeabi_atexit = targetm.cxx.use_aeabi_atexit ();
7826 /* First, build the pointer-to-function type for the first
7827 argument. */
7828 fn_ptr_type = get_atexit_fn_ptr_type ();
7829 /* Then, build the rest of the argument types. */
7830 argtype2 = ptr_type_node;
7831 if (use_aeabi_atexit)
7833 argtype1 = fn_ptr_type;
7834 argtype0 = ptr_type_node;
7836 else
7838 argtype1 = ptr_type_node;
7839 argtype0 = fn_ptr_type;
7841 /* And the final __cxa_atexit type. */
7842 fn_type = build_function_type_list (integer_type_node,
7843 argtype0, argtype1, argtype2,
7844 NULL_TREE);
7845 if (use_aeabi_atexit)
7846 name = "__aeabi_atexit";
7847 else
7848 name = "__cxa_atexit";
7850 else
7852 /* The declaration for `atexit' is:
7854 int atexit (void (*)());
7856 We build up the argument types and then the function type
7857 itself. */
7858 fn_ptr_type = get_atexit_fn_ptr_type ();
7859 /* Build the final atexit type. */
7860 fn_type = build_function_type_list (integer_type_node,
7861 fn_ptr_type, NULL_TREE);
7862 name = "atexit";
7865 /* Now, build the function declaration. */
7866 push_lang_context (lang_name_c);
7867 atexit_fndecl = build_library_fn_ptr (name, fn_type, ECF_LEAF | ECF_NOTHROW);
7868 mark_used (atexit_fndecl);
7869 pop_lang_context ();
7870 atexit_node = decay_conversion (atexit_fndecl, tf_warning_or_error);
7872 return atexit_node;
7875 /* Like get_atexit_node, but for thread-local cleanups. */
7877 static tree
7878 get_thread_atexit_node (void)
7880 /* The declaration for `__cxa_thread_atexit' is:
7882 int __cxa_thread_atexit (void (*)(void *), void *, void *) */
7883 tree fn_type = build_function_type_list (integer_type_node,
7884 get_atexit_fn_ptr_type (),
7885 ptr_type_node, ptr_type_node,
7886 NULL_TREE);
7888 /* Now, build the function declaration. */
7889 tree atexit_fndecl = build_library_fn_ptr ("__cxa_thread_atexit", fn_type,
7890 ECF_LEAF | ECF_NOTHROW);
7891 return decay_conversion (atexit_fndecl, tf_warning_or_error);
7894 /* Returns the __dso_handle VAR_DECL. */
7896 static tree
7897 get_dso_handle_node (void)
7899 if (dso_handle_node)
7900 return dso_handle_node;
7902 /* Declare the variable. */
7903 dso_handle_node = declare_global_var (get_identifier ("__dso_handle"),
7904 ptr_type_node);
7906 #ifdef HAVE_GAS_HIDDEN
7907 if (dso_handle_node != error_mark_node)
7909 DECL_VISIBILITY (dso_handle_node) = VISIBILITY_HIDDEN;
7910 DECL_VISIBILITY_SPECIFIED (dso_handle_node) = 1;
7912 #endif
7914 return dso_handle_node;
7917 /* Begin a new function with internal linkage whose job will be simply
7918 to destroy some particular variable. */
7920 static GTY(()) int start_cleanup_cnt;
7922 static tree
7923 start_cleanup_fn (void)
7925 char name[32];
7926 tree fntype;
7927 tree fndecl;
7928 bool use_cxa_atexit = flag_use_cxa_atexit
7929 && !targetm.cxx.use_atexit_for_cxa_atexit ();
7931 push_to_top_level ();
7933 /* No need to mangle this. */
7934 push_lang_context (lang_name_c);
7936 /* Build the name of the function. */
7937 sprintf (name, "__tcf_%d", start_cleanup_cnt++);
7938 /* Build the function declaration. */
7939 fntype = TREE_TYPE (get_atexit_fn_ptr_type ());
7940 fndecl = build_lang_decl (FUNCTION_DECL, get_identifier (name), fntype);
7941 /* It's a function with internal linkage, generated by the
7942 compiler. */
7943 TREE_PUBLIC (fndecl) = 0;
7944 DECL_ARTIFICIAL (fndecl) = 1;
7945 /* Make the function `inline' so that it is only emitted if it is
7946 actually needed. It is unlikely that it will be inlined, since
7947 it is only called via a function pointer, but we avoid unnecessary
7948 emissions this way. */
7949 DECL_DECLARED_INLINE_P (fndecl) = 1;
7950 DECL_INTERFACE_KNOWN (fndecl) = 1;
7951 /* Build the parameter. */
7952 if (use_cxa_atexit)
7954 tree parmdecl = cp_build_parm_decl (fndecl, NULL_TREE, ptr_type_node);
7955 TREE_USED (parmdecl) = 1;
7956 DECL_READ_P (parmdecl) = 1;
7957 DECL_ARGUMENTS (fndecl) = parmdecl;
7960 pushdecl (fndecl);
7961 start_preparsed_function (fndecl, NULL_TREE, SF_PRE_PARSED);
7963 pop_lang_context ();
7965 return current_function_decl;
7968 /* Finish the cleanup function begun by start_cleanup_fn. */
7970 static void
7971 end_cleanup_fn (void)
7973 expand_or_defer_fn (finish_function (/*inline_p=*/false));
7975 pop_from_top_level ();
7978 /* Generate code to handle the destruction of DECL, an object with
7979 static storage duration. */
7981 tree
7982 register_dtor_fn (tree decl)
7984 tree cleanup;
7985 tree addr;
7986 tree compound_stmt;
7987 tree fcall;
7988 tree type;
7989 bool ob_parm, dso_parm, use_dtor;
7990 tree arg0, arg1, arg2;
7991 tree atex_node;
7993 type = TREE_TYPE (decl);
7994 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
7995 return void_node;
7997 /* If we're using "__cxa_atexit" (or "__cxa_thread_atexit" or
7998 "__aeabi_atexit"), and DECL is a class object, we can just pass the
7999 destructor to "__cxa_atexit"; we don't have to build a temporary
8000 function to do the cleanup. */
8001 dso_parm = (flag_use_cxa_atexit
8002 && !targetm.cxx.use_atexit_for_cxa_atexit ());
8003 ob_parm = (CP_DECL_THREAD_LOCAL_P (decl) || dso_parm);
8004 use_dtor = ob_parm && CLASS_TYPE_P (type);
8005 if (use_dtor)
8007 cleanup = get_class_binding (type, complete_dtor_identifier);
8009 /* Make sure it is accessible. */
8010 perform_or_defer_access_check (TYPE_BINFO (type), cleanup, cleanup,
8011 tf_warning_or_error);
8013 else
8015 /* Call build_cleanup before we enter the anonymous function so
8016 that any access checks will be done relative to the current
8017 scope, rather than the scope of the anonymous function. */
8018 build_cleanup (decl);
8020 /* Now start the function. */
8021 cleanup = start_cleanup_fn ();
8023 /* Now, recompute the cleanup. It may contain SAVE_EXPRs that refer
8024 to the original function, rather than the anonymous one. That
8025 will make the back end think that nested functions are in use,
8026 which causes confusion. */
8027 push_deferring_access_checks (dk_no_check);
8028 fcall = build_cleanup (decl);
8029 pop_deferring_access_checks ();
8031 /* Create the body of the anonymous function. */
8032 compound_stmt = begin_compound_stmt (BCS_FN_BODY);
8033 finish_expr_stmt (fcall);
8034 finish_compound_stmt (compound_stmt);
8035 end_cleanup_fn ();
8038 /* Call atexit with the cleanup function. */
8039 mark_used (cleanup);
8040 cleanup = build_address (cleanup);
8042 if (CP_DECL_THREAD_LOCAL_P (decl))
8043 atex_node = get_thread_atexit_node ();
8044 else
8045 atex_node = get_atexit_node ();
8047 if (use_dtor)
8049 /* We must convert CLEANUP to the type that "__cxa_atexit"
8050 expects. */
8051 cleanup = build_nop (get_atexit_fn_ptr_type (), cleanup);
8052 /* "__cxa_atexit" will pass the address of DECL to the
8053 cleanup function. */
8054 mark_used (decl);
8055 addr = build_address (decl);
8056 /* The declared type of the parameter to "__cxa_atexit" is
8057 "void *". For plain "T*", we could just let the
8058 machinery in cp_build_function_call convert it -- but if the
8059 type is "cv-qualified T *", then we need to convert it
8060 before passing it in, to avoid spurious errors. */
8061 addr = build_nop (ptr_type_node, addr);
8063 else
8064 /* Since the cleanup functions we build ignore the address
8065 they're given, there's no reason to pass the actual address
8066 in, and, in general, it's cheaper to pass NULL than any
8067 other value. */
8068 addr = null_pointer_node;
8070 if (dso_parm)
8071 arg2 = cp_build_addr_expr (get_dso_handle_node (),
8072 tf_warning_or_error);
8073 else if (ob_parm)
8074 /* Just pass NULL to the dso handle parm if we don't actually
8075 have a DSO handle on this target. */
8076 arg2 = null_pointer_node;
8077 else
8078 arg2 = NULL_TREE;
8080 if (ob_parm)
8082 if (!CP_DECL_THREAD_LOCAL_P (decl)
8083 && targetm.cxx.use_aeabi_atexit ())
8085 arg1 = cleanup;
8086 arg0 = addr;
8088 else
8090 arg1 = addr;
8091 arg0 = cleanup;
8094 else
8096 arg0 = cleanup;
8097 arg1 = NULL_TREE;
8099 return cp_build_function_call_nary (atex_node, tf_warning_or_error,
8100 arg0, arg1, arg2, NULL_TREE);
8103 /* DECL is a VAR_DECL with static storage duration. INIT, if present,
8104 is its initializer. Generate code to handle the construction
8105 and destruction of DECL. */
8107 static void
8108 expand_static_init (tree decl, tree init)
8110 gcc_assert (VAR_P (decl));
8111 gcc_assert (TREE_STATIC (decl));
8113 /* Some variables require no dynamic initialization. */
8114 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
8116 /* Make sure the destructor is callable. */
8117 cxx_maybe_build_cleanup (decl, tf_warning_or_error);
8118 if (!init)
8119 return;
8122 if (CP_DECL_THREAD_LOCAL_P (decl) && DECL_GNU_TLS_P (decl)
8123 && !DECL_FUNCTION_SCOPE_P (decl))
8125 if (init)
8126 error ("non-local variable %qD declared %<__thread%> "
8127 "needs dynamic initialization", decl);
8128 else
8129 error ("non-local variable %qD declared %<__thread%> "
8130 "has a non-trivial destructor", decl);
8131 static bool informed;
8132 if (!informed)
8134 inform (DECL_SOURCE_LOCATION (decl),
8135 "C++11 %<thread_local%> allows dynamic initialization "
8136 "and destruction");
8137 informed = true;
8139 return;
8142 if (DECL_FUNCTION_SCOPE_P (decl))
8144 /* Emit code to perform this initialization but once. */
8145 tree if_stmt = NULL_TREE, inner_if_stmt = NULL_TREE;
8146 tree then_clause = NULL_TREE, inner_then_clause = NULL_TREE;
8147 tree guard, guard_addr;
8148 tree flag, begin;
8149 /* We don't need thread-safety code for thread-local vars. */
8150 bool thread_guard = (flag_threadsafe_statics
8151 && !CP_DECL_THREAD_LOCAL_P (decl));
8153 /* Emit code to perform this initialization but once. This code
8154 looks like:
8156 static <type> guard;
8157 if (!__atomic_load (guard.first_byte)) {
8158 if (__cxa_guard_acquire (&guard)) {
8159 bool flag = false;
8160 try {
8161 // Do initialization.
8162 flag = true; __cxa_guard_release (&guard);
8163 // Register variable for destruction at end of program.
8164 } catch {
8165 if (!flag) __cxa_guard_abort (&guard);
8170 Note that the `flag' variable is only set to 1 *after* the
8171 initialization is complete. This ensures that an exception,
8172 thrown during the construction, will cause the variable to
8173 reinitialized when we pass through this code again, as per:
8175 [stmt.dcl]
8177 If the initialization exits by throwing an exception, the
8178 initialization is not complete, so it will be tried again
8179 the next time control enters the declaration.
8181 This process should be thread-safe, too; multiple threads
8182 should not be able to initialize the variable more than
8183 once. */
8185 /* Create the guard variable. */
8186 guard = get_guard (decl);
8188 /* Begin the conditional initialization. */
8189 if_stmt = begin_if_stmt ();
8191 finish_if_stmt_cond (get_guard_cond (guard, thread_guard), if_stmt);
8192 then_clause = begin_compound_stmt (BCS_NO_SCOPE);
8194 if (thread_guard)
8196 tree vfntype = NULL_TREE;
8197 tree acquire_name, release_name, abort_name;
8198 tree acquire_fn, release_fn, abort_fn;
8199 guard_addr = build_address (guard);
8201 acquire_name = get_identifier ("__cxa_guard_acquire");
8202 release_name = get_identifier ("__cxa_guard_release");
8203 abort_name = get_identifier ("__cxa_guard_abort");
8204 acquire_fn = get_global_binding (acquire_name);
8205 release_fn = get_global_binding (release_name);
8206 abort_fn = get_global_binding (abort_name);
8207 if (!acquire_fn)
8208 acquire_fn = push_library_fn
8209 (acquire_name, build_function_type_list (integer_type_node,
8210 TREE_TYPE (guard_addr),
8211 NULL_TREE),
8212 NULL_TREE, ECF_NOTHROW | ECF_LEAF);
8213 if (!release_fn || !abort_fn)
8214 vfntype = build_function_type_list (void_type_node,
8215 TREE_TYPE (guard_addr),
8216 NULL_TREE);
8217 if (!release_fn)
8218 release_fn = push_library_fn (release_name, vfntype, NULL_TREE,
8219 ECF_NOTHROW | ECF_LEAF);
8220 if (!abort_fn)
8221 abort_fn = push_library_fn (abort_name, vfntype, NULL_TREE,
8222 ECF_NOTHROW | ECF_LEAF);
8224 inner_if_stmt = begin_if_stmt ();
8225 finish_if_stmt_cond (build_call_n (acquire_fn, 1, guard_addr),
8226 inner_if_stmt);
8228 inner_then_clause = begin_compound_stmt (BCS_NO_SCOPE);
8229 begin = get_target_expr (boolean_false_node);
8230 flag = TARGET_EXPR_SLOT (begin);
8232 TARGET_EXPR_CLEANUP (begin)
8233 = build3 (COND_EXPR, void_type_node, flag,
8234 void_node,
8235 build_call_n (abort_fn, 1, guard_addr));
8236 CLEANUP_EH_ONLY (begin) = 1;
8238 /* Do the initialization itself. */
8239 init = add_stmt_to_compound (begin, init);
8240 init = add_stmt_to_compound
8241 (init, build2 (MODIFY_EXPR, void_type_node, flag, boolean_true_node));
8242 init = add_stmt_to_compound
8243 (init, build_call_n (release_fn, 1, guard_addr));
8245 else
8246 init = add_stmt_to_compound (init, set_guard (guard));
8248 /* Use atexit to register a function for destroying this static
8249 variable. */
8250 init = add_stmt_to_compound (init, register_dtor_fn (decl));
8252 finish_expr_stmt (init);
8254 if (thread_guard)
8256 finish_compound_stmt (inner_then_clause);
8257 finish_then_clause (inner_if_stmt);
8258 finish_if_stmt (inner_if_stmt);
8261 finish_compound_stmt (then_clause);
8262 finish_then_clause (if_stmt);
8263 finish_if_stmt (if_stmt);
8265 else if (CP_DECL_THREAD_LOCAL_P (decl))
8266 tls_aggregates = tree_cons (init, decl, tls_aggregates);
8267 else
8268 static_aggregates = tree_cons (init, decl, static_aggregates);
8272 /* Make TYPE a complete type based on INITIAL_VALUE.
8273 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
8274 2 if there was no information (in which case assume 0 if DO_DEFAULT),
8275 3 if the initializer list is empty (in pedantic mode). */
8278 cp_complete_array_type (tree *ptype, tree initial_value, bool do_default)
8280 int failure;
8281 tree type, elt_type;
8283 /* Don't get confused by a CONSTRUCTOR for some other type. */
8284 if (initial_value && TREE_CODE (initial_value) == CONSTRUCTOR
8285 && !BRACE_ENCLOSED_INITIALIZER_P (initial_value)
8286 && TREE_CODE (TREE_TYPE (initial_value)) != ARRAY_TYPE)
8287 return 1;
8289 if (initial_value)
8291 unsigned HOST_WIDE_INT i;
8292 tree value;
8294 /* An array of character type can be initialized from a
8295 brace-enclosed string constant.
8297 FIXME: this code is duplicated from reshape_init. Probably
8298 we should just call reshape_init here? */
8299 if (char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (*ptype)))
8300 && TREE_CODE (initial_value) == CONSTRUCTOR
8301 && !vec_safe_is_empty (CONSTRUCTOR_ELTS (initial_value)))
8303 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initial_value);
8304 tree value = (*v)[0].value;
8306 if (TREE_CODE (value) == STRING_CST
8307 && v->length () == 1)
8308 initial_value = value;
8311 /* If any of the elements are parameter packs, we can't actually
8312 complete this type now because the array size is dependent. */
8313 if (TREE_CODE (initial_value) == CONSTRUCTOR)
8315 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (initial_value),
8316 i, value)
8318 if (PACK_EXPANSION_P (value))
8319 return 0;
8324 failure = complete_array_type (ptype, initial_value, do_default);
8326 /* We can create the array before the element type is complete, which
8327 means that we didn't have these two bits set in the original type
8328 either. In completing the type, we are expected to propagate these
8329 bits. See also complete_type which does the same thing for arrays
8330 of fixed size. */
8331 type = *ptype;
8332 if (type != error_mark_node && TYPE_DOMAIN (type))
8334 elt_type = TREE_TYPE (type);
8335 TYPE_NEEDS_CONSTRUCTING (type) = TYPE_NEEDS_CONSTRUCTING (elt_type);
8336 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
8337 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (elt_type);
8340 return failure;
8343 /* As above, but either give an error or reject zero-size arrays, depending
8344 on COMPLAIN. */
8347 cp_complete_array_type_or_error (tree *ptype, tree initial_value,
8348 bool do_default, tsubst_flags_t complain)
8350 int failure;
8351 bool sfinae = !(complain & tf_error);
8352 /* In SFINAE context we can't be lenient about zero-size arrays. */
8353 if (sfinae)
8354 ++pedantic;
8355 failure = cp_complete_array_type (ptype, initial_value, do_default);
8356 if (sfinae)
8357 --pedantic;
8358 if (failure)
8360 if (sfinae)
8361 /* Not an error. */;
8362 else if (failure == 1)
8363 error ("initializer fails to determine size of %qT", *ptype);
8364 else if (failure == 2)
8366 if (do_default)
8367 error ("array size missing in %qT", *ptype);
8369 else if (failure == 3)
8370 error ("zero-size array %qT", *ptype);
8371 *ptype = error_mark_node;
8373 return failure;
8376 /* Return zero if something is declared to be a member of type
8377 CTYPE when in the context of CUR_TYPE. STRING is the error
8378 message to print in that case. Otherwise, quietly return 1. */
8380 static int
8381 member_function_or_else (tree ctype, tree cur_type, enum overload_flags flags)
8383 if (ctype && ctype != cur_type)
8385 if (flags == DTOR_FLAG)
8386 error ("destructor for alien class %qT cannot be a member", ctype);
8387 else
8388 error ("constructor for alien class %qT cannot be a member", ctype);
8389 return 0;
8391 return 1;
8394 /* Subroutine of `grokdeclarator'. */
8396 /* Generate errors possibly applicable for a given set of specifiers.
8397 This is for ARM $7.1.2. */
8399 static void
8400 bad_specifiers (tree object,
8401 enum bad_spec_place type,
8402 int virtualp,
8403 int quals,
8404 int inlinep,
8405 int friendp,
8406 int raises)
8408 switch (type)
8410 case BSP_VAR:
8411 if (virtualp)
8412 error ("%qD declared as a %<virtual%> variable", object);
8413 if (quals)
8414 error ("%<const%> and %<volatile%> function specifiers on "
8415 "%qD invalid in variable declaration", object);
8416 break;
8417 case BSP_PARM:
8418 if (virtualp)
8419 error ("%qD declared as a %<virtual%> parameter", object);
8420 if (inlinep)
8421 error ("%qD declared as an %<inline%> parameter", object);
8422 if (quals)
8423 error ("%<const%> and %<volatile%> function specifiers on "
8424 "%qD invalid in parameter declaration", object);
8425 break;
8426 case BSP_TYPE:
8427 if (virtualp)
8428 error ("%qD declared as a %<virtual%> type", object);
8429 if (inlinep)
8430 error ("%qD declared as an %<inline%> type", object);
8431 if (quals)
8432 error ("%<const%> and %<volatile%> function specifiers on "
8433 "%qD invalid in type declaration", object);
8434 break;
8435 case BSP_FIELD:
8436 if (virtualp)
8437 error ("%qD declared as a %<virtual%> field", object);
8438 if (inlinep)
8439 error ("%qD declared as an %<inline%> field", object);
8440 if (quals)
8441 error ("%<const%> and %<volatile%> function specifiers on "
8442 "%qD invalid in field declaration", object);
8443 break;
8444 default:
8445 gcc_unreachable();
8447 if (friendp)
8448 error ("%q+D declared as a friend", object);
8449 if (raises
8450 && !flag_noexcept_type
8451 && (TREE_CODE (object) == TYPE_DECL
8452 || (!TYPE_PTRFN_P (TREE_TYPE (object))
8453 && !TYPE_REFFN_P (TREE_TYPE (object))
8454 && !TYPE_PTRMEMFUNC_P (TREE_TYPE (object)))))
8455 error ("%q+D declared with an exception specification", object);
8458 /* DECL is a member function or static data member and is presently
8459 being defined. Check that the definition is taking place in a
8460 valid namespace. */
8462 static void
8463 check_class_member_definition_namespace (tree decl)
8465 /* These checks only apply to member functions and static data
8466 members. */
8467 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl));
8468 /* We check for problems with specializations in pt.c in
8469 check_specialization_namespace, where we can issue better
8470 diagnostics. */
8471 if (processing_specialization)
8472 return;
8473 /* We check this in check_explicit_instantiation_namespace. */
8474 if (processing_explicit_instantiation)
8475 return;
8476 /* [class.mfct]
8478 A member function definition that appears outside of the
8479 class definition shall appear in a namespace scope enclosing
8480 the class definition.
8482 [class.static.data]
8484 The definition for a static data member shall appear in a
8485 namespace scope enclosing the member's class definition. */
8486 if (!is_ancestor (current_namespace, DECL_CONTEXT (decl)))
8487 permerror (input_location, "definition of %qD is not in namespace enclosing %qT",
8488 decl, DECL_CONTEXT (decl));
8491 /* Build a PARM_DECL for the "this" parameter of FN. TYPE is the
8492 METHOD_TYPE for a non-static member function; QUALS are the
8493 cv-qualifiers that apply to the function. */
8495 tree
8496 build_this_parm (tree fn, tree type, cp_cv_quals quals)
8498 tree this_type;
8499 tree qual_type;
8500 tree parm;
8501 cp_cv_quals this_quals;
8503 if (CLASS_TYPE_P (type))
8505 this_type
8506 = cp_build_qualified_type (type, quals & ~TYPE_QUAL_RESTRICT);
8507 this_type = build_pointer_type (this_type);
8509 else
8510 this_type = type_of_this_parm (type);
8511 /* The `this' parameter is implicitly `const'; it cannot be
8512 assigned to. */
8513 this_quals = (quals & TYPE_QUAL_RESTRICT) | TYPE_QUAL_CONST;
8514 qual_type = cp_build_qualified_type (this_type, this_quals);
8515 parm = build_artificial_parm (fn, this_identifier, qual_type);
8516 cp_apply_type_quals_to_decl (this_quals, parm);
8517 return parm;
8520 /* DECL is a static member function. Complain if it was declared
8521 with function-cv-quals. */
8523 static void
8524 check_static_quals (tree decl, cp_cv_quals quals)
8526 if (quals != TYPE_UNQUALIFIED)
8527 error ("static member function %q#D declared with type qualifiers",
8528 decl);
8531 // Check that FN takes no arguments and returns bool.
8532 static void
8533 check_concept_fn (tree fn)
8535 // A constraint is nullary.
8536 if (DECL_ARGUMENTS (fn))
8537 error ("concept %q#D declared with function parameters", fn);
8539 // The declared return type of the concept shall be bool, and
8540 // it shall not be deduced from it definition.
8541 tree type = TREE_TYPE (TREE_TYPE (fn));
8542 if (is_auto (type))
8543 error ("concept %q#D declared with a deduced return type", fn);
8544 else if (type != boolean_type_node)
8545 error ("concept %q#D with non-%<bool%> return type %qT", fn, type);
8548 /* Helper function. Replace the temporary this parameter injected
8549 during cp_finish_omp_declare_simd with the real this parameter. */
8551 static tree
8552 declare_simd_adjust_this (tree *tp, int *walk_subtrees, void *data)
8554 tree this_parm = (tree) data;
8555 if (TREE_CODE (*tp) == PARM_DECL
8556 && DECL_NAME (*tp) == this_identifier
8557 && *tp != this_parm)
8558 *tp = this_parm;
8559 else if (TYPE_P (*tp))
8560 *walk_subtrees = 0;
8561 return NULL_TREE;
8564 /* CTYPE is class type, or null if non-class.
8565 TYPE is type this FUNCTION_DECL should have, either FUNCTION_TYPE
8566 or METHOD_TYPE.
8567 DECLARATOR is the function's name.
8568 PARMS is a chain of PARM_DECLs for the function.
8569 VIRTUALP is truthvalue of whether the function is virtual or not.
8570 FLAGS are to be passed through to `grokclassfn'.
8571 QUALS are qualifiers indicating whether the function is `const'
8572 or `volatile'.
8573 RAISES is a list of exceptions that this function can raise.
8574 CHECK is 1 if we must find this method in CTYPE, 0 if we should
8575 not look, and -1 if we should not call `grokclassfn' at all.
8577 SFK is the kind of special function (if any) for the new function.
8579 Returns `NULL_TREE' if something goes wrong, after issuing
8580 applicable error messages. */
8582 static tree
8583 grokfndecl (tree ctype,
8584 tree type,
8585 tree declarator,
8586 tree parms,
8587 tree orig_declarator,
8588 tree decl_reqs,
8589 int virtualp,
8590 enum overload_flags flags,
8591 cp_cv_quals quals,
8592 cp_ref_qualifier rqual,
8593 tree raises,
8594 int check,
8595 int friendp,
8596 int publicp,
8597 int inlinep,
8598 bool deletedp,
8599 special_function_kind sfk,
8600 bool funcdef_flag,
8601 int template_count,
8602 tree in_namespace,
8603 tree* attrlist,
8604 location_t location)
8606 tree decl;
8607 int staticp = ctype && TREE_CODE (type) == FUNCTION_TYPE;
8608 tree t;
8610 // Was the concept specifier present?
8611 bool concept_p = inlinep & 4;
8613 // Concept declarations must have a corresponding definition.
8614 if (concept_p && !funcdef_flag)
8616 error ("concept %qD has no definition", declarator);
8617 return NULL_TREE;
8620 if (rqual)
8621 type = build_ref_qualified_type (type, rqual);
8622 if (raises)
8623 type = build_exception_variant (type, raises);
8625 decl = build_lang_decl (FUNCTION_DECL, declarator, type);
8627 /* Set the constraints on the declaration. */
8628 if (flag_concepts)
8630 tree tmpl_reqs = NULL_TREE;
8631 if (processing_template_decl > template_class_depth (ctype))
8632 tmpl_reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
8634 /* Adjust the required expression into a constraint. */
8635 if (decl_reqs)
8636 decl_reqs = normalize_expression (decl_reqs);
8638 tree ci = build_constraints (tmpl_reqs, decl_reqs);
8639 set_constraints (decl, ci);
8642 /* If we have an explicit location, use it, otherwise use whatever
8643 build_lang_decl used (probably input_location). */
8644 if (location != UNKNOWN_LOCATION)
8645 DECL_SOURCE_LOCATION (decl) = location;
8647 if (TREE_CODE (type) == METHOD_TYPE)
8649 tree parm = build_this_parm (decl, type, quals);
8650 DECL_CHAIN (parm) = parms;
8651 parms = parm;
8653 /* Allocate space to hold the vptr bit if needed. */
8654 SET_DECL_ALIGN (decl, MINIMUM_METHOD_BOUNDARY);
8657 DECL_ARGUMENTS (decl) = parms;
8658 for (t = parms; t; t = DECL_CHAIN (t))
8659 DECL_CONTEXT (t) = decl;
8661 /* Propagate volatile out from type to decl. */
8662 if (TYPE_VOLATILE (type))
8663 TREE_THIS_VOLATILE (decl) = 1;
8665 /* Setup decl according to sfk. */
8666 switch (sfk)
8668 case sfk_constructor:
8669 case sfk_copy_constructor:
8670 case sfk_move_constructor:
8671 DECL_CXX_CONSTRUCTOR_P (decl) = 1;
8672 DECL_NAME (decl) = ctor_identifier;
8673 break;
8674 case sfk_destructor:
8675 DECL_CXX_DESTRUCTOR_P (decl) = 1;
8676 DECL_NAME (decl) = dtor_identifier;
8677 break;
8678 default:
8679 break;
8682 if (friendp && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)
8684 if (funcdef_flag)
8685 error ("defining explicit specialization %qD in friend declaration",
8686 orig_declarator);
8687 else
8689 tree fns = TREE_OPERAND (orig_declarator, 0);
8690 tree args = TREE_OPERAND (orig_declarator, 1);
8692 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
8694 /* Something like `template <class T> friend void f<T>()'. */
8695 error ("invalid use of template-id %qD in declaration "
8696 "of primary template",
8697 orig_declarator);
8698 return NULL_TREE;
8702 /* A friend declaration of the form friend void f<>(). Record
8703 the information in the TEMPLATE_ID_EXPR. */
8704 SET_DECL_IMPLICIT_INSTANTIATION (decl);
8706 gcc_assert (identifier_p (fns) || TREE_CODE (fns) == OVERLOAD);
8707 DECL_TEMPLATE_INFO (decl) = build_template_info (fns, args);
8709 for (t = TYPE_ARG_TYPES (TREE_TYPE (decl)); t; t = TREE_CHAIN (t))
8710 if (TREE_PURPOSE (t)
8711 && TREE_CODE (TREE_PURPOSE (t)) == DEFAULT_ARG)
8713 error ("default arguments are not allowed in declaration "
8714 "of friend template specialization %qD",
8715 decl);
8716 return NULL_TREE;
8719 if (inlinep & 1)
8721 error ("%<inline%> is not allowed in declaration of friend "
8722 "template specialization %qD",
8723 decl);
8724 return NULL_TREE;
8729 /* If this decl has namespace scope, set that up. */
8730 if (in_namespace)
8731 set_decl_namespace (decl, in_namespace, friendp);
8732 else if (!ctype)
8733 DECL_CONTEXT (decl) = FROB_CONTEXT (current_decl_namespace ());
8735 /* `main' and builtins have implicit 'C' linkage. */
8736 if (ctype == NULL_TREE
8737 && DECL_FILE_SCOPE_P (decl)
8738 && current_lang_name == lang_name_cplusplus
8739 && (MAIN_NAME_P (declarator)
8740 || (IDENTIFIER_LENGTH (declarator) > 10
8741 && IDENTIFIER_POINTER (declarator)[0] == '_'
8742 && IDENTIFIER_POINTER (declarator)[1] == '_'
8743 && strncmp (IDENTIFIER_POINTER (declarator)+2,
8744 "builtin_", 8) == 0)
8745 || (targetcm.cxx_implicit_extern_c
8746 && (targetcm.cxx_implicit_extern_c
8747 (IDENTIFIER_POINTER (declarator))))))
8748 SET_DECL_LANGUAGE (decl, lang_c);
8750 /* Should probably propagate const out from type to decl I bet (mrs). */
8751 if (staticp)
8753 DECL_STATIC_FUNCTION_P (decl) = 1;
8754 DECL_CONTEXT (decl) = ctype;
8757 if (deletedp)
8758 DECL_DELETED_FN (decl) = 1;
8760 if (ctype)
8762 DECL_CONTEXT (decl) = ctype;
8763 if (funcdef_flag)
8764 check_class_member_definition_namespace (decl);
8767 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
8769 if (PROCESSING_REAL_TEMPLATE_DECL_P())
8770 error ("cannot declare %<::main%> to be a template");
8771 if (inlinep & 1)
8772 error ("cannot declare %<::main%> to be inline");
8773 if (inlinep & 2)
8774 error ("cannot declare %<::main%> to be %<constexpr%>");
8775 if (!publicp)
8776 error ("cannot declare %<::main%> to be static");
8777 inlinep = 0;
8778 publicp = 1;
8781 /* Members of anonymous types and local classes have no linkage; make
8782 them internal. If a typedef is made later, this will be changed. */
8783 if (ctype && (!TREE_PUBLIC (TYPE_MAIN_DECL (ctype))
8784 || decl_function_context (TYPE_MAIN_DECL (ctype))))
8785 publicp = 0;
8787 if (publicp && cxx_dialect == cxx98)
8789 /* [basic.link]: A name with no linkage (notably, the name of a class
8790 or enumeration declared in a local scope) shall not be used to
8791 declare an entity with linkage.
8793 DR 757 relaxes this restriction for C++0x. */
8794 no_linkage_error (decl);
8797 TREE_PUBLIC (decl) = publicp;
8798 if (! publicp)
8800 DECL_INTERFACE_KNOWN (decl) = 1;
8801 DECL_NOT_REALLY_EXTERN (decl) = 1;
8804 /* If the declaration was declared inline, mark it as such. */
8805 if (inlinep)
8807 DECL_DECLARED_INLINE_P (decl) = 1;
8808 if (publicp)
8809 DECL_COMDAT (decl) = 1;
8811 if (inlinep & 2)
8812 DECL_DECLARED_CONSTEXPR_P (decl) = true;
8814 // If the concept declaration specifier was found, check
8815 // that the declaration satisfies the necessary requirements.
8816 if (concept_p)
8818 DECL_DECLARED_CONCEPT_P (decl) = true;
8819 check_concept_fn (decl);
8822 DECL_EXTERNAL (decl) = 1;
8823 if (TREE_CODE (type) == FUNCTION_TYPE)
8825 if (quals || rqual)
8826 TREE_TYPE (decl) = apply_memfn_quals (TREE_TYPE (decl),
8827 TYPE_UNQUALIFIED,
8828 REF_QUAL_NONE);
8830 if (quals)
8832 error (ctype
8833 ? G_("static member function %qD cannot have cv-qualifier")
8834 : G_("non-member function %qD cannot have cv-qualifier"),
8835 decl);
8836 quals = TYPE_UNQUALIFIED;
8839 if (rqual)
8841 error (ctype
8842 ? G_("static member function %qD cannot have ref-qualifier")
8843 : G_("non-member function %qD cannot have ref-qualifier"),
8844 decl);
8845 rqual = REF_QUAL_NONE;
8849 if (deduction_guide_p (decl))
8851 if (!DECL_NAMESPACE_SCOPE_P (decl))
8853 error_at (location, "deduction guide %qD must be declared at "
8854 "namespace scope", decl);
8855 return NULL_TREE;
8857 if (funcdef_flag)
8858 error_at (location,
8859 "deduction guide %qD must not have a function body", decl);
8861 else if (IDENTIFIER_ANY_OP_P (DECL_NAME (decl))
8862 && !grok_op_properties (decl, /*complain=*/true))
8863 return NULL_TREE;
8864 else if (UDLIT_OPER_P (DECL_NAME (decl)))
8866 bool long_long_unsigned_p;
8867 bool long_double_p;
8868 const char *suffix = NULL;
8869 /* [over.literal]/6: Literal operators shall not have C linkage. */
8870 if (DECL_LANGUAGE (decl) == lang_c)
8872 error ("literal operator with C linkage");
8873 maybe_show_extern_c_location ();
8874 return NULL_TREE;
8877 if (DECL_NAMESPACE_SCOPE_P (decl))
8879 if (!check_literal_operator_args (decl, &long_long_unsigned_p,
8880 &long_double_p))
8882 error ("%qD has invalid argument list", decl);
8883 return NULL_TREE;
8886 suffix = UDLIT_OP_SUFFIX (DECL_NAME (decl));
8887 if (long_long_unsigned_p)
8889 if (cpp_interpret_int_suffix (parse_in, suffix, strlen (suffix)))
8890 warning (0, "integer suffix %qs"
8891 " shadowed by implementation", suffix);
8893 else if (long_double_p)
8895 if (cpp_interpret_float_suffix (parse_in, suffix, strlen (suffix)))
8896 warning (0, "floating point suffix %qs"
8897 " shadowed by implementation", suffix);
8899 /* 17.6.3.3.5 */
8900 if (suffix[0] != '_'
8901 && !in_system_header_at (DECL_SOURCE_LOCATION (decl))
8902 && !current_function_decl && !(friendp && !funcdef_flag))
8903 warning (OPT_Wliteral_suffix,
8904 "literal operator suffixes not preceded by %<_%>"
8905 " are reserved for future standardization");
8907 else
8909 error ("%qD must be a non-member function", decl);
8910 return NULL_TREE;
8914 if (funcdef_flag)
8915 /* Make the init_value nonzero so pushdecl knows this is not
8916 tentative. error_mark_node is replaced later with the BLOCK. */
8917 DECL_INITIAL (decl) = error_mark_node;
8919 if (TYPE_NOTHROW_P (type) || nothrow_libfn_p (decl))
8920 TREE_NOTHROW (decl) = 1;
8922 if (flag_openmp || flag_openmp_simd)
8924 /* Adjust "omp declare simd" attributes. */
8925 tree ods = lookup_attribute ("omp declare simd", *attrlist);
8926 if (ods)
8928 tree attr;
8929 for (attr = ods; attr;
8930 attr = lookup_attribute ("omp declare simd", TREE_CHAIN (attr)))
8932 if (TREE_CODE (type) == METHOD_TYPE)
8933 walk_tree (&TREE_VALUE (attr), declare_simd_adjust_this,
8934 DECL_ARGUMENTS (decl), NULL);
8935 if (TREE_VALUE (attr) != NULL_TREE)
8937 tree cl = TREE_VALUE (TREE_VALUE (attr));
8938 cl = c_omp_declare_simd_clauses_to_numbers
8939 (DECL_ARGUMENTS (decl), cl);
8940 if (cl)
8941 TREE_VALUE (TREE_VALUE (attr)) = cl;
8942 else
8943 TREE_VALUE (attr) = NULL_TREE;
8949 /* Caller will do the rest of this. */
8950 if (check < 0)
8951 return decl;
8953 if (ctype != NULL_TREE)
8954 grokclassfn (ctype, decl, flags);
8956 /* 12.4/3 */
8957 if (cxx_dialect >= cxx11
8958 && DECL_DESTRUCTOR_P (decl)
8959 && !TYPE_BEING_DEFINED (DECL_CONTEXT (decl))
8960 && !processing_template_decl)
8961 deduce_noexcept_on_destructor (decl);
8963 decl = check_explicit_specialization (orig_declarator, decl,
8964 template_count,
8965 2 * funcdef_flag +
8966 4 * (friendp != 0) +
8967 8 * concept_p,
8968 *attrlist);
8969 if (decl == error_mark_node)
8970 return NULL_TREE;
8972 if (DECL_STATIC_FUNCTION_P (decl))
8973 check_static_quals (decl, quals);
8975 if (attrlist)
8977 cplus_decl_attributes (&decl, *attrlist, 0);
8978 *attrlist = NULL_TREE;
8981 /* Check main's type after attributes have been applied. */
8982 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
8984 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
8985 integer_type_node))
8987 tree oldtypeargs = TYPE_ARG_TYPES (TREE_TYPE (decl));
8988 tree newtype;
8989 error ("%<::main%> must return %<int%>");
8990 newtype = build_function_type (integer_type_node, oldtypeargs);
8991 TREE_TYPE (decl) = newtype;
8993 if (warn_main)
8994 check_main_parameter_types (decl);
8997 if (ctype != NULL_TREE && check)
8999 tree old_decl = check_classfn (ctype, decl,
9000 (processing_template_decl
9001 > template_class_depth (ctype))
9002 ? current_template_parms
9003 : NULL_TREE);
9005 if (old_decl == error_mark_node)
9006 return NULL_TREE;
9008 if (old_decl)
9010 tree ok;
9011 tree pushed_scope;
9013 if (TREE_CODE (old_decl) == TEMPLATE_DECL)
9014 /* Because grokfndecl is always supposed to return a
9015 FUNCTION_DECL, we pull out the DECL_TEMPLATE_RESULT
9016 here. We depend on our callers to figure out that its
9017 really a template that's being returned. */
9018 old_decl = DECL_TEMPLATE_RESULT (old_decl);
9020 if (DECL_STATIC_FUNCTION_P (old_decl)
9021 && TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE)
9023 /* Remove the `this' parm added by grokclassfn. */
9024 revert_static_member_fn (decl);
9025 check_static_quals (decl, quals);
9027 if (DECL_ARTIFICIAL (old_decl))
9029 error ("definition of implicitly-declared %qD", old_decl);
9030 return NULL_TREE;
9032 else if (DECL_DEFAULTED_FN (old_decl))
9034 error ("definition of explicitly-defaulted %q+D", decl);
9035 inform (DECL_SOURCE_LOCATION (old_decl),
9036 "%q#D explicitly defaulted here", old_decl);
9037 return NULL_TREE;
9040 /* Since we've smashed OLD_DECL to its
9041 DECL_TEMPLATE_RESULT, we must do the same to DECL. */
9042 if (TREE_CODE (decl) == TEMPLATE_DECL)
9043 decl = DECL_TEMPLATE_RESULT (decl);
9045 /* Attempt to merge the declarations. This can fail, in
9046 the case of some invalid specialization declarations. */
9047 pushed_scope = push_scope (ctype);
9048 ok = duplicate_decls (decl, old_decl, friendp);
9049 if (pushed_scope)
9050 pop_scope (pushed_scope);
9051 if (!ok)
9053 error ("no %q#D member function declared in class %qT",
9054 decl, ctype);
9055 return NULL_TREE;
9057 if (ok == error_mark_node)
9058 return NULL_TREE;
9059 return old_decl;
9063 if (DECL_CONSTRUCTOR_P (decl) && !grok_ctor_properties (ctype, decl))
9064 return NULL_TREE;
9066 if (ctype == NULL_TREE || check)
9067 return decl;
9069 if (virtualp)
9070 DECL_VIRTUAL_P (decl) = 1;
9072 return decl;
9075 /* decl is a FUNCTION_DECL.
9076 specifiers are the parsed virt-specifiers.
9078 Set flags to reflect the virt-specifiers.
9080 Returns decl. */
9082 static tree
9083 set_virt_specifiers (tree decl, cp_virt_specifiers specifiers)
9085 if (decl == NULL_TREE)
9086 return decl;
9087 if (specifiers & VIRT_SPEC_OVERRIDE)
9088 DECL_OVERRIDE_P (decl) = 1;
9089 if (specifiers & VIRT_SPEC_FINAL)
9090 DECL_FINAL_P (decl) = 1;
9091 return decl;
9094 /* DECL is a VAR_DECL for a static data member. Set flags to reflect
9095 the linkage that DECL will receive in the object file. */
9097 static void
9098 set_linkage_for_static_data_member (tree decl)
9100 /* A static data member always has static storage duration and
9101 external linkage. Note that static data members are forbidden in
9102 local classes -- the only situation in which a class has
9103 non-external linkage. */
9104 TREE_PUBLIC (decl) = 1;
9105 TREE_STATIC (decl) = 1;
9106 /* For non-template classes, static data members are always put
9107 out in exactly those files where they are defined, just as
9108 with ordinary namespace-scope variables. */
9109 if (!processing_template_decl)
9110 DECL_INTERFACE_KNOWN (decl) = 1;
9113 /* Create a VAR_DECL named NAME with the indicated TYPE.
9115 If SCOPE is non-NULL, it is the class type or namespace containing
9116 the variable. If SCOPE is NULL, the variable should is created in
9117 the innermost enclosing scope. */
9119 static tree
9120 grokvardecl (tree type,
9121 tree name,
9122 tree orig_declarator,
9123 const cp_decl_specifier_seq *declspecs,
9124 int initialized,
9125 int type_quals,
9126 int inlinep,
9127 bool conceptp,
9128 int template_count,
9129 tree scope)
9131 tree decl;
9132 tree explicit_scope;
9134 gcc_assert (!name || identifier_p (name));
9136 bool constp = (type_quals & TYPE_QUAL_CONST) != 0;
9137 bool volatilep = (type_quals & TYPE_QUAL_VOLATILE) != 0;
9139 /* Compute the scope in which to place the variable, but remember
9140 whether or not that scope was explicitly specified by the user. */
9141 explicit_scope = scope;
9142 if (!scope)
9144 /* An explicit "extern" specifier indicates a namespace-scope
9145 variable. */
9146 if (declspecs->storage_class == sc_extern)
9147 scope = current_decl_namespace ();
9148 else if (!at_function_scope_p ())
9149 scope = current_scope ();
9152 if (scope
9153 && (/* If the variable is a namespace-scope variable declared in a
9154 template, we need DECL_LANG_SPECIFIC. */
9155 (TREE_CODE (scope) == NAMESPACE_DECL && processing_template_decl)
9156 /* Similarly for namespace-scope variables with language linkage
9157 other than C++. */
9158 || (TREE_CODE (scope) == NAMESPACE_DECL
9159 && current_lang_name != lang_name_cplusplus)
9160 /* Similarly for static data members. */
9161 || TYPE_P (scope)
9162 /* Similarly for explicit specializations. */
9163 || (orig_declarator
9164 && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)))
9165 decl = build_lang_decl (VAR_DECL, name, type);
9166 else
9167 decl = build_decl (input_location, VAR_DECL, name, type);
9169 if (explicit_scope && TREE_CODE (explicit_scope) == NAMESPACE_DECL)
9170 set_decl_namespace (decl, explicit_scope, 0);
9171 else
9172 DECL_CONTEXT (decl) = FROB_CONTEXT (scope);
9174 if (declspecs->storage_class == sc_extern)
9176 DECL_THIS_EXTERN (decl) = 1;
9177 DECL_EXTERNAL (decl) = !initialized;
9180 if (DECL_CLASS_SCOPE_P (decl))
9182 set_linkage_for_static_data_member (decl);
9183 /* This function is only called with out-of-class definitions. */
9184 DECL_EXTERNAL (decl) = 0;
9185 check_class_member_definition_namespace (decl);
9187 /* At top level, either `static' or no s.c. makes a definition
9188 (perhaps tentative), and absence of `static' makes it public. */
9189 else if (toplevel_bindings_p ())
9191 TREE_PUBLIC (decl) = (declspecs->storage_class != sc_static
9192 && (DECL_THIS_EXTERN (decl)
9193 || ! constp
9194 || volatilep
9195 || inlinep));
9196 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
9198 /* Not at top level, only `static' makes a static definition. */
9199 else
9201 TREE_STATIC (decl) = declspecs->storage_class == sc_static;
9202 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
9205 if (decl_spec_seq_has_spec_p (declspecs, ds_thread))
9207 if (DECL_EXTERNAL (decl) || TREE_STATIC (decl))
9209 CP_DECL_THREAD_LOCAL_P (decl) = true;
9210 if (!processing_template_decl)
9211 set_decl_tls_model (decl, decl_default_tls_model (decl));
9213 if (declspecs->gnu_thread_keyword_p)
9214 SET_DECL_GNU_TLS_P (decl);
9217 /* If the type of the decl has no linkage, make sure that we'll
9218 notice that in mark_used. */
9219 if (cxx_dialect > cxx98
9220 && decl_linkage (decl) != lk_none
9221 && DECL_LANG_SPECIFIC (decl) == NULL
9222 && !DECL_EXTERN_C_P (decl)
9223 && no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/false))
9224 retrofit_lang_decl (decl);
9226 if (TREE_PUBLIC (decl))
9228 /* [basic.link]: A name with no linkage (notably, the name of a class
9229 or enumeration declared in a local scope) shall not be used to
9230 declare an entity with linkage.
9232 DR 757 relaxes this restriction for C++0x. */
9233 if (cxx_dialect < cxx11)
9234 no_linkage_error (decl);
9236 else
9237 DECL_INTERFACE_KNOWN (decl) = 1;
9239 if (DECL_NAME (decl)
9240 && MAIN_NAME_P (DECL_NAME (decl))
9241 && scope == global_namespace)
9242 error ("cannot declare %<::main%> to be a global variable");
9244 /* Check that the variable can be safely declared as a concept.
9245 Note that this also forbids explicit specializations. */
9246 if (conceptp)
9248 if (!processing_template_decl)
9250 error ("a non-template variable cannot be %<concept%>");
9251 return NULL_TREE;
9253 else
9254 DECL_DECLARED_CONCEPT_P (decl) = true;
9255 if (!same_type_ignoring_top_level_qualifiers_p (type, boolean_type_node))
9256 error_at (declspecs->locations[ds_type_spec],
9257 "concept must have type %<bool%>");
9259 else if (flag_concepts
9260 && processing_template_decl > template_class_depth (scope))
9262 tree reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
9263 tree ci = build_constraints (reqs, NULL_TREE);
9264 set_constraints (decl, ci);
9267 // Handle explicit specializations and instantiations of variable templates.
9268 if (orig_declarator)
9269 decl = check_explicit_specialization (orig_declarator, decl,
9270 template_count, conceptp * 8);
9272 return decl != error_mark_node ? decl : NULL_TREE;
9275 /* Create and return a canonical pointer to member function type, for
9276 TYPE, which is a POINTER_TYPE to a METHOD_TYPE. */
9278 tree
9279 build_ptrmemfunc_type (tree type)
9281 tree field, fields;
9282 tree t;
9284 if (type == error_mark_node)
9285 return type;
9287 /* Make sure that we always have the unqualified pointer-to-member
9288 type first. */
9289 if (cp_cv_quals quals = cp_type_quals (type))
9291 tree unqual = build_ptrmemfunc_type (TYPE_MAIN_VARIANT (type));
9292 return cp_build_qualified_type (unqual, quals);
9295 /* If a canonical type already exists for this type, use it. We use
9296 this method instead of type_hash_canon, because it only does a
9297 simple equality check on the list of field members. */
9299 t = TYPE_PTRMEMFUNC_TYPE (type);
9300 if (t)
9301 return t;
9303 t = make_node (RECORD_TYPE);
9305 /* Let the front end know this is a pointer to member function. */
9306 TYPE_PTRMEMFUNC_FLAG (t) = 1;
9308 field = build_decl (input_location, FIELD_DECL, pfn_identifier, type);
9309 fields = field;
9311 field = build_decl (input_location, FIELD_DECL, delta_identifier,
9312 delta_type_node);
9313 DECL_CHAIN (field) = fields;
9314 fields = field;
9316 finish_builtin_struct (t, "__ptrmemfunc_type", fields, ptr_type_node);
9318 /* Zap out the name so that the back end will give us the debugging
9319 information for this anonymous RECORD_TYPE. */
9320 TYPE_NAME (t) = NULL_TREE;
9322 /* Cache this pointer-to-member type so that we can find it again
9323 later. */
9324 TYPE_PTRMEMFUNC_TYPE (type) = t;
9326 if (TYPE_STRUCTURAL_EQUALITY_P (type))
9327 SET_TYPE_STRUCTURAL_EQUALITY (t);
9328 else if (TYPE_CANONICAL (type) != type)
9329 TYPE_CANONICAL (t) = build_ptrmemfunc_type (TYPE_CANONICAL (type));
9331 return t;
9334 /* Create and return a pointer to data member type. */
9336 tree
9337 build_ptrmem_type (tree class_type, tree member_type)
9339 if (TREE_CODE (member_type) == METHOD_TYPE)
9341 cp_cv_quals quals = type_memfn_quals (member_type);
9342 cp_ref_qualifier rqual = type_memfn_rqual (member_type);
9343 member_type = build_memfn_type (member_type, class_type, quals, rqual);
9344 return build_ptrmemfunc_type (build_pointer_type (member_type));
9346 else
9348 gcc_assert (TREE_CODE (member_type) != FUNCTION_TYPE);
9349 return build_offset_type (class_type, member_type);
9353 /* DECL is a VAR_DECL defined in-class, whose TYPE is also given.
9354 Check to see that the definition is valid. Issue appropriate error
9355 messages. Return 1 if the definition is particularly bad, or 0
9356 otherwise. */
9358 static int
9359 check_static_variable_definition (tree decl, tree type)
9361 /* Avoid redundant diagnostics on out-of-class definitions. */
9362 if (!current_class_type || !TYPE_BEING_DEFINED (current_class_type))
9363 return 0;
9364 /* Can't check yet if we don't know the type. */
9365 if (dependent_type_p (type))
9366 return 0;
9367 /* If DECL is declared constexpr, we'll do the appropriate checks
9368 in check_initializer. Similarly for inline static data members. */
9369 if (DECL_P (decl)
9370 && (DECL_DECLARED_CONSTEXPR_P (decl)
9371 || DECL_VAR_DECLARED_INLINE_P (decl)))
9372 return 0;
9373 else if (cxx_dialect >= cxx11 && !INTEGRAL_OR_ENUMERATION_TYPE_P (type))
9375 if (!COMPLETE_TYPE_P (type))
9376 error_at (DECL_SOURCE_LOCATION (decl),
9377 "in-class initialization of static data member %q#D of "
9378 "incomplete type", decl);
9379 else if (literal_type_p (type))
9380 permerror (DECL_SOURCE_LOCATION (decl),
9381 "%<constexpr%> needed for in-class initialization of "
9382 "static data member %q#D of non-integral type", decl);
9383 else
9384 error_at (DECL_SOURCE_LOCATION (decl),
9385 "in-class initialization of static data member %q#D of "
9386 "non-literal type", decl);
9387 return 1;
9390 /* Motion 10 at San Diego: If a static const integral data member is
9391 initialized with an integral constant expression, the initializer
9392 may appear either in the declaration (within the class), or in
9393 the definition, but not both. If it appears in the class, the
9394 member is a member constant. The file-scope definition is always
9395 required. */
9396 if (!ARITHMETIC_TYPE_P (type) && TREE_CODE (type) != ENUMERAL_TYPE)
9398 error_at (DECL_SOURCE_LOCATION (decl),
9399 "invalid in-class initialization of static data member "
9400 "of non-integral type %qT",
9401 type);
9402 return 1;
9404 else if (!CP_TYPE_CONST_P (type))
9405 error_at (DECL_SOURCE_LOCATION (decl),
9406 "ISO C++ forbids in-class initialization of non-const "
9407 "static member %qD",
9408 decl);
9409 else if (!INTEGRAL_OR_ENUMERATION_TYPE_P (type))
9410 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wpedantic,
9411 "ISO C++ forbids initialization of member constant "
9412 "%qD of non-integral type %qT", decl, type);
9414 return 0;
9417 /* *expr_p is part of the TYPE_SIZE of a variably-sized array. If any
9418 SAVE_EXPRs in *expr_p wrap expressions with side-effects, break those
9419 expressions out into temporary variables so that walk_tree doesn't
9420 step into them (c++/15764). */
9422 static tree
9423 stabilize_save_expr_r (tree *expr_p, int *walk_subtrees, void *data)
9425 hash_set<tree> *pset = (hash_set<tree> *)data;
9426 tree expr = *expr_p;
9427 if (TREE_CODE (expr) == SAVE_EXPR)
9429 tree op = TREE_OPERAND (expr, 0);
9430 cp_walk_tree (&op, stabilize_save_expr_r, data, pset);
9431 if (TREE_SIDE_EFFECTS (op))
9432 TREE_OPERAND (expr, 0) = get_temp_regvar (TREE_TYPE (op), op);
9433 *walk_subtrees = 0;
9435 else if (!EXPR_P (expr) || !TREE_SIDE_EFFECTS (expr))
9436 *walk_subtrees = 0;
9437 return NULL;
9440 /* Entry point for the above. */
9442 static void
9443 stabilize_vla_size (tree size)
9445 hash_set<tree> pset;
9446 /* Break out any function calls into temporary variables. */
9447 cp_walk_tree (&size, stabilize_save_expr_r, &pset, &pset);
9450 /* Reduce a SIZEOF_EXPR to its value. */
9452 tree
9453 fold_sizeof_expr (tree t)
9455 tree r;
9456 if (SIZEOF_EXPR_TYPE_P (t))
9457 r = cxx_sizeof_or_alignof_type (TREE_TYPE (TREE_OPERAND (t, 0)),
9458 SIZEOF_EXPR, false, false);
9459 else if (TYPE_P (TREE_OPERAND (t, 0)))
9460 r = cxx_sizeof_or_alignof_type (TREE_OPERAND (t, 0), SIZEOF_EXPR,
9461 false, false);
9462 else
9463 r = cxx_sizeof_or_alignof_expr (TREE_OPERAND (t, 0), SIZEOF_EXPR,
9464 false);
9465 if (r == error_mark_node)
9466 r = size_one_node;
9467 return r;
9470 /* Given the SIZE (i.e., number of elements) in an array, compute
9471 an appropriate index type for the array. If non-NULL, NAME is
9472 the name of the entity being declared. */
9474 tree
9475 compute_array_index_type (tree name, tree size, tsubst_flags_t complain)
9477 tree itype;
9478 tree osize = size;
9480 if (error_operand_p (size))
9481 return error_mark_node;
9483 if (!type_dependent_expression_p (size))
9485 osize = size = mark_rvalue_use (size);
9487 if (cxx_dialect < cxx11 && TREE_CODE (size) == NOP_EXPR
9488 && TREE_SIDE_EFFECTS (size))
9489 /* In C++98, we mark a non-constant array bound with a magic
9490 NOP_EXPR with TREE_SIDE_EFFECTS; don't fold in that case. */;
9491 else
9493 size = instantiate_non_dependent_expr_sfinae (size, complain);
9494 size = build_converted_constant_expr (size_type_node, size, complain);
9495 size = maybe_constant_value (size);
9497 if (!TREE_CONSTANT (size))
9498 size = osize;
9501 if (error_operand_p (size))
9502 return error_mark_node;
9504 /* The array bound must be an integer type. */
9505 tree type = TREE_TYPE (size);
9506 if (!INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
9508 if (!(complain & tf_error))
9509 return error_mark_node;
9510 if (name)
9511 error ("size of array %qD has non-integral type %qT", name, type);
9512 else
9513 error ("size of array has non-integral type %qT", type);
9514 size = integer_one_node;
9518 /* A type is dependent if it is...an array type constructed from any
9519 dependent type or whose size is specified by a constant expression
9520 that is value-dependent. */
9521 /* We can only call value_dependent_expression_p on integral constant
9522 expressions; treat non-constant expressions as dependent, too. */
9523 if (processing_template_decl
9524 && (type_dependent_expression_p (size)
9525 || !TREE_CONSTANT (size) || value_dependent_expression_p (size)))
9527 /* We cannot do any checking for a SIZE that isn't known to be
9528 constant. Just build the index type and mark that it requires
9529 structural equality checks. */
9530 itype = build_index_type (build_min (MINUS_EXPR, sizetype,
9531 size, size_one_node));
9532 TYPE_DEPENDENT_P (itype) = 1;
9533 TYPE_DEPENDENT_P_VALID (itype) = 1;
9534 SET_TYPE_STRUCTURAL_EQUALITY (itype);
9535 return itype;
9538 if (TREE_CODE (size) != INTEGER_CST)
9540 tree folded = cp_fully_fold (size);
9541 if (TREE_CODE (folded) == INTEGER_CST)
9542 pedwarn (location_of (size), OPT_Wpedantic,
9543 "size of array is not an integral constant-expression");
9544 /* Use the folded result for VLAs, too; it will have resolved
9545 SIZEOF_EXPR. */
9546 size = folded;
9549 /* Normally, the array-bound will be a constant. */
9550 if (TREE_CODE (size) == INTEGER_CST)
9552 /* An array must have a positive number of elements. */
9553 if (!valid_constant_size_p (size))
9555 if (!(complain & tf_error))
9556 return error_mark_node;
9558 if (name)
9559 error ("size of array %qD is negative", name);
9560 else
9561 error ("size of array is negative");
9562 size = integer_one_node;
9564 /* As an extension we allow zero-sized arrays. */
9565 else if (integer_zerop (size))
9567 if (!(complain & tf_error))
9568 /* We must fail if performing argument deduction (as
9569 indicated by the state of complain), so that
9570 another substitution can be found. */
9571 return error_mark_node;
9572 else if (in_system_header_at (input_location))
9573 /* Allow them in system headers because glibc uses them. */;
9574 else if (name)
9575 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids zero-size array %qD", name);
9576 else
9577 pedwarn (input_location, OPT_Wpedantic, "ISO C++ forbids zero-size array");
9580 else if (TREE_CONSTANT (size)
9581 /* We don't allow VLAs at non-function scopes, or during
9582 tentative template substitution. */
9583 || !at_function_scope_p ()
9584 || !(complain & tf_error))
9586 if (!(complain & tf_error))
9587 return error_mark_node;
9588 /* `(int) &fn' is not a valid array bound. */
9589 if (name)
9590 error ("size of array %qD is not an integral constant-expression",
9591 name);
9592 else
9593 error ("size of array is not an integral constant-expression");
9594 size = integer_one_node;
9596 else if (pedantic && warn_vla != 0)
9598 if (name)
9599 pedwarn (input_location, OPT_Wvla, "ISO C++ forbids variable length array %qD", name);
9600 else
9601 pedwarn (input_location, OPT_Wvla, "ISO C++ forbids variable length array");
9603 else if (warn_vla > 0)
9605 if (name)
9606 warning (OPT_Wvla,
9607 "variable length array %qD is used", name);
9608 else
9609 warning (OPT_Wvla,
9610 "variable length array is used");
9613 if (processing_template_decl && !TREE_CONSTANT (size))
9614 /* A variable sized array. */
9615 itype = build_min (MINUS_EXPR, sizetype, size, integer_one_node);
9616 else
9618 /* Compute the index of the largest element in the array. It is
9619 one less than the number of elements in the array. We save
9620 and restore PROCESSING_TEMPLATE_DECL so that computations in
9621 cp_build_binary_op will be appropriately folded. */
9623 processing_template_decl_sentinel s;
9624 itype = cp_build_binary_op (input_location,
9625 MINUS_EXPR,
9626 cp_convert (ssizetype, size, complain),
9627 cp_convert (ssizetype, integer_one_node,
9628 complain),
9629 complain);
9630 itype = maybe_constant_value (itype);
9633 if (!TREE_CONSTANT (itype))
9635 /* A variable sized array. */
9636 itype = variable_size (itype);
9638 stabilize_vla_size (itype);
9640 if (sanitize_flags_p (SANITIZE_VLA)
9641 && current_function_decl != NULL_TREE)
9643 /* We have to add 1 -- in the ubsan routine we generate
9644 LE_EXPR rather than LT_EXPR. */
9645 tree t = fold_build2 (PLUS_EXPR, TREE_TYPE (itype), itype,
9646 build_one_cst (TREE_TYPE (itype)));
9647 t = ubsan_instrument_vla (input_location, t);
9648 finish_expr_stmt (t);
9651 /* Make sure that there was no overflow when creating to a signed
9652 index type. (For example, on a 32-bit machine, an array with
9653 size 2^32 - 1 is too big.) */
9654 else if (TREE_CODE (itype) == INTEGER_CST
9655 && TREE_OVERFLOW (itype))
9657 if (!(complain & tf_error))
9658 return error_mark_node;
9659 error ("overflow in array dimension");
9660 TREE_OVERFLOW (itype) = 0;
9664 /* Create and return the appropriate index type. */
9665 itype = build_index_type (itype);
9667 /* If the index type were dependent, we would have returned early, so
9668 remember that it isn't. */
9669 TYPE_DEPENDENT_P (itype) = 0;
9670 TYPE_DEPENDENT_P_VALID (itype) = 1;
9671 return itype;
9674 /* Returns the scope (if any) in which the entity declared by
9675 DECLARATOR will be located. If the entity was declared with an
9676 unqualified name, NULL_TREE is returned. */
9678 tree
9679 get_scope_of_declarator (const cp_declarator *declarator)
9681 while (declarator && declarator->kind != cdk_id)
9682 declarator = declarator->declarator;
9684 /* If the declarator-id is a SCOPE_REF, the scope in which the
9685 declaration occurs is the first operand. */
9686 if (declarator
9687 && declarator->u.id.qualifying_scope)
9688 return declarator->u.id.qualifying_scope;
9690 /* Otherwise, the declarator is not a qualified name; the entity will
9691 be declared in the current scope. */
9692 return NULL_TREE;
9695 /* Returns an ARRAY_TYPE for an array with SIZE elements of the
9696 indicated TYPE. If non-NULL, NAME is the NAME of the declaration
9697 with this type. */
9699 static tree
9700 create_array_type_for_decl (tree name, tree type, tree size)
9702 tree itype = NULL_TREE;
9704 /* If things have already gone awry, bail now. */
9705 if (type == error_mark_node || size == error_mark_node)
9706 return error_mark_node;
9708 /* 8.3.4/1: If the type of the identifier of D contains the auto
9709 type-specifier, the program is ill-formed. */
9710 if (type_uses_auto (type))
9712 error ("%qD declared as array of %qT", name, type);
9713 return error_mark_node;
9716 /* If there are some types which cannot be array elements,
9717 issue an error-message and return. */
9718 switch (TREE_CODE (type))
9720 case VOID_TYPE:
9721 if (name)
9722 error ("declaration of %qD as array of void", name);
9723 else
9724 error ("creating array of void");
9725 return error_mark_node;
9727 case FUNCTION_TYPE:
9728 if (name)
9729 error ("declaration of %qD as array of functions", name);
9730 else
9731 error ("creating array of functions");
9732 return error_mark_node;
9734 case REFERENCE_TYPE:
9735 if (name)
9736 error ("declaration of %qD as array of references", name);
9737 else
9738 error ("creating array of references");
9739 return error_mark_node;
9741 case METHOD_TYPE:
9742 if (name)
9743 error ("declaration of %qD as array of function members", name);
9744 else
9745 error ("creating array of function members");
9746 return error_mark_node;
9748 default:
9749 break;
9752 /* [dcl.array]
9754 The constant expressions that specify the bounds of the arrays
9755 can be omitted only for the first member of the sequence. */
9756 if (TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type))
9758 if (name)
9759 error ("declaration of %qD as multidimensional array must "
9760 "have bounds for all dimensions except the first",
9761 name);
9762 else
9763 error ("multidimensional array must have bounds for all "
9764 "dimensions except the first");
9766 return error_mark_node;
9769 /* Figure out the index type for the array. */
9770 if (size)
9771 itype = compute_array_index_type (name, size, tf_warning_or_error);
9773 /* [dcl.array]
9774 T is called the array element type; this type shall not be [...] an
9775 abstract class type. */
9776 abstract_virtuals_error (name, type);
9778 return build_cplus_array_type (type, itype);
9781 /* Returns the smallest location != UNKNOWN_LOCATION among the
9782 three stored in LOCATIONS[ds_const], LOCATIONS[ds_volatile],
9783 and LOCATIONS[ds_restrict]. */
9785 static location_t
9786 smallest_type_quals_location (int type_quals, const location_t* locations)
9788 location_t loc = UNKNOWN_LOCATION;
9790 if (type_quals & TYPE_QUAL_CONST)
9791 loc = locations[ds_const];
9793 if ((type_quals & TYPE_QUAL_VOLATILE)
9794 && (loc == UNKNOWN_LOCATION || locations[ds_volatile] < loc))
9795 loc = locations[ds_volatile];
9797 if ((type_quals & TYPE_QUAL_RESTRICT)
9798 && (loc == UNKNOWN_LOCATION || locations[ds_restrict] < loc))
9799 loc = locations[ds_restrict];
9801 return loc;
9804 /* Check that it's OK to declare a function with the indicated TYPE
9805 and TYPE_QUALS. SFK indicates the kind of special function (if any)
9806 that this function is. OPTYPE is the type given in a conversion
9807 operator declaration, or the class type for a constructor/destructor.
9808 Returns the actual return type of the function; that may be different
9809 than TYPE if an error occurs, or for certain special functions. */
9811 static tree
9812 check_special_function_return_type (special_function_kind sfk,
9813 tree type,
9814 tree optype,
9815 int type_quals,
9816 const location_t* locations)
9818 switch (sfk)
9820 case sfk_constructor:
9821 if (type)
9822 error ("return type specification for constructor invalid");
9823 else if (type_quals != TYPE_UNQUALIFIED)
9824 error_at (smallest_type_quals_location (type_quals, locations),
9825 "qualifiers are not allowed on constructor declaration");
9827 if (targetm.cxx.cdtor_returns_this ())
9828 type = build_pointer_type (optype);
9829 else
9830 type = void_type_node;
9831 break;
9833 case sfk_destructor:
9834 if (type)
9835 error ("return type specification for destructor invalid");
9836 else if (type_quals != TYPE_UNQUALIFIED)
9837 error_at (smallest_type_quals_location (type_quals, locations),
9838 "qualifiers are not allowed on destructor declaration");
9840 /* We can't use the proper return type here because we run into
9841 problems with ambiguous bases and covariant returns. */
9842 if (targetm.cxx.cdtor_returns_this ())
9843 type = build_pointer_type (void_type_node);
9844 else
9845 type = void_type_node;
9846 break;
9848 case sfk_conversion:
9849 if (type)
9850 error ("return type specified for %<operator %T%>", optype);
9851 else if (type_quals != TYPE_UNQUALIFIED)
9852 error_at (smallest_type_quals_location (type_quals, locations),
9853 "qualifiers are not allowed on declaration of "
9854 "%<operator %T%>", optype);
9856 type = optype;
9857 break;
9859 case sfk_deduction_guide:
9860 if (type)
9861 error ("return type specified for deduction guide");
9862 else if (type_quals != TYPE_UNQUALIFIED)
9863 error_at (smallest_type_quals_location (type_quals, locations),
9864 "qualifiers are not allowed on declaration of "
9865 "deduction guide");
9866 if (TREE_CODE (optype) == TEMPLATE_TEMPLATE_PARM)
9868 error ("template template parameter %qT in declaration of "
9869 "deduction guide", optype);
9870 type = error_mark_node;
9872 else
9873 type = make_template_placeholder (CLASSTYPE_TI_TEMPLATE (optype));
9874 for (int i = 0; i < ds_last; ++i)
9875 if (i != ds_explicit && locations[i])
9876 error_at (locations[i],
9877 "decl-specifier in declaration of deduction guide");
9878 break;
9880 default:
9881 gcc_unreachable ();
9884 return type;
9887 /* A variable or data member (whose unqualified name is IDENTIFIER)
9888 has been declared with the indicated TYPE. If the TYPE is not
9889 acceptable, issue an error message and return a type to use for
9890 error-recovery purposes. */
9892 tree
9893 check_var_type (tree identifier, tree type)
9895 if (VOID_TYPE_P (type))
9897 if (!identifier)
9898 error ("unnamed variable or field declared void");
9899 else if (identifier_p (identifier))
9901 gcc_assert (!IDENTIFIER_ANY_OP_P (identifier));
9902 error ("variable or field %qE declared void", identifier);
9904 else
9905 error ("variable or field declared void");
9906 type = error_mark_node;
9909 return type;
9912 /* Handle declaring DECL as an inline variable. */
9914 static void
9915 mark_inline_variable (tree decl)
9917 bool inlinep = true;
9918 if (! toplevel_bindings_p ())
9920 error ("%<inline%> specifier invalid for variable "
9921 "%qD declared at block scope", decl);
9922 inlinep = false;
9924 else if (cxx_dialect < cxx17)
9925 pedwarn (DECL_SOURCE_LOCATION (decl), 0,
9926 "inline variables are only available "
9927 "with -std=c++17 or -std=gnu++17");
9928 if (inlinep)
9930 retrofit_lang_decl (decl);
9931 SET_DECL_VAR_DECLARED_INLINE_P (decl);
9936 /* Assign a typedef-given name to a class or enumeration type declared
9937 as anonymous at first. This was split out of grokdeclarator
9938 because it is also used in libcc1. */
9940 void
9941 name_unnamed_type (tree type, tree decl)
9943 gcc_assert (TYPE_UNNAMED_P (type));
9945 /* Replace the anonymous name with the real name everywhere. */
9946 for (tree t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
9948 if (anon_aggrname_p (TYPE_IDENTIFIER (t)))
9949 /* We do not rename the debug info representing the
9950 unnamed tagged type because the standard says in
9951 [dcl.typedef] that the naming applies only for
9952 linkage purposes. */
9953 /*debug_hooks->set_name (t, decl);*/
9954 TYPE_NAME (t) = decl;
9957 if (TYPE_LANG_SPECIFIC (type))
9958 TYPE_WAS_UNNAMED (type) = 1;
9960 /* If this is a typedef within a template class, the nested
9961 type is a (non-primary) template. The name for the
9962 template needs updating as well. */
9963 if (TYPE_LANG_SPECIFIC (type) && CLASSTYPE_TEMPLATE_INFO (type))
9964 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type))
9965 = TYPE_IDENTIFIER (type);
9967 /* Adjust linkage now that we aren't unnamed anymore. */
9968 reset_type_linkage (type);
9970 /* FIXME remangle member functions; member functions of a
9971 type with external linkage have external linkage. */
9973 /* Check that our job is done, and that it would fail if we
9974 attempted to do it again. */
9975 gcc_assert (!TYPE_UNNAMED_P (type));
9978 /* Given declspecs and a declarator (abstract or otherwise), determine
9979 the name and type of the object declared and construct a DECL node
9980 for it.
9982 DECLSPECS points to the representation of declaration-specifier
9983 sequence that precedes declarator.
9985 DECL_CONTEXT says which syntactic context this declaration is in:
9986 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
9987 FUNCDEF for a function definition. Like NORMAL but a few different
9988 error messages in each case. Return value may be zero meaning
9989 this definition is too screwy to try to parse.
9990 MEMFUNCDEF for a function definition. Like FUNCDEF but prepares to
9991 handle member functions (which have FIELD context).
9992 Return value may be zero meaning this definition is too screwy to
9993 try to parse.
9994 PARM for a parameter declaration (either within a function prototype
9995 or before a function body). Make a PARM_DECL, or return void_type_node.
9996 TPARM for a template parameter declaration.
9997 CATCHPARM for a parameter declaration before a catch clause.
9998 TYPENAME if for a typename (in a cast or sizeof).
9999 Don't make a DECL node; just return the ..._TYPE node.
10000 FIELD for a struct or union field; make a FIELD_DECL.
10001 BITFIELD for a field with specified width.
10003 INITIALIZED is as for start_decl.
10005 ATTRLIST is a pointer to the list of attributes, which may be NULL
10006 if there are none; *ATTRLIST may be modified if attributes from inside
10007 the declarator should be applied to the declaration.
10009 When this function is called, scoping variables (such as
10010 CURRENT_CLASS_TYPE) should reflect the scope in which the
10011 declaration occurs, not the scope in which the new declaration will
10012 be placed. For example, on:
10014 void S::f() { ... }
10016 when grokdeclarator is called for `S::f', the CURRENT_CLASS_TYPE
10017 should not be `S'.
10019 Returns a DECL (if a declarator is present), a TYPE (if there is no
10020 declarator, in cases like "struct S;"), or the ERROR_MARK_NODE if an
10021 error occurs. */
10023 tree
10024 grokdeclarator (const cp_declarator *declarator,
10025 cp_decl_specifier_seq *declspecs,
10026 enum decl_context decl_context,
10027 int initialized,
10028 tree* attrlist)
10030 tree type = NULL_TREE;
10031 int longlong = 0;
10032 int explicit_intN = 0;
10033 int virtualp, explicitp, friendp, inlinep, staticp;
10034 int explicit_int = 0;
10035 int explicit_char = 0;
10036 int defaulted_int = 0;
10038 tree typedef_decl = NULL_TREE;
10039 const char *name = NULL;
10040 tree typedef_type = NULL_TREE;
10041 /* True if this declarator is a function definition. */
10042 bool funcdef_flag = false;
10043 cp_declarator_kind innermost_code = cdk_error;
10044 int bitfield = 0;
10045 #if 0
10046 /* See the code below that used this. */
10047 tree decl_attr = NULL_TREE;
10048 #endif
10050 /* Keep track of what sort of function is being processed
10051 so that we can warn about default return values, or explicit
10052 return values which do not match prescribed defaults. */
10053 special_function_kind sfk = sfk_none;
10055 tree dname = NULL_TREE;
10056 tree ctor_return_type = NULL_TREE;
10057 enum overload_flags flags = NO_SPECIAL;
10058 /* cv-qualifiers that apply to the declarator, for a declaration of
10059 a member function. */
10060 cp_cv_quals memfn_quals = TYPE_UNQUALIFIED;
10061 /* virt-specifiers that apply to the declarator, for a declaration of
10062 a member function. */
10063 cp_virt_specifiers virt_specifiers = VIRT_SPEC_UNSPECIFIED;
10064 /* ref-qualifier that applies to the declarator, for a declaration of
10065 a member function. */
10066 cp_ref_qualifier rqual = REF_QUAL_NONE;
10067 /* cv-qualifiers that apply to the type specified by the DECLSPECS. */
10068 int type_quals = TYPE_UNQUALIFIED;
10069 tree raises = NULL_TREE;
10070 int template_count = 0;
10071 tree returned_attrs = NULL_TREE;
10072 tree parms = NULL_TREE;
10073 const cp_declarator *id_declarator;
10074 /* The unqualified name of the declarator; either an
10075 IDENTIFIER_NODE, BIT_NOT_EXPR, or TEMPLATE_ID_EXPR. */
10076 tree unqualified_id;
10077 /* The class type, if any, in which this entity is located,
10078 or NULL_TREE if none. Note that this value may be different from
10079 the current class type; for example if an attempt is made to declare
10080 "A::f" inside "B", this value will be "A". */
10081 tree ctype = current_class_type;
10082 /* The NAMESPACE_DECL for the namespace in which this entity is
10083 located. If an unqualified name is used to declare the entity,
10084 this value will be NULL_TREE, even if the entity is located at
10085 namespace scope. */
10086 tree in_namespace = NULL_TREE;
10087 cp_storage_class storage_class;
10088 bool unsigned_p, signed_p, short_p, long_p, thread_p;
10089 bool type_was_error_mark_node = false;
10090 bool parameter_pack_p = declarator ? declarator->parameter_pack_p : false;
10091 bool template_type_arg = false;
10092 bool template_parm_flag = false;
10093 bool typedef_p = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
10094 bool constexpr_p = decl_spec_seq_has_spec_p (declspecs, ds_constexpr);
10095 bool late_return_type_p = false;
10096 bool array_parameter_p = false;
10097 source_location saved_loc = input_location;
10098 tree reqs = NULL_TREE;
10100 signed_p = decl_spec_seq_has_spec_p (declspecs, ds_signed);
10101 unsigned_p = decl_spec_seq_has_spec_p (declspecs, ds_unsigned);
10102 short_p = decl_spec_seq_has_spec_p (declspecs, ds_short);
10103 long_p = decl_spec_seq_has_spec_p (declspecs, ds_long);
10104 longlong = decl_spec_seq_has_spec_p (declspecs, ds_long_long);
10105 explicit_intN = declspecs->explicit_intN_p;
10106 thread_p = decl_spec_seq_has_spec_p (declspecs, ds_thread);
10108 // Was concept_p specified? Note that ds_concept
10109 // implies ds_constexpr!
10110 bool concept_p = decl_spec_seq_has_spec_p (declspecs, ds_concept);
10111 if (concept_p)
10112 constexpr_p = true;
10114 if (decl_spec_seq_has_spec_p (declspecs, ds_const))
10115 type_quals |= TYPE_QUAL_CONST;
10116 if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
10117 type_quals |= TYPE_QUAL_VOLATILE;
10118 if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
10119 type_quals |= TYPE_QUAL_RESTRICT;
10121 if (decl_context == FUNCDEF)
10122 funcdef_flag = true, decl_context = NORMAL;
10123 else if (decl_context == MEMFUNCDEF)
10124 funcdef_flag = true, decl_context = FIELD;
10125 else if (decl_context == BITFIELD)
10126 bitfield = 1, decl_context = FIELD;
10127 else if (decl_context == TEMPLATE_TYPE_ARG)
10128 template_type_arg = true, decl_context = TYPENAME;
10129 else if (decl_context == TPARM)
10130 template_parm_flag = true, decl_context = PARM;
10132 if (initialized > 1)
10133 funcdef_flag = true;
10135 location_t typespec_loc = smallest_type_quals_location (type_quals,
10136 declspecs->locations);
10137 if (typespec_loc == UNKNOWN_LOCATION)
10138 typespec_loc = declspecs->locations[ds_type_spec];
10139 if (typespec_loc == UNKNOWN_LOCATION)
10140 typespec_loc = input_location;
10142 /* Look inside a declarator for the name being declared
10143 and get it as a string, for an error message. */
10144 for (id_declarator = declarator;
10145 id_declarator;
10146 id_declarator = id_declarator->declarator)
10148 if (id_declarator->kind != cdk_id)
10149 innermost_code = id_declarator->kind;
10151 switch (id_declarator->kind)
10153 case cdk_function:
10154 if (id_declarator->declarator
10155 && id_declarator->declarator->kind == cdk_id)
10157 sfk = id_declarator->declarator->u.id.sfk;
10158 if (sfk == sfk_destructor)
10159 flags = DTOR_FLAG;
10161 break;
10163 case cdk_id:
10165 tree qualifying_scope = id_declarator->u.id.qualifying_scope;
10166 tree decl = id_declarator->u.id.unqualified_name;
10167 if (!decl)
10168 break;
10169 if (qualifying_scope)
10171 if (at_function_scope_p ())
10173 /* [dcl.meaning]
10175 A declarator-id shall not be qualified except
10176 for ...
10178 None of the cases are permitted in block
10179 scope. */
10180 if (qualifying_scope == global_namespace)
10181 error ("invalid use of qualified-name %<::%D%>",
10182 decl);
10183 else if (TYPE_P (qualifying_scope))
10184 error ("invalid use of qualified-name %<%T::%D%>",
10185 qualifying_scope, decl);
10186 else
10187 error ("invalid use of qualified-name %<%D::%D%>",
10188 qualifying_scope, decl);
10189 return error_mark_node;
10191 else if (TYPE_P (qualifying_scope))
10193 ctype = qualifying_scope;
10194 if (!MAYBE_CLASS_TYPE_P (ctype))
10196 error ("%q#T is not a class or a namespace", ctype);
10197 ctype = NULL_TREE;
10199 else if (innermost_code != cdk_function
10200 && current_class_type
10201 && !uniquely_derived_from_p (ctype,
10202 current_class_type))
10204 error ("invalid use of qualified-name %<%T::%D%>",
10205 qualifying_scope, decl);
10206 return error_mark_node;
10209 else if (TREE_CODE (qualifying_scope) == NAMESPACE_DECL)
10210 in_namespace = qualifying_scope;
10212 switch (TREE_CODE (decl))
10214 case BIT_NOT_EXPR:
10216 if (innermost_code != cdk_function)
10218 error ("declaration of %qD as non-function", decl);
10219 return error_mark_node;
10221 else if (!qualifying_scope
10222 && !(current_class_type && at_class_scope_p ()))
10224 error ("declaration of %qD as non-member", decl);
10225 return error_mark_node;
10228 tree type = TREE_OPERAND (decl, 0);
10229 if (TYPE_P (type))
10230 type = constructor_name (type);
10231 name = identifier_to_locale (IDENTIFIER_POINTER (type));
10232 dname = decl;
10234 break;
10236 case TEMPLATE_ID_EXPR:
10238 tree fns = TREE_OPERAND (decl, 0);
10240 dname = fns;
10241 if (!identifier_p (dname))
10242 dname = OVL_NAME (dname);
10244 /* Fall through. */
10246 case IDENTIFIER_NODE:
10247 if (identifier_p (decl))
10248 dname = decl;
10250 if (IDENTIFIER_KEYWORD_P (dname))
10252 error ("declarator-id missing; using reserved word %qD",
10253 dname);
10254 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
10256 else if (!IDENTIFIER_CONV_OP_P (dname))
10257 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
10258 else
10260 gcc_assert (flags == NO_SPECIAL);
10261 flags = TYPENAME_FLAG;
10262 sfk = sfk_conversion;
10263 tree glob = get_global_binding (dname);
10264 if (glob && TREE_CODE (glob) == TYPE_DECL)
10265 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
10266 else
10267 name = "<invalid operator>";
10269 break;
10271 default:
10272 gcc_unreachable ();
10274 break;
10277 case cdk_array:
10278 case cdk_pointer:
10279 case cdk_reference:
10280 case cdk_ptrmem:
10281 break;
10283 case cdk_decomp:
10284 name = "structured binding";
10285 break;
10287 case cdk_error:
10288 return error_mark_node;
10290 default:
10291 gcc_unreachable ();
10293 if (id_declarator->kind == cdk_id)
10294 break;
10297 /* [dcl.fct.edf]
10299 The declarator in a function-definition shall have the form
10300 D1 ( parameter-declaration-clause) ... */
10301 if (funcdef_flag && innermost_code != cdk_function)
10303 error ("function definition does not declare parameters");
10304 return error_mark_node;
10307 if (flags == TYPENAME_FLAG
10308 && innermost_code != cdk_function
10309 && ! (ctype && !declspecs->any_specifiers_p))
10311 error ("declaration of %qD as non-function", dname);
10312 return error_mark_node;
10315 if (dname && identifier_p (dname))
10317 if (UDLIT_OPER_P (dname)
10318 && innermost_code != cdk_function)
10320 error ("declaration of %qD as non-function", dname);
10321 return error_mark_node;
10324 if (IDENTIFIER_ANY_OP_P (dname))
10326 if (typedef_p)
10328 error ("declaration of %qD as %<typedef%>", dname);
10329 return error_mark_node;
10331 else if (decl_context == PARM || decl_context == CATCHPARM)
10333 error ("declaration of %qD as parameter", dname);
10334 return error_mark_node;
10339 /* Anything declared one level down from the top level
10340 must be one of the parameters of a function
10341 (because the body is at least two levels down). */
10343 /* This heuristic cannot be applied to C++ nodes! Fixed, however,
10344 by not allowing C++ class definitions to specify their parameters
10345 with xdecls (must be spec.d in the parmlist).
10347 Since we now wait to push a class scope until we are sure that
10348 we are in a legitimate method context, we must set oldcname
10349 explicitly (since current_class_name is not yet alive).
10351 We also want to avoid calling this a PARM if it is in a namespace. */
10353 if (decl_context == NORMAL && !toplevel_bindings_p ())
10355 cp_binding_level *b = current_binding_level;
10356 current_binding_level = b->level_chain;
10357 if (current_binding_level != 0 && toplevel_bindings_p ())
10358 decl_context = PARM;
10359 current_binding_level = b;
10362 if (name == NULL)
10363 name = decl_context == PARM ? "parameter" : "type name";
10365 if (concept_p && typedef_p)
10367 error ("%<concept%> cannot appear in a typedef declaration");
10368 return error_mark_node;
10371 if (constexpr_p && typedef_p)
10373 error ("%<constexpr%> cannot appear in a typedef declaration");
10374 return error_mark_node;
10377 /* If there were multiple types specified in the decl-specifier-seq,
10378 issue an error message. */
10379 if (declspecs->multiple_types_p)
10381 error ("two or more data types in declaration of %qs", name);
10382 return error_mark_node;
10385 if (declspecs->conflicting_specifiers_p)
10387 error ("conflicting specifiers in declaration of %qs", name);
10388 return error_mark_node;
10391 /* Extract the basic type from the decl-specifier-seq. */
10392 type = declspecs->type;
10393 if (type == error_mark_node)
10395 type = NULL_TREE;
10396 type_was_error_mark_node = true;
10398 /* If the entire declaration is itself tagged as deprecated then
10399 suppress reports of deprecated items. */
10400 if (type && TREE_DEPRECATED (type)
10401 && deprecated_state != DEPRECATED_SUPPRESS)
10402 cp_warn_deprecated_use (type);
10403 if (type && TREE_CODE (type) == TYPE_DECL)
10405 typedef_decl = type;
10406 type = TREE_TYPE (typedef_decl);
10407 if (TREE_DEPRECATED (type)
10408 && DECL_ARTIFICIAL (typedef_decl)
10409 && deprecated_state != DEPRECATED_SUPPRESS)
10410 cp_warn_deprecated_use (type);
10412 /* No type at all: default to `int', and set DEFAULTED_INT
10413 because it was not a user-defined typedef. */
10414 if (type == NULL_TREE)
10416 if (signed_p || unsigned_p || long_p || short_p)
10418 /* These imply 'int'. */
10419 type = integer_type_node;
10420 defaulted_int = 1;
10422 /* If we just have "complex", it is equivalent to "complex double". */
10423 else if (!longlong && !explicit_intN
10424 && decl_spec_seq_has_spec_p (declspecs, ds_complex))
10426 type = double_type_node;
10427 pedwarn (declspecs->locations[ds_complex], OPT_Wpedantic,
10428 "ISO C++ does not support plain %<complex%> meaning "
10429 "%<double complex%>");
10432 /* Gather flags. */
10433 explicit_int = declspecs->explicit_int_p;
10434 explicit_char = declspecs->explicit_char_p;
10436 #if 0
10437 /* See the code below that used this. */
10438 if (typedef_decl)
10439 decl_attr = DECL_ATTRIBUTES (typedef_decl);
10440 #endif
10441 typedef_type = type;
10443 if (sfk == sfk_conversion || sfk == sfk_deduction_guide)
10444 ctor_return_type = TREE_TYPE (dname);
10445 else
10446 ctor_return_type = ctype;
10448 if (sfk != sfk_none)
10450 type = check_special_function_return_type (sfk, type,
10451 ctor_return_type,
10452 type_quals,
10453 declspecs->locations);
10454 type_quals = TYPE_UNQUALIFIED;
10456 else if (type == NULL_TREE)
10458 int is_main;
10460 explicit_int = -1;
10462 /* We handle `main' specially here, because 'main () { }' is so
10463 common. With no options, it is allowed. With -Wreturn-type,
10464 it is a warning. It is only an error with -pedantic-errors. */
10465 is_main = (funcdef_flag
10466 && dname && identifier_p (dname)
10467 && MAIN_NAME_P (dname)
10468 && ctype == NULL_TREE
10469 && in_namespace == NULL_TREE
10470 && current_namespace == global_namespace);
10472 if (type_was_error_mark_node)
10473 /* We've already issued an error, don't complain more. */;
10474 else if (in_system_header_at (input_location) || flag_ms_extensions)
10475 /* Allow it, sigh. */;
10476 else if (! is_main)
10477 permerror (input_location, "ISO C++ forbids declaration of %qs with no type", name);
10478 else if (pedantic)
10479 pedwarn (input_location, OPT_Wpedantic,
10480 "ISO C++ forbids declaration of %qs with no type", name);
10481 else
10482 warning (OPT_Wreturn_type,
10483 "ISO C++ forbids declaration of %qs with no type", name);
10485 if (type_was_error_mark_node && template_parm_flag)
10486 /* FIXME we should be able to propagate the error_mark_node as is
10487 for other contexts too. */
10488 type = error_mark_node;
10489 else
10490 type = integer_type_node;
10493 ctype = NULL_TREE;
10495 if (explicit_intN)
10497 if (! int_n_enabled_p[declspecs->int_n_idx])
10499 error ("%<__int%d%> is not supported by this target",
10500 int_n_data[declspecs->int_n_idx].bitsize);
10501 explicit_intN = false;
10503 else if (pedantic && ! in_system_header_at (input_location))
10504 pedwarn (input_location, OPT_Wpedantic,
10505 "ISO C++ does not support %<__int%d%> for %qs",
10506 int_n_data[declspecs->int_n_idx].bitsize, name);
10509 /* Now process the modifiers that were specified
10510 and check for invalid combinations. */
10512 /* Long double is a special combination. */
10513 if (long_p && !longlong && TYPE_MAIN_VARIANT (type) == double_type_node)
10515 long_p = false;
10516 type = cp_build_qualified_type (long_double_type_node,
10517 cp_type_quals (type));
10520 /* Check all other uses of type modifiers. */
10522 if (unsigned_p || signed_p || long_p || short_p)
10524 location_t loc;
10525 const char *key;
10526 if (unsigned_p)
10528 key = "unsigned";
10529 loc = declspecs->locations[ds_unsigned];
10531 else if (signed_p)
10533 key = "signed";
10534 loc = declspecs->locations[ds_signed];
10536 else if (longlong)
10538 key = "long long";
10539 loc = declspecs->locations[ds_long_long];
10541 else if (long_p)
10543 key = "long";
10544 loc = declspecs->locations[ds_long];
10546 else /* if (short_p) */
10548 key = "short";
10549 loc = declspecs->locations[ds_short];
10552 int ok = 0;
10554 if (signed_p && unsigned_p)
10555 error_at (loc, "%<signed%> and %<unsigned%> specified together");
10556 else if (long_p && short_p)
10557 error_at (loc, "%<long%> and %<short%> specified together");
10558 else if (TREE_CODE (type) != INTEGER_TYPE
10559 || type == char16_type_node || type == char32_type_node
10560 || ((long_p || short_p)
10561 && (explicit_char || explicit_intN)))
10562 error_at (loc, "%qs specified with %qT", key, type);
10563 else if (!explicit_int && !defaulted_int
10564 && !explicit_char && !explicit_intN)
10566 if (typedef_decl)
10568 pedwarn (loc, OPT_Wpedantic, "%qs specified with %qT",
10569 key, type);
10570 ok = !flag_pedantic_errors;
10572 else if (declspecs->decltype_p)
10573 error_at (loc, "%qs specified with %<decltype%>", key);
10574 else
10575 error_at (loc, "%qs specified with %<typeof%>", key);
10577 else
10578 ok = 1;
10580 /* Discard the type modifiers if they are invalid. */
10581 if (! ok)
10583 unsigned_p = false;
10584 signed_p = false;
10585 long_p = false;
10586 short_p = false;
10587 longlong = 0;
10591 /* Decide whether an integer type is signed or not.
10592 Optionally treat bitfields as signed by default. */
10593 if (unsigned_p
10594 /* [class.bit]
10596 It is implementation-defined whether a plain (neither
10597 explicitly signed or unsigned) char, short, int, or long
10598 bit-field is signed or unsigned.
10600 Naturally, we extend this to long long as well. Note that
10601 this does not include wchar_t. */
10602 || (bitfield && !flag_signed_bitfields
10603 && !signed_p
10604 /* A typedef for plain `int' without `signed' can be
10605 controlled just like plain `int', but a typedef for
10606 `signed int' cannot be so controlled. */
10607 && !(typedef_decl
10608 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl))
10609 && TREE_CODE (type) == INTEGER_TYPE
10610 && !same_type_p (TYPE_MAIN_VARIANT (type), wchar_type_node)))
10612 if (explicit_intN)
10613 type = int_n_trees[declspecs->int_n_idx].unsigned_type;
10614 else if (longlong)
10615 type = long_long_unsigned_type_node;
10616 else if (long_p)
10617 type = long_unsigned_type_node;
10618 else if (short_p)
10619 type = short_unsigned_type_node;
10620 else if (type == char_type_node)
10621 type = unsigned_char_type_node;
10622 else if (typedef_decl)
10623 type = unsigned_type_for (type);
10624 else
10625 type = unsigned_type_node;
10627 else if (signed_p && type == char_type_node)
10628 type = signed_char_type_node;
10629 else if (explicit_intN)
10630 type = int_n_trees[declspecs->int_n_idx].signed_type;
10631 else if (longlong)
10632 type = long_long_integer_type_node;
10633 else if (long_p)
10634 type = long_integer_type_node;
10635 else if (short_p)
10636 type = short_integer_type_node;
10638 if (decl_spec_seq_has_spec_p (declspecs, ds_complex))
10640 if (TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
10641 error ("complex invalid for %qs", name);
10642 /* If a modifier is specified, the resulting complex is the complex
10643 form of TYPE. E.g, "complex short" is "complex short int". */
10644 else if (type == integer_type_node)
10645 type = complex_integer_type_node;
10646 else if (type == float_type_node)
10647 type = complex_float_type_node;
10648 else if (type == double_type_node)
10649 type = complex_double_type_node;
10650 else if (type == long_double_type_node)
10651 type = complex_long_double_type_node;
10652 else
10653 type = build_complex_type (type);
10656 /* If we're using the injected-class-name to form a compound type or a
10657 declaration, replace it with the underlying class so we don't get
10658 redundant typedefs in the debug output. But if we are returning the
10659 type unchanged, leave it alone so that it's available to
10660 maybe_get_template_decl_from_type_decl. */
10661 if (CLASS_TYPE_P (type)
10662 && DECL_SELF_REFERENCE_P (TYPE_NAME (type))
10663 && type == TREE_TYPE (TYPE_NAME (type))
10664 && (declarator || type_quals))
10665 type = DECL_ORIGINAL_TYPE (TYPE_NAME (type));
10667 type_quals |= cp_type_quals (type);
10668 type = cp_build_qualified_type_real
10669 (type, type_quals, ((((typedef_decl && !DECL_ARTIFICIAL (typedef_decl))
10670 || declspecs->decltype_p)
10671 ? tf_ignore_bad_quals : 0) | tf_warning_or_error));
10672 /* We might have ignored or rejected some of the qualifiers. */
10673 type_quals = cp_type_quals (type);
10675 if (cxx_dialect >= cxx17 && type && is_auto (type)
10676 && innermost_code != cdk_function
10677 && id_declarator && declarator != id_declarator)
10678 if (tree tmpl = CLASS_PLACEHOLDER_TEMPLATE (type))
10680 error_at (typespec_loc, "template placeholder type %qT must be followed "
10681 "by a simple declarator-id", type);
10682 inform (DECL_SOURCE_LOCATION (tmpl), "%qD declared here", tmpl);
10685 staticp = 0;
10686 inlinep = decl_spec_seq_has_spec_p (declspecs, ds_inline);
10687 virtualp = decl_spec_seq_has_spec_p (declspecs, ds_virtual);
10688 explicitp = decl_spec_seq_has_spec_p (declspecs, ds_explicit);
10690 storage_class = declspecs->storage_class;
10691 if (storage_class == sc_static)
10692 staticp = 1 + (decl_context == FIELD);
10694 if (virtualp)
10696 if (staticp == 2)
10698 error ("member %qD cannot be declared both %<virtual%> "
10699 "and %<static%>", dname);
10700 storage_class = sc_none;
10701 staticp = 0;
10703 if (constexpr_p)
10704 error ("member %qD cannot be declared both %<virtual%> "
10705 "and %<constexpr%>", dname);
10707 friendp = decl_spec_seq_has_spec_p (declspecs, ds_friend);
10709 /* Issue errors about use of storage classes for parameters. */
10710 if (decl_context == PARM)
10712 if (typedef_p)
10714 error ("typedef declaration invalid in parameter declaration");
10715 return error_mark_node;
10717 else if (template_parm_flag && storage_class != sc_none)
10719 error ("storage class specified for template parameter %qs", name);
10720 return error_mark_node;
10722 else if (storage_class == sc_static
10723 || storage_class == sc_extern
10724 || thread_p)
10725 error ("storage class specifiers invalid in parameter declarations");
10727 /* Function parameters cannot be concept. */
10728 if (concept_p)
10729 error ("a parameter cannot be declared %<concept%>");
10730 /* Function parameters cannot be constexpr. If we saw one, moan
10731 and pretend it wasn't there. */
10732 else if (constexpr_p)
10734 error ("a parameter cannot be declared %<constexpr%>");
10735 constexpr_p = 0;
10739 /* Give error if `virtual' is used outside of class declaration. */
10740 if (virtualp
10741 && (current_class_name == NULL_TREE || decl_context != FIELD))
10743 error_at (declspecs->locations[ds_virtual],
10744 "%<virtual%> outside class declaration");
10745 virtualp = 0;
10748 if (innermost_code == cdk_decomp)
10750 location_t loc = (declarator->kind == cdk_reference
10751 ? declarator->declarator->id_loc : declarator->id_loc);
10752 if (inlinep)
10753 error_at (declspecs->locations[ds_inline],
10754 "structured binding declaration cannot be %<inline%>");
10755 if (typedef_p)
10756 error_at (declspecs->locations[ds_typedef],
10757 "structured binding declaration cannot be %<typedef%>");
10758 if (constexpr_p)
10759 error_at (declspecs->locations[ds_constexpr], "structured "
10760 "binding declaration cannot be %<constexpr%>");
10761 if (thread_p)
10762 error_at (declspecs->locations[ds_thread],
10763 "structured binding declaration cannot be %qs",
10764 declspecs->gnu_thread_keyword_p
10765 ? "__thread" : "thread_local");
10766 if (concept_p)
10767 error_at (declspecs->locations[ds_concept],
10768 "structured binding declaration cannot be %<concept%>");
10769 switch (storage_class)
10771 case sc_none:
10772 break;
10773 case sc_register:
10774 error_at (loc, "structured binding declaration cannot be "
10775 "%<register%>");
10776 break;
10777 case sc_static:
10778 error_at (loc, "structured binding declaration cannot be "
10779 "%<static%>");
10780 break;
10781 case sc_extern:
10782 error_at (loc, "structured binding declaration cannot be "
10783 "%<extern%>");
10784 break;
10785 case sc_mutable:
10786 error_at (loc, "structured binding declaration cannot be "
10787 "%<mutable%>");
10788 break;
10789 case sc_auto:
10790 error_at (loc, "structured binding declaration cannot be "
10791 "C++98 %<auto%>");
10792 break;
10793 default:
10794 gcc_unreachable ();
10796 if (TREE_CODE (type) != TEMPLATE_TYPE_PARM
10797 || TYPE_IDENTIFIER (type) != auto_identifier)
10799 if (type != error_mark_node)
10801 error_at (loc, "structured binding declaration cannot have "
10802 "type %qT", type);
10803 inform (loc,
10804 "type must be cv-qualified %<auto%> or reference to "
10805 "cv-qualified %<auto%>");
10807 type = build_qualified_type (make_auto (), type_quals);
10808 declspecs->type = type;
10810 inlinep = 0;
10811 typedef_p = 0;
10812 constexpr_p = 0;
10813 thread_p = 0;
10814 concept_p = 0;
10815 storage_class = sc_none;
10816 staticp = 0;
10817 declspecs->storage_class = sc_none;
10818 declspecs->locations[ds_thread] = UNKNOWN_LOCATION;
10821 /* Static anonymous unions are dealt with here. */
10822 if (staticp && decl_context == TYPENAME
10823 && declspecs->type
10824 && ANON_AGGR_TYPE_P (declspecs->type))
10825 decl_context = FIELD;
10827 /* Warn about storage classes that are invalid for certain
10828 kinds of declarations (parameters, typenames, etc.). */
10829 if (thread_p
10830 && ((storage_class
10831 && storage_class != sc_extern
10832 && storage_class != sc_static)
10833 || typedef_p))
10835 error ("multiple storage classes in declaration of %qs", name);
10836 thread_p = false;
10838 if (decl_context != NORMAL
10839 && ((storage_class != sc_none
10840 && storage_class != sc_mutable)
10841 || thread_p))
10843 if ((decl_context == PARM || decl_context == CATCHPARM)
10844 && (storage_class == sc_register
10845 || storage_class == sc_auto))
10847 else if (typedef_p)
10849 else if (decl_context == FIELD
10850 /* C++ allows static class elements. */
10851 && storage_class == sc_static)
10852 /* C++ also allows inlines and signed and unsigned elements,
10853 but in those cases we don't come in here. */
10855 else
10857 if (decl_context == FIELD)
10858 error ("storage class specified for %qs", name);
10859 else
10861 if (decl_context == PARM || decl_context == CATCHPARM)
10862 error ("storage class specified for parameter %qs", name);
10863 else
10864 error ("storage class specified for typename");
10866 if (storage_class == sc_register
10867 || storage_class == sc_auto
10868 || storage_class == sc_extern
10869 || thread_p)
10870 storage_class = sc_none;
10873 else if (storage_class == sc_extern && funcdef_flag
10874 && ! toplevel_bindings_p ())
10875 error ("nested function %qs declared %<extern%>", name);
10876 else if (toplevel_bindings_p ())
10878 if (storage_class == sc_auto)
10879 error ("top-level declaration of %qs specifies %<auto%>", name);
10881 else if (thread_p
10882 && storage_class != sc_extern
10883 && storage_class != sc_static)
10885 if (declspecs->gnu_thread_keyword_p)
10886 pedwarn (input_location, 0, "function-scope %qs implicitly auto and "
10887 "declared %<__thread%>", name);
10889 /* When thread_local is applied to a variable of block scope the
10890 storage-class-specifier static is implied if it does not appear
10891 explicitly. */
10892 storage_class = declspecs->storage_class = sc_static;
10893 staticp = 1;
10896 if (storage_class && friendp)
10898 error ("storage class specifiers invalid in friend function declarations");
10899 storage_class = sc_none;
10900 staticp = 0;
10903 if (!id_declarator)
10904 unqualified_id = NULL_TREE;
10905 else
10907 unqualified_id = id_declarator->u.id.unqualified_name;
10908 switch (TREE_CODE (unqualified_id))
10910 case BIT_NOT_EXPR:
10911 unqualified_id = TREE_OPERAND (unqualified_id, 0);
10912 if (TYPE_P (unqualified_id))
10913 unqualified_id = constructor_name (unqualified_id);
10914 break;
10916 case IDENTIFIER_NODE:
10917 case TEMPLATE_ID_EXPR:
10918 break;
10920 default:
10921 gcc_unreachable ();
10925 if (declspecs->std_attributes)
10927 location_t attr_loc = declspecs->locations[ds_std_attribute];
10928 if (warning_at (attr_loc, OPT_Wattributes, "attribute ignored"))
10929 inform (attr_loc, "an attribute that appertains to a type-specifier "
10930 "is ignored");
10933 /* Determine the type of the entity declared by recurring on the
10934 declarator. */
10935 for (; declarator; declarator = declarator->declarator)
10937 const cp_declarator *inner_declarator;
10938 tree attrs;
10940 if (type == error_mark_node)
10941 return error_mark_node;
10943 attrs = declarator->attributes;
10944 if (attrs)
10946 int attr_flags;
10948 attr_flags = 0;
10949 if (declarator == NULL || declarator->kind == cdk_id)
10950 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
10951 if (declarator->kind == cdk_function)
10952 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
10953 if (declarator->kind == cdk_array)
10954 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
10955 returned_attrs = decl_attributes (&type,
10956 chainon (returned_attrs, attrs),
10957 attr_flags);
10960 inner_declarator = declarator->declarator;
10962 /* We don't want to warn in parameter context because we don't
10963 yet know if the parse will succeed, and this might turn out
10964 to be a constructor call. */
10965 if (decl_context != PARM
10966 && decl_context != TYPENAME
10967 && !typedef_p
10968 && declarator->parenthesized != UNKNOWN_LOCATION
10969 /* If the type is class-like and the inner name used a
10970 global namespace qualifier, we need the parens.
10971 Unfortunately all we can tell is whether a qualified name
10972 was used or not. */
10973 && !(inner_declarator
10974 && inner_declarator->kind == cdk_id
10975 && inner_declarator->u.id.qualifying_scope
10976 && (MAYBE_CLASS_TYPE_P (type)
10977 || TREE_CODE (type) == ENUMERAL_TYPE)))
10978 warning_at (declarator->parenthesized, OPT_Wparentheses,
10979 "unnecessary parentheses in declaration of %qs", name);
10980 if (declarator->kind == cdk_id || declarator->kind == cdk_decomp)
10981 break;
10983 switch (declarator->kind)
10985 case cdk_array:
10986 type = create_array_type_for_decl (dname, type,
10987 declarator->u.array.bounds);
10988 if (!valid_array_size_p (input_location, type, dname))
10989 type = error_mark_node;
10991 if (declarator->std_attributes)
10992 /* [dcl.array]/1:
10994 The optional attribute-specifier-seq appertains to the
10995 array. */
10996 returned_attrs = chainon (returned_attrs,
10997 declarator->std_attributes);
10998 break;
11000 case cdk_function:
11002 tree arg_types;
11003 int funcdecl_p;
11005 /* Declaring a function type. */
11007 input_location = declspecs->locations[ds_type_spec];
11008 abstract_virtuals_error (ACU_RETURN, type);
11009 input_location = saved_loc;
11011 /* Pick up type qualifiers which should be applied to `this'. */
11012 memfn_quals = declarator->u.function.qualifiers;
11013 /* Pick up virt-specifiers. */
11014 virt_specifiers = declarator->u.function.virt_specifiers;
11015 /* And ref-qualifier, too */
11016 rqual = declarator->u.function.ref_qualifier;
11017 /* And tx-qualifier. */
11018 tree tx_qual = declarator->u.function.tx_qualifier;
11019 /* Pick up the exception specifications. */
11020 raises = declarator->u.function.exception_specification;
11021 /* If the exception-specification is ill-formed, let's pretend
11022 there wasn't one. */
11023 if (raises == error_mark_node)
11024 raises = NULL_TREE;
11026 if (reqs)
11027 error_at (location_of (reqs), "requires-clause on return type");
11028 reqs = declarator->u.function.requires_clause;
11030 /* Say it's a definition only for the CALL_EXPR
11031 closest to the identifier. */
11032 funcdecl_p = inner_declarator && inner_declarator->kind == cdk_id;
11034 /* Handle a late-specified return type. */
11035 tree late_return_type = declarator->u.function.late_return_type;
11036 if (funcdecl_p)
11038 if (tree auto_node = type_uses_auto (type))
11040 if (!late_return_type)
11042 if (current_class_type
11043 && LAMBDA_TYPE_P (current_class_type))
11044 /* OK for C++11 lambdas. */;
11045 else if (cxx_dialect < cxx14)
11047 error ("%qs function uses "
11048 "%<auto%> type specifier without trailing "
11049 "return type", name);
11050 inform (input_location, "deduced return type "
11051 "only available with -std=c++14 or "
11052 "-std=gnu++14");
11054 else if (virtualp)
11056 error ("virtual function cannot "
11057 "have deduced return type");
11058 virtualp = false;
11061 else if (!is_auto (type) && sfk != sfk_conversion)
11063 error ("%qs function with trailing return type has"
11064 " %qT as its type rather than plain %<auto%>",
11065 name, type);
11066 return error_mark_node;
11068 tree tmpl = CLASS_PLACEHOLDER_TEMPLATE (auto_node);
11069 if (!tmpl)
11070 if (tree late_auto = type_uses_auto (late_return_type))
11071 tmpl = CLASS_PLACEHOLDER_TEMPLATE (late_auto);
11072 if (tmpl)
11074 if (!dguide_name_p (unqualified_id))
11076 error_at (declarator->id_loc, "deduced class "
11077 "type %qD in function return type",
11078 DECL_NAME (tmpl));
11079 inform (DECL_SOURCE_LOCATION (tmpl),
11080 "%qD declared here", tmpl);
11081 return error_mark_node;
11083 else if (!late_return_type)
11085 error_at (declarator->id_loc, "deduction guide "
11086 "for %qT must have trailing return "
11087 "type", TREE_TYPE (tmpl));
11088 inform (DECL_SOURCE_LOCATION (tmpl),
11089 "%qD declared here", tmpl);
11090 return error_mark_node;
11092 else if (CLASS_TYPE_P (late_return_type)
11093 && CLASSTYPE_TEMPLATE_INFO (late_return_type)
11094 && (CLASSTYPE_TI_TEMPLATE (late_return_type)
11095 == tmpl))
11096 /* OK */;
11097 else
11098 error ("trailing return type %qT of deduction guide "
11099 "is not a specialization of %qT",
11100 late_return_type, TREE_TYPE (tmpl));
11103 else if (late_return_type
11104 && sfk != sfk_conversion)
11106 if (cxx_dialect < cxx11)
11107 /* Not using maybe_warn_cpp0x because this should
11108 always be an error. */
11109 error ("trailing return type only available with "
11110 "-std=c++11 or -std=gnu++11");
11111 else
11112 error ("%qs function with trailing return type not "
11113 "declared with %<auto%> type specifier", name);
11114 return error_mark_node;
11117 type = splice_late_return_type (type, late_return_type);
11118 if (type == error_mark_node)
11119 return error_mark_node;
11121 if (late_return_type)
11123 late_return_type_p = true;
11124 type_quals = cp_type_quals (type);
11127 if (type_quals != TYPE_UNQUALIFIED)
11129 if (SCALAR_TYPE_P (type) || VOID_TYPE_P (type))
11130 warning_at (typespec_loc, OPT_Wignored_qualifiers, "type "
11131 "qualifiers ignored on function return type");
11132 /* We now know that the TYPE_QUALS don't apply to the
11133 decl, but to its return type. */
11134 type_quals = TYPE_UNQUALIFIED;
11137 /* Error about some types functions can't return. */
11139 if (TREE_CODE (type) == FUNCTION_TYPE)
11141 error_at (typespec_loc, "%qs declared as function returning "
11142 "a function", name);
11143 return error_mark_node;
11145 if (TREE_CODE (type) == ARRAY_TYPE)
11147 error_at (typespec_loc, "%qs declared as function returning "
11148 "an array", name);
11149 return error_mark_node;
11152 if (ctype == NULL_TREE
11153 && decl_context == FIELD
11154 && funcdecl_p
11155 && friendp == 0)
11156 ctype = current_class_type;
11158 if (ctype && (sfk == sfk_constructor
11159 || sfk == sfk_destructor))
11161 /* We are within a class's scope. If our declarator name
11162 is the same as the class name, and we are defining
11163 a function, then it is a constructor/destructor, and
11164 therefore returns a void type. */
11166 /* ISO C++ 12.4/2. A destructor may not be declared
11167 const or volatile. A destructor may not be static.
11168 A destructor may not be declared with ref-qualifier.
11170 ISO C++ 12.1. A constructor may not be declared
11171 const or volatile. A constructor may not be
11172 virtual. A constructor may not be static.
11173 A constructor may not be declared with ref-qualifier. */
11174 if (staticp == 2)
11175 error ((flags == DTOR_FLAG)
11176 ? G_("destructor cannot be static member function")
11177 : G_("constructor cannot be static member function"));
11178 if (memfn_quals)
11180 error ((flags == DTOR_FLAG)
11181 ? G_("destructors may not be cv-qualified")
11182 : G_("constructors may not be cv-qualified"));
11183 memfn_quals = TYPE_UNQUALIFIED;
11186 if (rqual)
11188 maybe_warn_cpp0x (CPP0X_REF_QUALIFIER);
11189 error ((flags == DTOR_FLAG)
11190 ? G_("destructors may not be ref-qualified")
11191 : G_("constructors may not be ref-qualified"));
11192 rqual = REF_QUAL_NONE;
11195 if (decl_context == FIELD
11196 && !member_function_or_else (ctype,
11197 current_class_type,
11198 flags))
11199 return error_mark_node;
11201 if (flags != DTOR_FLAG)
11203 /* It's a constructor. */
11204 if (explicitp == 1)
11205 explicitp = 2;
11206 if (virtualp)
11208 permerror (input_location,
11209 "constructors cannot be declared %<virtual%>");
11210 virtualp = 0;
11212 if (decl_context == FIELD
11213 && sfk != sfk_constructor)
11214 return error_mark_node;
11216 if (decl_context == FIELD)
11217 staticp = 0;
11219 else if (friendp)
11221 if (virtualp)
11223 /* Cannot be both friend and virtual. */
11224 error ("virtual functions cannot be friends");
11225 friendp = 0;
11227 if (decl_context == NORMAL)
11228 error ("friend declaration not in class definition");
11229 if (current_function_decl && funcdef_flag)
11231 error ("can%'t define friend function %qs in a local "
11232 "class definition", name);
11233 friendp = 0;
11236 else if (ctype && sfk == sfk_conversion)
11238 if (explicitp == 1)
11240 maybe_warn_cpp0x (CPP0X_EXPLICIT_CONVERSION);
11241 explicitp = 2;
11243 if (late_return_type_p)
11244 error ("a conversion function cannot have a trailing return type");
11246 else if (sfk == sfk_deduction_guide)
11248 if (explicitp == 1)
11249 explicitp = 2;
11252 tree pushed_scope = NULL_TREE;
11253 if (funcdecl_p
11254 && decl_context != FIELD
11255 && inner_declarator->u.id.qualifying_scope
11256 && CLASS_TYPE_P (inner_declarator->u.id.qualifying_scope))
11257 pushed_scope
11258 = push_scope (inner_declarator->u.id.qualifying_scope);
11260 arg_types = grokparms (declarator->u.function.parameters, &parms);
11262 if (pushed_scope)
11263 pop_scope (pushed_scope);
11265 if (inner_declarator
11266 && inner_declarator->kind == cdk_id
11267 && inner_declarator->u.id.sfk == sfk_destructor
11268 && arg_types != void_list_node)
11270 error ("destructors may not have parameters");
11271 arg_types = void_list_node;
11272 parms = NULL_TREE;
11275 type = build_function_type (type, arg_types);
11277 tree attrs = declarator->std_attributes;
11278 if (tx_qual)
11280 tree att = build_tree_list (tx_qual, NULL_TREE);
11281 /* transaction_safe applies to the type, but
11282 transaction_safe_dynamic applies to the function. */
11283 if (is_attribute_p ("transaction_safe", tx_qual))
11284 attrs = chainon (attrs, att);
11285 else
11286 returned_attrs = chainon (returned_attrs, att);
11288 if (attrs)
11289 /* [dcl.fct]/2:
11291 The optional attribute-specifier-seq appertains to
11292 the function type. */
11293 decl_attributes (&type, attrs, 0);
11295 if (raises)
11296 type = build_exception_variant (type, raises);
11298 break;
11300 case cdk_pointer:
11301 case cdk_reference:
11302 case cdk_ptrmem:
11303 /* Filter out pointers-to-references and references-to-references.
11304 We can get these if a TYPE_DECL is used. */
11306 if (TREE_CODE (type) == REFERENCE_TYPE)
11308 if (declarator->kind != cdk_reference)
11310 error ("cannot declare pointer to %q#T", type);
11311 type = TREE_TYPE (type);
11314 /* In C++0x, we allow reference to reference declarations
11315 that occur indirectly through typedefs [7.1.3/8 dcl.typedef]
11316 and template type arguments [14.3.1/4 temp.arg.type]. The
11317 check for direct reference to reference declarations, which
11318 are still forbidden, occurs below. Reasoning behind the change
11319 can be found in DR106, DR540, and the rvalue reference
11320 proposals. */
11321 else if (cxx_dialect == cxx98)
11323 error ("cannot declare reference to %q#T", type);
11324 type = TREE_TYPE (type);
11327 else if (VOID_TYPE_P (type))
11329 if (declarator->kind == cdk_reference)
11330 error ("cannot declare reference to %q#T", type);
11331 else if (declarator->kind == cdk_ptrmem)
11332 error ("cannot declare pointer to %q#T member", type);
11335 /* We now know that the TYPE_QUALS don't apply to the decl,
11336 but to the target of the pointer. */
11337 type_quals = TYPE_UNQUALIFIED;
11339 /* This code used to handle METHOD_TYPE, but I don't think it's
11340 possible to get it here anymore. */
11341 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
11342 if (declarator->kind == cdk_ptrmem
11343 && TREE_CODE (type) == FUNCTION_TYPE)
11345 memfn_quals |= type_memfn_quals (type);
11346 type = build_memfn_type (type,
11347 declarator->u.pointer.class_type,
11348 memfn_quals,
11349 rqual);
11350 if (type == error_mark_node)
11351 return error_mark_node;
11353 rqual = REF_QUAL_NONE;
11354 memfn_quals = TYPE_UNQUALIFIED;
11357 if (TREE_CODE (type) == FUNCTION_TYPE
11358 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
11359 || type_memfn_rqual (type) != REF_QUAL_NONE))
11360 error (declarator->kind == cdk_reference
11361 ? G_("cannot declare reference to qualified function type %qT")
11362 : G_("cannot declare pointer to qualified function type %qT"),
11363 type);
11365 /* When the pointed-to type involves components of variable size,
11366 care must be taken to ensure that the size evaluation code is
11367 emitted early enough to dominate all the possible later uses
11368 and late enough for the variables on which it depends to have
11369 been assigned.
11371 This is expected to happen automatically when the pointed-to
11372 type has a name/declaration of it's own, but special attention
11373 is required if the type is anonymous.
11375 We handle the NORMAL and FIELD contexts here by inserting a
11376 dummy statement that just evaluates the size at a safe point
11377 and ensures it is not deferred until e.g. within a deeper
11378 conditional context (c++/43555).
11380 We expect nothing to be needed here for PARM or TYPENAME.
11381 Evaluating the size at this point for TYPENAME would
11382 actually be incorrect, as we might be in the middle of an
11383 expression with side effects on the pointed-to type size
11384 "arguments" prior to the pointer declaration point and the
11385 size evaluation could end up prior to the side effects. */
11387 if (!TYPE_NAME (type)
11388 && (decl_context == NORMAL || decl_context == FIELD)
11389 && at_function_scope_p ()
11390 && variably_modified_type_p (type, NULL_TREE))
11392 TYPE_NAME (type) = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
11393 NULL_TREE, type);
11394 add_decl_expr (TYPE_NAME (type));
11397 if (declarator->kind == cdk_reference)
11399 /* In C++0x, the type we are creating a reference to might be
11400 a typedef which is itself a reference type. In that case,
11401 we follow the reference collapsing rules in
11402 [7.1.3/8 dcl.typedef] to create the final reference type:
11404 "If a typedef TD names a type that is a reference to a type
11405 T, an attempt to create the type 'lvalue reference to cv TD'
11406 creates the type 'lvalue reference to T,' while an attempt
11407 to create the type "rvalue reference to cv TD' creates the
11408 type TD."
11410 if (VOID_TYPE_P (type))
11411 /* We already gave an error. */;
11412 else if (TREE_CODE (type) == REFERENCE_TYPE)
11414 if (declarator->u.reference.rvalue_ref)
11415 /* Leave type alone. */;
11416 else
11417 type = cp_build_reference_type (TREE_TYPE (type), false);
11419 else
11420 type = cp_build_reference_type
11421 (type, declarator->u.reference.rvalue_ref);
11423 /* In C++0x, we need this check for direct reference to
11424 reference declarations, which are forbidden by
11425 [8.3.2/5 dcl.ref]. Reference to reference declarations
11426 are only allowed indirectly through typedefs and template
11427 type arguments. Example:
11429 void foo(int & &); // invalid ref-to-ref decl
11431 typedef int & int_ref;
11432 void foo(int_ref &); // valid ref-to-ref decl
11434 if (inner_declarator && inner_declarator->kind == cdk_reference)
11435 error ("cannot declare reference to %q#T, which is not "
11436 "a typedef or a template type argument", type);
11438 else if (TREE_CODE (type) == METHOD_TYPE)
11439 type = build_ptrmemfunc_type (build_pointer_type (type));
11440 else if (declarator->kind == cdk_ptrmem)
11442 gcc_assert (TREE_CODE (declarator->u.pointer.class_type)
11443 != NAMESPACE_DECL);
11444 if (declarator->u.pointer.class_type == error_mark_node)
11445 /* We will already have complained. */
11446 type = error_mark_node;
11447 else
11448 type = build_ptrmem_type (declarator->u.pointer.class_type,
11449 type);
11451 else
11452 type = build_pointer_type (type);
11454 /* Process a list of type modifier keywords (such as
11455 const or volatile) that were given inside the `*' or `&'. */
11457 if (declarator->u.pointer.qualifiers)
11459 type
11460 = cp_build_qualified_type (type,
11461 declarator->u.pointer.qualifiers);
11462 type_quals = cp_type_quals (type);
11465 /* Apply C++11 attributes to the pointer, and not to the
11466 type pointed to. This is unlike what is done for GNU
11467 attributes above. It is to comply with [dcl.ptr]/1:
11469 [the optional attribute-specifier-seq (7.6.1) appertains
11470 to the pointer and not to the object pointed to]. */
11471 if (declarator->std_attributes)
11472 decl_attributes (&type, declarator->std_attributes,
11475 ctype = NULL_TREE;
11476 break;
11478 case cdk_error:
11479 break;
11481 default:
11482 gcc_unreachable ();
11486 /* A `constexpr' specifier used in an object declaration declares
11487 the object as `const'. */
11488 if (constexpr_p && innermost_code != cdk_function)
11490 /* DR1688 says that a `constexpr' specifier in combination with
11491 `volatile' is valid. */
11493 if (TREE_CODE (type) != REFERENCE_TYPE)
11495 type_quals |= TYPE_QUAL_CONST;
11496 type = cp_build_qualified_type (type, type_quals);
11500 if (unqualified_id && TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR
11501 && TREE_CODE (type) != FUNCTION_TYPE
11502 && TREE_CODE (type) != METHOD_TYPE
11503 && !variable_template_p (TREE_OPERAND (unqualified_id, 0)))
11505 error ("template-id %qD used as a declarator",
11506 unqualified_id);
11507 unqualified_id = dname;
11510 /* If TYPE is a FUNCTION_TYPE, but the function name was explicitly
11511 qualified with a class-name, turn it into a METHOD_TYPE, unless
11512 we know that the function is static. We take advantage of this
11513 opportunity to do other processing that pertains to entities
11514 explicitly declared to be class members. Note that if DECLARATOR
11515 is non-NULL, we know it is a cdk_id declarator; otherwise, we
11516 would not have exited the loop above. */
11517 if (declarator
11518 && declarator->kind == cdk_id
11519 && declarator->u.id.qualifying_scope
11520 && MAYBE_CLASS_TYPE_P (declarator->u.id.qualifying_scope))
11522 ctype = declarator->u.id.qualifying_scope;
11523 ctype = TYPE_MAIN_VARIANT (ctype);
11524 template_count = num_template_headers_for_class (ctype);
11526 if (ctype == current_class_type)
11528 if (friendp)
11530 permerror (input_location, "member functions are implicitly "
11531 "friends of their class");
11532 friendp = 0;
11534 else
11535 permerror (declarator->id_loc,
11536 "extra qualification %<%T::%> on member %qs",
11537 ctype, name);
11539 else if (/* If the qualifying type is already complete, then we
11540 can skip the following checks. */
11541 !COMPLETE_TYPE_P (ctype)
11542 && (/* If the function is being defined, then
11543 qualifying type must certainly be complete. */
11544 funcdef_flag
11545 /* A friend declaration of "T::f" is OK, even if
11546 "T" is a template parameter. But, if this
11547 function is not a friend, the qualifying type
11548 must be a class. */
11549 || (!friendp && !CLASS_TYPE_P (ctype))
11550 /* For a declaration, the type need not be
11551 complete, if either it is dependent (since there
11552 is no meaningful definition of complete in that
11553 case) or the qualifying class is currently being
11554 defined. */
11555 || !(dependent_type_p (ctype)
11556 || currently_open_class (ctype)))
11557 /* Check that the qualifying type is complete. */
11558 && !complete_type_or_else (ctype, NULL_TREE))
11559 return error_mark_node;
11560 else if (TREE_CODE (type) == FUNCTION_TYPE)
11562 if (current_class_type
11563 && (!friendp || funcdef_flag || initialized))
11565 error (funcdef_flag || initialized
11566 ? G_("cannot define member function %<%T::%s%> "
11567 "within %qT")
11568 : G_("cannot declare member function %<%T::%s%> "
11569 "within %qT"),
11570 ctype, name, current_class_type);
11571 return error_mark_node;
11574 else if (typedef_p && current_class_type)
11576 error ("cannot declare member %<%T::%s%> within %qT",
11577 ctype, name, current_class_type);
11578 return error_mark_node;
11582 if (ctype == NULL_TREE && decl_context == FIELD && friendp == 0)
11583 ctype = current_class_type;
11585 /* Now TYPE has the actual type. */
11587 if (returned_attrs)
11589 if (attrlist)
11590 *attrlist = chainon (returned_attrs, *attrlist);
11591 else
11592 attrlist = &returned_attrs;
11595 if (declarator
11596 && declarator->kind == cdk_id
11597 && declarator->std_attributes
11598 && attrlist != NULL)
11600 /* [dcl.meaning]/1: The optional attribute-specifier-seq following
11601 a declarator-id appertains to the entity that is declared. */
11602 if (declarator->std_attributes != error_mark_node)
11603 *attrlist = chainon (*attrlist, declarator->std_attributes);
11604 else
11605 /* We should have already diagnosed the issue (c++/78344). */
11606 gcc_assert (seen_error ());
11609 /* Handle parameter packs. */
11610 if (parameter_pack_p)
11612 if (decl_context == PARM)
11613 /* Turn the type into a pack expansion.*/
11614 type = make_pack_expansion (type);
11615 else
11616 error ("non-parameter %qs cannot be a parameter pack", name);
11619 if ((decl_context == FIELD || decl_context == PARM)
11620 && !processing_template_decl
11621 && variably_modified_type_p (type, NULL_TREE))
11623 if (decl_context == FIELD)
11624 error ("data member may not have variably modified type %qT", type);
11625 else
11626 error ("parameter may not have variably modified type %qT", type);
11627 type = error_mark_node;
11630 if (explicitp == 1 || (explicitp && friendp))
11632 /* [dcl.fct.spec] (C++11) The explicit specifier shall be used only
11633 in the declaration of a constructor or conversion function within
11634 a class definition. */
11635 if (!current_class_type)
11636 error_at (declspecs->locations[ds_explicit],
11637 "%<explicit%> outside class declaration");
11638 else if (friendp)
11639 error_at (declspecs->locations[ds_explicit],
11640 "%<explicit%> in friend declaration");
11641 else
11642 error_at (declspecs->locations[ds_explicit],
11643 "only declarations of constructors and conversion operators "
11644 "can be %<explicit%>");
11645 explicitp = 0;
11648 if (storage_class == sc_mutable)
11650 if (decl_context != FIELD || friendp)
11652 error ("non-member %qs cannot be declared %<mutable%>", name);
11653 storage_class = sc_none;
11655 else if (decl_context == TYPENAME || typedef_p)
11657 error ("non-object member %qs cannot be declared %<mutable%>", name);
11658 storage_class = sc_none;
11660 else if (TREE_CODE (type) == FUNCTION_TYPE
11661 || TREE_CODE (type) == METHOD_TYPE)
11663 error ("function %qs cannot be declared %<mutable%>", name);
11664 storage_class = sc_none;
11666 else if (staticp)
11668 error ("static %qs cannot be declared %<mutable%>", name);
11669 storage_class = sc_none;
11671 else if (type_quals & TYPE_QUAL_CONST)
11673 error ("const %qs cannot be declared %<mutable%>", name);
11674 storage_class = sc_none;
11676 else if (TREE_CODE (type) == REFERENCE_TYPE)
11678 permerror (input_location, "reference %qs cannot be declared "
11679 "%<mutable%>", name);
11680 storage_class = sc_none;
11684 /* If this is declaring a typedef name, return a TYPE_DECL. */
11685 if (typedef_p && decl_context != TYPENAME)
11687 tree decl;
11689 /* This declaration:
11691 typedef void f(int) const;
11693 declares a function type which is not a member of any
11694 particular class, but which is cv-qualified; for
11695 example "f S::*" declares a pointer to a const-qualified
11696 member function of S. We record the cv-qualification in the
11697 function type. */
11698 if ((rqual || memfn_quals) && TREE_CODE (type) == FUNCTION_TYPE)
11700 type = apply_memfn_quals (type, memfn_quals, rqual);
11702 /* We have now dealt with these qualifiers. */
11703 memfn_quals = TYPE_UNQUALIFIED;
11704 rqual = REF_QUAL_NONE;
11707 if (type_uses_auto (type))
11709 error ("typedef declared %<auto%>");
11710 type = error_mark_node;
11713 if (reqs)
11714 error_at (location_of (reqs), "requires-clause on typedef");
11716 if (id_declarator && declarator->u.id.qualifying_scope)
11718 error ("typedef name may not be a nested-name-specifier");
11719 type = error_mark_node;
11722 if (decl_context == FIELD)
11723 decl = build_lang_decl (TYPE_DECL, unqualified_id, type);
11724 else
11725 decl = build_decl (input_location, TYPE_DECL, unqualified_id, type);
11727 if (decl_context != FIELD)
11729 if (!current_function_decl)
11730 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
11731 else if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (current_function_decl)
11732 || (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P
11733 (current_function_decl)))
11734 /* The TYPE_DECL is "abstract" because there will be
11735 clones of this constructor/destructor, and there will
11736 be copies of this TYPE_DECL generated in those
11737 clones. The decloning optimization (for space) may
11738 revert this subsequently if it determines that
11739 the clones should share a common implementation. */
11740 DECL_ABSTRACT_P (decl) = true;
11742 else if (current_class_type
11743 && constructor_name_p (unqualified_id, current_class_type))
11744 permerror (input_location, "ISO C++ forbids nested type %qD with same name "
11745 "as enclosing class",
11746 unqualified_id);
11748 /* If the user declares "typedef struct {...} foo" then the
11749 struct will have an anonymous name. Fill that name in now.
11750 Nothing can refer to it, so nothing needs know about the name
11751 change. */
11752 if (type != error_mark_node
11753 && unqualified_id
11754 && TYPE_NAME (type)
11755 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
11756 && TYPE_UNNAMED_P (type)
11757 && declspecs->type_definition_p
11758 && attributes_naming_typedef_ok (*attrlist)
11759 && cp_type_quals (type) == TYPE_UNQUALIFIED)
11760 name_unnamed_type (type, decl);
11762 if (signed_p
11763 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
11764 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
11766 bad_specifiers (decl, BSP_TYPE, virtualp,
11767 memfn_quals != TYPE_UNQUALIFIED,
11768 inlinep, friendp, raises != NULL_TREE);
11770 if (decl_spec_seq_has_spec_p (declspecs, ds_alias))
11771 /* Acknowledge that this was written:
11772 `using analias = atype;'. */
11773 TYPE_DECL_ALIAS_P (decl) = 1;
11775 return decl;
11778 /* Detect the case of an array type of unspecified size
11779 which came, as such, direct from a typedef name.
11780 We must copy the type, so that the array's domain can be
11781 individually set by the object's initializer. */
11783 if (type && typedef_type
11784 && TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type)
11785 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type))
11786 type = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
11788 /* Detect where we're using a typedef of function type to declare a
11789 function. PARMS will not be set, so we must create it now. */
11791 if (type == typedef_type && TREE_CODE (type) == FUNCTION_TYPE)
11793 tree decls = NULL_TREE;
11794 tree args;
11796 for (args = TYPE_ARG_TYPES (type);
11797 args && args != void_list_node;
11798 args = TREE_CHAIN (args))
11800 tree decl = cp_build_parm_decl (NULL_TREE, NULL_TREE,
11801 TREE_VALUE (args));
11803 DECL_CHAIN (decl) = decls;
11804 decls = decl;
11807 parms = nreverse (decls);
11809 if (decl_context != TYPENAME)
11811 /* The qualifiers on the function type become the qualifiers on
11812 the non-static member function. */
11813 memfn_quals |= type_memfn_quals (type);
11814 rqual = type_memfn_rqual (type);
11815 type_quals = TYPE_UNQUALIFIED;
11819 /* If this is a type name (such as, in a cast or sizeof),
11820 compute the type and return it now. */
11822 if (decl_context == TYPENAME)
11824 /* Note that here we don't care about type_quals. */
11826 /* Special case: "friend class foo" looks like a TYPENAME context. */
11827 if (friendp)
11829 if (inlinep)
11831 error ("%<inline%> specified for friend class declaration");
11832 inlinep = 0;
11835 if (!current_aggr)
11837 /* Don't allow friend declaration without a class-key. */
11838 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
11839 permerror (input_location, "template parameters cannot be friends");
11840 else if (TREE_CODE (type) == TYPENAME_TYPE)
11841 permerror (input_location, "friend declaration requires class-key, "
11842 "i.e. %<friend class %T::%D%>",
11843 TYPE_CONTEXT (type), TYPENAME_TYPE_FULLNAME (type));
11844 else
11845 permerror (input_location, "friend declaration requires class-key, "
11846 "i.e. %<friend %#T%>",
11847 type);
11850 /* Only try to do this stuff if we didn't already give up. */
11851 if (type != integer_type_node)
11853 /* A friendly class? */
11854 if (current_class_type)
11855 make_friend_class (current_class_type, TYPE_MAIN_VARIANT (type),
11856 /*complain=*/true);
11857 else
11858 error ("trying to make class %qT a friend of global scope",
11859 type);
11861 type = void_type_node;
11864 else if (memfn_quals || rqual)
11866 if (ctype == NULL_TREE
11867 && TREE_CODE (type) == METHOD_TYPE)
11868 ctype = TYPE_METHOD_BASETYPE (type);
11870 if (ctype)
11871 type = build_memfn_type (type, ctype, memfn_quals, rqual);
11872 /* Core issue #547: need to allow this in template type args.
11873 Allow it in general in C++11 for alias-declarations. */
11874 else if ((template_type_arg || cxx_dialect >= cxx11)
11875 && TREE_CODE (type) == FUNCTION_TYPE)
11876 type = apply_memfn_quals (type, memfn_quals, rqual);
11877 else
11878 error ("invalid qualifiers on non-member function type");
11881 if (reqs)
11882 error_at (location_of (reqs), "requires-clause on type-id");
11884 return type;
11886 else if (unqualified_id == NULL_TREE && decl_context != PARM
11887 && decl_context != CATCHPARM
11888 && TREE_CODE (type) != UNION_TYPE
11889 && ! bitfield
11890 && innermost_code != cdk_decomp)
11892 error ("abstract declarator %qT used as declaration", type);
11893 return error_mark_node;
11896 if (!FUNC_OR_METHOD_TYPE_P (type))
11898 /* Only functions may be declared using an operator-function-id. */
11899 if (dname && IDENTIFIER_ANY_OP_P (dname))
11901 error ("declaration of %qD as non-function", dname);
11902 return error_mark_node;
11905 if (reqs)
11906 error_at (location_of (reqs),
11907 "requires-clause on declaration of non-function type %qT",
11908 type);
11911 /* We don't check parameter types here because we can emit a better
11912 error message later. */
11913 if (decl_context != PARM)
11915 type = check_var_type (unqualified_id, type);
11916 if (type == error_mark_node)
11917 return error_mark_node;
11920 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
11921 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
11923 if (decl_context == PARM || decl_context == CATCHPARM)
11925 if (ctype || in_namespace)
11926 error ("cannot use %<::%> in parameter declaration");
11928 if (type_uses_auto (type)
11929 && !(cxx_dialect >= cxx17 && template_parm_flag))
11931 if (cxx_dialect >= cxx14)
11932 error ("%<auto%> parameter not permitted in this context");
11933 else
11934 error ("parameter declared %<auto%>");
11935 type = error_mark_node;
11938 /* A parameter declared as an array of T is really a pointer to T.
11939 One declared as a function is really a pointer to a function.
11940 One declared as a member is really a pointer to member. */
11942 if (TREE_CODE (type) == ARRAY_TYPE)
11944 /* Transfer const-ness of array into that of type pointed to. */
11945 type = build_pointer_type (TREE_TYPE (type));
11946 type_quals = TYPE_UNQUALIFIED;
11947 array_parameter_p = true;
11949 else if (TREE_CODE (type) == FUNCTION_TYPE)
11950 type = build_pointer_type (type);
11953 if (ctype && TREE_CODE (type) == FUNCTION_TYPE && staticp < 2
11954 && !(identifier_p (unqualified_id)
11955 && IDENTIFIER_NEWDEL_OP_P (unqualified_id)))
11957 cp_cv_quals real_quals = memfn_quals;
11958 if (cxx_dialect < cxx14 && constexpr_p
11959 && sfk != sfk_constructor && sfk != sfk_destructor)
11960 real_quals |= TYPE_QUAL_CONST;
11961 type = build_memfn_type (type, ctype, real_quals, rqual);
11965 tree decl = NULL_TREE;
11967 if (decl_context == PARM)
11969 decl = cp_build_parm_decl (NULL_TREE, unqualified_id, type);
11970 DECL_ARRAY_PARAMETER_P (decl) = array_parameter_p;
11972 bad_specifiers (decl, BSP_PARM, virtualp,
11973 memfn_quals != TYPE_UNQUALIFIED,
11974 inlinep, friendp, raises != NULL_TREE);
11976 else if (decl_context == FIELD)
11978 if (!staticp && !friendp && TREE_CODE (type) != METHOD_TYPE)
11979 if (tree auto_node = type_uses_auto (type))
11981 location_t loc = declspecs->locations[ds_type_spec];
11982 if (CLASS_PLACEHOLDER_TEMPLATE (auto_node))
11983 error_at (loc, "invalid use of template-name %qE without an "
11984 "argument list",
11985 CLASS_PLACEHOLDER_TEMPLATE (auto_node));
11986 else
11987 error_at (loc, "non-static data member declared with "
11988 "placeholder %qT", auto_node);
11989 type = error_mark_node;
11992 /* The C99 flexible array extension. */
11993 if (!staticp && TREE_CODE (type) == ARRAY_TYPE
11994 && TYPE_DOMAIN (type) == NULL_TREE)
11996 if (ctype
11997 && (TREE_CODE (ctype) == UNION_TYPE
11998 || TREE_CODE (ctype) == QUAL_UNION_TYPE))
12000 error ("flexible array member in union");
12001 type = error_mark_node;
12003 else
12005 /* Array is a flexible member. */
12006 if (in_system_header_at (input_location))
12007 /* Do not warn on flexible array members in system
12008 headers because glibc uses them. */;
12009 else if (name)
12010 pedwarn (input_location, OPT_Wpedantic,
12011 "ISO C++ forbids flexible array member %qs", name);
12012 else
12013 pedwarn (input_location, OPT_Wpedantic,
12014 "ISO C++ forbids flexible array members");
12016 /* Flexible array member has a null domain. */
12017 type = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
12021 if (type == error_mark_node)
12023 /* Happens when declaring arrays of sizes which
12024 are error_mark_node, for example. */
12025 decl = NULL_TREE;
12027 else if (in_namespace && !friendp)
12029 /* Something like struct S { int N::j; }; */
12030 error ("invalid use of %<::%>");
12031 return error_mark_node;
12033 else if (TREE_CODE (type) == FUNCTION_TYPE
12034 || TREE_CODE (type) == METHOD_TYPE)
12036 int publicp = 0;
12037 tree function_context;
12039 if (friendp == 0)
12041 /* This should never happen in pure C++ (the check
12042 could be an assert). It could happen in
12043 Objective-C++ if someone writes invalid code that
12044 uses a function declaration for an instance
12045 variable or property (instance variables and
12046 properties are parsed as FIELD_DECLs, but they are
12047 part of an Objective-C class, not a C++ class).
12048 That code is invalid and is caught by this
12049 check. */
12050 if (!ctype)
12052 error ("declaration of function %qD in invalid context",
12053 unqualified_id);
12054 return error_mark_node;
12057 /* ``A union may [ ... ] not [ have ] virtual functions.''
12058 ARM 9.5 */
12059 if (virtualp && TREE_CODE (ctype) == UNION_TYPE)
12061 error ("function %qD declared %<virtual%> inside a union",
12062 unqualified_id);
12063 return error_mark_node;
12066 if (virtualp
12067 && identifier_p (unqualified_id)
12068 && IDENTIFIER_NEWDEL_OP_P (unqualified_id))
12070 error ("%qD cannot be declared %<virtual%>, since it "
12071 "is always static", unqualified_id);
12072 virtualp = 0;
12076 /* Check that the name used for a destructor makes sense. */
12077 if (sfk == sfk_destructor)
12079 tree uqname = id_declarator->u.id.unqualified_name;
12081 if (!ctype)
12083 gcc_assert (friendp);
12084 error ("expected qualified name in friend declaration "
12085 "for destructor %qD", uqname);
12086 return error_mark_node;
12089 if (!check_dtor_name (ctype, TREE_OPERAND (uqname, 0)))
12091 error ("declaration of %qD as member of %qT",
12092 uqname, ctype);
12093 return error_mark_node;
12095 if (concept_p)
12097 error ("a destructor cannot be %<concept%>");
12098 return error_mark_node;
12100 if (constexpr_p)
12102 error ("a destructor cannot be %<constexpr%>");
12103 return error_mark_node;
12106 else if (sfk == sfk_constructor && friendp && !ctype)
12108 error ("expected qualified name in friend declaration "
12109 "for constructor %qD",
12110 id_declarator->u.id.unqualified_name);
12111 return error_mark_node;
12113 if (sfk == sfk_constructor)
12114 if (concept_p)
12116 error ("a constructor cannot be %<concept%>");
12117 return error_mark_node;
12119 if (concept_p)
12121 error ("a concept cannot be a member function");
12122 concept_p = false;
12125 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
12127 tree tmpl = TREE_OPERAND (unqualified_id, 0);
12128 if (variable_template_p (tmpl))
12130 error ("specialization of variable template %qD "
12131 "declared as function", tmpl);
12132 inform (DECL_SOURCE_LOCATION (tmpl),
12133 "variable template declared here");
12134 return error_mark_node;
12138 /* Tell grokfndecl if it needs to set TREE_PUBLIC on the node. */
12139 function_context = (ctype != NULL_TREE) ?
12140 decl_function_context (TYPE_MAIN_DECL (ctype)) : NULL_TREE;
12141 publicp = (! friendp || ! staticp)
12142 && function_context == NULL_TREE;
12144 if (late_return_type_p)
12145 TYPE_HAS_LATE_RETURN_TYPE (type) = 1;
12147 decl = grokfndecl (ctype, type,
12148 TREE_CODE (unqualified_id) != TEMPLATE_ID_EXPR
12149 ? unqualified_id : dname,
12150 parms,
12151 unqualified_id,
12152 reqs,
12153 virtualp, flags, memfn_quals, rqual, raises,
12154 friendp ? -1 : 0, friendp, publicp,
12155 inlinep | (2 * constexpr_p) | (4 * concept_p),
12156 initialized == SD_DELETED, sfk,
12157 funcdef_flag, template_count, in_namespace,
12158 attrlist, declarator->id_loc);
12159 decl = set_virt_specifiers (decl, virt_specifiers);
12160 if (decl == NULL_TREE)
12161 return error_mark_node;
12162 #if 0
12163 /* This clobbers the attrs stored in `decl' from `attrlist'. */
12164 /* The decl and setting of decl_attr is also turned off. */
12165 decl = build_decl_attribute_variant (decl, decl_attr);
12166 #endif
12168 /* [class.conv.ctor]
12170 A constructor declared without the function-specifier
12171 explicit that can be called with a single parameter
12172 specifies a conversion from the type of its first
12173 parameter to the type of its class. Such a constructor
12174 is called a converting constructor. */
12175 if (explicitp == 2)
12176 DECL_NONCONVERTING_P (decl) = 1;
12178 else if (!staticp && !dependent_type_p (type)
12179 && !COMPLETE_TYPE_P (complete_type (type))
12180 && (!complete_or_array_type_p (type)
12181 || initialized == 0))
12183 if (TREE_CODE (type) != ARRAY_TYPE
12184 || !COMPLETE_TYPE_P (TREE_TYPE (type)))
12186 if (unqualified_id)
12188 error ("field %qD has incomplete type %qT",
12189 unqualified_id, type);
12190 cxx_incomplete_type_inform (strip_array_types (type));
12192 else
12193 error ("name %qT has incomplete type", type);
12195 type = error_mark_node;
12196 decl = NULL_TREE;
12199 else
12201 if (friendp)
12203 error ("%qE is neither function nor member function; "
12204 "cannot be declared friend", unqualified_id);
12205 return error_mark_node;
12207 decl = NULL_TREE;
12210 if (friendp)
12212 /* Friends are treated specially. */
12213 if (ctype == current_class_type)
12214 ; /* We already issued a permerror. */
12215 else if (decl && DECL_NAME (decl))
12217 if (template_class_depth (current_class_type) == 0)
12219 decl = check_explicit_specialization
12220 (unqualified_id, decl, template_count,
12221 2 * funcdef_flag + 4);
12222 if (decl == error_mark_node)
12223 return error_mark_node;
12226 decl = do_friend (ctype, unqualified_id, decl,
12227 *attrlist, flags,
12228 funcdef_flag);
12229 return decl;
12231 else
12232 return error_mark_node;
12235 /* Structure field. It may not be a function, except for C++. */
12237 if (decl == NULL_TREE)
12239 if (staticp)
12241 /* C++ allows static class members. All other work
12242 for this is done by grokfield. */
12243 decl = build_lang_decl_loc (declarator
12244 ? declarator->id_loc
12245 : input_location,
12246 VAR_DECL, unqualified_id, type);
12247 set_linkage_for_static_data_member (decl);
12248 if (concept_p)
12249 error ("static data member %qE declared %<concept%>",
12250 unqualified_id);
12251 else if (constexpr_p && !initialized)
12253 error ("%<constexpr%> static data member %qD must have an "
12254 "initializer", decl);
12255 constexpr_p = false;
12258 if (inlinep)
12259 mark_inline_variable (decl);
12261 if (!DECL_VAR_DECLARED_INLINE_P (decl)
12262 && !(cxx_dialect >= cxx17 && constexpr_p))
12263 /* Even if there is an in-class initialization, DECL
12264 is considered undefined until an out-of-class
12265 definition is provided, unless this is an inline
12266 variable. */
12267 DECL_EXTERNAL (decl) = 1;
12269 if (thread_p)
12271 CP_DECL_THREAD_LOCAL_P (decl) = true;
12272 if (!processing_template_decl)
12273 set_decl_tls_model (decl, decl_default_tls_model (decl));
12274 if (declspecs->gnu_thread_keyword_p)
12275 SET_DECL_GNU_TLS_P (decl);
12278 else
12280 if (concept_p)
12281 error ("non-static data member %qE declared %<concept%>",
12282 unqualified_id);
12283 else if (constexpr_p)
12285 error ("non-static data member %qE declared %<constexpr%>",
12286 unqualified_id);
12287 constexpr_p = false;
12289 decl = build_decl (input_location,
12290 FIELD_DECL, unqualified_id, type);
12291 DECL_NONADDRESSABLE_P (decl) = bitfield;
12292 if (bitfield && !unqualified_id)
12294 TREE_NO_WARNING (decl) = 1;
12295 DECL_PADDING_P (decl) = 1;
12298 if (storage_class == sc_mutable)
12300 DECL_MUTABLE_P (decl) = 1;
12301 storage_class = sc_none;
12304 if (initialized)
12306 /* An attempt is being made to initialize a non-static
12307 member. This is new in C++11. */
12308 maybe_warn_cpp0x (CPP0X_NSDMI);
12310 /* If this has been parsed with static storage class, but
12311 errors forced staticp to be cleared, ensure NSDMI is
12312 not present. */
12313 if (declspecs->storage_class == sc_static)
12314 DECL_INITIAL (decl) = error_mark_node;
12318 bad_specifiers (decl, BSP_FIELD, virtualp,
12319 memfn_quals != TYPE_UNQUALIFIED,
12320 staticp ? false : inlinep, friendp,
12321 raises != NULL_TREE);
12324 else if (TREE_CODE (type) == FUNCTION_TYPE
12325 || TREE_CODE (type) == METHOD_TYPE)
12327 tree original_name;
12328 int publicp = 0;
12330 if (!unqualified_id)
12331 return error_mark_node;
12333 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
12334 original_name = dname;
12335 else
12336 original_name = unqualified_id;
12337 // FIXME:gcc_assert (original_name == dname);
12339 if (storage_class == sc_auto)
12340 error ("storage class %<auto%> invalid for function %qs", name);
12341 else if (storage_class == sc_register)
12342 error ("storage class %<register%> invalid for function %qs", name);
12343 else if (thread_p)
12345 if (declspecs->gnu_thread_keyword_p)
12346 error ("storage class %<__thread%> invalid for function %qs",
12347 name);
12348 else
12349 error ("storage class %<thread_local%> invalid for function %qs",
12350 name);
12353 if (virt_specifiers)
12354 error ("virt-specifiers in %qs not allowed outside a class definition", name);
12355 /* Function declaration not at top level.
12356 Storage classes other than `extern' are not allowed
12357 and `extern' makes no difference. */
12358 if (! toplevel_bindings_p ()
12359 && (storage_class == sc_static
12360 || decl_spec_seq_has_spec_p (declspecs, ds_inline))
12361 && pedantic)
12363 if (storage_class == sc_static)
12364 pedwarn (input_location, OPT_Wpedantic,
12365 "%<static%> specifier invalid for function %qs "
12366 "declared out of global scope", name);
12367 else
12368 pedwarn (input_location, OPT_Wpedantic,
12369 "%<inline%> specifier invalid for function %qs "
12370 "declared out of global scope", name);
12373 if (ctype == NULL_TREE)
12375 if (virtualp)
12377 error ("virtual non-class function %qs", name);
12378 virtualp = 0;
12380 else if (sfk == sfk_constructor
12381 || sfk == sfk_destructor)
12383 error (funcdef_flag
12384 ? G_("%qs defined in a non-class scope")
12385 : G_("%qs declared in a non-class scope"), name);
12386 sfk = sfk_none;
12390 /* Record whether the function is public. */
12391 publicp = (ctype != NULL_TREE
12392 || storage_class != sc_static);
12394 if (late_return_type_p)
12395 TYPE_HAS_LATE_RETURN_TYPE (type) = 1;
12397 decl = grokfndecl (ctype, type, original_name, parms, unqualified_id,
12398 reqs, virtualp, flags, memfn_quals, rqual, raises,
12399 1, friendp,
12400 publicp,
12401 inlinep | (2 * constexpr_p) | (4 * concept_p),
12402 initialized == SD_DELETED,
12403 sfk,
12404 funcdef_flag,
12405 template_count, in_namespace, attrlist,
12406 declarator->id_loc);
12407 if (decl == NULL_TREE)
12408 return error_mark_node;
12410 if (explicitp == 2)
12411 DECL_NONCONVERTING_P (decl) = 1;
12412 if (staticp == 1)
12414 int invalid_static = 0;
12416 /* Don't allow a static member function in a class, and forbid
12417 declaring main to be static. */
12418 if (TREE_CODE (type) == METHOD_TYPE)
12420 permerror (input_location, "cannot declare member function %qD to have "
12421 "static linkage", decl);
12422 invalid_static = 1;
12424 else if (current_function_decl)
12426 /* 7.1.1: There can be no static function declarations within a
12427 block. */
12428 error ("cannot declare static function inside another function");
12429 invalid_static = 1;
12432 if (invalid_static)
12434 staticp = 0;
12435 storage_class = sc_none;
12439 else
12441 /* It's a variable. */
12443 /* An uninitialized decl with `extern' is a reference. */
12444 decl = grokvardecl (type, dname, unqualified_id,
12445 declspecs,
12446 initialized,
12447 type_quals,
12448 inlinep,
12449 concept_p,
12450 template_count,
12451 ctype ? ctype : in_namespace);
12452 if (decl == NULL_TREE)
12453 return error_mark_node;
12455 bad_specifiers (decl, BSP_VAR, virtualp,
12456 memfn_quals != TYPE_UNQUALIFIED,
12457 inlinep, friendp, raises != NULL_TREE);
12459 if (ctype)
12461 DECL_CONTEXT (decl) = ctype;
12462 if (staticp == 1)
12464 permerror (input_location, "%<static%> may not be used when defining "
12465 "(as opposed to declaring) a static data member");
12466 staticp = 0;
12467 storage_class = sc_none;
12469 if (storage_class == sc_register && TREE_STATIC (decl))
12471 error ("static member %qD declared %<register%>", decl);
12472 storage_class = sc_none;
12474 if (storage_class == sc_extern && pedantic)
12476 pedwarn (input_location, OPT_Wpedantic,
12477 "cannot explicitly declare member %q#D to have "
12478 "extern linkage", decl);
12479 storage_class = sc_none;
12482 else if (constexpr_p && DECL_EXTERNAL (decl))
12484 error ("declaration of %<constexpr%> variable %qD "
12485 "is not a definition", decl);
12486 constexpr_p = false;
12489 if (inlinep)
12490 mark_inline_variable (decl);
12491 if (innermost_code == cdk_decomp)
12493 gcc_assert (declarator && declarator->kind == cdk_decomp);
12494 DECL_SOURCE_LOCATION (decl) = declarator->id_loc;
12495 DECL_ARTIFICIAL (decl) = 1;
12496 fit_decomposition_lang_decl (decl, NULL_TREE);
12500 if (VAR_P (decl) && !initialized)
12501 if (tree auto_node = type_uses_auto (type))
12502 if (!CLASS_PLACEHOLDER_TEMPLATE (auto_node))
12504 location_t loc = declspecs->locations[ds_type_spec];
12505 error_at (loc, "declaration of %q#D has no initializer", decl);
12506 TREE_TYPE (decl) = error_mark_node;
12509 if (storage_class == sc_extern && initialized && !funcdef_flag)
12511 if (toplevel_bindings_p ())
12513 /* It's common practice (and completely valid) to have a const
12514 be initialized and declared extern. */
12515 if (!(type_quals & TYPE_QUAL_CONST))
12516 warning (0, "%qs initialized and declared %<extern%>", name);
12518 else
12520 error ("%qs has both %<extern%> and initializer", name);
12521 return error_mark_node;
12525 /* Record `register' declaration for warnings on &
12526 and in case doing stupid register allocation. */
12528 if (storage_class == sc_register)
12530 DECL_REGISTER (decl) = 1;
12531 /* Warn about register storage specifiers on PARM_DECLs. */
12532 if (TREE_CODE (decl) == PARM_DECL)
12534 if (cxx_dialect >= cxx17)
12535 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
12536 "ISO C++17 does not allow %<register%> storage "
12537 "class specifier");
12538 else
12539 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
12540 "%<register%> storage class specifier used");
12543 else if (storage_class == sc_extern)
12544 DECL_THIS_EXTERN (decl) = 1;
12545 else if (storage_class == sc_static)
12546 DECL_THIS_STATIC (decl) = 1;
12548 /* Set constexpr flag on vars (functions got it in grokfndecl). */
12549 if (constexpr_p && VAR_P (decl))
12550 DECL_DECLARED_CONSTEXPR_P (decl) = true;
12552 /* Record constancy and volatility on the DECL itself . There's
12553 no need to do this when processing a template; we'll do this
12554 for the instantiated declaration based on the type of DECL. */
12555 if (!processing_template_decl)
12556 cp_apply_type_quals_to_decl (type_quals, decl);
12558 return decl;
12562 /* Subroutine of start_function. Ensure that each of the parameter
12563 types (as listed in PARMS) is complete, as is required for a
12564 function definition. */
12566 static void
12567 require_complete_types_for_parms (tree parms)
12569 for (; parms; parms = DECL_CHAIN (parms))
12571 if (dependent_type_p (TREE_TYPE (parms)))
12572 continue;
12573 if (!VOID_TYPE_P (TREE_TYPE (parms))
12574 && complete_type_or_else (TREE_TYPE (parms), parms))
12576 relayout_decl (parms);
12577 DECL_ARG_TYPE (parms) = type_passed_as (TREE_TYPE (parms));
12579 maybe_warn_parm_abi (TREE_TYPE (parms),
12580 DECL_SOURCE_LOCATION (parms));
12582 else
12583 /* grokparms or complete_type_or_else will have already issued
12584 an error. */
12585 TREE_TYPE (parms) = error_mark_node;
12589 /* Returns nonzero if T is a local variable. */
12592 local_variable_p (const_tree t)
12594 if ((VAR_P (t)
12595 /* A VAR_DECL with a context that is a _TYPE is a static data
12596 member. */
12597 && !TYPE_P (CP_DECL_CONTEXT (t))
12598 /* Any other non-local variable must be at namespace scope. */
12599 && !DECL_NAMESPACE_SCOPE_P (t))
12600 || (TREE_CODE (t) == PARM_DECL))
12601 return 1;
12603 return 0;
12606 /* Like local_variable_p, but suitable for use as a tree-walking
12607 function. */
12609 static tree
12610 local_variable_p_walkfn (tree *tp, int *walk_subtrees,
12611 void * /*data*/)
12613 if (local_variable_p (*tp)
12614 && (!DECL_ARTIFICIAL (*tp) || DECL_NAME (*tp) == this_identifier))
12615 return *tp;
12616 else if (TYPE_P (*tp))
12617 *walk_subtrees = 0;
12619 return NULL_TREE;
12622 /* Check that ARG, which is a default-argument expression for a
12623 parameter DECL, is valid. Returns ARG, or ERROR_MARK_NODE, if
12624 something goes wrong. DECL may also be a _TYPE node, rather than a
12625 DECL, if there is no DECL available. */
12627 tree
12628 check_default_argument (tree decl, tree arg, tsubst_flags_t complain)
12630 tree var;
12631 tree decl_type;
12633 if (TREE_CODE (arg) == DEFAULT_ARG)
12634 /* We get a DEFAULT_ARG when looking at an in-class declaration
12635 with a default argument. Ignore the argument for now; we'll
12636 deal with it after the class is complete. */
12637 return arg;
12639 if (TYPE_P (decl))
12641 decl_type = decl;
12642 decl = NULL_TREE;
12644 else
12645 decl_type = TREE_TYPE (decl);
12647 if (arg == error_mark_node
12648 || decl == error_mark_node
12649 || TREE_TYPE (arg) == error_mark_node
12650 || decl_type == error_mark_node)
12651 /* Something already went wrong. There's no need to check
12652 further. */
12653 return error_mark_node;
12655 /* [dcl.fct.default]
12657 A default argument expression is implicitly converted to the
12658 parameter type. */
12659 ++cp_unevaluated_operand;
12660 /* Avoid digest_init clobbering the initializer. */
12661 tree carg = BRACE_ENCLOSED_INITIALIZER_P (arg) ? unshare_expr (arg): arg;
12662 perform_implicit_conversion_flags (decl_type, carg, complain,
12663 LOOKUP_IMPLICIT);
12664 --cp_unevaluated_operand;
12666 /* Avoid redundant -Wzero-as-null-pointer-constant warnings at
12667 the call sites. */
12668 if (TYPE_PTR_OR_PTRMEM_P (decl_type)
12669 && null_ptr_cst_p (arg))
12670 return nullptr_node;
12672 /* [dcl.fct.default]
12674 Local variables shall not be used in default argument
12675 expressions.
12677 The keyword `this' shall not be used in a default argument of a
12678 member function. */
12679 var = cp_walk_tree_without_duplicates (&arg, local_variable_p_walkfn, NULL);
12680 if (var)
12682 if (complain & tf_warning_or_error)
12684 if (DECL_NAME (var) == this_identifier)
12685 permerror (input_location, "default argument %qE uses %qD",
12686 arg, var);
12687 else
12688 error ("default argument %qE uses local variable %qD", arg, var);
12690 return error_mark_node;
12693 /* All is well. */
12694 return arg;
12697 /* Returns a deprecated type used within TYPE, or NULL_TREE if none. */
12699 static tree
12700 type_is_deprecated (tree type)
12702 enum tree_code code;
12703 if (TREE_DEPRECATED (type))
12704 return type;
12705 if (TYPE_NAME (type))
12707 if (TREE_DEPRECATED (TYPE_NAME (type)))
12708 return type;
12709 else
12710 return NULL_TREE;
12713 /* Do warn about using typedefs to a deprecated class. */
12714 if (OVERLOAD_TYPE_P (type) && type != TYPE_MAIN_VARIANT (type))
12715 return type_is_deprecated (TYPE_MAIN_VARIANT (type));
12717 code = TREE_CODE (type);
12719 if (code == POINTER_TYPE || code == REFERENCE_TYPE
12720 || code == OFFSET_TYPE || code == FUNCTION_TYPE
12721 || code == METHOD_TYPE || code == ARRAY_TYPE)
12722 return type_is_deprecated (TREE_TYPE (type));
12724 if (TYPE_PTRMEMFUNC_P (type))
12725 return type_is_deprecated
12726 (TREE_TYPE (TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (type))));
12728 return NULL_TREE;
12731 /* Decode the list of parameter types for a function type.
12732 Given the list of things declared inside the parens,
12733 return a list of types.
12735 If this parameter does not end with an ellipsis, we append
12736 void_list_node.
12738 *PARMS is set to the chain of PARM_DECLs created. */
12740 tree
12741 grokparms (tree parmlist, tree *parms)
12743 tree result = NULL_TREE;
12744 tree decls = NULL_TREE;
12745 tree parm;
12746 int any_error = 0;
12748 for (parm = parmlist; parm != NULL_TREE; parm = TREE_CHAIN (parm))
12750 tree type = NULL_TREE;
12751 tree init = TREE_PURPOSE (parm);
12752 tree decl = TREE_VALUE (parm);
12754 if (parm == void_list_node)
12755 break;
12757 if (! decl || TREE_TYPE (decl) == error_mark_node)
12758 continue;
12760 type = TREE_TYPE (decl);
12761 if (VOID_TYPE_P (type))
12763 if (same_type_p (type, void_type_node)
12764 && !init
12765 && !DECL_NAME (decl) && !result
12766 && TREE_CHAIN (parm) == void_list_node)
12767 /* DR 577: A parameter list consisting of a single
12768 unnamed parameter of non-dependent type 'void'. */
12769 break;
12770 else if (cv_qualified_p (type))
12771 error_at (DECL_SOURCE_LOCATION (decl),
12772 "invalid use of cv-qualified type %qT in "
12773 "parameter declaration", type);
12774 else
12775 error_at (DECL_SOURCE_LOCATION (decl),
12776 "invalid use of type %<void%> in parameter "
12777 "declaration");
12778 /* It's not a good idea to actually create parameters of
12779 type `void'; other parts of the compiler assume that a
12780 void type terminates the parameter list. */
12781 type = error_mark_node;
12782 TREE_TYPE (decl) = error_mark_node;
12785 if (type != error_mark_node)
12787 if (deprecated_state != DEPRECATED_SUPPRESS)
12789 tree deptype = type_is_deprecated (type);
12790 if (deptype)
12791 cp_warn_deprecated_use (deptype);
12794 /* Top-level qualifiers on the parameters are
12795 ignored for function types. */
12796 type = cp_build_qualified_type (type, 0);
12797 if (TREE_CODE (type) == METHOD_TYPE)
12799 error ("parameter %qD invalidly declared method type", decl);
12800 type = build_pointer_type (type);
12801 TREE_TYPE (decl) = type;
12803 else if (abstract_virtuals_error (decl, type))
12804 any_error = 1; /* Seems like a good idea. */
12805 else if (cxx_dialect < cxx17 && POINTER_TYPE_P (type))
12807 /* Before C++17 DR 393:
12808 [dcl.fct]/6, parameter types cannot contain pointers
12809 (references) to arrays of unknown bound. */
12810 tree t = TREE_TYPE (type);
12811 int ptr = TYPE_PTR_P (type);
12813 while (1)
12815 if (TYPE_PTR_P (t))
12816 ptr = 1;
12817 else if (TREE_CODE (t) != ARRAY_TYPE)
12818 break;
12819 else if (!TYPE_DOMAIN (t))
12820 break;
12821 t = TREE_TYPE (t);
12823 if (TREE_CODE (t) == ARRAY_TYPE)
12824 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wpedantic,
12826 ? G_("parameter %qD includes pointer to array of "
12827 "unknown bound %qT")
12828 : G_("parameter %qD includes reference to array of "
12829 "unknown bound %qT"),
12830 decl, t);
12833 if (any_error)
12834 init = NULL_TREE;
12835 else if (init && !processing_template_decl)
12836 init = check_default_argument (decl, init, tf_warning_or_error);
12839 DECL_CHAIN (decl) = decls;
12840 decls = decl;
12841 result = tree_cons (init, type, result);
12843 decls = nreverse (decls);
12844 result = nreverse (result);
12845 if (parm)
12846 result = chainon (result, void_list_node);
12847 *parms = decls;
12849 return result;
12853 /* D is a constructor or overloaded `operator='.
12855 Let T be the class in which D is declared. Then, this function
12856 returns:
12858 -1 if D's is an ill-formed constructor or copy assignment operator
12859 whose first parameter is of type `T'.
12860 0 if D is not a copy constructor or copy assignment
12861 operator.
12862 1 if D is a copy constructor or copy assignment operator whose
12863 first parameter is a reference to non-const qualified T.
12864 2 if D is a copy constructor or copy assignment operator whose
12865 first parameter is a reference to const qualified T.
12867 This function can be used as a predicate. Positive values indicate
12868 a copy constructor and nonzero values indicate a copy assignment
12869 operator. */
12872 copy_fn_p (const_tree d)
12874 tree args;
12875 tree arg_type;
12876 int result = 1;
12878 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
12880 if (TREE_CODE (d) == TEMPLATE_DECL
12881 || (DECL_TEMPLATE_INFO (d)
12882 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
12883 /* Instantiations of template member functions are never copy
12884 functions. Note that member functions of templated classes are
12885 represented as template functions internally, and we must
12886 accept those as copy functions. */
12887 return 0;
12889 args = FUNCTION_FIRST_USER_PARMTYPE (d);
12890 if (!args)
12891 return 0;
12893 arg_type = TREE_VALUE (args);
12894 if (arg_type == error_mark_node)
12895 return 0;
12897 if (TYPE_MAIN_VARIANT (arg_type) == DECL_CONTEXT (d))
12899 /* Pass by value copy assignment operator. */
12900 result = -1;
12902 else if (TREE_CODE (arg_type) == REFERENCE_TYPE
12903 && !TYPE_REF_IS_RVALUE (arg_type)
12904 && TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)) == DECL_CONTEXT (d))
12906 if (CP_TYPE_CONST_P (TREE_TYPE (arg_type)))
12907 result = 2;
12909 else
12910 return 0;
12912 args = TREE_CHAIN (args);
12914 if (args && args != void_list_node && !TREE_PURPOSE (args))
12915 /* There are more non-optional args. */
12916 return 0;
12918 return result;
12921 /* D is a constructor or overloaded `operator='.
12923 Let T be the class in which D is declared. Then, this function
12924 returns true when D is a move constructor or move assignment
12925 operator, false otherwise. */
12927 bool
12928 move_fn_p (const_tree d)
12930 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
12932 if (cxx_dialect == cxx98)
12933 /* There are no move constructors if we are in C++98 mode. */
12934 return false;
12936 if (TREE_CODE (d) == TEMPLATE_DECL
12937 || (DECL_TEMPLATE_INFO (d)
12938 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
12939 /* Instantiations of template member functions are never move
12940 functions. Note that member functions of templated classes are
12941 represented as template functions internally, and we must
12942 accept those as move functions. */
12943 return 0;
12945 return move_signature_fn_p (d);
12948 /* D is a constructor or overloaded `operator='.
12950 Then, this function returns true when D has the same signature as a move
12951 constructor or move assignment operator (because either it is such a
12952 ctor/op= or it is a template specialization with the same signature),
12953 false otherwise. */
12955 bool
12956 move_signature_fn_p (const_tree d)
12958 tree args;
12959 tree arg_type;
12960 bool result = false;
12962 args = FUNCTION_FIRST_USER_PARMTYPE (d);
12963 if (!args)
12964 return 0;
12966 arg_type = TREE_VALUE (args);
12967 if (arg_type == error_mark_node)
12968 return 0;
12970 if (TREE_CODE (arg_type) == REFERENCE_TYPE
12971 && TYPE_REF_IS_RVALUE (arg_type)
12972 && same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)),
12973 DECL_CONTEXT (d)))
12974 result = true;
12976 args = TREE_CHAIN (args);
12978 if (args && args != void_list_node && !TREE_PURPOSE (args))
12979 /* There are more non-optional args. */
12980 return false;
12982 return result;
12985 /* Remember any special properties of member function DECL. */
12987 void
12988 grok_special_member_properties (tree decl)
12990 tree class_type;
12992 if (!DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
12993 return;
12995 class_type = DECL_CONTEXT (decl);
12996 if (IDENTIFIER_CTOR_P (DECL_NAME (decl)))
12998 int ctor = copy_fn_p (decl);
13000 if (!DECL_ARTIFICIAL (decl))
13001 TYPE_HAS_USER_CONSTRUCTOR (class_type) = 1;
13003 if (ctor > 0)
13005 /* [class.copy]
13007 A non-template constructor for class X is a copy
13008 constructor if its first parameter is of type X&, const
13009 X&, volatile X& or const volatile X&, and either there
13010 are no other parameters or else all other parameters have
13011 default arguments. */
13012 TYPE_HAS_COPY_CTOR (class_type) = 1;
13013 if (user_provided_p (decl))
13014 TYPE_HAS_COMPLEX_COPY_CTOR (class_type) = 1;
13015 if (ctor > 1)
13016 TYPE_HAS_CONST_COPY_CTOR (class_type) = 1;
13018 else if (sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (decl)))
13019 TYPE_HAS_DEFAULT_CONSTRUCTOR (class_type) = 1;
13020 else if (move_fn_p (decl) && user_provided_p (decl))
13021 TYPE_HAS_COMPLEX_MOVE_CTOR (class_type) = 1;
13022 else if (is_list_ctor (decl))
13023 TYPE_HAS_LIST_CTOR (class_type) = 1;
13025 if (DECL_DECLARED_CONSTEXPR_P (decl)
13026 && !ctor && !move_fn_p (decl))
13027 TYPE_HAS_CONSTEXPR_CTOR (class_type) = 1;
13029 else if (DECL_NAME (decl) == assign_op_identifier)
13031 /* [class.copy]
13033 A non-template assignment operator for class X is a copy
13034 assignment operator if its parameter is of type X, X&, const
13035 X&, volatile X& or const volatile X&. */
13037 int assop = copy_fn_p (decl);
13039 if (assop)
13041 TYPE_HAS_COPY_ASSIGN (class_type) = 1;
13042 if (user_provided_p (decl))
13043 TYPE_HAS_COMPLEX_COPY_ASSIGN (class_type) = 1;
13044 if (assop != 1)
13045 TYPE_HAS_CONST_COPY_ASSIGN (class_type) = 1;
13047 else if (move_fn_p (decl) && user_provided_p (decl))
13048 TYPE_HAS_COMPLEX_MOVE_ASSIGN (class_type) = 1;
13050 else if (IDENTIFIER_CONV_OP_P (DECL_NAME (decl)))
13051 TYPE_HAS_CONVERSION (class_type) = true;
13053 /* Destructors are handled in check_methods. */
13056 /* Check a constructor DECL has the correct form. Complains
13057 if the class has a constructor of the form X(X). */
13059 bool
13060 grok_ctor_properties (const_tree ctype, const_tree decl)
13062 int ctor_parm = copy_fn_p (decl);
13064 if (ctor_parm < 0)
13066 /* [class.copy]
13068 A declaration of a constructor for a class X is ill-formed if
13069 its first parameter is of type (optionally cv-qualified) X
13070 and either there are no other parameters or else all other
13071 parameters have default arguments.
13073 We *don't* complain about member template instantiations that
13074 have this form, though; they can occur as we try to decide
13075 what constructor to use during overload resolution. Since
13076 overload resolution will never prefer such a constructor to
13077 the non-template copy constructor (which is either explicitly
13078 or implicitly defined), there's no need to worry about their
13079 existence. Theoretically, they should never even be
13080 instantiated, but that's hard to forestall. */
13081 error ("invalid constructor; you probably meant %<%T (const %T&)%>",
13082 ctype, ctype);
13083 return false;
13086 return true;
13089 /* DECL is a declaration for an overloaded or conversion operator. If
13090 COMPLAIN is true, errors are issued for invalid declarations. */
13092 bool
13093 grok_op_properties (tree decl, bool complain)
13095 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
13096 bool methodp = TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE;
13097 tree name = DECL_NAME (decl);
13099 tree class_type = DECL_CONTEXT (decl);
13100 if (class_type && !CLASS_TYPE_P (class_type))
13101 class_type = NULL_TREE;
13103 tree_code operator_code;
13104 unsigned op_flags;
13105 if (IDENTIFIER_CONV_OP_P (name))
13107 /* Conversion operators are TYPE_EXPR for the purposes of this
13108 function. */
13109 operator_code = TYPE_EXPR;
13110 op_flags = OVL_OP_FLAG_UNARY;
13112 else
13114 const ovl_op_info_t *ovl_op = IDENTIFIER_OVL_OP_INFO (name);
13116 operator_code = ovl_op->tree_code;
13117 op_flags = ovl_op->flags;
13118 gcc_checking_assert (operator_code != ERROR_MARK);
13119 DECL_OVERLOADED_OPERATOR_CODE_RAW (decl) = ovl_op->ovl_op_code;
13122 if (op_flags & OVL_OP_FLAG_ALLOC)
13124 /* operator new and operator delete are quite special. */
13125 if (class_type)
13126 switch (op_flags)
13128 case OVL_OP_FLAG_ALLOC:
13129 TYPE_HAS_NEW_OPERATOR (class_type) = 1;
13130 break;
13132 case OVL_OP_FLAG_ALLOC | OVL_OP_FLAG_DELETE:
13133 TYPE_GETS_DELETE (class_type) |= 1;
13134 break;
13136 case OVL_OP_FLAG_ALLOC | OVL_OP_FLAG_VEC:
13137 TYPE_HAS_ARRAY_NEW_OPERATOR (class_type) = 1;
13138 break;
13140 case OVL_OP_FLAG_ALLOC | OVL_OP_FLAG_DELETE | OVL_OP_FLAG_VEC:
13141 TYPE_GETS_DELETE (class_type) |= 2;
13142 break;
13144 default:
13145 gcc_unreachable ();
13148 /* [basic.std.dynamic.allocation]/1:
13150 A program is ill-formed if an allocation function is declared
13151 in a namespace scope other than global scope or declared
13152 static in global scope.
13154 The same also holds true for deallocation functions. */
13155 if (DECL_NAMESPACE_SCOPE_P (decl))
13157 if (CP_DECL_CONTEXT (decl) != global_namespace)
13159 error ("%qD may not be declared within a namespace", decl);
13160 return false;
13163 if (!TREE_PUBLIC (decl))
13165 error ("%qD may not be declared as static", decl);
13166 return false;
13170 if (op_flags & OVL_OP_FLAG_DELETE)
13171 TREE_TYPE (decl) = coerce_delete_type (TREE_TYPE (decl));
13172 else
13174 DECL_IS_OPERATOR_NEW (decl) = 1;
13175 TREE_TYPE (decl) = coerce_new_type (TREE_TYPE (decl));
13178 return true;
13181 /* An operator function must either be a non-static member function
13182 or have at least one parameter of a class, a reference to a class,
13183 an enumeration, or a reference to an enumeration. 13.4.0.6 */
13184 if (! methodp || DECL_STATIC_FUNCTION_P (decl))
13186 if (operator_code == TYPE_EXPR
13187 || operator_code == CALL_EXPR
13188 || operator_code == COMPONENT_REF
13189 || operator_code == ARRAY_REF
13190 || operator_code == NOP_EXPR)
13192 error ("%qD must be a nonstatic member function", decl);
13193 return false;
13196 if (DECL_STATIC_FUNCTION_P (decl))
13198 error ("%qD must be either a non-static member "
13199 "function or a non-member function", decl);
13200 return false;
13203 for (tree arg = argtypes; ; arg = TREE_CHAIN (arg))
13205 if (!arg || arg == void_list_node)
13207 if (complain)
13208 error ("%qD must have an argument of class or "
13209 "enumerated type", decl);
13210 return false;
13213 tree type = non_reference (TREE_VALUE (arg));
13214 if (type == error_mark_node)
13215 return false;
13217 /* MAYBE_CLASS_TYPE_P, rather than CLASS_TYPE_P, is used
13218 because these checks are performed even on template
13219 functions. */
13220 if (MAYBE_CLASS_TYPE_P (type)
13221 || TREE_CODE (type) == ENUMERAL_TYPE)
13222 break;
13226 if (operator_code == CALL_EXPR)
13227 /* There are no further restrictions on the arguments to an overloaded
13228 "operator ()". */
13229 return true;
13231 if (operator_code == COND_EXPR)
13233 /* 13.4.0.3 */
13234 error ("ISO C++ prohibits overloading operator ?:");
13235 return false;
13238 /* Count the number of arguments and check for ellipsis. */
13239 int arity = 0;
13240 for (tree arg = argtypes; arg != void_list_node; arg = TREE_CHAIN (arg))
13242 if (!arg)
13244 /* Variadic. */
13245 error ("%qD must not have variable number of arguments", decl);
13246 return false;
13248 ++arity;
13251 /* Verify correct number of arguments. */
13252 switch (op_flags)
13254 case OVL_OP_FLAG_AMBIARY:
13255 if (arity == 1)
13257 /* We have a unary instance of an ambi-ary op. Remap to the
13258 unary one. */
13259 unsigned alt = ovl_op_alternate[ovl_op_mapping [operator_code]];
13260 const ovl_op_info_t *ovl_op = &ovl_op_info[false][alt];
13261 gcc_checking_assert (ovl_op->flags == OVL_OP_FLAG_UNARY);
13262 operator_code = ovl_op->tree_code;
13263 DECL_OVERLOADED_OPERATOR_CODE_RAW (decl) = ovl_op->ovl_op_code;
13265 else if (arity != 2)
13267 /* This was an ambiguous operator but is invalid. */
13268 error (methodp
13269 ? G_("%qD must have either zero or one argument")
13270 : G_("%qD must have either one or two arguments"), decl);
13271 return false;
13273 else if ((operator_code == POSTINCREMENT_EXPR
13274 || operator_code == POSTDECREMENT_EXPR)
13275 && ! processing_template_decl
13276 /* x++ and x--'s second argument must be an int. */
13277 && ! same_type_p (TREE_VALUE (TREE_CHAIN (argtypes)),
13278 integer_type_node))
13280 error (methodp
13281 ? G_("postfix %qD must have %<int%> as its argument")
13282 : G_("postfix %qD must have %<int%> as its second argument"),
13283 decl);
13284 return false;
13286 break;
13288 case OVL_OP_FLAG_UNARY:
13289 if (arity != 1)
13291 error (methodp
13292 ? G_("%qD must have no arguments")
13293 : G_("%qD must have exactly one argument"), decl);
13294 return false;
13296 break;
13298 case OVL_OP_FLAG_BINARY:
13299 if (arity != 2)
13301 error (methodp
13302 ? G_("%qD must have exactly one argument")
13303 : G_("%qD must have exactly two arguments"), decl);
13304 return false;
13306 break;
13308 default:
13309 gcc_unreachable ();
13312 /* There can be no default arguments. */
13313 for (tree arg = argtypes; arg != void_list_node; arg = TREE_CHAIN (arg))
13314 if (TREE_PURPOSE (arg))
13316 TREE_PURPOSE (arg) = NULL_TREE;
13317 if (operator_code == POSTINCREMENT_EXPR
13318 || operator_code == POSTDECREMENT_EXPR)
13319 pedwarn (input_location, OPT_Wpedantic,
13320 "%qD cannot have default arguments", decl);
13321 else
13323 error ("%qD cannot have default arguments", decl);
13324 return false;
13328 /* At this point the declaration is well-formed. It may not be
13329 sensible though. */
13331 /* Check member function warnings only on the in-class declaration.
13332 There's no point warning on an out-of-class definition. */
13333 if (class_type && class_type != current_class_type)
13334 return true;
13336 /* Warn about conversion operators that will never be used. */
13337 if (IDENTIFIER_CONV_OP_P (name)
13338 && ! DECL_TEMPLATE_INFO (decl)
13339 && warn_conversion)
13341 tree t = TREE_TYPE (name);
13342 int ref = (TREE_CODE (t) == REFERENCE_TYPE);
13344 if (ref)
13345 t = TYPE_MAIN_VARIANT (TREE_TYPE (t));
13347 if (VOID_TYPE_P (t))
13348 warning (OPT_Wconversion,
13350 ? G_("conversion to a reference to void "
13351 "will never use a type conversion operator")
13352 : G_("conversion to void "
13353 "will never use a type conversion operator"));
13354 else if (class_type)
13356 if (t == class_type)
13357 warning (OPT_Wconversion,
13359 ? G_("conversion to a reference to the same type "
13360 "will never use a type conversion operator")
13361 : G_("conversion to the same type "
13362 "will never use a type conversion operator"));
13363 /* Don't force t to be complete here. */
13364 else if (MAYBE_CLASS_TYPE_P (t)
13365 && COMPLETE_TYPE_P (t)
13366 && DERIVED_FROM_P (t, class_type))
13367 warning (OPT_Wconversion,
13369 ? G_("conversion to a reference to a base class "
13370 "will never use a type conversion operator")
13371 : G_("conversion to a base class "
13372 "will never use a type conversion operator"));
13376 if (!warn_ecpp)
13377 return true;
13379 /* Effective C++ rules below. */
13381 /* More Effective C++ rule 7. */
13382 if (operator_code == TRUTH_ANDIF_EXPR
13383 || operator_code == TRUTH_ORIF_EXPR
13384 || operator_code == COMPOUND_EXPR)
13385 warning (OPT_Weffc__,
13386 "user-defined %qD always evaluates both arguments", decl);
13388 /* More Effective C++ rule 6. */
13389 if (operator_code == POSTINCREMENT_EXPR
13390 || operator_code == POSTDECREMENT_EXPR
13391 || operator_code == PREINCREMENT_EXPR
13392 || operator_code == PREDECREMENT_EXPR)
13394 tree arg = TREE_VALUE (argtypes);
13395 tree ret = TREE_TYPE (TREE_TYPE (decl));
13396 if (methodp || TREE_CODE (arg) == REFERENCE_TYPE)
13397 arg = TREE_TYPE (arg);
13398 arg = TYPE_MAIN_VARIANT (arg);
13400 if (operator_code == PREINCREMENT_EXPR
13401 || operator_code == PREDECREMENT_EXPR)
13403 if (TREE_CODE (ret) != REFERENCE_TYPE
13404 || !same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (ret)), arg))
13405 warning (OPT_Weffc__, "prefix %qD should return %qT", decl,
13406 build_reference_type (arg));
13408 else
13410 if (!same_type_p (TYPE_MAIN_VARIANT (ret), arg))
13411 warning (OPT_Weffc__, "postfix %qD should return %qT", decl, arg);
13415 /* Effective C++ rule 23. */
13416 if (!DECL_ASSIGNMENT_OPERATOR_P (decl)
13417 && (operator_code == PLUS_EXPR
13418 || operator_code == MINUS_EXPR
13419 || operator_code == TRUNC_DIV_EXPR
13420 || operator_code == MULT_EXPR
13421 || operator_code == TRUNC_MOD_EXPR)
13422 && TREE_CODE (TREE_TYPE (TREE_TYPE (decl))) == REFERENCE_TYPE)
13423 warning (OPT_Weffc__, "%qD should return by value", decl);
13425 return true;
13428 /* Return a string giving the keyword associate with CODE. */
13430 static const char *
13431 tag_name (enum tag_types code)
13433 switch (code)
13435 case record_type:
13436 return "struct";
13437 case class_type:
13438 return "class";
13439 case union_type:
13440 return "union";
13441 case enum_type:
13442 return "enum";
13443 case typename_type:
13444 return "typename";
13445 default:
13446 gcc_unreachable ();
13450 /* Name lookup in an elaborated-type-specifier (after the keyword
13451 indicated by TAG_CODE) has found the TYPE_DECL DECL. If the
13452 elaborated-type-specifier is invalid, issue a diagnostic and return
13453 error_mark_node; otherwise, return the *_TYPE to which it referred.
13454 If ALLOW_TEMPLATE_P is true, TYPE may be a class template. */
13456 tree
13457 check_elaborated_type_specifier (enum tag_types tag_code,
13458 tree decl,
13459 bool allow_template_p)
13461 tree type;
13463 /* In the case of:
13465 struct S { struct S *p; };
13467 name lookup will find the TYPE_DECL for the implicit "S::S"
13468 typedef. Adjust for that here. */
13469 if (DECL_SELF_REFERENCE_P (decl))
13470 decl = TYPE_NAME (TREE_TYPE (decl));
13472 type = TREE_TYPE (decl);
13474 /* Check TEMPLATE_TYPE_PARM first because DECL_IMPLICIT_TYPEDEF_P
13475 is false for this case as well. */
13476 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
13478 error ("using template type parameter %qT after %qs",
13479 type, tag_name (tag_code));
13480 return error_mark_node;
13482 /* Accept template template parameters. */
13483 else if (allow_template_p
13484 && (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM
13485 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM))
13487 /* [dcl.type.elab]
13489 If the identifier resolves to a typedef-name or the
13490 simple-template-id resolves to an alias template
13491 specialization, the elaborated-type-specifier is ill-formed.
13493 In other words, the only legitimate declaration to use in the
13494 elaborated type specifier is the implicit typedef created when
13495 the type is declared. */
13496 else if (!DECL_IMPLICIT_TYPEDEF_P (decl)
13497 && !DECL_SELF_REFERENCE_P (decl)
13498 && tag_code != typename_type)
13500 if (alias_template_specialization_p (type))
13501 error ("using alias template specialization %qT after %qs",
13502 type, tag_name (tag_code));
13503 else
13504 error ("using typedef-name %qD after %qs", decl, tag_name (tag_code));
13505 inform (DECL_SOURCE_LOCATION (decl),
13506 "%qD has a previous declaration here", decl);
13507 return error_mark_node;
13509 else if (TREE_CODE (type) != RECORD_TYPE
13510 && TREE_CODE (type) != UNION_TYPE
13511 && tag_code != enum_type
13512 && tag_code != typename_type)
13514 error ("%qT referred to as %qs", type, tag_name (tag_code));
13515 inform (location_of (type), "%qT has a previous declaration here", type);
13516 return error_mark_node;
13518 else if (TREE_CODE (type) != ENUMERAL_TYPE
13519 && tag_code == enum_type)
13521 error ("%qT referred to as enum", type);
13522 inform (location_of (type), "%qT has a previous declaration here", type);
13523 return error_mark_node;
13525 else if (!allow_template_p
13526 && TREE_CODE (type) == RECORD_TYPE
13527 && CLASSTYPE_IS_TEMPLATE (type))
13529 /* If a class template appears as elaborated type specifier
13530 without a template header such as:
13532 template <class T> class C {};
13533 void f(class C); // No template header here
13535 then the required template argument is missing. */
13536 error ("template argument required for %<%s %T%>",
13537 tag_name (tag_code),
13538 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type)));
13539 return error_mark_node;
13542 return type;
13545 /* Lookup NAME in elaborate type specifier in scope according to
13546 SCOPE and issue diagnostics if necessary.
13547 Return *_TYPE node upon success, NULL_TREE when the NAME is not
13548 found, and ERROR_MARK_NODE for type error. */
13550 static tree
13551 lookup_and_check_tag (enum tag_types tag_code, tree name,
13552 tag_scope scope, bool template_header_p)
13554 tree t;
13555 tree decl;
13556 if (scope == ts_global)
13558 /* First try ordinary name lookup, ignoring hidden class name
13559 injected via friend declaration. */
13560 decl = lookup_name_prefer_type (name, 2);
13561 decl = strip_using_decl (decl);
13562 /* If that fails, the name will be placed in the smallest
13563 non-class, non-function-prototype scope according to 3.3.1/5.
13564 We may already have a hidden name declared as friend in this
13565 scope. So lookup again but not ignoring hidden names.
13566 If we find one, that name will be made visible rather than
13567 creating a new tag. */
13568 if (!decl)
13569 decl = lookup_type_scope (name, ts_within_enclosing_non_class);
13571 else
13572 decl = lookup_type_scope (name, scope);
13574 if (decl
13575 && (DECL_CLASS_TEMPLATE_P (decl)
13576 /* If scope is ts_current we're defining a class, so ignore a
13577 template template parameter. */
13578 || (scope != ts_current
13579 && DECL_TEMPLATE_TEMPLATE_PARM_P (decl))))
13580 decl = DECL_TEMPLATE_RESULT (decl);
13582 if (decl && TREE_CODE (decl) == TYPE_DECL)
13584 /* Look for invalid nested type:
13585 class C {
13586 class C {};
13587 }; */
13588 if (scope == ts_current && DECL_SELF_REFERENCE_P (decl))
13590 error ("%qD has the same name as the class in which it is "
13591 "declared",
13592 decl);
13593 return error_mark_node;
13596 /* Two cases we need to consider when deciding if a class
13597 template is allowed as an elaborated type specifier:
13598 1. It is a self reference to its own class.
13599 2. It comes with a template header.
13601 For example:
13603 template <class T> class C {
13604 class C *c1; // DECL_SELF_REFERENCE_P is true
13605 class D;
13607 template <class U> class C; // template_header_p is true
13608 template <class T> class C<T>::D {
13609 class C *c2; // DECL_SELF_REFERENCE_P is true
13610 }; */
13612 t = check_elaborated_type_specifier (tag_code,
13613 decl,
13614 template_header_p
13615 | DECL_SELF_REFERENCE_P (decl));
13616 if (template_header_p && t && CLASS_TYPE_P (t)
13617 && (!CLASSTYPE_TEMPLATE_INFO (t)
13618 || (!PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t)))))
13620 error ("%qT is not a template", t);
13621 inform (location_of (t), "previous declaration here");
13622 if (TYPE_CLASS_SCOPE_P (t)
13623 && CLASSTYPE_TEMPLATE_INFO (TYPE_CONTEXT (t)))
13624 inform (input_location,
13625 "perhaps you want to explicitly add %<%T::%>",
13626 TYPE_CONTEXT (t));
13627 t = error_mark_node;
13630 return t;
13632 else if (decl && TREE_CODE (decl) == TREE_LIST)
13634 error ("reference to %qD is ambiguous", name);
13635 print_candidates (decl);
13636 return error_mark_node;
13638 else
13639 return NULL_TREE;
13642 /* Get the struct, enum or union (TAG_CODE says which) with tag NAME.
13643 Define the tag as a forward-reference if it is not defined.
13645 If a declaration is given, process it here, and report an error if
13646 multiple declarations are not identical.
13648 SCOPE is TS_CURRENT when this is also a definition. Only look in
13649 the current frame for the name (since C++ allows new names in any
13650 scope.) It is TS_WITHIN_ENCLOSING_NON_CLASS if this is a friend
13651 declaration. Only look beginning from the current scope outward up
13652 till the nearest non-class scope. Otherwise it is TS_GLOBAL.
13654 TEMPLATE_HEADER_P is true when this declaration is preceded by
13655 a set of template parameters. */
13657 static tree
13658 xref_tag_1 (enum tag_types tag_code, tree name,
13659 tag_scope scope, bool template_header_p)
13661 enum tree_code code;
13662 tree context = NULL_TREE;
13664 gcc_assert (identifier_p (name));
13666 switch (tag_code)
13668 case record_type:
13669 case class_type:
13670 code = RECORD_TYPE;
13671 break;
13672 case union_type:
13673 code = UNION_TYPE;
13674 break;
13675 case enum_type:
13676 code = ENUMERAL_TYPE;
13677 break;
13678 default:
13679 gcc_unreachable ();
13682 /* In case of anonymous name, xref_tag is only called to
13683 make type node and push name. Name lookup is not required. */
13684 tree t = NULL_TREE;
13685 if (scope != ts_lambda && !anon_aggrname_p (name))
13686 t = lookup_and_check_tag (tag_code, name, scope, template_header_p);
13688 if (t == error_mark_node)
13689 return error_mark_node;
13691 if (scope != ts_current && t && current_class_type
13692 && template_class_depth (current_class_type)
13693 && template_header_p)
13695 if (TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM)
13696 return t;
13698 /* Since SCOPE is not TS_CURRENT, we are not looking at a
13699 definition of this tag. Since, in addition, we are currently
13700 processing a (member) template declaration of a template
13701 class, we must be very careful; consider:
13703 template <class X> struct S1
13705 template <class U> struct S2
13707 template <class V> friend struct S1;
13710 Here, the S2::S1 declaration should not be confused with the
13711 outer declaration. In particular, the inner version should
13712 have a template parameter of level 2, not level 1.
13714 On the other hand, when presented with:
13716 template <class T> struct S1
13718 template <class U> struct S2 {};
13719 template <class U> friend struct S2;
13722 the friend must find S1::S2 eventually. We accomplish this
13723 by making sure that the new type we create to represent this
13724 declaration has the right TYPE_CONTEXT. */
13725 context = TYPE_CONTEXT (t);
13726 t = NULL_TREE;
13729 if (! t)
13731 /* If no such tag is yet defined, create a forward-reference node
13732 and record it as the "definition".
13733 When a real declaration of this type is found,
13734 the forward-reference will be altered into a real type. */
13735 if (code == ENUMERAL_TYPE)
13737 error ("use of enum %q#D without previous declaration", name);
13738 return error_mark_node;
13740 else
13742 t = make_class_type (code);
13743 TYPE_CONTEXT (t) = context;
13744 if (scope == ts_lambda)
13746 /* Mark it as a lambda type. */
13747 CLASSTYPE_LAMBDA_EXPR (t) = error_mark_node;
13748 /* And push it into current scope. */
13749 scope = ts_current;
13751 t = pushtag (name, t, scope);
13754 else
13756 if (template_header_p && MAYBE_CLASS_TYPE_P (t))
13758 /* Check that we aren't trying to overload a class with different
13759 constraints. */
13760 tree constr = NULL_TREE;
13761 if (current_template_parms)
13763 tree reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
13764 constr = build_constraints (reqs, NULL_TREE);
13766 if (!redeclare_class_template (t, current_template_parms, constr))
13767 return error_mark_node;
13769 else if (!processing_template_decl
13770 && CLASS_TYPE_P (t)
13771 && CLASSTYPE_IS_TEMPLATE (t))
13773 error ("redeclaration of %qT as a non-template", t);
13774 inform (location_of (t), "previous declaration %qD", t);
13775 return error_mark_node;
13778 if (scope != ts_within_enclosing_non_class && TYPE_HIDDEN_P (t))
13780 /* This is no longer an invisible friend. Make it
13781 visible. */
13782 tree decl = TYPE_NAME (t);
13784 DECL_ANTICIPATED (decl) = false;
13785 DECL_FRIEND_P (decl) = false;
13787 if (TYPE_TEMPLATE_INFO (t))
13789 tree tmpl = TYPE_TI_TEMPLATE (t);
13790 DECL_ANTICIPATED (tmpl) = false;
13791 DECL_FRIEND_P (tmpl) = false;
13796 return t;
13799 /* Wrapper for xref_tag_1. */
13801 tree
13802 xref_tag (enum tag_types tag_code, tree name,
13803 tag_scope scope, bool template_header_p)
13805 tree ret;
13806 bool subtime;
13807 subtime = timevar_cond_start (TV_NAME_LOOKUP);
13808 ret = xref_tag_1 (tag_code, name, scope, template_header_p);
13809 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
13810 return ret;
13814 tree
13815 xref_tag_from_type (tree old, tree id, tag_scope scope)
13817 enum tag_types tag_kind;
13819 if (TREE_CODE (old) == RECORD_TYPE)
13820 tag_kind = (CLASSTYPE_DECLARED_CLASS (old) ? class_type : record_type);
13821 else
13822 tag_kind = union_type;
13824 if (id == NULL_TREE)
13825 id = TYPE_IDENTIFIER (old);
13827 return xref_tag (tag_kind, id, scope, false);
13830 /* Create the binfo hierarchy for REF with (possibly NULL) base list
13831 BASE_LIST. For each element on BASE_LIST the TREE_PURPOSE is an
13832 access_* node, and the TREE_VALUE is the type of the base-class.
13833 Non-NULL TREE_TYPE indicates virtual inheritance. */
13835 void
13836 xref_basetypes (tree ref, tree base_list)
13838 tree *basep;
13839 tree binfo, base_binfo;
13840 unsigned max_vbases = 0; /* Maximum direct & indirect virtual bases. */
13841 unsigned max_bases = 0; /* Maximum direct bases. */
13842 unsigned max_dvbases = 0; /* Maximum direct virtual bases. */
13843 int i;
13844 tree default_access;
13845 tree igo_prev; /* Track Inheritance Graph Order. */
13847 if (ref == error_mark_node)
13848 return;
13850 /* The base of a derived class is private by default, all others are
13851 public. */
13852 default_access = (TREE_CODE (ref) == RECORD_TYPE
13853 && CLASSTYPE_DECLARED_CLASS (ref)
13854 ? access_private_node : access_public_node);
13856 /* First, make sure that any templates in base-classes are
13857 instantiated. This ensures that if we call ourselves recursively
13858 we do not get confused about which classes are marked and which
13859 are not. */
13860 basep = &base_list;
13861 while (*basep)
13863 tree basetype = TREE_VALUE (*basep);
13865 /* The dependent_type_p call below should really be dependent_scope_p
13866 so that we give a hard error about using an incomplete type as a
13867 base, but we allow it with a pedwarn for backward
13868 compatibility. */
13869 if (processing_template_decl
13870 && CLASS_TYPE_P (basetype) && TYPE_BEING_DEFINED (basetype))
13871 cxx_incomplete_type_diagnostic (NULL_TREE, basetype, DK_PEDWARN);
13872 if (!dependent_type_p (basetype)
13873 && !complete_type_or_else (basetype, NULL))
13874 /* An incomplete type. Remove it from the list. */
13875 *basep = TREE_CHAIN (*basep);
13876 else
13878 max_bases++;
13879 if (TREE_TYPE (*basep))
13880 max_dvbases++;
13881 if (CLASS_TYPE_P (basetype))
13882 max_vbases += vec_safe_length (CLASSTYPE_VBASECLASSES (basetype));
13883 basep = &TREE_CHAIN (*basep);
13886 max_vbases += max_dvbases;
13888 TYPE_MARKED_P (ref) = 1;
13890 /* The binfo slot should be empty, unless this is an (ill-formed)
13891 redefinition. */
13892 gcc_assert (!TYPE_BINFO (ref) || TYPE_SIZE (ref));
13894 gcc_assert (TYPE_MAIN_VARIANT (ref) == ref);
13896 binfo = make_tree_binfo (max_bases);
13898 TYPE_BINFO (ref) = binfo;
13899 BINFO_OFFSET (binfo) = size_zero_node;
13900 BINFO_TYPE (binfo) = ref;
13902 /* Apply base-class info set up to the variants of this type. */
13903 fixup_type_variants (ref);
13905 if (max_bases)
13907 vec_alloc (BINFO_BASE_ACCESSES (binfo), max_bases);
13908 /* A C++98 POD cannot have base classes. */
13909 CLASSTYPE_NON_LAYOUT_POD_P (ref) = true;
13911 if (TREE_CODE (ref) == UNION_TYPE)
13913 error ("derived union %qT invalid", ref);
13914 return;
13918 if (max_bases > 1)
13919 warning (OPT_Wmultiple_inheritance,
13920 "%qT defined with multiple direct bases", ref);
13922 if (max_vbases)
13924 /* An aggregate can't have virtual base classes. */
13925 CLASSTYPE_NON_AGGREGATE (ref) = true;
13927 vec_alloc (CLASSTYPE_VBASECLASSES (ref), max_vbases);
13929 if (max_dvbases)
13930 warning (OPT_Wvirtual_inheritance,
13931 "%qT defined with direct virtual base", ref);
13934 for (igo_prev = binfo; base_list; base_list = TREE_CHAIN (base_list))
13936 tree access = TREE_PURPOSE (base_list);
13937 int via_virtual = TREE_TYPE (base_list) != NULL_TREE;
13938 tree basetype = TREE_VALUE (base_list);
13940 if (access == access_default_node)
13941 access = default_access;
13943 /* Before C++17, an aggregate cannot have base classes. In C++17, an
13944 aggregate can't have virtual, private, or protected base classes. */
13945 if (cxx_dialect < cxx17
13946 || access != access_public_node
13947 || via_virtual)
13948 CLASSTYPE_NON_AGGREGATE (ref) = true;
13950 if (PACK_EXPANSION_P (basetype))
13951 basetype = PACK_EXPANSION_PATTERN (basetype);
13952 if (TREE_CODE (basetype) == TYPE_DECL)
13953 basetype = TREE_TYPE (basetype);
13954 if (!MAYBE_CLASS_TYPE_P (basetype) || TREE_CODE (basetype) == UNION_TYPE)
13956 error ("base type %qT fails to be a struct or class type",
13957 basetype);
13958 goto dropped_base;
13961 base_binfo = NULL_TREE;
13962 if (CLASS_TYPE_P (basetype) && !dependent_scope_p (basetype))
13964 base_binfo = TYPE_BINFO (basetype);
13965 /* The original basetype could have been a typedef'd type. */
13966 basetype = BINFO_TYPE (base_binfo);
13968 /* Inherit flags from the base. */
13969 TYPE_HAS_NEW_OPERATOR (ref)
13970 |= TYPE_HAS_NEW_OPERATOR (basetype);
13971 TYPE_HAS_ARRAY_NEW_OPERATOR (ref)
13972 |= TYPE_HAS_ARRAY_NEW_OPERATOR (basetype);
13973 TYPE_GETS_DELETE (ref) |= TYPE_GETS_DELETE (basetype);
13974 TYPE_HAS_CONVERSION (ref) |= TYPE_HAS_CONVERSION (basetype);
13975 CLASSTYPE_DIAMOND_SHAPED_P (ref)
13976 |= CLASSTYPE_DIAMOND_SHAPED_P (basetype);
13977 CLASSTYPE_REPEATED_BASE_P (ref)
13978 |= CLASSTYPE_REPEATED_BASE_P (basetype);
13981 /* We must do this test after we've seen through a typedef
13982 type. */
13983 if (TYPE_MARKED_P (basetype))
13985 if (basetype == ref)
13986 error ("recursive type %qT undefined", basetype);
13987 else
13988 error ("duplicate base type %qT invalid", basetype);
13989 goto dropped_base;
13992 if (PACK_EXPANSION_P (TREE_VALUE (base_list)))
13993 /* Regenerate the pack expansion for the bases. */
13994 basetype = make_pack_expansion (basetype);
13996 TYPE_MARKED_P (basetype) = 1;
13998 base_binfo = copy_binfo (base_binfo, basetype, ref,
13999 &igo_prev, via_virtual);
14000 if (!BINFO_INHERITANCE_CHAIN (base_binfo))
14001 BINFO_INHERITANCE_CHAIN (base_binfo) = binfo;
14003 BINFO_BASE_APPEND (binfo, base_binfo);
14004 BINFO_BASE_ACCESS_APPEND (binfo, access);
14005 continue;
14007 dropped_base:
14008 /* Update max_vbases to reflect the reality that we are dropping
14009 this base: if it reaches zero we want to undo the vec_alloc
14010 above to avoid inconsistencies during error-recovery: eg, in
14011 build_special_member_call, CLASSTYPE_VBASECLASSES non null
14012 and vtt null (c++/27952). */
14013 if (via_virtual)
14014 max_vbases--;
14015 if (CLASS_TYPE_P (basetype))
14016 max_vbases
14017 -= vec_safe_length (CLASSTYPE_VBASECLASSES (basetype));
14020 if (CLASSTYPE_VBASECLASSES (ref)
14021 && max_vbases == 0)
14022 vec_free (CLASSTYPE_VBASECLASSES (ref));
14024 if (vec_safe_length (CLASSTYPE_VBASECLASSES (ref)) < max_vbases)
14025 /* If we didn't get max_vbases vbases, we must have shared at
14026 least one of them, and are therefore diamond shaped. */
14027 CLASSTYPE_DIAMOND_SHAPED_P (ref) = 1;
14029 /* Unmark all the types. */
14030 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
14031 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
14032 TYPE_MARKED_P (ref) = 0;
14034 /* Now see if we have a repeated base type. */
14035 if (!CLASSTYPE_REPEATED_BASE_P (ref))
14037 for (base_binfo = binfo; base_binfo;
14038 base_binfo = TREE_CHAIN (base_binfo))
14040 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
14042 CLASSTYPE_REPEATED_BASE_P (ref) = 1;
14043 break;
14045 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 1;
14047 for (base_binfo = binfo; base_binfo;
14048 base_binfo = TREE_CHAIN (base_binfo))
14049 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
14050 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
14051 else
14052 break;
14057 /* Copies the enum-related properties from type SRC to type DST.
14058 Used with the underlying type of an enum and the enum itself. */
14059 static void
14060 copy_type_enum (tree dst, tree src)
14062 tree t;
14063 for (t = dst; t; t = TYPE_NEXT_VARIANT (t))
14065 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (src);
14066 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (src);
14067 TYPE_SIZE (t) = TYPE_SIZE (src);
14068 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (src);
14069 SET_TYPE_MODE (dst, TYPE_MODE (src));
14070 TYPE_PRECISION (t) = TYPE_PRECISION (src);
14071 unsigned valign = TYPE_ALIGN (src);
14072 if (TYPE_USER_ALIGN (t))
14073 valign = MAX (valign, TYPE_ALIGN (t));
14074 else
14075 TYPE_USER_ALIGN (t) = TYPE_USER_ALIGN (src);
14076 SET_TYPE_ALIGN (t, valign);
14077 TYPE_UNSIGNED (t) = TYPE_UNSIGNED (src);
14081 /* Begin compiling the definition of an enumeration type.
14082 NAME is its name,
14084 if ENUMTYPE is not NULL_TREE then the type has alredy been found.
14086 UNDERLYING_TYPE is the type that will be used as the storage for
14087 the enumeration type. This should be NULL_TREE if no storage type
14088 was specified.
14090 ATTRIBUTES are any attributes specified after the enum-key.
14092 SCOPED_ENUM_P is true if this is a scoped enumeration type.
14094 if IS_NEW is not NULL, gets TRUE iff a new type is created.
14096 Returns the type object, as yet incomplete.
14097 Also records info about it so that build_enumerator
14098 may be used to declare the individual values as they are read. */
14100 tree
14101 start_enum (tree name, tree enumtype, tree underlying_type,
14102 tree attributes, bool scoped_enum_p, bool *is_new)
14104 tree prevtype = NULL_TREE;
14105 gcc_assert (identifier_p (name));
14107 if (is_new)
14108 *is_new = false;
14109 /* [C++0x dcl.enum]p5:
14111 If not explicitly specified, the underlying type of a scoped
14112 enumeration type is int. */
14113 if (!underlying_type && scoped_enum_p)
14114 underlying_type = integer_type_node;
14116 if (underlying_type)
14117 underlying_type = cv_unqualified (underlying_type);
14119 /* If this is the real definition for a previous forward reference,
14120 fill in the contents in the same object that used to be the
14121 forward reference. */
14122 if (!enumtype)
14123 enumtype = lookup_and_check_tag (enum_type, name,
14124 /*tag_scope=*/ts_current,
14125 /*template_header_p=*/false);
14127 /* In case of a template_decl, the only check that should be deferred
14128 to instantiation time is the comparison of underlying types. */
14129 if (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE)
14131 if (scoped_enum_p != SCOPED_ENUM_P (enumtype))
14133 error_at (input_location, "scoped/unscoped mismatch "
14134 "in enum %q#T", enumtype);
14135 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
14136 "previous definition here");
14137 enumtype = error_mark_node;
14139 else if (ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) != !! underlying_type)
14141 error_at (input_location, "underlying type mismatch "
14142 "in enum %q#T", enumtype);
14143 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
14144 "previous definition here");
14145 enumtype = error_mark_node;
14147 else if (underlying_type && ENUM_UNDERLYING_TYPE (enumtype)
14148 && !dependent_type_p (underlying_type)
14149 && !dependent_type_p (ENUM_UNDERLYING_TYPE (enumtype))
14150 && !same_type_p (underlying_type,
14151 ENUM_UNDERLYING_TYPE (enumtype)))
14153 error_at (input_location, "different underlying type "
14154 "in enum %q#T", enumtype);
14155 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
14156 "previous definition here");
14157 underlying_type = NULL_TREE;
14161 if (!enumtype || TREE_CODE (enumtype) != ENUMERAL_TYPE
14162 || processing_template_decl)
14164 /* In case of error, make a dummy enum to allow parsing to
14165 continue. */
14166 if (enumtype == error_mark_node)
14168 name = make_anon_name ();
14169 enumtype = NULL_TREE;
14172 /* enumtype may be an ENUMERAL_TYPE if this is a redefinition
14173 of an opaque enum, or an opaque enum of an already defined
14174 enumeration (C++0x only).
14175 In any other case, it'll be NULL_TREE. */
14176 if (!enumtype)
14178 if (is_new)
14179 *is_new = true;
14181 prevtype = enumtype;
14183 /* Do not push the decl more than once, unless we need to
14184 compare underlying types at instantiation time */
14185 if (!enumtype
14186 || TREE_CODE (enumtype) != ENUMERAL_TYPE
14187 || (underlying_type
14188 && dependent_type_p (underlying_type))
14189 || (ENUM_UNDERLYING_TYPE (enumtype)
14190 && dependent_type_p (ENUM_UNDERLYING_TYPE (enumtype))))
14192 enumtype = cxx_make_type (ENUMERAL_TYPE);
14193 enumtype = pushtag (name, enumtype, /*tag_scope=*/ts_current);
14195 /* std::byte aliases anything. */
14196 if (enumtype != error_mark_node
14197 && TYPE_CONTEXT (enumtype) == std_node
14198 && !strcmp ("byte", TYPE_NAME_STRING (enumtype)))
14199 TYPE_ALIAS_SET (enumtype) = 0;
14201 else
14202 enumtype = xref_tag (enum_type, name, /*tag_scope=*/ts_current,
14203 false);
14205 if (enumtype == error_mark_node)
14206 return error_mark_node;
14208 /* The enum is considered opaque until the opening '{' of the
14209 enumerator list. */
14210 SET_OPAQUE_ENUM_P (enumtype, true);
14211 ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) = !! underlying_type;
14214 SET_SCOPED_ENUM_P (enumtype, scoped_enum_p);
14216 cplus_decl_attributes (&enumtype, attributes, (int)ATTR_FLAG_TYPE_IN_PLACE);
14218 if (underlying_type)
14220 if (ENUM_UNDERLYING_TYPE (enumtype))
14221 /* We already checked that it matches, don't change it to a different
14222 typedef variant. */;
14223 else if (CP_INTEGRAL_TYPE_P (underlying_type))
14225 copy_type_enum (enumtype, underlying_type);
14226 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
14228 else if (dependent_type_p (underlying_type))
14229 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
14230 else
14231 error ("underlying type %qT of %qT must be an integral type",
14232 underlying_type, enumtype);
14235 /* If into a template class, the returned enum is always the first
14236 declaration (opaque or not) seen. This way all the references to
14237 this type will be to the same declaration. The following ones are used
14238 only to check for definition errors. */
14239 if (prevtype && processing_template_decl)
14240 return prevtype;
14241 else
14242 return enumtype;
14245 /* After processing and defining all the values of an enumeration type,
14246 install their decls in the enumeration type.
14247 ENUMTYPE is the type object. */
14249 void
14250 finish_enum_value_list (tree enumtype)
14252 tree values;
14253 tree underlying_type;
14254 tree decl;
14255 tree value;
14256 tree minnode, maxnode;
14257 tree t;
14259 bool fixed_underlying_type_p
14260 = ENUM_UNDERLYING_TYPE (enumtype) != NULL_TREE;
14262 /* We built up the VALUES in reverse order. */
14263 TYPE_VALUES (enumtype) = nreverse (TYPE_VALUES (enumtype));
14265 /* For an enum defined in a template, just set the type of the values;
14266 all further processing is postponed until the template is
14267 instantiated. We need to set the type so that tsubst of a CONST_DECL
14268 works. */
14269 if (processing_template_decl)
14271 for (values = TYPE_VALUES (enumtype);
14272 values;
14273 values = TREE_CHAIN (values))
14274 TREE_TYPE (TREE_VALUE (values)) = enumtype;
14275 return;
14278 /* Determine the minimum and maximum values of the enumerators. */
14279 if (TYPE_VALUES (enumtype))
14281 minnode = maxnode = NULL_TREE;
14283 for (values = TYPE_VALUES (enumtype);
14284 values;
14285 values = TREE_CHAIN (values))
14287 decl = TREE_VALUE (values);
14289 /* [dcl.enum]: Following the closing brace of an enum-specifier,
14290 each enumerator has the type of its enumeration. Prior to the
14291 closing brace, the type of each enumerator is the type of its
14292 initializing value. */
14293 TREE_TYPE (decl) = enumtype;
14295 /* Update the minimum and maximum values, if appropriate. */
14296 value = DECL_INITIAL (decl);
14297 if (value == error_mark_node)
14298 value = integer_zero_node;
14299 /* Figure out what the minimum and maximum values of the
14300 enumerators are. */
14301 if (!minnode)
14302 minnode = maxnode = value;
14303 else if (tree_int_cst_lt (maxnode, value))
14304 maxnode = value;
14305 else if (tree_int_cst_lt (value, minnode))
14306 minnode = value;
14309 else
14310 /* [dcl.enum]
14312 If the enumerator-list is empty, the underlying type is as if
14313 the enumeration had a single enumerator with value 0. */
14314 minnode = maxnode = integer_zero_node;
14316 if (!fixed_underlying_type_p)
14318 /* Compute the number of bits require to represent all values of the
14319 enumeration. We must do this before the type of MINNODE and
14320 MAXNODE are transformed, since tree_int_cst_min_precision relies
14321 on the TREE_TYPE of the value it is passed. */
14322 signop sgn = tree_int_cst_sgn (minnode) >= 0 ? UNSIGNED : SIGNED;
14323 int lowprec = tree_int_cst_min_precision (minnode, sgn);
14324 int highprec = tree_int_cst_min_precision (maxnode, sgn);
14325 int precision = MAX (lowprec, highprec);
14326 unsigned int itk;
14327 bool use_short_enum;
14329 /* Determine the underlying type of the enumeration.
14331 [dcl.enum]
14333 The underlying type of an enumeration is an integral type that
14334 can represent all the enumerator values defined in the
14335 enumeration. It is implementation-defined which integral type is
14336 used as the underlying type for an enumeration except that the
14337 underlying type shall not be larger than int unless the value of
14338 an enumerator cannot fit in an int or unsigned int.
14340 We use "int" or an "unsigned int" as the underlying type, even if
14341 a smaller integral type would work, unless the user has
14342 explicitly requested that we use the smallest possible type. The
14343 user can request that for all enumerations with a command line
14344 flag, or for just one enumeration with an attribute. */
14346 use_short_enum = flag_short_enums
14347 || lookup_attribute ("packed", TYPE_ATTRIBUTES (enumtype));
14349 /* If the precision of the type was specified with an attribute and it
14350 was too small, give an error. Otherwise, use it. */
14351 if (TYPE_PRECISION (enumtype))
14353 if (precision > TYPE_PRECISION (enumtype))
14354 error ("specified mode too small for enumeral values");
14355 else
14357 use_short_enum = true;
14358 precision = TYPE_PRECISION (enumtype);
14362 for (itk = (use_short_enum ? itk_char : itk_int);
14363 itk != itk_none;
14364 itk++)
14366 underlying_type = integer_types[itk];
14367 if (underlying_type != NULL_TREE
14368 && TYPE_PRECISION (underlying_type) >= precision
14369 && TYPE_SIGN (underlying_type) == sgn)
14370 break;
14372 if (itk == itk_none)
14374 /* DR 377
14376 IF no integral type can represent all the enumerator values, the
14377 enumeration is ill-formed. */
14378 error ("no integral type can represent all of the enumerator values "
14379 "for %qT", enumtype);
14380 precision = TYPE_PRECISION (long_long_integer_type_node);
14381 underlying_type = integer_types[itk_unsigned_long_long];
14384 /* [dcl.enum]
14386 The value of sizeof() applied to an enumeration type, an object
14387 of an enumeration type, or an enumerator, is the value of sizeof()
14388 applied to the underlying type. */
14389 copy_type_enum (enumtype, underlying_type);
14391 /* Compute the minimum and maximum values for the type.
14393 [dcl.enum]
14395 For an enumeration where emin is the smallest enumerator and emax
14396 is the largest, the values of the enumeration are the values of the
14397 underlying type in the range bmin to bmax, where bmin and bmax are,
14398 respectively, the smallest and largest values of the smallest bit-
14399 field that can store emin and emax. */
14401 /* The middle-end currently assumes that types with TYPE_PRECISION
14402 narrower than their underlying type are suitably zero or sign
14403 extended to fill their mode. Similarly, it assumes that the front
14404 end assures that a value of a particular type must be within
14405 TYPE_MIN_VALUE and TYPE_MAX_VALUE.
14407 We used to set these fields based on bmin and bmax, but that led
14408 to invalid assumptions like optimizing away bounds checking. So
14409 now we just set the TYPE_PRECISION, TYPE_MIN_VALUE, and
14410 TYPE_MAX_VALUE to the values for the mode above and only restrict
14411 the ENUM_UNDERLYING_TYPE for the benefit of diagnostics. */
14412 ENUM_UNDERLYING_TYPE (enumtype)
14413 = build_distinct_type_copy (underlying_type);
14414 TYPE_PRECISION (ENUM_UNDERLYING_TYPE (enumtype)) = precision;
14415 set_min_and_max_values_for_integral_type
14416 (ENUM_UNDERLYING_TYPE (enumtype), precision, sgn);
14418 /* If -fstrict-enums, still constrain TYPE_MIN/MAX_VALUE. */
14419 if (flag_strict_enums)
14420 set_min_and_max_values_for_integral_type (enumtype, precision, sgn);
14422 else
14423 underlying_type = ENUM_UNDERLYING_TYPE (enumtype);
14425 /* Convert each of the enumerators to the type of the underlying
14426 type of the enumeration. */
14427 for (values = TYPE_VALUES (enumtype); values; values = TREE_CHAIN (values))
14429 location_t saved_location;
14431 decl = TREE_VALUE (values);
14432 saved_location = input_location;
14433 input_location = DECL_SOURCE_LOCATION (decl);
14434 if (fixed_underlying_type_p)
14435 /* If the enumeration type has a fixed underlying type, we
14436 already checked all of the enumerator values. */
14437 value = DECL_INITIAL (decl);
14438 else
14439 value = perform_implicit_conversion (underlying_type,
14440 DECL_INITIAL (decl),
14441 tf_warning_or_error);
14442 input_location = saved_location;
14444 /* Do not clobber shared ints. */
14445 if (value != error_mark_node)
14447 value = copy_node (value);
14449 TREE_TYPE (value) = enumtype;
14451 DECL_INITIAL (decl) = value;
14454 /* Fix up all variant types of this enum type. */
14455 for (t = TYPE_MAIN_VARIANT (enumtype); t; t = TYPE_NEXT_VARIANT (t))
14456 TYPE_VALUES (t) = TYPE_VALUES (enumtype);
14458 if (at_class_scope_p ()
14459 && COMPLETE_TYPE_P (current_class_type)
14460 && UNSCOPED_ENUM_P (enumtype))
14462 insert_late_enum_def_bindings (current_class_type, enumtype);
14463 /* TYPE_FIELDS needs fixup. */
14464 fixup_type_variants (current_class_type);
14467 /* Finish debugging output for this type. */
14468 rest_of_type_compilation (enumtype, namespace_bindings_p ());
14470 /* Each enumerator now has the type of its enumeration. Clear the cache
14471 so that this change in types doesn't confuse us later on. */
14472 clear_cv_and_fold_caches ();
14475 /* Finishes the enum type. This is called only the first time an
14476 enumeration is seen, be it opaque or odinary.
14477 ENUMTYPE is the type object. */
14479 void
14480 finish_enum (tree enumtype)
14482 if (processing_template_decl)
14484 if (at_function_scope_p ())
14485 add_stmt (build_min (TAG_DEFN, enumtype));
14486 return;
14489 /* If this is a forward declaration, there should not be any variants,
14490 though we can get a variant in the middle of an enum-specifier with
14491 wacky code like 'enum E { e = sizeof(const E*) };' */
14492 gcc_assert (enumtype == TYPE_MAIN_VARIANT (enumtype)
14493 && (TYPE_VALUES (enumtype)
14494 || !TYPE_NEXT_VARIANT (enumtype)));
14497 /* Build and install a CONST_DECL for an enumeration constant of the
14498 enumeration type ENUMTYPE whose NAME and VALUE (if any) are provided.
14499 Apply ATTRIBUTES if available. LOC is the location of NAME.
14500 Assignment of sequential values by default is handled here. */
14502 void
14503 build_enumerator (tree name, tree value, tree enumtype, tree attributes,
14504 location_t loc)
14506 tree decl;
14507 tree context;
14508 tree type;
14510 /* scalar_constant_value will pull out this expression, so make sure
14511 it's folded as appropriate. */
14512 if (processing_template_decl)
14513 value = fold_non_dependent_expr (value);
14515 /* If the VALUE was erroneous, pretend it wasn't there; that will
14516 result in the enum being assigned the next value in sequence. */
14517 if (value == error_mark_node)
14518 value = NULL_TREE;
14520 /* Remove no-op casts from the value. */
14521 if (value)
14522 STRIP_TYPE_NOPS (value);
14524 if (! processing_template_decl)
14526 /* Validate and default VALUE. */
14527 if (value != NULL_TREE)
14529 if (!ENUM_UNDERLYING_TYPE (enumtype))
14531 tree tmp_value = build_expr_type_conversion (WANT_INT | WANT_ENUM,
14532 value, true);
14533 if (tmp_value)
14534 value = tmp_value;
14536 else if (! INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P
14537 (TREE_TYPE (value)))
14538 value = perform_implicit_conversion_flags
14539 (ENUM_UNDERLYING_TYPE (enumtype), value, tf_warning_or_error,
14540 LOOKUP_IMPLICIT | LOOKUP_NO_NARROWING);
14542 if (value == error_mark_node)
14543 value = NULL_TREE;
14545 if (value != NULL_TREE)
14547 if (! INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P
14548 (TREE_TYPE (value)))
14550 error ("enumerator value for %qD must have integral or "
14551 "unscoped enumeration type", name);
14552 value = NULL_TREE;
14554 else
14556 value = cxx_constant_value (value);
14558 if (TREE_CODE (value) != INTEGER_CST)
14560 error ("enumerator value for %qD is not an integer "
14561 "constant", name);
14562 value = NULL_TREE;
14568 /* Default based on previous value. */
14569 if (value == NULL_TREE)
14571 if (TYPE_VALUES (enumtype))
14573 tree prev_value;
14574 bool overflowed;
14576 /* C++03 7.2/4: If no initializer is specified for the first
14577 enumerator, the type is an unspecified integral
14578 type. Otherwise the type is the same as the type of the
14579 initializing value of the preceding enumerator unless the
14580 incremented value is not representable in that type, in
14581 which case the type is an unspecified integral type
14582 sufficient to contain the incremented value. */
14583 prev_value = DECL_INITIAL (TREE_VALUE (TYPE_VALUES (enumtype)));
14584 if (error_operand_p (prev_value))
14585 value = error_mark_node;
14586 else
14588 tree type = TREE_TYPE (prev_value);
14589 signop sgn = TYPE_SIGN (type);
14590 widest_int wi = wi::add (wi::to_widest (prev_value), 1, sgn,
14591 &overflowed);
14592 if (!overflowed)
14594 bool pos = !wi::neg_p (wi, sgn);
14595 if (!wi::fits_to_tree_p (wi, type))
14597 unsigned int itk;
14598 for (itk = itk_int; itk != itk_none; itk++)
14600 type = integer_types[itk];
14601 if (type != NULL_TREE
14602 && (pos || !TYPE_UNSIGNED (type))
14603 && wi::fits_to_tree_p (wi, type))
14604 break;
14606 if (type && cxx_dialect < cxx11
14607 && itk > itk_unsigned_long)
14608 pedwarn (input_location, OPT_Wlong_long,
14609 pos ? G_("\
14610 incremented enumerator value is too large for %<unsigned long%>") : G_("\
14611 incremented enumerator value is too large for %<long%>"));
14613 if (type == NULL_TREE)
14614 overflowed = true;
14615 else
14616 value = wide_int_to_tree (type, wi);
14619 if (overflowed)
14621 error ("overflow in enumeration values at %qD", name);
14622 value = error_mark_node;
14626 else
14627 value = integer_zero_node;
14630 /* Remove no-op casts from the value. */
14631 STRIP_TYPE_NOPS (value);
14633 /* If the underlying type of the enum is fixed, check whether
14634 the enumerator values fits in the underlying type. If it
14635 does not fit, the program is ill-formed [C++0x dcl.enum]. */
14636 if (ENUM_UNDERLYING_TYPE (enumtype)
14637 && value
14638 && TREE_CODE (value) == INTEGER_CST)
14640 if (!int_fits_type_p (value, ENUM_UNDERLYING_TYPE (enumtype)))
14641 error ("enumerator value %qE is outside the range of underlying "
14642 "type %qT", value, ENUM_UNDERLYING_TYPE (enumtype));
14644 /* Convert the value to the appropriate type. */
14645 value = fold_convert (ENUM_UNDERLYING_TYPE (enumtype), value);
14649 /* C++ associates enums with global, function, or class declarations. */
14650 context = current_scope ();
14652 /* Build the actual enumeration constant. Note that the enumeration
14653 constants have the underlying type of the enum (if it is fixed)
14654 or the type of their initializer (if the underlying type of the
14655 enum is not fixed):
14657 [ C++0x dcl.enum ]
14659 If the underlying type is fixed, the type of each enumerator
14660 prior to the closing brace is the underlying type; if the
14661 initializing value of an enumerator cannot be represented by
14662 the underlying type, the program is ill-formed. If the
14663 underlying type is not fixed, the type of each enumerator is
14664 the type of its initializing value.
14666 If the underlying type is not fixed, it will be computed by
14667 finish_enum and we will reset the type of this enumerator. Of
14668 course, if we're processing a template, there may be no value. */
14669 type = value ? TREE_TYPE (value) : NULL_TREE;
14671 decl = build_decl (loc, CONST_DECL, name, type);
14673 DECL_CONTEXT (decl) = enumtype;
14674 TREE_CONSTANT (decl) = 1;
14675 TREE_READONLY (decl) = 1;
14676 DECL_INITIAL (decl) = value;
14678 if (attributes)
14679 cplus_decl_attributes (&decl, attributes, 0);
14681 if (context && context == current_class_type && !SCOPED_ENUM_P (enumtype))
14683 /* In something like `struct S { enum E { i = 7 }; };' we put `i'
14684 on the TYPE_FIELDS list for `S'. (That's so that you can say
14685 things like `S::i' later.) */
14687 /* The enumerator may be getting declared outside of its enclosing
14688 class, like so:
14690 class S { public: enum E : int; }; enum S::E : int { i = 7; };
14692 For which case we need to make sure that the access of `S::i'
14693 matches the access of `S::E'. */
14694 tree saved_cas = current_access_specifier;
14695 if (TREE_PRIVATE (TYPE_NAME (enumtype)))
14696 current_access_specifier = access_private_node;
14697 else if (TREE_PROTECTED (TYPE_NAME (enumtype)))
14698 current_access_specifier = access_protected_node;
14699 else
14700 current_access_specifier = access_public_node;
14702 finish_member_declaration (decl);
14704 current_access_specifier = saved_cas;
14706 else
14707 pushdecl (decl);
14709 /* Add this enumeration constant to the list for this type. */
14710 TYPE_VALUES (enumtype) = tree_cons (name, decl, TYPE_VALUES (enumtype));
14713 /* Look for an enumerator with the given NAME within the enumeration
14714 type ENUMTYPE. This routine is used primarily for qualified name
14715 lookup into an enumerator in C++0x, e.g.,
14717 enum class Color { Red, Green, Blue };
14719 Color color = Color::Red;
14721 Returns the value corresponding to the enumerator, or
14722 NULL_TREE if no such enumerator was found. */
14723 tree
14724 lookup_enumerator (tree enumtype, tree name)
14726 tree e;
14727 gcc_assert (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE);
14729 e = purpose_member (name, TYPE_VALUES (enumtype));
14730 return e? TREE_VALUE (e) : NULL_TREE;
14734 /* We're defining DECL. Make sure that its type is OK. */
14736 static void
14737 check_function_type (tree decl, tree current_function_parms)
14739 tree fntype = TREE_TYPE (decl);
14740 tree return_type = complete_type (TREE_TYPE (fntype));
14742 /* In a function definition, arg types must be complete. */
14743 require_complete_types_for_parms (current_function_parms);
14745 if (dependent_type_p (return_type)
14746 || type_uses_auto (return_type))
14747 return;
14748 if (!COMPLETE_OR_VOID_TYPE_P (return_type))
14750 tree args = TYPE_ARG_TYPES (fntype);
14752 error ("return type %q#T is incomplete", return_type);
14754 /* Make it return void instead. */
14755 if (TREE_CODE (fntype) == METHOD_TYPE)
14756 fntype = build_method_type_directly (TREE_TYPE (TREE_VALUE (args)),
14757 void_type_node,
14758 TREE_CHAIN (args));
14759 else
14760 fntype = build_function_type (void_type_node, args);
14761 fntype
14762 = build_exception_variant (fntype,
14763 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (decl)));
14764 fntype = (cp_build_type_attribute_variant
14765 (fntype, TYPE_ATTRIBUTES (TREE_TYPE (decl))));
14766 TREE_TYPE (decl) = fntype;
14768 else
14770 abstract_virtuals_error (decl, TREE_TYPE (fntype));
14771 maybe_warn_parm_abi (TREE_TYPE (fntype),
14772 DECL_SOURCE_LOCATION (decl));
14776 /* True iff FN is an implicitly-defined default constructor. */
14778 static bool
14779 implicit_default_ctor_p (tree fn)
14781 return (DECL_CONSTRUCTOR_P (fn)
14782 && !user_provided_p (fn)
14783 && sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (fn)));
14786 /* Clobber the contents of *this to let the back end know that the object
14787 storage is dead when we enter the constructor or leave the destructor. */
14789 static tree
14790 build_clobber_this ()
14792 /* Clobbering an empty base is pointless, and harmful if its one byte
14793 TYPE_SIZE overlays real data. */
14794 if (is_empty_class (current_class_type))
14795 return void_node;
14797 /* If we have virtual bases, clobber the whole object, but only if we're in
14798 charge. If we don't have virtual bases, clobber the as-base type so we
14799 don't mess with tail padding. */
14800 bool vbases = CLASSTYPE_VBASECLASSES (current_class_type);
14802 tree ctype = current_class_type;
14803 if (!vbases)
14804 ctype = CLASSTYPE_AS_BASE (ctype);
14806 tree clobber = build_clobber (ctype);
14808 tree thisref = current_class_ref;
14809 if (ctype != current_class_type)
14811 thisref = build_nop (build_reference_type (ctype), current_class_ptr);
14812 thisref = convert_from_reference (thisref);
14815 tree exprstmt = build2 (MODIFY_EXPR, void_type_node, thisref, clobber);
14816 if (vbases)
14817 exprstmt = build_if_in_charge (exprstmt);
14819 return exprstmt;
14822 /* Create the FUNCTION_DECL for a function definition.
14823 DECLSPECS and DECLARATOR are the parts of the declaration;
14824 they describe the function's name and the type it returns,
14825 but twisted together in a fashion that parallels the syntax of C.
14827 FLAGS is a bitwise or of SF_PRE_PARSED (indicating that the
14828 DECLARATOR is really the DECL for the function we are about to
14829 process and that DECLSPECS should be ignored), SF_INCLASS_INLINE
14830 indicating that the function is an inline defined in-class.
14832 This function creates a binding context for the function body
14833 as well as setting up the FUNCTION_DECL in current_function_decl.
14835 For C++, we must first check whether that datum makes any sense.
14836 For example, "class A local_a(1,2);" means that variable local_a
14837 is an aggregate of type A, which should have a constructor
14838 applied to it with the argument list [1, 2].
14840 On entry, DECL_INITIAL (decl1) should be NULL_TREE or error_mark_node,
14841 or may be a BLOCK if the function has been defined previously
14842 in this translation unit. On exit, DECL_INITIAL (decl1) will be
14843 error_mark_node if the function has never been defined, or
14844 a BLOCK if the function has been defined somewhere. */
14846 bool
14847 start_preparsed_function (tree decl1, tree attrs, int flags)
14849 tree ctype = NULL_TREE;
14850 tree fntype;
14851 tree restype;
14852 int doing_friend = 0;
14853 cp_binding_level *bl;
14854 tree current_function_parms;
14855 struct c_fileinfo *finfo
14856 = get_fileinfo (LOCATION_FILE (DECL_SOURCE_LOCATION (decl1)));
14857 bool honor_interface;
14859 /* Sanity check. */
14860 gcc_assert (VOID_TYPE_P (TREE_VALUE (void_list_node)));
14861 gcc_assert (TREE_CHAIN (void_list_node) == NULL_TREE);
14863 fntype = TREE_TYPE (decl1);
14864 if (TREE_CODE (fntype) == METHOD_TYPE)
14865 ctype = TYPE_METHOD_BASETYPE (fntype);
14867 /* ISO C++ 11.4/5. A friend function defined in a class is in
14868 the (lexical) scope of the class in which it is defined. */
14869 if (!ctype && DECL_FRIEND_P (decl1))
14871 ctype = DECL_FRIEND_CONTEXT (decl1);
14873 /* CTYPE could be null here if we're dealing with a template;
14874 for example, `inline friend float foo()' inside a template
14875 will have no CTYPE set. */
14876 if (ctype && TREE_CODE (ctype) != RECORD_TYPE)
14877 ctype = NULL_TREE;
14878 else
14879 doing_friend = 1;
14882 if (DECL_DECLARED_INLINE_P (decl1)
14883 && lookup_attribute ("noinline", attrs))
14884 warning_at (DECL_SOURCE_LOCATION (decl1), 0,
14885 "inline function %qD given attribute noinline", decl1);
14887 /* Handle gnu_inline attribute. */
14888 if (GNU_INLINE_P (decl1))
14890 DECL_EXTERNAL (decl1) = 1;
14891 DECL_NOT_REALLY_EXTERN (decl1) = 0;
14892 DECL_INTERFACE_KNOWN (decl1) = 1;
14893 DECL_DISREGARD_INLINE_LIMITS (decl1) = 1;
14896 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl1))
14897 /* This is a constructor, we must ensure that any default args
14898 introduced by this definition are propagated to the clones
14899 now. The clones are used directly in overload resolution. */
14900 adjust_clone_args (decl1);
14902 /* Sometimes we don't notice that a function is a static member, and
14903 build a METHOD_TYPE for it. Fix that up now. */
14904 gcc_assert (!(ctype != NULL_TREE && DECL_STATIC_FUNCTION_P (decl1)
14905 && TREE_CODE (TREE_TYPE (decl1)) == METHOD_TYPE));
14907 /* Set up current_class_type, and enter the scope of the class, if
14908 appropriate. */
14909 if (ctype)
14910 push_nested_class (ctype);
14911 else if (DECL_STATIC_FUNCTION_P (decl1))
14912 push_nested_class (DECL_CONTEXT (decl1));
14914 /* Now that we have entered the scope of the class, we must restore
14915 the bindings for any template parameters surrounding DECL1, if it
14916 is an inline member template. (Order is important; consider the
14917 case where a template parameter has the same name as a field of
14918 the class.) It is not until after this point that
14919 PROCESSING_TEMPLATE_DECL is guaranteed to be set up correctly. */
14920 if (flags & SF_INCLASS_INLINE)
14921 maybe_begin_member_template_processing (decl1);
14923 /* Effective C++ rule 15. */
14924 if (warn_ecpp
14925 && DECL_ASSIGNMENT_OPERATOR_P (decl1)
14926 && DECL_OVERLOADED_OPERATOR_IS (decl1, NOP_EXPR)
14927 && VOID_TYPE_P (TREE_TYPE (fntype)))
14928 warning (OPT_Weffc__,
14929 "%<operator=%> should return a reference to %<*this%>");
14931 /* Make the init_value nonzero so pushdecl knows this is not tentative.
14932 error_mark_node is replaced below (in poplevel) with the BLOCK. */
14933 if (!DECL_INITIAL (decl1))
14934 DECL_INITIAL (decl1) = error_mark_node;
14936 /* This function exists in static storage.
14937 (This does not mean `static' in the C sense!) */
14938 TREE_STATIC (decl1) = 1;
14940 /* We must call push_template_decl after current_class_type is set
14941 up. (If we are processing inline definitions after exiting a
14942 class scope, current_class_type will be NULL_TREE until set above
14943 by push_nested_class.) */
14944 if (processing_template_decl)
14946 tree newdecl1 = push_template_decl (decl1);
14947 if (newdecl1 == error_mark_node)
14949 if (ctype || DECL_STATIC_FUNCTION_P (decl1))
14950 pop_nested_class ();
14951 return false;
14953 decl1 = newdecl1;
14956 /* Make sure the parameter and return types are reasonable. When
14957 you declare a function, these types can be incomplete, but they
14958 must be complete when you define the function. */
14959 check_function_type (decl1, DECL_ARGUMENTS (decl1));
14961 /* Build the return declaration for the function. */
14962 restype = TREE_TYPE (fntype);
14964 if (DECL_RESULT (decl1) == NULL_TREE)
14966 tree resdecl;
14968 resdecl = build_decl (input_location, RESULT_DECL, 0, restype);
14969 DECL_ARTIFICIAL (resdecl) = 1;
14970 DECL_IGNORED_P (resdecl) = 1;
14971 DECL_RESULT (decl1) = resdecl;
14973 cp_apply_type_quals_to_decl (cp_type_quals (restype), resdecl);
14976 /* Record the decl so that the function name is defined.
14977 If we already have a decl for this name, and it is a FUNCTION_DECL,
14978 use the old decl. */
14979 if (!processing_template_decl && !(flags & SF_PRE_PARSED))
14981 /* A specialization is not used to guide overload resolution. */
14982 if (!DECL_FUNCTION_MEMBER_P (decl1)
14983 && !(DECL_USE_TEMPLATE (decl1) &&
14984 PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl1))))
14986 tree olddecl = pushdecl (decl1);
14988 if (olddecl == error_mark_node)
14989 /* If something went wrong when registering the declaration,
14990 use DECL1; we have to have a FUNCTION_DECL to use when
14991 parsing the body of the function. */
14993 else
14995 /* Otherwise, OLDDECL is either a previous declaration
14996 of the same function or DECL1 itself. */
14998 if (warn_missing_declarations
14999 && olddecl == decl1
15000 && !DECL_MAIN_P (decl1)
15001 && TREE_PUBLIC (decl1)
15002 && !DECL_DECLARED_INLINE_P (decl1))
15004 tree context;
15006 /* Check whether DECL1 is in an anonymous
15007 namespace. */
15008 for (context = DECL_CONTEXT (decl1);
15009 context;
15010 context = DECL_CONTEXT (context))
15012 if (TREE_CODE (context) == NAMESPACE_DECL
15013 && DECL_NAME (context) == NULL_TREE)
15014 break;
15017 if (context == NULL)
15018 warning_at (DECL_SOURCE_LOCATION (decl1),
15019 OPT_Wmissing_declarations,
15020 "no previous declaration for %qD", decl1);
15023 decl1 = olddecl;
15026 else
15028 /* We need to set the DECL_CONTEXT. */
15029 if (!DECL_CONTEXT (decl1) && DECL_TEMPLATE_INFO (decl1))
15030 DECL_CONTEXT (decl1) = DECL_CONTEXT (DECL_TI_TEMPLATE (decl1));
15032 fntype = TREE_TYPE (decl1);
15033 restype = TREE_TYPE (fntype);
15035 /* If #pragma weak applies, mark the decl appropriately now.
15036 The pragma only applies to global functions. Because
15037 determining whether or not the #pragma applies involves
15038 computing the mangled name for the declaration, we cannot
15039 apply the pragma until after we have merged this declaration
15040 with any previous declarations; if the original declaration
15041 has a linkage specification, that specification applies to
15042 the definition as well, and may affect the mangled name. */
15043 if (DECL_FILE_SCOPE_P (decl1))
15044 maybe_apply_pragma_weak (decl1);
15047 /* We are now in the scope of the function being defined. */
15048 current_function_decl = decl1;
15050 /* Save the parm names or decls from this function's declarator
15051 where store_parm_decls will find them. */
15052 current_function_parms = DECL_ARGUMENTS (decl1);
15054 /* Let the user know we're compiling this function. */
15055 announce_function (decl1);
15057 gcc_assert (DECL_INITIAL (decl1));
15059 /* This function may already have been parsed, in which case just
15060 return; our caller will skip over the body without parsing. */
15061 if (DECL_INITIAL (decl1) != error_mark_node)
15062 return true;
15064 /* Initialize RTL machinery. We cannot do this until
15065 CURRENT_FUNCTION_DECL and DECL_RESULT are set up. We do this
15066 even when processing a template; this is how we get
15067 CFUN set up, and our per-function variables initialized.
15068 FIXME factor out the non-RTL stuff. */
15069 bl = current_binding_level;
15070 allocate_struct_function (decl1, processing_template_decl);
15072 /* Initialize the language data structures. Whenever we start
15073 a new function, we destroy temporaries in the usual way. */
15074 cfun->language = ggc_cleared_alloc<language_function> ();
15075 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
15076 current_binding_level = bl;
15078 if (!processing_template_decl && type_uses_auto (restype))
15080 FNDECL_USED_AUTO (decl1) = true;
15081 current_function_auto_return_pattern = restype;
15084 /* Start the statement-tree, start the tree now. */
15085 DECL_SAVED_TREE (decl1) = push_stmt_list ();
15087 /* If we are (erroneously) defining a function that we have already
15088 defined before, wipe out what we knew before. */
15089 if (!DECL_PENDING_INLINE_P (decl1))
15090 DECL_SAVED_FUNCTION_DATA (decl1) = NULL;
15092 if (ctype && !doing_friend && !DECL_STATIC_FUNCTION_P (decl1))
15094 /* We know that this was set up by `grokclassfn'. We do not
15095 wait until `store_parm_decls', since evil parse errors may
15096 never get us to that point. Here we keep the consistency
15097 between `current_class_type' and `current_class_ptr'. */
15098 tree t = DECL_ARGUMENTS (decl1);
15100 gcc_assert (t != NULL_TREE && TREE_CODE (t) == PARM_DECL);
15101 gcc_assert (TYPE_PTR_P (TREE_TYPE (t)));
15103 cp_function_chain->x_current_class_ref
15104 = cp_build_fold_indirect_ref (t);
15105 /* Set this second to avoid shortcut in cp_build_indirect_ref. */
15106 cp_function_chain->x_current_class_ptr = t;
15108 /* Constructors and destructors need to know whether they're "in
15109 charge" of initializing virtual base classes. */
15110 t = DECL_CHAIN (t);
15111 if (DECL_HAS_IN_CHARGE_PARM_P (decl1))
15113 current_in_charge_parm = t;
15114 t = DECL_CHAIN (t);
15116 if (DECL_HAS_VTT_PARM_P (decl1))
15118 gcc_assert (DECL_NAME (t) == vtt_parm_identifier);
15119 current_vtt_parm = t;
15123 honor_interface = (!DECL_TEMPLATE_INSTANTIATION (decl1)
15124 /* Implicitly-defined methods (like the
15125 destructor for a class in which no destructor
15126 is explicitly declared) must not be defined
15127 until their definition is needed. So, we
15128 ignore interface specifications for
15129 compiler-generated functions. */
15130 && !DECL_ARTIFICIAL (decl1));
15132 if (processing_template_decl)
15133 /* Don't mess with interface flags. */;
15134 else if (DECL_INTERFACE_KNOWN (decl1))
15136 tree ctx = decl_function_context (decl1);
15138 if (DECL_NOT_REALLY_EXTERN (decl1))
15139 DECL_EXTERNAL (decl1) = 0;
15141 if (ctx != NULL_TREE && vague_linkage_p (ctx))
15142 /* This is a function in a local class in an extern inline
15143 or template function. */
15144 comdat_linkage (decl1);
15146 /* If this function belongs to an interface, it is public.
15147 If it belongs to someone else's interface, it is also external.
15148 This only affects inlines and template instantiations. */
15149 else if (!finfo->interface_unknown && honor_interface)
15151 if (DECL_DECLARED_INLINE_P (decl1)
15152 || DECL_TEMPLATE_INSTANTIATION (decl1))
15154 DECL_EXTERNAL (decl1)
15155 = (finfo->interface_only
15156 || (DECL_DECLARED_INLINE_P (decl1)
15157 && ! flag_implement_inlines
15158 && !DECL_VINDEX (decl1)));
15160 /* For WIN32 we also want to put these in linkonce sections. */
15161 maybe_make_one_only (decl1);
15163 else
15164 DECL_EXTERNAL (decl1) = 0;
15165 DECL_INTERFACE_KNOWN (decl1) = 1;
15166 /* If this function is in an interface implemented in this file,
15167 make sure that the back end knows to emit this function
15168 here. */
15169 if (!DECL_EXTERNAL (decl1))
15170 mark_needed (decl1);
15172 else if (finfo->interface_unknown && finfo->interface_only
15173 && honor_interface)
15175 /* If MULTIPLE_SYMBOL_SPACES is defined and we saw a #pragma
15176 interface, we will have both finfo->interface_unknown and
15177 finfo->interface_only set. In that case, we don't want to
15178 use the normal heuristics because someone will supply a
15179 #pragma implementation elsewhere, and deducing it here would
15180 produce a conflict. */
15181 comdat_linkage (decl1);
15182 DECL_EXTERNAL (decl1) = 0;
15183 DECL_INTERFACE_KNOWN (decl1) = 1;
15184 DECL_DEFER_OUTPUT (decl1) = 1;
15186 else
15188 /* This is a definition, not a reference.
15189 So clear DECL_EXTERNAL, unless this is a GNU extern inline. */
15190 if (!GNU_INLINE_P (decl1))
15191 DECL_EXTERNAL (decl1) = 0;
15193 if ((DECL_DECLARED_INLINE_P (decl1)
15194 || DECL_TEMPLATE_INSTANTIATION (decl1))
15195 && ! DECL_INTERFACE_KNOWN (decl1))
15196 DECL_DEFER_OUTPUT (decl1) = 1;
15197 else
15198 DECL_INTERFACE_KNOWN (decl1) = 1;
15201 /* Determine the ELF visibility attribute for the function. We must not
15202 do this before calling "pushdecl", as we must allow "duplicate_decls"
15203 to merge any attributes appropriately. We also need to wait until
15204 linkage is set. */
15205 if (!DECL_CLONED_FUNCTION_P (decl1))
15206 determine_visibility (decl1);
15208 if (!processing_template_decl)
15209 maybe_instantiate_noexcept (decl1);
15211 begin_scope (sk_function_parms, decl1);
15213 ++function_depth;
15215 if (DECL_DESTRUCTOR_P (decl1)
15216 || (DECL_CONSTRUCTOR_P (decl1)
15217 && targetm.cxx.cdtor_returns_this ()))
15219 cdtor_label = create_artificial_label (input_location);
15220 LABEL_DECL_CDTOR (cdtor_label) = true;
15223 start_fname_decls ();
15225 store_parm_decls (current_function_parms);
15227 if (!processing_template_decl
15228 && (flag_lifetime_dse > 1)
15229 && DECL_CONSTRUCTOR_P (decl1)
15230 && !DECL_CLONED_FUNCTION_P (decl1)
15231 /* Clobbering an empty base is harmful if it overlays real data. */
15232 && !is_empty_class (current_class_type)
15233 /* We can't clobber safely for an implicitly-defined default constructor
15234 because part of the initialization might happen before we enter the
15235 constructor, via AGGR_INIT_ZERO_FIRST (c++/68006). */
15236 && !implicit_default_ctor_p (decl1))
15237 finish_expr_stmt (build_clobber_this ());
15239 if (!processing_template_decl
15240 && DECL_CONSTRUCTOR_P (decl1)
15241 && sanitize_flags_p (SANITIZE_VPTR)
15242 && !DECL_CLONED_FUNCTION_P (decl1)
15243 && !implicit_default_ctor_p (decl1))
15244 cp_ubsan_maybe_initialize_vtbl_ptrs (current_class_ptr);
15246 start_lambda_scope (decl1);
15248 return true;
15252 /* Like start_preparsed_function, except that instead of a
15253 FUNCTION_DECL, this function takes DECLSPECS and DECLARATOR.
15255 Returns true on success. If the DECLARATOR is not suitable
15256 for a function, we return false, which tells the parser to
15257 skip the entire function. */
15259 bool
15260 start_function (cp_decl_specifier_seq *declspecs,
15261 const cp_declarator *declarator,
15262 tree attrs)
15264 tree decl1;
15266 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1, &attrs);
15267 invoke_plugin_callbacks (PLUGIN_START_PARSE_FUNCTION, decl1);
15268 if (decl1 == error_mark_node)
15269 return false;
15270 /* If the declarator is not suitable for a function definition,
15271 cause a syntax error. */
15272 if (decl1 == NULL_TREE || TREE_CODE (decl1) != FUNCTION_DECL)
15274 error ("invalid function declaration");
15275 return false;
15278 if (DECL_MAIN_P (decl1))
15279 /* main must return int. grokfndecl should have corrected it
15280 (and issued a diagnostic) if the user got it wrong. */
15281 gcc_assert (same_type_p (TREE_TYPE (TREE_TYPE (decl1)),
15282 integer_type_node));
15284 return start_preparsed_function (decl1, attrs, /*flags=*/SF_DEFAULT);
15287 /* Returns true iff an EH_SPEC_BLOCK should be created in the body of
15288 FN. */
15290 static bool
15291 use_eh_spec_block (tree fn)
15293 return (flag_exceptions && flag_enforce_eh_specs
15294 && !processing_template_decl
15295 && !type_throw_all_p (TREE_TYPE (fn))
15296 /* We insert the EH_SPEC_BLOCK only in the original
15297 function; then, it is copied automatically to the
15298 clones. */
15299 && !DECL_CLONED_FUNCTION_P (fn)
15300 /* Implicitly-generated constructors and destructors have
15301 exception specifications. However, those specifications
15302 are the union of the possible exceptions specified by the
15303 constructors/destructors for bases and members, so no
15304 unallowed exception will ever reach this function. By
15305 not creating the EH_SPEC_BLOCK we save a little memory,
15306 and we avoid spurious warnings about unreachable
15307 code. */
15308 && !DECL_DEFAULTED_FN (fn));
15311 /* Store the parameter declarations into the current function declaration.
15312 This is called after parsing the parameter declarations, before
15313 digesting the body of the function.
15315 Also install to binding contour return value identifier, if any. */
15317 static void
15318 store_parm_decls (tree current_function_parms)
15320 tree fndecl = current_function_decl;
15321 tree parm;
15323 /* This is a chain of any other decls that came in among the parm
15324 declarations. If a parm is declared with enum {foo, bar} x;
15325 then CONST_DECLs for foo and bar are put here. */
15326 tree nonparms = NULL_TREE;
15328 if (current_function_parms)
15330 /* This case is when the function was defined with an ANSI prototype.
15331 The parms already have decls, so we need not do anything here
15332 except record them as in effect
15333 and complain if any redundant old-style parm decls were written. */
15335 tree specparms = current_function_parms;
15336 tree next;
15338 /* Must clear this because it might contain TYPE_DECLs declared
15339 at class level. */
15340 current_binding_level->names = NULL;
15342 /* If we're doing semantic analysis, then we'll call pushdecl
15343 for each of these. We must do them in reverse order so that
15344 they end in the correct forward order. */
15345 specparms = nreverse (specparms);
15347 for (parm = specparms; parm; parm = next)
15349 next = DECL_CHAIN (parm);
15350 if (TREE_CODE (parm) == PARM_DECL)
15351 pushdecl (parm);
15352 else
15354 /* If we find an enum constant or a type tag,
15355 put it aside for the moment. */
15356 TREE_CHAIN (parm) = NULL_TREE;
15357 nonparms = chainon (nonparms, parm);
15361 /* Get the decls in their original chain order and record in the
15362 function. This is all and only the PARM_DECLs that were
15363 pushed into scope by the loop above. */
15364 DECL_ARGUMENTS (fndecl) = get_local_decls ();
15366 else
15367 DECL_ARGUMENTS (fndecl) = NULL_TREE;
15369 /* Now store the final chain of decls for the arguments
15370 as the decl-chain of the current lexical scope.
15371 Put the enumerators in as well, at the front so that
15372 DECL_ARGUMENTS is not modified. */
15373 current_binding_level->names = chainon (nonparms, DECL_ARGUMENTS (fndecl));
15375 if (use_eh_spec_block (current_function_decl))
15376 current_eh_spec_block = begin_eh_spec_block ();
15380 /* We have finished doing semantic analysis on DECL, but have not yet
15381 generated RTL for its body. Save away our current state, so that
15382 when we want to generate RTL later we know what to do. */
15384 static void
15385 save_function_data (tree decl)
15387 struct language_function *f;
15389 /* Save the language-specific per-function data so that we can
15390 get it back when we really expand this function. */
15391 gcc_assert (!DECL_PENDING_INLINE_P (decl));
15393 /* Make a copy. */
15394 f = ggc_alloc<language_function> ();
15395 memcpy (f, cp_function_chain, sizeof (struct language_function));
15396 DECL_SAVED_FUNCTION_DATA (decl) = f;
15398 /* Clear out the bits we don't need. */
15399 f->base.x_stmt_tree.x_cur_stmt_list = NULL;
15400 f->bindings = NULL;
15401 f->x_local_names = NULL;
15402 f->base.local_typedefs = NULL;
15406 /* Set the return value of the constructor (if present). */
15408 static void
15409 finish_constructor_body (void)
15411 tree val;
15412 tree exprstmt;
15414 if (targetm.cxx.cdtor_returns_this ())
15416 /* Any return from a constructor will end up here. */
15417 add_stmt (build_stmt (input_location, LABEL_EXPR, cdtor_label));
15419 val = DECL_ARGUMENTS (current_function_decl);
15420 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
15421 DECL_RESULT (current_function_decl), val);
15422 /* Return the address of the object. */
15423 exprstmt = build_stmt (input_location, RETURN_EXPR, val);
15424 add_stmt (exprstmt);
15428 /* Do all the processing for the beginning of a destructor; set up the
15429 vtable pointers and cleanups for bases and members. */
15431 static void
15432 begin_destructor_body (void)
15434 tree compound_stmt;
15436 /* If the CURRENT_CLASS_TYPE is incomplete, we will have already
15437 issued an error message. We still want to try to process the
15438 body of the function, but initialize_vtbl_ptrs will crash if
15439 TYPE_BINFO is NULL. */
15440 if (COMPLETE_TYPE_P (current_class_type))
15442 compound_stmt = begin_compound_stmt (0);
15443 /* Make all virtual function table pointers in non-virtual base
15444 classes point to CURRENT_CLASS_TYPE's virtual function
15445 tables. */
15446 initialize_vtbl_ptrs (current_class_ptr);
15447 finish_compound_stmt (compound_stmt);
15449 if (flag_lifetime_dse
15450 /* Clobbering an empty base is harmful if it overlays real data. */
15451 && !is_empty_class (current_class_type))
15453 if (sanitize_flags_p (SANITIZE_VPTR)
15454 && (flag_sanitize_recover & SANITIZE_VPTR) == 0
15455 && TYPE_CONTAINS_VPTR_P (current_class_type))
15457 tree binfo = TYPE_BINFO (current_class_type);
15458 tree ref
15459 = cp_build_fold_indirect_ref (current_class_ptr);
15461 tree vtbl_ptr = build_vfield_ref (ref, TREE_TYPE (binfo));
15462 tree vtbl = build_zero_cst (TREE_TYPE (vtbl_ptr));
15463 tree stmt = cp_build_modify_expr (input_location, vtbl_ptr,
15464 NOP_EXPR, vtbl,
15465 tf_warning_or_error);
15466 finish_decl_cleanup (NULL_TREE, stmt);
15468 else
15469 finish_decl_cleanup (NULL_TREE, build_clobber_this ());
15472 /* And insert cleanups for our bases and members so that they
15473 will be properly destroyed if we throw. */
15474 push_base_cleanups ();
15478 /* At the end of every destructor we generate code to delete the object if
15479 necessary. Do that now. */
15481 static void
15482 finish_destructor_body (void)
15484 tree exprstmt;
15486 /* Any return from a destructor will end up here; that way all base
15487 and member cleanups will be run when the function returns. */
15488 add_stmt (build_stmt (input_location, LABEL_EXPR, cdtor_label));
15490 if (targetm.cxx.cdtor_returns_this ())
15492 tree val;
15494 val = DECL_ARGUMENTS (current_function_decl);
15495 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
15496 DECL_RESULT (current_function_decl), val);
15497 /* Return the address of the object. */
15498 exprstmt = build_stmt (input_location, RETURN_EXPR, val);
15499 add_stmt (exprstmt);
15503 /* Do the necessary processing for the beginning of a function body, which
15504 in this case includes member-initializers, but not the catch clauses of
15505 a function-try-block. Currently, this means opening a binding level
15506 for the member-initializers (in a ctor), member cleanups (in a dtor),
15507 and capture proxies (in a lambda operator()). */
15509 tree
15510 begin_function_body (void)
15512 tree stmt;
15514 if (! FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
15515 return NULL_TREE;
15517 if (processing_template_decl)
15518 /* Do nothing now. */;
15519 else
15520 /* Always keep the BLOCK node associated with the outermost pair of
15521 curly braces of a function. These are needed for correct
15522 operation of dwarfout.c. */
15523 keep_next_level (true);
15525 stmt = begin_compound_stmt (BCS_FN_BODY);
15527 if (processing_template_decl)
15528 /* Do nothing now. */;
15529 else if (DECL_DESTRUCTOR_P (current_function_decl))
15530 begin_destructor_body ();
15532 return stmt;
15535 /* Do the processing for the end of a function body. Currently, this means
15536 closing out the cleanups for fully-constructed bases and members, and in
15537 the case of the destructor, deleting the object if desired. Again, this
15538 is only meaningful for [cd]tors, since they are the only functions where
15539 there is a significant distinction between the main body and any
15540 function catch clauses. Handling, say, main() return semantics here
15541 would be wrong, as flowing off the end of a function catch clause for
15542 main() would also need to return 0. */
15544 void
15545 finish_function_body (tree compstmt)
15547 if (compstmt == NULL_TREE)
15548 return;
15550 /* Close the block. */
15551 finish_compound_stmt (compstmt);
15553 if (processing_template_decl)
15554 /* Do nothing now. */;
15555 else if (DECL_CONSTRUCTOR_P (current_function_decl))
15556 finish_constructor_body ();
15557 else if (DECL_DESTRUCTOR_P (current_function_decl))
15558 finish_destructor_body ();
15561 /* Given a function, returns the BLOCK corresponding to the outermost level
15562 of curly braces, skipping the artificial block created for constructor
15563 initializers. */
15565 tree
15566 outer_curly_brace_block (tree fndecl)
15568 tree block = DECL_INITIAL (fndecl);
15569 if (BLOCK_OUTER_CURLY_BRACE_P (block))
15570 return block;
15571 block = BLOCK_SUBBLOCKS (block);
15572 if (BLOCK_OUTER_CURLY_BRACE_P (block))
15573 return block;
15574 block = BLOCK_SUBBLOCKS (block);
15575 gcc_assert (BLOCK_OUTER_CURLY_BRACE_P (block));
15576 return block;
15579 /* If FNDECL is a class's key method, add the class to the list of
15580 keyed classes that should be emitted. */
15582 static void
15583 record_key_method_defined (tree fndecl)
15585 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fndecl)
15586 && DECL_VIRTUAL_P (fndecl)
15587 && !processing_template_decl)
15589 tree fnclass = DECL_CONTEXT (fndecl);
15590 if (fndecl == CLASSTYPE_KEY_METHOD (fnclass))
15591 vec_safe_push (keyed_classes, fnclass);
15595 /* Subroutine of finish_function.
15596 Save the body of constexpr functions for possible
15597 future compile time evaluation. */
15599 static void
15600 maybe_save_function_definition (tree fun)
15602 if (!processing_template_decl
15603 && DECL_DECLARED_CONSTEXPR_P (fun)
15604 && !cp_function_chain->invalid_constexpr
15605 && !DECL_CLONED_FUNCTION_P (fun))
15606 register_constexpr_fundef (fun, DECL_SAVED_TREE (fun));
15609 /* Finish up a function declaration and compile that function
15610 all the way to assembler language output. The free the storage
15611 for the function definition. INLINE_P is TRUE if we just
15612 finished processing the body of an in-class inline function
15613 definition. (This processing will have taken place after the
15614 class definition is complete.) */
15616 tree
15617 finish_function (bool inline_p)
15619 tree fndecl = current_function_decl;
15620 tree fntype, ctype = NULL_TREE;
15622 /* When we get some parse errors, we can end up without a
15623 current_function_decl, so cope. */
15624 if (fndecl == NULL_TREE)
15625 return error_mark_node;
15627 finish_lambda_scope ();
15629 if (c_dialect_objc ())
15630 objc_finish_function ();
15632 record_key_method_defined (fndecl);
15634 fntype = TREE_TYPE (fndecl);
15636 /* TREE_READONLY (fndecl) = 1;
15637 This caused &foo to be of type ptr-to-const-function
15638 which then got a warning when stored in a ptr-to-function variable. */
15640 gcc_assert (building_stmt_list_p ());
15641 /* The current function is being defined, so its DECL_INITIAL should
15642 be set, and unless there's a multiple definition, it should be
15643 error_mark_node. */
15644 gcc_assert (DECL_INITIAL (fndecl) == error_mark_node);
15646 /* For a cloned function, we've already got all the code we need;
15647 there's no need to add any extra bits. */
15648 if (!DECL_CLONED_FUNCTION_P (fndecl))
15650 /* Make it so that `main' always returns 0 by default. */
15651 if (DECL_MAIN_P (current_function_decl))
15652 finish_return_stmt (integer_zero_node);
15654 if (use_eh_spec_block (current_function_decl))
15655 finish_eh_spec_block (TYPE_RAISES_EXCEPTIONS
15656 (TREE_TYPE (current_function_decl)),
15657 current_eh_spec_block);
15660 /* If we're saving up tree structure, tie off the function now. */
15661 DECL_SAVED_TREE (fndecl) = pop_stmt_list (DECL_SAVED_TREE (fndecl));
15663 finish_fname_decls ();
15665 /* If this function can't throw any exceptions, remember that. */
15666 if (!processing_template_decl
15667 && !cp_function_chain->can_throw
15668 && !flag_non_call_exceptions
15669 && !decl_replaceable_p (fndecl))
15670 TREE_NOTHROW (fndecl) = 1;
15672 /* This must come after expand_function_end because cleanups might
15673 have declarations (from inline functions) that need to go into
15674 this function's blocks. */
15676 /* If the current binding level isn't the outermost binding level
15677 for this function, either there is a bug, or we have experienced
15678 syntax errors and the statement tree is malformed. */
15679 if (current_binding_level->kind != sk_function_parms)
15681 /* Make sure we have already experienced errors. */
15682 gcc_assert (errorcount);
15684 /* Throw away the broken statement tree and extra binding
15685 levels. */
15686 DECL_SAVED_TREE (fndecl) = alloc_stmt_list ();
15688 while (current_binding_level->kind != sk_function_parms)
15690 if (current_binding_level->kind == sk_class)
15691 pop_nested_class ();
15692 else
15693 poplevel (0, 0, 0);
15696 poplevel (1, 0, 1);
15698 /* Statements should always be full-expressions at the outermost set
15699 of curly braces for a function. */
15700 gcc_assert (stmts_are_full_exprs_p ());
15702 /* If there are no return statements in a function with auto return type,
15703 the return type is void. But if the declared type is something like
15704 auto*, this is an error. */
15705 if (!processing_template_decl && FNDECL_USED_AUTO (fndecl)
15706 && TREE_TYPE (fntype) == current_function_auto_return_pattern)
15708 if (is_auto (current_function_auto_return_pattern))
15710 apply_deduced_return_type (fndecl, void_type_node);
15711 fntype = TREE_TYPE (fndecl);
15713 else if (!current_function_returns_value
15714 && !current_function_returns_null)
15716 error ("no return statements in function returning %qT",
15717 current_function_auto_return_pattern);
15718 inform (input_location, "only plain %<auto%> return type can be "
15719 "deduced to %<void%>");
15723 // If this is a concept, check that the definition is reasonable.
15724 if (DECL_DECLARED_CONCEPT_P (fndecl))
15725 check_function_concept (fndecl);
15727 /* Lambda closure members are implicitly constexpr if possible. */
15728 if (cxx_dialect >= cxx17
15729 && LAMBDA_TYPE_P (CP_DECL_CONTEXT (fndecl)))
15730 DECL_DECLARED_CONSTEXPR_P (fndecl)
15731 = ((processing_template_decl
15732 || is_valid_constexpr_fn (fndecl, /*complain*/false))
15733 && potential_constant_expression (DECL_SAVED_TREE (fndecl)));
15735 /* Save constexpr function body before it gets munged by
15736 the NRV transformation. */
15737 maybe_save_function_definition (fndecl);
15739 /* Invoke the pre-genericize plugin before we start munging things. */
15740 if (!processing_template_decl)
15741 invoke_plugin_callbacks (PLUGIN_PRE_GENERICIZE, fndecl);
15743 /* Perform delayed folding before NRV transformation. */
15744 if (!processing_template_decl)
15745 cp_fold_function (fndecl);
15747 /* Set up the named return value optimization, if we can. Candidate
15748 variables are selected in check_return_expr. */
15749 if (current_function_return_value)
15751 tree r = current_function_return_value;
15752 tree outer;
15754 if (r != error_mark_node
15755 /* This is only worth doing for fns that return in memory--and
15756 simpler, since we don't have to worry about promoted modes. */
15757 && aggregate_value_p (TREE_TYPE (TREE_TYPE (fndecl)), fndecl)
15758 /* Only allow this for variables declared in the outer scope of
15759 the function so we know that their lifetime always ends with a
15760 return; see g++.dg/opt/nrv6.C. We could be more flexible if
15761 we were to do this optimization in tree-ssa. */
15762 && (outer = outer_curly_brace_block (fndecl))
15763 && chain_member (r, BLOCK_VARS (outer)))
15764 finalize_nrv (&DECL_SAVED_TREE (fndecl), r, DECL_RESULT (fndecl));
15766 current_function_return_value = NULL_TREE;
15769 /* Remember that we were in class scope. */
15770 if (current_class_name)
15771 ctype = current_class_type;
15773 /* Must mark the RESULT_DECL as being in this function. */
15774 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
15776 /* Set the BLOCK_SUPERCONTEXT of the outermost function scope to point
15777 to the FUNCTION_DECL node itself. */
15778 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
15780 /* Save away current state, if appropriate. */
15781 if (!processing_template_decl)
15782 save_function_data (fndecl);
15784 /* Complain if there's just no return statement. */
15785 if (warn_return_type
15786 && !VOID_TYPE_P (TREE_TYPE (fntype))
15787 && !dependent_type_p (TREE_TYPE (fntype))
15788 && !current_function_returns_value && !current_function_returns_null
15789 /* Don't complain if we abort or throw. */
15790 && !current_function_returns_abnormally
15791 /* Don't complain if there's an infinite loop. */
15792 && !current_function_infinite_loop
15793 /* Don't complain if we are declared noreturn. */
15794 && !TREE_THIS_VOLATILE (fndecl)
15795 && !DECL_NAME (DECL_RESULT (fndecl))
15796 && !TREE_NO_WARNING (fndecl)
15797 /* Structor return values (if any) are set by the compiler. */
15798 && !DECL_CONSTRUCTOR_P (fndecl)
15799 && !DECL_DESTRUCTOR_P (fndecl)
15800 && targetm.warn_func_return (fndecl))
15802 warning (OPT_Wreturn_type,
15803 "no return statement in function returning non-void");
15804 TREE_NO_WARNING (fndecl) = 1;
15807 /* Store the end of the function, so that we get good line number
15808 info for the epilogue. */
15809 cfun->function_end_locus = input_location;
15811 /* Complain about parameters that are only set, but never otherwise used. */
15812 if (warn_unused_but_set_parameter
15813 && !processing_template_decl
15814 && errorcount == unused_but_set_errorcount
15815 && !DECL_CLONED_FUNCTION_P (fndecl))
15817 tree decl;
15819 for (decl = DECL_ARGUMENTS (fndecl);
15820 decl;
15821 decl = DECL_CHAIN (decl))
15822 if (TREE_USED (decl)
15823 && TREE_CODE (decl) == PARM_DECL
15824 && !DECL_READ_P (decl)
15825 && DECL_NAME (decl)
15826 && !DECL_ARTIFICIAL (decl)
15827 && !TREE_NO_WARNING (decl)
15828 && !DECL_IN_SYSTEM_HEADER (decl)
15829 && TREE_TYPE (decl) != error_mark_node
15830 && TREE_CODE (TREE_TYPE (decl)) != REFERENCE_TYPE
15831 && (!CLASS_TYPE_P (TREE_TYPE (decl))
15832 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (decl))))
15833 warning_at (DECL_SOURCE_LOCATION (decl),
15834 OPT_Wunused_but_set_parameter,
15835 "parameter %qD set but not used", decl);
15836 unused_but_set_errorcount = errorcount;
15839 /* Complain about locally defined typedefs that are not used in this
15840 function. */
15841 maybe_warn_unused_local_typedefs ();
15843 /* Possibly warn about unused parameters. */
15844 if (warn_unused_parameter
15845 && !processing_template_decl
15846 && !DECL_CLONED_FUNCTION_P (fndecl))
15847 do_warn_unused_parameter (fndecl);
15849 /* Genericize before inlining. */
15850 if (!processing_template_decl)
15852 struct language_function *f = DECL_SAVED_FUNCTION_DATA (fndecl);
15853 cp_genericize (fndecl);
15854 /* Clear out the bits we don't need. */
15855 f->x_current_class_ptr = NULL;
15856 f->x_current_class_ref = NULL;
15857 f->x_eh_spec_block = NULL;
15858 f->x_in_charge_parm = NULL;
15859 f->x_vtt_parm = NULL;
15860 f->x_return_value = NULL;
15861 f->bindings = NULL;
15862 f->extern_decl_map = NULL;
15863 f->infinite_loops = NULL;
15865 /* Clear out the bits we don't need. */
15866 local_names = NULL;
15868 /* We're leaving the context of this function, so zap cfun. It's still in
15869 DECL_STRUCT_FUNCTION, and we'll restore it in tree_rest_of_compilation. */
15870 set_cfun (NULL);
15871 current_function_decl = NULL;
15873 /* If this is an in-class inline definition, we may have to pop the
15874 bindings for the template parameters that we added in
15875 maybe_begin_member_template_processing when start_function was
15876 called. */
15877 if (inline_p)
15878 maybe_end_member_template_processing ();
15880 /* Leave the scope of the class. */
15881 if (ctype)
15882 pop_nested_class ();
15884 --function_depth;
15886 /* Clean up. */
15887 current_function_decl = NULL_TREE;
15889 invoke_plugin_callbacks (PLUGIN_FINISH_PARSE_FUNCTION, fndecl);
15890 return fndecl;
15893 /* Create the FUNCTION_DECL for a function definition.
15894 DECLSPECS and DECLARATOR are the parts of the declaration;
15895 they describe the return type and the name of the function,
15896 but twisted together in a fashion that parallels the syntax of C.
15898 This function creates a binding context for the function body
15899 as well as setting up the FUNCTION_DECL in current_function_decl.
15901 Returns a FUNCTION_DECL on success.
15903 If the DECLARATOR is not suitable for a function (it defines a datum
15904 instead), we return 0, which tells yyparse to report a parse error.
15906 May return void_type_node indicating that this method is actually
15907 a friend. See grokfield for more details.
15909 Came here with a `.pushlevel' .
15911 DO NOT MAKE ANY CHANGES TO THIS CODE WITHOUT MAKING CORRESPONDING
15912 CHANGES TO CODE IN `grokfield'. */
15914 tree
15915 grokmethod (cp_decl_specifier_seq *declspecs,
15916 const cp_declarator *declarator, tree attrlist)
15918 tree fndecl = grokdeclarator (declarator, declspecs, MEMFUNCDEF, 0,
15919 &attrlist);
15921 if (fndecl == error_mark_node)
15922 return error_mark_node;
15924 if (fndecl == NULL || TREE_CODE (fndecl) != FUNCTION_DECL)
15926 error ("invalid member function declaration");
15927 return error_mark_node;
15930 if (attrlist)
15931 cplus_decl_attributes (&fndecl, attrlist, 0);
15933 /* Pass friends other than inline friend functions back. */
15934 if (fndecl == void_type_node)
15935 return fndecl;
15937 if (DECL_IN_AGGR_P (fndecl))
15939 if (DECL_CLASS_SCOPE_P (fndecl))
15940 error ("%qD is already defined in class %qT", fndecl,
15941 DECL_CONTEXT (fndecl));
15942 return error_mark_node;
15945 check_template_shadow (fndecl);
15947 if (TREE_PUBLIC (fndecl))
15948 DECL_COMDAT (fndecl) = 1;
15949 DECL_DECLARED_INLINE_P (fndecl) = 1;
15950 DECL_NO_INLINE_WARNING_P (fndecl) = 1;
15952 /* We process method specializations in finish_struct_1. */
15953 if (processing_template_decl && !DECL_TEMPLATE_SPECIALIZATION (fndecl))
15955 fndecl = push_template_decl (fndecl);
15956 if (fndecl == error_mark_node)
15957 return fndecl;
15960 if (! DECL_FRIEND_P (fndecl))
15962 if (DECL_CHAIN (fndecl))
15964 fndecl = copy_node (fndecl);
15965 TREE_CHAIN (fndecl) = NULL_TREE;
15969 cp_finish_decl (fndecl, NULL_TREE, false, NULL_TREE, 0);
15971 DECL_IN_AGGR_P (fndecl) = 1;
15972 return fndecl;
15976 /* VAR is a VAR_DECL. If its type is incomplete, remember VAR so that
15977 we can lay it out later, when and if its type becomes complete.
15979 Also handle constexpr variables where the initializer involves
15980 an unlowered PTRMEM_CST because the class isn't complete yet. */
15982 void
15983 maybe_register_incomplete_var (tree var)
15985 gcc_assert (VAR_P (var));
15987 /* Keep track of variables with incomplete types. */
15988 if (!processing_template_decl && TREE_TYPE (var) != error_mark_node
15989 && DECL_EXTERNAL (var))
15991 tree inner_type = TREE_TYPE (var);
15993 while (TREE_CODE (inner_type) == ARRAY_TYPE)
15994 inner_type = TREE_TYPE (inner_type);
15995 inner_type = TYPE_MAIN_VARIANT (inner_type);
15997 if ((!COMPLETE_TYPE_P (inner_type) && CLASS_TYPE_P (inner_type))
15998 /* RTTI TD entries are created while defining the type_info. */
15999 || (TYPE_LANG_SPECIFIC (inner_type)
16000 && TYPE_BEING_DEFINED (inner_type)))
16002 incomplete_var iv = {var, inner_type};
16003 vec_safe_push (incomplete_vars, iv);
16005 else if (!(DECL_LANG_SPECIFIC (var) && DECL_TEMPLATE_INFO (var))
16006 && decl_constant_var_p (var)
16007 && (TYPE_PTRMEM_P (inner_type) || CLASS_TYPE_P (inner_type)))
16009 /* When the outermost open class is complete we can resolve any
16010 pointers-to-members. */
16011 tree context = outermost_open_class ();
16012 incomplete_var iv = {var, context};
16013 vec_safe_push (incomplete_vars, iv);
16018 /* Called when a class type (given by TYPE) is defined. If there are
16019 any existing VAR_DECLs whose type has been completed by this
16020 declaration, update them now. */
16022 void
16023 complete_vars (tree type)
16025 unsigned ix;
16026 incomplete_var *iv;
16028 for (ix = 0; vec_safe_iterate (incomplete_vars, ix, &iv); )
16030 if (same_type_p (type, iv->incomplete_type))
16032 tree var = iv->decl;
16033 tree type = TREE_TYPE (var);
16035 if (type != error_mark_node
16036 && (TYPE_MAIN_VARIANT (strip_array_types (type))
16037 == iv->incomplete_type))
16039 /* Complete the type of the variable. The VAR_DECL itself
16040 will be laid out in expand_expr. */
16041 complete_type (type);
16042 cp_apply_type_quals_to_decl (cp_type_quals (type), var);
16045 /* Remove this entry from the list. */
16046 incomplete_vars->unordered_remove (ix);
16048 else
16049 ix++;
16052 /* Check for pending declarations which may have abstract type. */
16053 complete_type_check_abstract (type);
16056 /* If DECL is of a type which needs a cleanup, build and return an
16057 expression to perform that cleanup here. Return NULL_TREE if no
16058 cleanup need be done. DECL can also be a _REF when called from
16059 split_nonconstant_init_1. */
16061 tree
16062 cxx_maybe_build_cleanup (tree decl, tsubst_flags_t complain)
16064 tree type;
16065 tree attr;
16066 tree cleanup;
16068 /* Assume no cleanup is required. */
16069 cleanup = NULL_TREE;
16071 if (error_operand_p (decl))
16072 return cleanup;
16074 /* Handle "__attribute__((cleanup))". We run the cleanup function
16075 before the destructor since the destructor is what actually
16076 terminates the lifetime of the object. */
16077 if (DECL_P (decl))
16078 attr = lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl));
16079 else
16080 attr = NULL_TREE;
16081 if (attr)
16083 tree id;
16084 tree fn;
16085 tree arg;
16087 /* Get the name specified by the user for the cleanup function. */
16088 id = TREE_VALUE (TREE_VALUE (attr));
16089 /* Look up the name to find the cleanup function to call. It is
16090 important to use lookup_name here because that is what is
16091 used in c-common.c:handle_cleanup_attribute when performing
16092 initial checks on the attribute. Note that those checks
16093 include ensuring that the function found is not an overloaded
16094 function, or an object with an overloaded call operator,
16095 etc.; we can rely on the fact that the function found is an
16096 ordinary FUNCTION_DECL. */
16097 fn = lookup_name (id);
16098 arg = build_address (decl);
16099 if (!mark_used (decl, complain) && !(complain & tf_error))
16100 return error_mark_node;
16101 cleanup = cp_build_function_call_nary (fn, complain, arg, NULL_TREE);
16102 if (cleanup == error_mark_node)
16103 return error_mark_node;
16105 /* Handle ordinary C++ destructors. */
16106 type = TREE_TYPE (decl);
16107 if (type_build_dtor_call (type))
16109 int flags = LOOKUP_NORMAL|LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR;
16110 tree addr;
16111 tree call;
16113 if (TREE_CODE (type) == ARRAY_TYPE)
16114 addr = decl;
16115 else
16116 addr = build_address (decl);
16118 call = build_delete (TREE_TYPE (addr), addr,
16119 sfk_complete_destructor, flags, 0, complain);
16120 if (call == error_mark_node)
16121 cleanup = error_mark_node;
16122 else if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
16123 /* Discard the call. */;
16124 else if (cleanup)
16125 cleanup = cp_build_compound_expr (cleanup, call, complain);
16126 else
16127 cleanup = call;
16130 /* build_delete sets the location of the destructor call to the
16131 current location, even though the destructor is going to be
16132 called later, at the end of the current scope. This can lead to
16133 a "jumpy" behavior for users of debuggers when they step around
16134 the end of the block. So let's unset the location of the
16135 destructor call instead. */
16136 protected_set_expr_location (cleanup, UNKNOWN_LOCATION);
16138 if (cleanup
16139 && DECL_P (decl)
16140 && !lookup_attribute ("warn_unused", TYPE_ATTRIBUTES (TREE_TYPE (decl)))
16141 /* Treat objects with destructors as used; the destructor may do
16142 something substantive. */
16143 && !mark_used (decl, complain) && !(complain & tf_error))
16144 return error_mark_node;
16146 return cleanup;
16150 /* Return the FUNCTION_TYPE that corresponds to MEMFNTYPE, which can be a
16151 FUNCTION_DECL, METHOD_TYPE, FUNCTION_TYPE, pointer or reference to
16152 METHOD_TYPE or FUNCTION_TYPE, or pointer to member function. */
16154 tree
16155 static_fn_type (tree memfntype)
16157 tree fntype;
16158 tree args;
16160 if (TYPE_PTRMEMFUNC_P (memfntype))
16161 memfntype = TYPE_PTRMEMFUNC_FN_TYPE (memfntype);
16162 if (POINTER_TYPE_P (memfntype)
16163 || TREE_CODE (memfntype) == FUNCTION_DECL)
16164 memfntype = TREE_TYPE (memfntype);
16165 if (TREE_CODE (memfntype) == FUNCTION_TYPE)
16166 return memfntype;
16167 gcc_assert (TREE_CODE (memfntype) == METHOD_TYPE);
16168 args = TYPE_ARG_TYPES (memfntype);
16169 cp_ref_qualifier rqual = type_memfn_rqual (memfntype);
16170 fntype = build_function_type (TREE_TYPE (memfntype), TREE_CHAIN (args));
16171 fntype = apply_memfn_quals (fntype, type_memfn_quals (memfntype), rqual);
16172 fntype = (cp_build_type_attribute_variant
16173 (fntype, TYPE_ATTRIBUTES (memfntype)));
16174 fntype = (build_exception_variant
16175 (fntype, TYPE_RAISES_EXCEPTIONS (memfntype)));
16176 if (TYPE_HAS_LATE_RETURN_TYPE (memfntype))
16177 TYPE_HAS_LATE_RETURN_TYPE (fntype) = 1;
16178 return fntype;
16181 /* DECL was originally constructed as a non-static member function,
16182 but turned out to be static. Update it accordingly. */
16184 void
16185 revert_static_member_fn (tree decl)
16187 tree stype = static_fn_type (decl);
16188 cp_cv_quals quals = type_memfn_quals (stype);
16189 cp_ref_qualifier rqual = type_memfn_rqual (stype);
16191 if (quals != TYPE_UNQUALIFIED || rqual != REF_QUAL_NONE)
16192 stype = apply_memfn_quals (stype, TYPE_UNQUALIFIED, REF_QUAL_NONE);
16194 TREE_TYPE (decl) = stype;
16196 if (DECL_ARGUMENTS (decl))
16197 DECL_ARGUMENTS (decl) = DECL_CHAIN (DECL_ARGUMENTS (decl));
16198 DECL_STATIC_FUNCTION_P (decl) = 1;
16201 /* Return which tree structure is used by T, or TS_CP_GENERIC if T is
16202 one of the language-independent trees. */
16204 enum cp_tree_node_structure_enum
16205 cp_tree_node_structure (union lang_tree_node * t)
16207 switch (TREE_CODE (&t->generic))
16209 case DEFAULT_ARG: return TS_CP_DEFAULT_ARG;
16210 case DEFERRED_NOEXCEPT: return TS_CP_DEFERRED_NOEXCEPT;
16211 case IDENTIFIER_NODE: return TS_CP_IDENTIFIER;
16212 case OVERLOAD: return TS_CP_OVERLOAD;
16213 case TEMPLATE_PARM_INDEX: return TS_CP_TPI;
16214 case PTRMEM_CST: return TS_CP_PTRMEM;
16215 case BASELINK: return TS_CP_BASELINK;
16216 case TEMPLATE_DECL: return TS_CP_TEMPLATE_DECL;
16217 case STATIC_ASSERT: return TS_CP_STATIC_ASSERT;
16218 case ARGUMENT_PACK_SELECT: return TS_CP_ARGUMENT_PACK_SELECT;
16219 case TRAIT_EXPR: return TS_CP_TRAIT_EXPR;
16220 case LAMBDA_EXPR: return TS_CP_LAMBDA_EXPR;
16221 case TEMPLATE_INFO: return TS_CP_TEMPLATE_INFO;
16222 case CONSTRAINT_INFO: return TS_CP_CONSTRAINT_INFO;
16223 case USERDEF_LITERAL: return TS_CP_USERDEF_LITERAL;
16224 default: return TS_CP_GENERIC;
16228 /* Build the void_list_node (void_type_node having been created). */
16229 tree
16230 build_void_list_node (void)
16232 tree t = build_tree_list (NULL_TREE, void_type_node);
16233 return t;
16236 bool
16237 cp_missing_noreturn_ok_p (tree decl)
16239 /* A missing noreturn is ok for the `main' function. */
16240 return DECL_MAIN_P (decl);
16243 /* Return the decl used to identify the COMDAT group into which DECL should
16244 be placed. */
16246 tree
16247 cxx_comdat_group (tree decl)
16249 /* Virtual tables, construction virtual tables, and virtual table
16250 tables all go in a single COMDAT group, named after the primary
16251 virtual table. */
16252 if (VAR_P (decl) && DECL_VTABLE_OR_VTT_P (decl))
16253 decl = CLASSTYPE_VTABLES (DECL_CONTEXT (decl));
16254 /* For all other DECLs, the COMDAT group is the mangled name of the
16255 declaration itself. */
16256 else
16258 while (DECL_THUNK_P (decl))
16260 /* If TARGET_USE_LOCAL_THUNK_ALIAS_P, use_thunk puts the thunk
16261 into the same section as the target function. In that case
16262 we must return target's name. */
16263 tree target = THUNK_TARGET (decl);
16264 if (TARGET_USE_LOCAL_THUNK_ALIAS_P (target)
16265 && DECL_SECTION_NAME (target) != NULL
16266 && DECL_ONE_ONLY (target))
16267 decl = target;
16268 else
16269 break;
16273 return decl;
16276 /* Returns the return type for FN as written by the user, which may include
16277 a placeholder for a deduced return type. */
16279 tree
16280 fndecl_declared_return_type (tree fn)
16282 fn = STRIP_TEMPLATE (fn);
16283 if (FNDECL_USED_AUTO (fn))
16285 struct language_function *f = NULL;
16286 if (DECL_STRUCT_FUNCTION (fn))
16287 f = DECL_STRUCT_FUNCTION (fn)->language;
16288 if (f == NULL)
16289 f = DECL_SAVED_FUNCTION_DATA (fn);
16290 return f->x_auto_return_pattern;
16292 return TREE_TYPE (TREE_TYPE (fn));
16295 /* Returns true iff DECL is a variable or function declared with an auto type
16296 that has not yet been deduced to a real type. */
16298 bool
16299 undeduced_auto_decl (tree decl)
16301 if (cxx_dialect < cxx11)
16302 return false;
16303 return ((VAR_OR_FUNCTION_DECL_P (decl)
16304 || TREE_CODE (decl) == TEMPLATE_DECL)
16305 && type_uses_auto (TREE_TYPE (decl)));
16308 /* Complain if DECL has an undeduced return type. */
16310 bool
16311 require_deduced_type (tree decl, tsubst_flags_t complain)
16313 if (undeduced_auto_decl (decl))
16315 if (complain & tf_error)
16316 error ("use of %qD before deduction of %<auto%>", decl);
16317 return false;
16319 return true;
16322 #include "gt-cp-decl.h"