67c4521e98c70e6fe2718a54776b229a5ea6a3c7
[gcc.git] / gcc / cp / decl.c
1 /* Process declarations and variables for -*- C++ -*- compiler.
2 Copyright (C) 1988-2019 Free Software Foundation, Inc.
3 Contributed by Michael Tiemann (tiemann@cygnus.com)
4
5 This file is part of GCC.
6
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.
11
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.
16
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/>. */
20
21
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. */
25
26 /* ??? not all decl nodes are given the most useful possible
27 line numbers. For example, the CONST_DECLs for enum values. */
28
29 #include "config.h"
30 #include "system.h"
31 #include "coretypes.h"
32 #include "target.h"
33 #include "c-family/c-target.h"
34 #include "cp-tree.h"
35 #include "timevar.h"
36 #include "stringpool.h"
37 #include "cgraph.h"
38 #include "stor-layout.h"
39 #include "varasm.h"
40 #include "attribs.h"
41 #include "flags.h"
42 #include "tree-iterator.h"
43 #include "decl.h"
44 #include "intl.h"
45 #include "toplev.h"
46 #include "c-family/c-objc.h"
47 #include "c-family/c-pragma.h"
48 #include "c-family/c-ubsan.h"
49 #include "debug.h"
50 #include "plugin.h"
51 #include "builtins.h"
52 #include "gimplify.h"
53 #include "asan.h"
54 #include "gcc-rich-location.h"
55 #include "langhooks.h"
56
57 /* Possible cases of bad specifiers type used by bad_specifiers. */
58 enum bad_spec_place {
59 BSP_VAR, /* variable */
60 BSP_PARM, /* parameter */
61 BSP_TYPE, /* type */
62 BSP_FIELD /* field */
63 };
64
65 static const char *redeclaration_error_message (tree, tree);
66
67 static int decl_jump_unsafe (tree);
68 static void require_complete_types_for_parms (tree);
69 static tree grok_reference_init (tree, tree, tree, int);
70 static tree grokvardecl (tree, tree, tree, const cp_decl_specifier_seq *,
71 int, int, int, bool, int, tree, location_t);
72 static void check_static_variable_definition (tree, tree);
73 static void record_unknown_type (tree, const char *);
74 static tree builtin_function_1 (tree, tree, bool);
75 static int member_function_or_else (tree, tree, enum overload_flags);
76 static tree local_variable_p_walkfn (tree *, int *, void *);
77 static const char *tag_name (enum tag_types);
78 static tree lookup_and_check_tag (enum tag_types, tree, tag_scope, bool);
79 static void maybe_deduce_size_from_array_init (tree, tree);
80 static void layout_var_decl (tree);
81 static tree check_initializer (tree, tree, int, vec<tree, va_gc> **);
82 static void make_rtl_for_nonlocal_decl (tree, tree, const char *);
83 static void 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, location_t);
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);
103 static location_t smallest_type_location (const cp_decl_specifier_seq*);
104
105 /* The following symbols are subsumed in the cp_global_trees array, and
106 listed here individually for documentation purposes.
107
108 C++ extensions
109 tree wchar_decl_node;
110
111 tree vtable_entry_type;
112 tree delta_type_node;
113 tree __t_desc_type_node;
114
115 tree class_type_node;
116 tree unknown_type_node;
117
118 Array type `vtable_entry_type[]'
119
120 tree vtbl_type_node;
121 tree vtbl_ptr_type_node;
122
123 Namespaces,
124
125 tree std_node;
126 tree abi_node;
127
128 A FUNCTION_DECL which can call `abort'. Not necessarily the
129 one that the user will declare, but sufficient to be called
130 by routines that want to abort the program.
131
132 tree abort_fndecl;
133
134 Used by RTTI
135 tree type_info_type_node, tinfo_decl_id, tinfo_decl_type;
136 tree tinfo_var_id; */
137
138 tree cp_global_trees[CPTI_MAX];
139
140 /* A list of objects which have constructors or destructors
141 which reside in the global scope. The decl is stored in
142 the TREE_VALUE slot and the initializer is stored
143 in the TREE_PURPOSE slot. */
144 tree static_aggregates;
145
146 /* Like static_aggregates, but for thread_local variables. */
147 tree tls_aggregates;
148
149 /* -- end of C++ */
150
151 /* A node for the integer constant 2. */
152
153 tree integer_two_node;
154
155 /* vector of static decls. */
156 vec<tree, va_gc> *static_decls;
157
158 /* vector of keyed classes. */
159 vec<tree, va_gc> *keyed_classes;
160
161 /* Used only for jumps to as-yet undefined labels, since jumps to
162 defined labels can have their validity checked immediately. */
163
164 struct GTY((chain_next ("%h.next"))) named_label_use_entry {
165 struct named_label_use_entry *next;
166 /* The binding level to which this entry is *currently* attached.
167 This is initially the binding level in which the goto appeared,
168 but is modified as scopes are closed. */
169 cp_binding_level *binding_level;
170 /* The head of the names list that was current when the goto appeared,
171 or the inner scope popped. These are the decls that will *not* be
172 skipped when jumping to the label. */
173 tree names_in_scope;
174 /* The location of the goto, for error reporting. */
175 location_t o_goto_locus;
176 /* True if an OpenMP structured block scope has been closed since
177 the goto appeared. This means that the branch from the label will
178 illegally exit an OpenMP scope. */
179 bool in_omp_scope;
180 };
181
182 /* A list of all LABEL_DECLs in the function that have names. Here so
183 we can clear out their names' definitions at the end of the
184 function, and so we can check the validity of jumps to these labels. */
185
186 struct GTY((for_user)) named_label_entry {
187
188 tree name; /* Name of decl. */
189
190 tree label_decl; /* LABEL_DECL, unless deleted local label. */
191
192 named_label_entry *outer; /* Outer shadowed chain. */
193
194 /* The binding level to which the label is *currently* attached.
195 This is initially set to the binding level in which the label
196 is defined, but is modified as scopes are closed. */
197 cp_binding_level *binding_level;
198
199 /* The head of the names list that was current when the label was
200 defined, or the inner scope popped. These are the decls that will
201 be skipped when jumping to the label. */
202 tree names_in_scope;
203
204 /* A vector of all decls from all binding levels that would be
205 crossed by a backward branch to the label. */
206 vec<tree, va_gc> *bad_decls;
207
208 /* A list of uses of the label, before the label is defined. */
209 named_label_use_entry *uses;
210
211 /* The following bits are set after the label is defined, and are
212 updated as scopes are popped. They indicate that a jump to the
213 label will illegally enter a scope of the given flavor. */
214 bool in_try_scope;
215 bool in_catch_scope;
216 bool in_omp_scope;
217 bool in_transaction_scope;
218 bool in_constexpr_if;
219 };
220
221 #define named_labels cp_function_chain->x_named_labels
222 \f
223 /* The number of function bodies which we are currently processing.
224 (Zero if we are at namespace scope, one inside the body of a
225 function, two inside the body of a function in a local class, etc.) */
226 int function_depth;
227
228 /* Whether the exception-specifier is part of a function type (i.e. C++17). */
229 bool flag_noexcept_type;
230
231 /* States indicating how grokdeclarator() should handle declspecs marked
232 with __attribute__((deprecated)). An object declared as
233 __attribute__((deprecated)) suppresses warnings of uses of other
234 deprecated items. */
235 enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
236
237 \f
238 /* A list of VAR_DECLs whose type was incomplete at the time the
239 variable was declared. */
240
241 struct GTY(()) incomplete_var {
242 tree decl;
243 tree incomplete_type;
244 };
245
246
247 static GTY(()) vec<incomplete_var, va_gc> *incomplete_vars;
248 \f
249 /* Returns the kind of template specialization we are currently
250 processing, given that it's declaration contained N_CLASS_SCOPES
251 explicit scope qualifications. */
252
253 tmpl_spec_kind
254 current_tmpl_spec_kind (int n_class_scopes)
255 {
256 int n_template_parm_scopes = 0;
257 int seen_specialization_p = 0;
258 int innermost_specialization_p = 0;
259 cp_binding_level *b;
260
261 /* Scan through the template parameter scopes. */
262 for (b = current_binding_level;
263 b->kind == sk_template_parms;
264 b = b->level_chain)
265 {
266 /* If we see a specialization scope inside a parameter scope,
267 then something is wrong. That corresponds to a declaration
268 like:
269
270 template <class T> template <> ...
271
272 which is always invalid since [temp.expl.spec] forbids the
273 specialization of a class member template if the enclosing
274 class templates are not explicitly specialized as well. */
275 if (b->explicit_spec_p)
276 {
277 if (n_template_parm_scopes == 0)
278 innermost_specialization_p = 1;
279 else
280 seen_specialization_p = 1;
281 }
282 else if (seen_specialization_p == 1)
283 return tsk_invalid_member_spec;
284
285 ++n_template_parm_scopes;
286 }
287
288 /* Handle explicit instantiations. */
289 if (processing_explicit_instantiation)
290 {
291 if (n_template_parm_scopes != 0)
292 /* We've seen a template parameter list during an explicit
293 instantiation. For example:
294
295 template <class T> template void f(int);
296
297 This is erroneous. */
298 return tsk_invalid_expl_inst;
299 else
300 return tsk_expl_inst;
301 }
302
303 if (n_template_parm_scopes < n_class_scopes)
304 /* We've not seen enough template headers to match all the
305 specialized classes present. For example:
306
307 template <class T> void R<T>::S<T>::f(int);
308
309 This is invalid; there needs to be one set of template
310 parameters for each class. */
311 return tsk_insufficient_parms;
312 else if (n_template_parm_scopes == n_class_scopes)
313 /* We're processing a non-template declaration (even though it may
314 be a member of a template class.) For example:
315
316 template <class T> void S<T>::f(int);
317
318 The `class T' matches the `S<T>', leaving no template headers
319 corresponding to the `f'. */
320 return tsk_none;
321 else if (n_template_parm_scopes > n_class_scopes + 1)
322 /* We've got too many template headers. For example:
323
324 template <> template <class T> void f (T);
325
326 There need to be more enclosing classes. */
327 return tsk_excessive_parms;
328 else
329 /* This must be a template. It's of the form:
330
331 template <class T> template <class U> void S<T>::f(U);
332
333 This is a specialization if the innermost level was a
334 specialization; otherwise it's just a definition of the
335 template. */
336 return innermost_specialization_p ? tsk_expl_spec : tsk_template;
337 }
338
339 /* Exit the current scope. */
340
341 void
342 finish_scope (void)
343 {
344 poplevel (0, 0, 0);
345 }
346
347 /* When a label goes out of scope, check to see if that label was used
348 in a valid manner, and issue any appropriate warnings or errors. */
349
350 static void
351 check_label_used (tree label)
352 {
353 if (!processing_template_decl)
354 {
355 if (DECL_INITIAL (label) == NULL_TREE)
356 {
357 location_t location;
358
359 error ("label %q+D used but not defined", label);
360 location = input_location;
361 /* FIXME want (LOCATION_FILE (input_location), (line)0) */
362 /* Avoid crashing later. */
363 define_label (location, DECL_NAME (label));
364 }
365 else
366 warn_for_unused_label (label);
367 }
368 }
369
370 /* Helper function to sort named label entries in a vector by DECL_UID. */
371
372 static int
373 sort_labels (const void *a, const void *b)
374 {
375 tree label1 = *(tree const *) a;
376 tree label2 = *(tree const *) b;
377
378 /* DECL_UIDs can never be equal. */
379 return DECL_UID (label1) > DECL_UID (label2) ? -1 : +1;
380 }
381
382 /* At the end of a function, all labels declared within the function
383 go out of scope. BLOCK is the top-level block for the
384 function. */
385
386 static void
387 pop_labels (tree block)
388 {
389 if (!named_labels)
390 return;
391
392 /* We need to add the labels to the block chain, so debug
393 information is emitted. But, we want the order to be stable so
394 need to sort them first. Otherwise the debug output could be
395 randomly ordered. I guess it's mostly stable, unless the hash
396 table implementation changes. */
397 auto_vec<tree, 32> labels (named_labels->elements ());
398 hash_table<named_label_hash>::iterator end (named_labels->end ());
399 for (hash_table<named_label_hash>::iterator iter
400 (named_labels->begin ()); iter != end; ++iter)
401 {
402 named_label_entry *ent = *iter;
403
404 gcc_checking_assert (!ent->outer);
405 if (ent->label_decl)
406 labels.quick_push (ent->label_decl);
407 ggc_free (ent);
408 }
409 named_labels = NULL;
410 labels.qsort (sort_labels);
411
412 while (labels.length ())
413 {
414 tree label = labels.pop ();
415
416 DECL_CHAIN (label) = BLOCK_VARS (block);
417 BLOCK_VARS (block) = label;
418
419 check_label_used (label);
420 }
421 }
422
423 /* At the end of a block with local labels, restore the outer definition. */
424
425 static void
426 pop_local_label (tree id, tree label)
427 {
428 check_label_used (label);
429 named_label_entry **slot = named_labels->find_slot_with_hash
430 (id, IDENTIFIER_HASH_VALUE (id), NO_INSERT);
431 named_label_entry *ent = *slot;
432
433 if (ent->outer)
434 ent = ent->outer;
435 else
436 {
437 ent = ggc_cleared_alloc<named_label_entry> ();
438 ent->name = id;
439 }
440 *slot = ent;
441 }
442
443 /* The following two routines are used to interface to Objective-C++.
444 The binding level is purposely treated as an opaque type. */
445
446 void *
447 objc_get_current_scope (void)
448 {
449 return current_binding_level;
450 }
451
452 /* The following routine is used by the NeXT-style SJLJ exceptions;
453 variables get marked 'volatile' so as to not be clobbered by
454 _setjmp()/_longjmp() calls. All variables in the current scope,
455 as well as parent scopes up to (but not including) ENCLOSING_BLK
456 shall be thusly marked. */
457
458 void
459 objc_mark_locals_volatile (void *enclosing_blk)
460 {
461 cp_binding_level *scope;
462
463 for (scope = current_binding_level;
464 scope && scope != enclosing_blk;
465 scope = scope->level_chain)
466 {
467 tree decl;
468
469 for (decl = scope->names; decl; decl = TREE_CHAIN (decl))
470 objc_volatilize_decl (decl);
471
472 /* Do not climb up past the current function. */
473 if (scope->kind == sk_function_parms)
474 break;
475 }
476 }
477
478 /* True if B is the level for the condition of a constexpr if. */
479
480 static bool
481 level_for_constexpr_if (cp_binding_level *b)
482 {
483 return (b->kind == sk_cond && b->this_entity
484 && TREE_CODE (b->this_entity) == IF_STMT
485 && IF_STMT_CONSTEXPR_P (b->this_entity));
486 }
487
488 /* Update data for defined and undefined labels when leaving a scope. */
489
490 int
491 poplevel_named_label_1 (named_label_entry **slot, cp_binding_level *bl)
492 {
493 named_label_entry *ent = *slot;
494 cp_binding_level *obl = bl->level_chain;
495
496 if (ent->binding_level == bl)
497 {
498 tree decl;
499
500 /* ENT->NAMES_IN_SCOPE may contain a mixture of DECLs and
501 TREE_LISTs representing OVERLOADs, so be careful. */
502 for (decl = ent->names_in_scope; decl; decl = (DECL_P (decl)
503 ? DECL_CHAIN (decl)
504 : TREE_CHAIN (decl)))
505 if (decl_jump_unsafe (decl))
506 vec_safe_push (ent->bad_decls, decl);
507
508 ent->binding_level = obl;
509 ent->names_in_scope = obl->names;
510 switch (bl->kind)
511 {
512 case sk_try:
513 ent->in_try_scope = true;
514 break;
515 case sk_catch:
516 ent->in_catch_scope = true;
517 break;
518 case sk_omp:
519 ent->in_omp_scope = true;
520 break;
521 case sk_transaction:
522 ent->in_transaction_scope = true;
523 break;
524 case sk_block:
525 if (level_for_constexpr_if (bl->level_chain))
526 ent->in_constexpr_if = true;
527 break;
528 default:
529 break;
530 }
531 }
532 else if (ent->uses)
533 {
534 struct named_label_use_entry *use;
535
536 for (use = ent->uses; use ; use = use->next)
537 if (use->binding_level == bl)
538 {
539 use->binding_level = obl;
540 use->names_in_scope = obl->names;
541 if (bl->kind == sk_omp)
542 use->in_omp_scope = true;
543 }
544 }
545
546 return 1;
547 }
548
549 /* Saved errorcount to avoid -Wunused-but-set-{parameter,variable} warnings
550 when errors were reported, except for -Werror-unused-but-set-*. */
551 static int unused_but_set_errorcount;
552
553 /* Exit a binding level.
554 Pop the level off, and restore the state of the identifier-decl mappings
555 that were in effect when this level was entered.
556
557 If KEEP == 1, this level had explicit declarations, so
558 and create a "block" (a BLOCK node) for the level
559 to record its declarations and subblocks for symbol table output.
560
561 If FUNCTIONBODY is nonzero, this level is the body of a function,
562 so create a block as if KEEP were set and also clear out all
563 label names.
564
565 If REVERSE is nonzero, reverse the order of decls before putting
566 them into the BLOCK. */
567
568 tree
569 poplevel (int keep, int reverse, int functionbody)
570 {
571 tree link;
572 /* The chain of decls was accumulated in reverse order.
573 Put it into forward order, just for cleanliness. */
574 tree decls;
575 tree subblocks;
576 tree block;
577 tree decl;
578 scope_kind kind;
579
580 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
581 restart:
582
583 block = NULL_TREE;
584
585 gcc_assert (current_binding_level->kind != sk_class
586 && current_binding_level->kind != sk_namespace);
587
588 if (current_binding_level->kind == sk_cleanup)
589 functionbody = 0;
590 subblocks = functionbody >= 0 ? current_binding_level->blocks : 0;
591
592 gcc_assert (!vec_safe_length (current_binding_level->class_shadowed));
593
594 /* We used to use KEEP == 2 to indicate that the new block should go
595 at the beginning of the list of blocks at this binding level,
596 rather than the end. This hack is no longer used. */
597 gcc_assert (keep == 0 || keep == 1);
598
599 if (current_binding_level->keep)
600 keep = 1;
601
602 /* Any uses of undefined labels, and any defined labels, now operate
603 under constraints of next binding contour. */
604 if (cfun && !functionbody && named_labels)
605 named_labels->traverse<cp_binding_level *, poplevel_named_label_1>
606 (current_binding_level);
607
608 /* Get the decls in the order they were written.
609 Usually current_binding_level->names is in reverse order.
610 But parameter decls were previously put in forward order. */
611
612 decls = current_binding_level->names;
613 if (reverse)
614 {
615 decls = nreverse (decls);
616 current_binding_level->names = decls;
617 }
618
619 /* If there were any declarations or structure tags in that level,
620 or if this level is a function body,
621 create a BLOCK to record them for the life of this function. */
622 block = NULL_TREE;
623 /* Avoid function body block if possible. */
624 if (functionbody && subblocks && BLOCK_CHAIN (subblocks) == NULL_TREE)
625 keep = 0;
626 else if (keep == 1 || functionbody)
627 block = make_node (BLOCK);
628 if (block != NULL_TREE)
629 {
630 BLOCK_VARS (block) = decls;
631 BLOCK_SUBBLOCKS (block) = subblocks;
632 }
633
634 /* In each subblock, record that this is its superior. */
635 if (keep >= 0)
636 for (link = subblocks; link; link = BLOCK_CHAIN (link))
637 BLOCK_SUPERCONTEXT (link) = block;
638
639 /* Before we remove the declarations first check for unused variables. */
640 if ((warn_unused_variable || warn_unused_but_set_variable)
641 && current_binding_level->kind != sk_template_parms
642 && !processing_template_decl)
643 for (tree d = get_local_decls (); d; d = TREE_CHAIN (d))
644 {
645 /* There are cases where D itself is a TREE_LIST. See in
646 push_local_binding where the list of decls returned by
647 getdecls is built. */
648 decl = TREE_CODE (d) == TREE_LIST ? TREE_VALUE (d) : d;
649
650 tree type = TREE_TYPE (decl);
651 if (VAR_P (decl)
652 && (! TREE_USED (decl) || !DECL_READ_P (decl))
653 && ! DECL_IN_SYSTEM_HEADER (decl)
654 /* For structured bindings, consider only real variables, not
655 subobjects. */
656 && (DECL_DECOMPOSITION_P (decl) ? !DECL_DECOMP_BASE (decl)
657 : (DECL_NAME (decl) && !DECL_ARTIFICIAL (decl)))
658 && type != error_mark_node
659 && (!CLASS_TYPE_P (type)
660 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
661 || lookup_attribute ("warn_unused",
662 TYPE_ATTRIBUTES (TREE_TYPE (decl)))))
663 {
664 if (! TREE_USED (decl))
665 {
666 if (!DECL_NAME (decl) && DECL_DECOMPOSITION_P (decl))
667 warning_at (DECL_SOURCE_LOCATION (decl),
668 OPT_Wunused_variable,
669 "unused structured binding declaration");
670 else
671 warning_at (DECL_SOURCE_LOCATION (decl),
672 OPT_Wunused_variable, "unused variable %qD", decl);
673 }
674 else if (DECL_CONTEXT (decl) == current_function_decl
675 // For -Wunused-but-set-variable leave references alone.
676 && !TYPE_REF_P (TREE_TYPE (decl))
677 && errorcount == unused_but_set_errorcount)
678 {
679 if (!DECL_NAME (decl) && DECL_DECOMPOSITION_P (decl))
680 warning_at (DECL_SOURCE_LOCATION (decl),
681 OPT_Wunused_but_set_variable, "structured "
682 "binding declaration set but not used");
683 else
684 warning_at (DECL_SOURCE_LOCATION (decl),
685 OPT_Wunused_but_set_variable,
686 "variable %qD set but not used", decl);
687 unused_but_set_errorcount = errorcount;
688 }
689 }
690 }
691
692 /* Remove declarations for all the DECLs in this level. */
693 for (link = decls; link; link = TREE_CHAIN (link))
694 {
695 decl = TREE_CODE (link) == TREE_LIST ? TREE_VALUE (link) : link;
696 tree name = OVL_NAME (decl);
697
698 /* Remove the binding. */
699 if (TREE_CODE (decl) == LABEL_DECL)
700 pop_local_label (name, decl);
701 else
702 pop_local_binding (name, decl);
703 }
704
705 /* Restore the IDENTIFIER_TYPE_VALUEs. */
706 for (link = current_binding_level->type_shadowed;
707 link; link = TREE_CHAIN (link))
708 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (link), TREE_VALUE (link));
709
710 /* There may be OVERLOADs (wrapped in TREE_LISTs) on the BLOCK_VARs
711 list if a `using' declaration put them there. The debugging
712 back ends won't understand OVERLOAD, so we remove them here.
713 Because the BLOCK_VARS are (temporarily) shared with
714 CURRENT_BINDING_LEVEL->NAMES we must do this fixup after we have
715 popped all the bindings. Also remove undeduced 'auto' decls,
716 which LTO doesn't understand, and can't have been used by anything. */
717 if (block)
718 {
719 tree* d;
720
721 for (d = &BLOCK_VARS (block); *d; )
722 {
723 if (TREE_CODE (*d) == TREE_LIST
724 || (!processing_template_decl
725 && undeduced_auto_decl (*d)))
726 *d = TREE_CHAIN (*d);
727 else
728 d = &DECL_CHAIN (*d);
729 }
730 }
731
732 /* If the level being exited is the top level of a function,
733 check over all the labels. */
734 if (functionbody)
735 {
736 if (block)
737 {
738 /* Since this is the top level block of a function, the vars are
739 the function's parameters. Don't leave them in the BLOCK
740 because they are found in the FUNCTION_DECL instead. */
741 BLOCK_VARS (block) = 0;
742 pop_labels (block);
743 }
744 else
745 pop_labels (subblocks);
746 }
747
748 kind = current_binding_level->kind;
749 if (kind == sk_cleanup)
750 {
751 tree stmt;
752
753 /* If this is a temporary binding created for a cleanup, then we'll
754 have pushed a statement list level. Pop that, create a new
755 BIND_EXPR for the block, and insert it into the stream. */
756 stmt = pop_stmt_list (current_binding_level->statement_list);
757 stmt = c_build_bind_expr (input_location, block, stmt);
758 add_stmt (stmt);
759 }
760
761 leave_scope ();
762 if (functionbody)
763 {
764 /* The current function is being defined, so its DECL_INITIAL
765 should be error_mark_node. */
766 gcc_assert (DECL_INITIAL (current_function_decl) == error_mark_node);
767 DECL_INITIAL (current_function_decl) = block ? block : subblocks;
768 if (subblocks)
769 {
770 if (FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
771 {
772 if (BLOCK_SUBBLOCKS (subblocks))
773 BLOCK_OUTER_CURLY_BRACE_P (BLOCK_SUBBLOCKS (subblocks)) = 1;
774 }
775 else
776 BLOCK_OUTER_CURLY_BRACE_P (subblocks) = 1;
777 }
778 }
779 else if (block)
780 current_binding_level->blocks
781 = block_chainon (current_binding_level->blocks, block);
782
783 /* If we did not make a block for the level just exited,
784 any blocks made for inner levels
785 (since they cannot be recorded as subblocks in that level)
786 must be carried forward so they will later become subblocks
787 of something else. */
788 else if (subblocks)
789 current_binding_level->blocks
790 = block_chainon (current_binding_level->blocks, subblocks);
791
792 /* Each and every BLOCK node created here in `poplevel' is important
793 (e.g. for proper debugging information) so if we created one
794 earlier, mark it as "used". */
795 if (block)
796 TREE_USED (block) = 1;
797
798 /* All temporary bindings created for cleanups are popped silently. */
799 if (kind == sk_cleanup)
800 goto restart;
801
802 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
803 return block;
804 }
805
806 /* Call wrapup_globals_declarations for the globals in NAMESPACE. */
807 /* Diagnose odr-used extern inline variables without definitions
808 in the current TU. */
809
810 int
811 wrapup_namespace_globals ()
812 {
813 if (vec<tree, va_gc> *statics = static_decls)
814 {
815 tree decl;
816 unsigned int i;
817 FOR_EACH_VEC_ELT (*statics, i, decl)
818 {
819 if (warn_unused_function
820 && TREE_CODE (decl) == FUNCTION_DECL
821 && DECL_INITIAL (decl) == 0
822 && DECL_EXTERNAL (decl)
823 && !TREE_PUBLIC (decl)
824 && !DECL_ARTIFICIAL (decl)
825 && !DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl)
826 && !TREE_NO_WARNING (decl))
827 warning_at (DECL_SOURCE_LOCATION (decl),
828 OPT_Wunused_function,
829 "%qF declared %<static%> but never defined", decl);
830
831 if (VAR_P (decl)
832 && DECL_EXTERNAL (decl)
833 && DECL_INLINE_VAR_P (decl)
834 && DECL_ODR_USED (decl))
835 error_at (DECL_SOURCE_LOCATION (decl),
836 "odr-used inline variable %qD is not defined", decl);
837 }
838
839 /* Clear out the list, so we don't rescan next time. */
840 static_decls = NULL;
841
842 /* Write out any globals that need to be output. */
843 return wrapup_global_declarations (statics->address (),
844 statics->length ());
845 }
846 return 0;
847 }
848 \f
849 /* In C++, you don't have to write `struct S' to refer to `S'; you
850 can just use `S'. We accomplish this by creating a TYPE_DECL as
851 if the user had written `typedef struct S S'. Create and return
852 the TYPE_DECL for TYPE. */
853
854 tree
855 create_implicit_typedef (tree name, tree type)
856 {
857 tree decl;
858
859 decl = build_decl (input_location, TYPE_DECL, name, type);
860 DECL_ARTIFICIAL (decl) = 1;
861 /* There are other implicit type declarations, like the one *within*
862 a class that allows you to write `S::S'. We must distinguish
863 amongst these. */
864 SET_DECL_IMPLICIT_TYPEDEF_P (decl);
865 TYPE_NAME (type) = decl;
866 TYPE_STUB_DECL (type) = decl;
867
868 return decl;
869 }
870
871 /* Function-scope local entities that need discriminators. Each entry
872 is a {decl,name} pair. VAR_DECLs for anon unions get their name
873 smashed, so we cannot rely on DECL_NAME. */
874
875 static GTY((deletable)) vec<tree, va_gc> *local_entities;
876
877 /* Determine the mangling discriminator of local DECL. There are
878 generally very few of these in any particular function. */
879
880 void
881 determine_local_discriminator (tree decl)
882 {
883 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
884 retrofit_lang_decl (decl);
885 tree ctx = DECL_CONTEXT (decl);
886 tree name = (TREE_CODE (decl) == TYPE_DECL
887 && TYPE_UNNAMED_P (TREE_TYPE (decl))
888 ? NULL_TREE : DECL_NAME (decl));
889 size_t nelts = vec_safe_length (local_entities);
890 for (size_t i = 0; i < nelts; i += 2)
891 {
892 tree *pair = &(*local_entities)[i];
893 tree d = pair[0];
894 tree n = pair[1];
895 gcc_checking_assert (d != decl);
896 if (name == n
897 && TREE_CODE (decl) == TREE_CODE (d)
898 && ctx == DECL_CONTEXT (d))
899 {
900 tree disc = integer_one_node;
901 if (DECL_DISCRIMINATOR (d))
902 disc = build_int_cst (TREE_TYPE (disc),
903 TREE_INT_CST_LOW (DECL_DISCRIMINATOR (d)) + 1);
904 DECL_DISCRIMINATOR (decl) = disc;
905 /* Replace the saved decl. */
906 pair[0] = decl;
907 decl = NULL_TREE;
908 break;
909 }
910 }
911
912 if (decl)
913 {
914 vec_safe_reserve (local_entities, 2);
915 local_entities->quick_push (decl);
916 local_entities->quick_push (name);
917 }
918
919 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
920 }
921
922 \f
923 /* Subroutine of duplicate_decls: return truthvalue of whether
924 or not types of these decls match.
925
926 For C++, we must compare the parameter list so that `int' can match
927 `int&' in a parameter position, but `int&' is not confused with
928 `const int&'. */
929
930 int
931 decls_match (tree newdecl, tree olddecl, bool record_versions /* = true */)
932 {
933 int types_match;
934
935 if (newdecl == olddecl)
936 return 1;
937
938 if (TREE_CODE (newdecl) != TREE_CODE (olddecl))
939 /* If the two DECLs are not even the same kind of thing, we're not
940 interested in their types. */
941 return 0;
942
943 gcc_assert (DECL_P (newdecl));
944
945 if (TREE_CODE (newdecl) == FUNCTION_DECL)
946 {
947 tree f1 = TREE_TYPE (newdecl);
948 tree f2 = TREE_TYPE (olddecl);
949 tree p1 = TYPE_ARG_TYPES (f1);
950 tree p2 = TYPE_ARG_TYPES (f2);
951 tree r2;
952
953 /* Specializations of different templates are different functions
954 even if they have the same type. */
955 tree t1 = (DECL_USE_TEMPLATE (newdecl)
956 ? DECL_TI_TEMPLATE (newdecl)
957 : NULL_TREE);
958 tree t2 = (DECL_USE_TEMPLATE (olddecl)
959 ? DECL_TI_TEMPLATE (olddecl)
960 : NULL_TREE);
961 if (t1 != t2)
962 return 0;
963
964 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
965 && ! (DECL_EXTERN_C_P (newdecl)
966 && DECL_EXTERN_C_P (olddecl)))
967 return 0;
968
969 /* A new declaration doesn't match a built-in one unless it
970 is also extern "C". */
971 if (DECL_IS_BUILTIN (olddecl)
972 && DECL_EXTERN_C_P (olddecl) && !DECL_EXTERN_C_P (newdecl))
973 return 0;
974
975 if (TREE_CODE (f1) != TREE_CODE (f2))
976 return 0;
977
978 /* A declaration with deduced return type should use its pre-deduction
979 type for declaration matching. */
980 r2 = fndecl_declared_return_type (olddecl);
981
982 if (same_type_p (TREE_TYPE (f1), r2))
983 {
984 if (!prototype_p (f2) && DECL_EXTERN_C_P (olddecl)
985 && fndecl_built_in_p (olddecl))
986 {
987 types_match = self_promoting_args_p (p1);
988 if (p1 == void_list_node)
989 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
990 }
991 else
992 types_match =
993 compparms (p1, p2)
994 && type_memfn_rqual (f1) == type_memfn_rqual (f2)
995 && (TYPE_ATTRIBUTES (TREE_TYPE (newdecl)) == NULL_TREE
996 || comp_type_attributes (TREE_TYPE (newdecl),
997 TREE_TYPE (olddecl)) != 0);
998 }
999 else
1000 types_match = 0;
1001
1002 /* The decls dont match if they correspond to two different versions
1003 of the same function. Disallow extern "C" functions to be
1004 versions for now. */
1005 if (types_match
1006 && !DECL_EXTERN_C_P (newdecl)
1007 && !DECL_EXTERN_C_P (olddecl)
1008 && record_versions
1009 && maybe_version_functions (newdecl, olddecl,
1010 (!DECL_FUNCTION_VERSIONED (newdecl)
1011 || !DECL_FUNCTION_VERSIONED (olddecl))))
1012 return 0;
1013 }
1014 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1015 {
1016 tree oldres = DECL_TEMPLATE_RESULT (olddecl);
1017 tree newres = DECL_TEMPLATE_RESULT (newdecl);
1018
1019 if (TREE_CODE (newres) != TREE_CODE (oldres))
1020 return 0;
1021
1022 if (!comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1023 DECL_TEMPLATE_PARMS (olddecl)))
1024 return 0;
1025
1026 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1027 types_match = (same_type_p (TREE_TYPE (oldres), TREE_TYPE (newres))
1028 && equivalently_constrained (olddecl, newdecl));
1029 else
1030 // We don't need to check equivalently_constrained for variable and
1031 // function templates because we check it on the results.
1032 types_match = decls_match (oldres, newres);
1033 }
1034 else
1035 {
1036 /* Need to check scope for variable declaration (VAR_DECL).
1037 For typedef (TYPE_DECL), scope is ignored. */
1038 if (VAR_P (newdecl)
1039 && CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
1040 /* [dcl.link]
1041 Two declarations for an object with C language linkage
1042 with the same name (ignoring the namespace that qualify
1043 it) that appear in different namespace scopes refer to
1044 the same object. */
1045 && !(DECL_EXTERN_C_P (olddecl) && DECL_EXTERN_C_P (newdecl)))
1046 return 0;
1047
1048 if (TREE_TYPE (newdecl) == error_mark_node)
1049 types_match = TREE_TYPE (olddecl) == error_mark_node;
1050 else if (TREE_TYPE (olddecl) == NULL_TREE)
1051 types_match = TREE_TYPE (newdecl) == NULL_TREE;
1052 else if (TREE_TYPE (newdecl) == NULL_TREE)
1053 types_match = 0;
1054 else
1055 types_match = comptypes (TREE_TYPE (newdecl),
1056 TREE_TYPE (olddecl),
1057 COMPARE_REDECLARATION);
1058 }
1059
1060 // Normal functions can be constrained, as can variable partial
1061 // specializations.
1062 if (types_match && VAR_OR_FUNCTION_DECL_P (newdecl))
1063 types_match = equivalently_constrained (newdecl, olddecl);
1064
1065 return types_match;
1066 }
1067
1068 /* NEWDECL and OLDDECL have identical signatures. If they are
1069 different versions adjust them and return true.
1070 If RECORD is set to true, record function versions. */
1071
1072 bool
1073 maybe_version_functions (tree newdecl, tree olddecl, bool record)
1074 {
1075 if (!targetm.target_option.function_versions (newdecl, olddecl))
1076 return false;
1077
1078 if (!DECL_FUNCTION_VERSIONED (olddecl))
1079 {
1080 DECL_FUNCTION_VERSIONED (olddecl) = 1;
1081 if (DECL_ASSEMBLER_NAME_SET_P (olddecl))
1082 mangle_decl (olddecl);
1083 }
1084
1085 if (!DECL_FUNCTION_VERSIONED (newdecl))
1086 {
1087 DECL_FUNCTION_VERSIONED (newdecl) = 1;
1088 if (DECL_ASSEMBLER_NAME_SET_P (newdecl))
1089 mangle_decl (newdecl);
1090 }
1091
1092 if (record)
1093 cgraph_node::record_function_versions (olddecl, newdecl);
1094
1095 return true;
1096 }
1097
1098 /* If NEWDECL is `static' and an `extern' was seen previously,
1099 warn about it. OLDDECL is the previous declaration.
1100
1101 Note that this does not apply to the C++ case of declaring
1102 a variable `extern const' and then later `const'.
1103
1104 Don't complain about built-in functions, since they are beyond
1105 the user's control. */
1106
1107 void
1108 warn_extern_redeclared_static (tree newdecl, tree olddecl)
1109 {
1110 if (TREE_CODE (newdecl) == TYPE_DECL
1111 || TREE_CODE (newdecl) == TEMPLATE_DECL
1112 || TREE_CODE (newdecl) == CONST_DECL
1113 || TREE_CODE (newdecl) == NAMESPACE_DECL)
1114 return;
1115
1116 /* Don't get confused by static member functions; that's a different
1117 use of `static'. */
1118 if (TREE_CODE (newdecl) == FUNCTION_DECL
1119 && DECL_STATIC_FUNCTION_P (newdecl))
1120 return;
1121
1122 /* If the old declaration was `static', or the new one isn't, then
1123 everything is OK. */
1124 if (DECL_THIS_STATIC (olddecl) || !DECL_THIS_STATIC (newdecl))
1125 return;
1126
1127 /* It's OK to declare a builtin function as `static'. */
1128 if (TREE_CODE (olddecl) == FUNCTION_DECL
1129 && DECL_ARTIFICIAL (olddecl))
1130 return;
1131
1132 auto_diagnostic_group d;
1133 if (permerror (DECL_SOURCE_LOCATION (newdecl),
1134 "%qD was declared %<extern%> and later %<static%>", newdecl))
1135 inform (DECL_SOURCE_LOCATION (olddecl),
1136 "previous declaration of %qD", olddecl);
1137 }
1138
1139 /* NEW_DECL is a redeclaration of OLD_DECL; both are functions or
1140 function templates. If their exception specifications do not
1141 match, issue a diagnostic. */
1142
1143 static void
1144 check_redeclaration_exception_specification (tree new_decl,
1145 tree old_decl)
1146 {
1147 tree new_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl));
1148 tree old_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl));
1149
1150 /* Two default specs are equivalent, don't force evaluation. */
1151 if (UNEVALUATED_NOEXCEPT_SPEC_P (new_exceptions)
1152 && UNEVALUATED_NOEXCEPT_SPEC_P (old_exceptions))
1153 return;
1154
1155 if (!type_dependent_expression_p (old_decl))
1156 {
1157 maybe_instantiate_noexcept (new_decl);
1158 maybe_instantiate_noexcept (old_decl);
1159 }
1160 new_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl));
1161 old_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl));
1162
1163 /* [except.spec]
1164
1165 If any declaration of a function has an exception-specification,
1166 all declarations, including the definition and an explicit
1167 specialization, of that function shall have an
1168 exception-specification with the same set of type-ids. */
1169 if (! DECL_IS_BUILTIN (old_decl)
1170 && !comp_except_specs (new_exceptions, old_exceptions, ce_normal))
1171 {
1172 const char *const msg
1173 = G_("declaration of %qF has a different exception specifier");
1174 bool complained = true;
1175 location_t new_loc = DECL_SOURCE_LOCATION (new_decl);
1176 auto_diagnostic_group d;
1177 if (DECL_IN_SYSTEM_HEADER (old_decl))
1178 complained = pedwarn (new_loc, OPT_Wsystem_headers, msg, new_decl);
1179 else if (!flag_exceptions)
1180 /* We used to silently permit mismatched eh specs with
1181 -fno-exceptions, so make them a pedwarn now. */
1182 complained = pedwarn (new_loc, OPT_Wpedantic, msg, new_decl);
1183 else
1184 error_at (new_loc, msg, new_decl);
1185 if (complained)
1186 inform (DECL_SOURCE_LOCATION (old_decl),
1187 "from previous declaration %qF", old_decl);
1188 }
1189 }
1190
1191 /* Return true if OLD_DECL and NEW_DECL agree on constexprness.
1192 Otherwise issue diagnostics. */
1193
1194 static bool
1195 validate_constexpr_redeclaration (tree old_decl, tree new_decl)
1196 {
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)
1206 {
1207 if (fndecl_built_in_p (old_decl))
1208 {
1209 /* Hide a built-in declaration. */
1210 DECL_DECLARED_CONSTEXPR_P (old_decl)
1211 = DECL_DECLARED_CONSTEXPR_P (new_decl);
1212 return true;
1213 }
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;
1220
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;
1227 }
1228 return true;
1229 }
1230
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)
1236 {
1237 if (!DECL_DECLARED_CONCEPT_P (olddecl) || !DECL_DECLARED_CONCEPT_P (newdecl))
1238 return false;
1239
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;
1244
1245 tree t1 = TREE_TYPE (d1);
1246 tree t2 = TREE_TYPE (d2);
1247 if (TREE_CODE (d1) == FUNCTION_DECL)
1248 {
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))
1253 {
1254 error ("cannot specialize concept %q#D", olddecl);
1255 return true;
1256 }
1257 }
1258 return false;
1259 }
1260
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. */
1265
1266 static void
1267 check_redeclaration_no_default_args (tree decl)
1268 {
1269 gcc_assert (DECL_DECLARES_FUNCTION_P (decl));
1270
1271 for (tree t = FUNCTION_FIRST_USER_PARMTYPE (decl);
1272 t && t != void_list_node; t = TREE_CHAIN (t))
1273 if (TREE_PURPOSE (t))
1274 {
1275 permerror (DECL_SOURCE_LOCATION (decl),
1276 "redeclaration of %q#D may not have default "
1277 "arguments", decl);
1278 return;
1279 }
1280 }
1281
1282 /* NEWDECL is a redeclaration of a function or function template OLDDECL,
1283 in any case represented as FUNCTION_DECLs (the DECL_TEMPLATE_RESULTs of
1284 the TEMPLATE_DECLs in case of function templates). This function is used
1285 to enforce the final part of C++17 11.3.6/4, about a single declaration:
1286 "If a friend declaration specifies a default argument expression, that
1287 declaration shall be a definition and shall be the only declaration of
1288 the function or function template in the translation unit." */
1289
1290 static void
1291 check_no_redeclaration_friend_default_args (tree olddecl, tree newdecl,
1292 bool olddecl_hidden_friend_p)
1293 {
1294 if (!olddecl_hidden_friend_p && !DECL_FRIEND_P (newdecl))
1295 return;
1296
1297 tree t1 = FUNCTION_FIRST_USER_PARMTYPE (olddecl);
1298 tree t2 = FUNCTION_FIRST_USER_PARMTYPE (newdecl);
1299
1300 for (; t1 && t1 != void_list_node;
1301 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
1302 if ((olddecl_hidden_friend_p && TREE_PURPOSE (t1))
1303 || (DECL_FRIEND_P (newdecl) && TREE_PURPOSE (t2)))
1304 {
1305 auto_diagnostic_group d;
1306 if (permerror (DECL_SOURCE_LOCATION (newdecl),
1307 "friend declaration of %q#D specifies default "
1308 "arguments and isn%'t the only declaration", newdecl))
1309 inform (DECL_SOURCE_LOCATION (olddecl),
1310 "previous declaration of %q#D", olddecl);
1311 return;
1312 }
1313 }
1314
1315 /* Merge tree bits that correspond to attributes noreturn, nothrow,
1316 const, malloc, and pure from NEWDECL with those of OLDDECL. */
1317
1318 static void
1319 merge_attribute_bits (tree newdecl, tree olddecl)
1320 {
1321 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1322 TREE_THIS_VOLATILE (olddecl) |= TREE_THIS_VOLATILE (newdecl);
1323 TREE_NOTHROW (newdecl) |= TREE_NOTHROW (olddecl);
1324 TREE_NOTHROW (olddecl) |= TREE_NOTHROW (newdecl);
1325 TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
1326 TREE_READONLY (olddecl) |= TREE_READONLY (newdecl);
1327 DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
1328 DECL_IS_MALLOC (olddecl) |= DECL_IS_MALLOC (newdecl);
1329 DECL_PURE_P (newdecl) |= DECL_PURE_P (olddecl);
1330 DECL_PURE_P (olddecl) |= DECL_PURE_P (newdecl);
1331 DECL_UNINLINABLE (newdecl) |= DECL_UNINLINABLE (olddecl);
1332 DECL_UNINLINABLE (olddecl) |= DECL_UNINLINABLE (newdecl);
1333 }
1334
1335 #define GNU_INLINE_P(fn) (DECL_DECLARED_INLINE_P (fn) \
1336 && lookup_attribute ("gnu_inline", \
1337 DECL_ATTRIBUTES (fn)))
1338
1339 /* If NEWDECL is a redeclaration of OLDDECL, merge the declarations.
1340 If the redeclaration is invalid, a diagnostic is issued, and the
1341 error_mark_node is returned. Otherwise, OLDDECL is returned.
1342
1343 If NEWDECL is not a redeclaration of OLDDECL, NULL_TREE is
1344 returned.
1345
1346 NEWDECL_IS_FRIEND is true if NEWDECL was declared as a friend. */
1347
1348 tree
1349 duplicate_decls (tree newdecl, tree olddecl, bool newdecl_is_friend)
1350 {
1351 unsigned olddecl_uid = DECL_UID (olddecl);
1352 int olddecl_friend = 0, types_match = 0, hidden_friend = 0;
1353 int olddecl_hidden_friend = 0;
1354 int new_defines_function = 0;
1355 tree new_template_info;
1356 location_t olddecl_loc = DECL_SOURCE_LOCATION (olddecl);
1357 location_t newdecl_loc = DECL_SOURCE_LOCATION (newdecl);
1358
1359 if (newdecl == olddecl)
1360 return olddecl;
1361
1362 types_match = decls_match (newdecl, olddecl);
1363
1364 /* If either the type of the new decl or the type of the old decl is an
1365 error_mark_node, then that implies that we have already issued an
1366 error (earlier) for some bogus type specification, and in that case,
1367 it is rather pointless to harass the user with yet more error message
1368 about the same declaration, so just pretend the types match here. */
1369 if (TREE_TYPE (newdecl) == error_mark_node
1370 || TREE_TYPE (olddecl) == error_mark_node)
1371 return error_mark_node;
1372
1373 /* Check for redeclaration and other discrepancies. */
1374 if (TREE_CODE (olddecl) == FUNCTION_DECL
1375 && DECL_ARTIFICIAL (olddecl))
1376 {
1377 gcc_assert (!DECL_HIDDEN_FRIEND_P (olddecl));
1378 if (TREE_CODE (newdecl) != FUNCTION_DECL)
1379 {
1380 /* Avoid warnings redeclaring built-ins which have not been
1381 explicitly declared. */
1382 if (DECL_ANTICIPATED (olddecl))
1383 {
1384 if (TREE_PUBLIC (newdecl)
1385 && CP_DECL_CONTEXT (newdecl) == global_namespace)
1386 warning_at (newdecl_loc,
1387 OPT_Wbuiltin_declaration_mismatch,
1388 "built-in function %qD declared as non-function",
1389 newdecl);
1390 return NULL_TREE;
1391 }
1392
1393 /* If you declare a built-in or predefined function name as static,
1394 the old definition is overridden, but optionally warn this was a
1395 bad choice of name. */
1396 if (! TREE_PUBLIC (newdecl))
1397 {
1398 warning_at (newdecl_loc,
1399 OPT_Wshadow,
1400 fndecl_built_in_p (olddecl)
1401 ? G_("shadowing built-in function %q#D")
1402 : G_("shadowing library function %q#D"), olddecl);
1403 /* Discard the old built-in function. */
1404 return NULL_TREE;
1405 }
1406 /* If the built-in is not ansi, then programs can override
1407 it even globally without an error. */
1408 else if (! fndecl_built_in_p (olddecl))
1409 warning_at (newdecl_loc, 0,
1410 "library function %q#D redeclared as non-function %q#D",
1411 olddecl, newdecl);
1412 else
1413 error_at (newdecl_loc,
1414 "declaration of %q#D conflicts with built-in "
1415 "declaration %q#D", newdecl, olddecl);
1416 return NULL_TREE;
1417 }
1418 else if (DECL_OMP_DECLARE_REDUCTION_P (olddecl))
1419 {
1420 gcc_assert (DECL_OMP_DECLARE_REDUCTION_P (newdecl));
1421 error_at (newdecl_loc,
1422 "redeclaration of %<pragma omp declare reduction%>");
1423 inform (olddecl_loc,
1424 "previous %<pragma omp declare reduction%> declaration");
1425 return error_mark_node;
1426 }
1427 else if (!types_match)
1428 {
1429 /* Avoid warnings redeclaring built-ins which have not been
1430 explicitly declared. */
1431 if (DECL_ANTICIPATED (olddecl))
1432 {
1433 tree t1, t2;
1434
1435 /* A new declaration doesn't match a built-in one unless it
1436 is also extern "C". */
1437 gcc_assert (DECL_IS_BUILTIN (olddecl));
1438 gcc_assert (DECL_EXTERN_C_P (olddecl));
1439 if (!DECL_EXTERN_C_P (newdecl))
1440 return NULL_TREE;
1441
1442 for (t1 = TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1443 t2 = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1444 t1 || t2;
1445 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
1446 {
1447 if (!t1 || !t2)
1448 break;
1449 /* FILE, tm types are not known at the time
1450 we create the builtins. */
1451 for (unsigned i = 0;
1452 i < sizeof (builtin_structptr_types)
1453 / sizeof (builtin_structptr_type);
1454 ++i)
1455 if (TREE_VALUE (t2) == builtin_structptr_types[i].node)
1456 {
1457 tree t = TREE_VALUE (t1);
1458
1459 if (TYPE_PTR_P (t)
1460 && TYPE_IDENTIFIER (TREE_TYPE (t))
1461 == get_identifier (builtin_structptr_types[i].str)
1462 && compparms (TREE_CHAIN (t1), TREE_CHAIN (t2)))
1463 {
1464 tree oldargs = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1465
1466 TYPE_ARG_TYPES (TREE_TYPE (olddecl))
1467 = TYPE_ARG_TYPES (TREE_TYPE (newdecl));
1468 types_match = decls_match (newdecl, olddecl);
1469 if (types_match)
1470 return duplicate_decls (newdecl, olddecl,
1471 newdecl_is_friend);
1472 TYPE_ARG_TYPES (TREE_TYPE (olddecl)) = oldargs;
1473 }
1474 goto next_arg;
1475 }
1476
1477 if (! same_type_p (TREE_VALUE (t1), TREE_VALUE (t2)))
1478 break;
1479 next_arg:;
1480 }
1481
1482 warning_at (newdecl_loc,
1483 OPT_Wbuiltin_declaration_mismatch,
1484 "declaration of %q#D conflicts with built-in "
1485 "declaration %q#D", newdecl, olddecl);
1486 }
1487 else if ((DECL_EXTERN_C_P (newdecl)
1488 && DECL_EXTERN_C_P (olddecl))
1489 || compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1490 TYPE_ARG_TYPES (TREE_TYPE (olddecl))))
1491 {
1492 /* Don't really override olddecl for __* prefixed builtins
1493 except for __[^b]*_chk, the compiler might be using those
1494 explicitly. */
1495 if (fndecl_built_in_p (olddecl))
1496 {
1497 tree id = DECL_NAME (olddecl);
1498 const char *name = IDENTIFIER_POINTER (id);
1499 size_t len;
1500
1501 if (name[0] == '_'
1502 && name[1] == '_'
1503 && (strncmp (name + 2, "builtin_",
1504 strlen ("builtin_")) == 0
1505 || (len = strlen (name)) <= strlen ("___chk")
1506 || memcmp (name + len - strlen ("_chk"),
1507 "_chk", strlen ("_chk") + 1) != 0))
1508 {
1509 if (DECL_INITIAL (newdecl))
1510 {
1511 error_at (newdecl_loc,
1512 "definition of %q#D ambiguates built-in "
1513 "declaration %q#D", newdecl, olddecl);
1514 return error_mark_node;
1515 }
1516 auto_diagnostic_group d;
1517 if (permerror (newdecl_loc,
1518 "new declaration %q#D ambiguates built-in"
1519 " declaration %q#D", newdecl, olddecl)
1520 && flag_permissive)
1521 inform (newdecl_loc,
1522 "ignoring the %q#D declaration", newdecl);
1523 return flag_permissive ? olddecl : error_mark_node;
1524 }
1525 }
1526
1527 /* A near match; override the builtin. */
1528
1529 if (TREE_PUBLIC (newdecl))
1530 warning_at (newdecl_loc,
1531 OPT_Wbuiltin_declaration_mismatch,
1532 "new declaration %q#D ambiguates built-in "
1533 "declaration %q#D", newdecl, olddecl);
1534 else
1535 warning (OPT_Wshadow,
1536 fndecl_built_in_p (olddecl)
1537 ? G_("shadowing built-in function %q#D")
1538 : G_("shadowing library function %q#D"), olddecl);
1539 }
1540 else
1541 /* Discard the old built-in function. */
1542 return NULL_TREE;
1543
1544 /* Replace the old RTL to avoid problems with inlining. */
1545 COPY_DECL_RTL (newdecl, olddecl);
1546 }
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))
1551 {
1552 tree type = TREE_TYPE (newdecl);
1553 tree attribs = (*targetm.merge_type_attributes)
1554 (TREE_TYPE (olddecl), type);
1555
1556 type = cp_build_type_attribute_variant (type, attribs);
1557 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = type;
1558 }
1559
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))
1566 {
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;
1571 }
1572
1573 /* Whether or not the builtin can throw exceptions has no
1574 bearing on this declarator. */
1575 TREE_NOTHROW (olddecl) = 0;
1576
1577 if (DECL_THIS_STATIC (newdecl) && !DECL_THIS_STATIC (olddecl))
1578 {
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;
1583
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);
1589 }
1590 }
1591 else if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1592 {
1593 /* C++ Standard, 3.3, clause 4:
1594 "[Note: a namespace name or a class template name must be unique
1595 in its declarative region (7.3.2, clause 14). ]" */
1596 if (TREE_CODE (olddecl) == NAMESPACE_DECL
1597 || TREE_CODE (newdecl) == NAMESPACE_DECL)
1598 /* Namespace conflicts with not namespace. */;
1599 else if (DECL_TYPE_TEMPLATE_P (olddecl)
1600 || DECL_TYPE_TEMPLATE_P (newdecl))
1601 /* Class template conflicts. */;
1602 else if ((TREE_CODE (newdecl) == FUNCTION_DECL
1603 && DECL_FUNCTION_TEMPLATE_P (olddecl))
1604 || (TREE_CODE (olddecl) == FUNCTION_DECL
1605 && DECL_FUNCTION_TEMPLATE_P (newdecl)))
1606 {
1607 /* One is a function and the other is a template
1608 function. */
1609 if (!UDLIT_OPER_P (DECL_NAME (newdecl)))
1610 return NULL_TREE;
1611
1612 /* There can only be one! */
1613 if (TREE_CODE (newdecl) == TEMPLATE_DECL
1614 && check_raw_literal_operator (olddecl))
1615 error_at (newdecl_loc,
1616 "literal operator %q#D conflicts with"
1617 " raw literal operator", newdecl);
1618 else if (check_raw_literal_operator (newdecl))
1619 error_at (newdecl_loc,
1620 "raw literal operator %q#D conflicts with"
1621 " literal operator template", newdecl);
1622 else
1623 return NULL_TREE;
1624
1625 inform (olddecl_loc, "previous declaration %q#D", olddecl);
1626 return error_mark_node;
1627 }
1628 else if (DECL_IMPLICIT_TYPEDEF_P (olddecl)
1629 || DECL_IMPLICIT_TYPEDEF_P (newdecl))
1630 /* One is an implicit typedef, that's ok. */
1631 return NULL_TREE;
1632
1633 error ("%q#D redeclared as different kind of entity", newdecl);
1634 inform (olddecl_loc, "previous declaration %q#D", olddecl);
1635
1636 return error_mark_node;
1637 }
1638 else if (!types_match)
1639 {
1640 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl))
1641 /* These are certainly not duplicate declarations; they're
1642 from different scopes. */
1643 return NULL_TREE;
1644
1645 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1646 {
1647 /* The name of a class template may not be declared to refer to
1648 any other template, class, function, object, namespace, value,
1649 or type in the same scope. */
1650 if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == TYPE_DECL
1651 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1652 {
1653 error_at (newdecl_loc,
1654 "conflicting declaration of template %q#D", newdecl);
1655 inform (olddecl_loc,
1656 "previous declaration %q#D", olddecl);
1657 return error_mark_node;
1658 }
1659 else if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == FUNCTION_DECL
1660 && TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == FUNCTION_DECL
1661 && compparms (TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl))),
1662 TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (newdecl))))
1663 && comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1664 DECL_TEMPLATE_PARMS (olddecl))
1665 /* Template functions can be disambiguated by
1666 return type. */
1667 && same_type_p (TREE_TYPE (TREE_TYPE (newdecl)),
1668 TREE_TYPE (TREE_TYPE (olddecl)))
1669 /* Template functions can also be disambiguated by
1670 constraints. */
1671 && equivalently_constrained (olddecl, newdecl))
1672 {
1673 error_at (newdecl_loc, "ambiguating new declaration %q#D",
1674 newdecl);
1675 inform (olddecl_loc,
1676 "old declaration %q#D", olddecl);
1677 }
1678 else if (check_concept_refinement (olddecl, newdecl))
1679 return error_mark_node;
1680 return NULL_TREE;
1681 }
1682 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1683 {
1684 if (DECL_EXTERN_C_P (newdecl) && DECL_EXTERN_C_P (olddecl))
1685 {
1686 error_at (newdecl_loc,
1687 "conflicting declaration of C function %q#D",
1688 newdecl);
1689 inform (olddecl_loc,
1690 "previous declaration %q#D", olddecl);
1691 return NULL_TREE;
1692 }
1693 /* For function versions, params and types match, but they
1694 are not ambiguous. */
1695 else if ((!DECL_FUNCTION_VERSIONED (newdecl)
1696 && !DECL_FUNCTION_VERSIONED (olddecl))
1697 // The functions have the same parameter types.
1698 && compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1699 TYPE_ARG_TYPES (TREE_TYPE (olddecl)))
1700 // And the same constraints.
1701 && equivalently_constrained (newdecl, olddecl))
1702 {
1703 error_at (newdecl_loc,
1704 "ambiguating new declaration of %q#D", newdecl);
1705 inform (olddecl_loc,
1706 "old declaration %q#D", olddecl);
1707 return error_mark_node;
1708 }
1709 else
1710 return NULL_TREE;
1711 }
1712 else
1713 {
1714 error_at (newdecl_loc, "conflicting declaration %q#D", newdecl);
1715 inform (olddecl_loc,
1716 "previous declaration as %q#D", olddecl);
1717 return error_mark_node;
1718 }
1719 }
1720 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1721 && ((DECL_TEMPLATE_SPECIALIZATION (olddecl)
1722 && (!DECL_TEMPLATE_INFO (newdecl)
1723 || (DECL_TI_TEMPLATE (newdecl)
1724 != DECL_TI_TEMPLATE (olddecl))))
1725 || (DECL_TEMPLATE_SPECIALIZATION (newdecl)
1726 && (!DECL_TEMPLATE_INFO (olddecl)
1727 || (DECL_TI_TEMPLATE (olddecl)
1728 != DECL_TI_TEMPLATE (newdecl))))))
1729 /* It's OK to have a template specialization and a non-template
1730 with the same type, or to have specializations of two
1731 different templates with the same type. Note that if one is a
1732 specialization, and the other is an instantiation of the same
1733 template, that we do not exit at this point. That situation
1734 can occur if we instantiate a template class, and then
1735 specialize one of its methods. This situation is valid, but
1736 the declarations must be merged in the usual way. */
1737 return NULL_TREE;
1738 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1739 && ((DECL_TEMPLATE_INSTANTIATION (olddecl)
1740 && !DECL_USE_TEMPLATE (newdecl))
1741 || (DECL_TEMPLATE_INSTANTIATION (newdecl)
1742 && !DECL_USE_TEMPLATE (olddecl))))
1743 /* One of the declarations is a template instantiation, and the
1744 other is not a template at all. That's OK. */
1745 return NULL_TREE;
1746 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
1747 {
1748 /* In [namespace.alias] we have:
1749
1750 In a declarative region, a namespace-alias-definition can be
1751 used to redefine a namespace-alias declared in that declarative
1752 region to refer only to the namespace to which it already
1753 refers.
1754
1755 Therefore, if we encounter a second alias directive for the same
1756 alias, we can just ignore the second directive. */
1757 if (DECL_NAMESPACE_ALIAS (newdecl)
1758 && (DECL_NAMESPACE_ALIAS (newdecl)
1759 == DECL_NAMESPACE_ALIAS (olddecl)))
1760 return olddecl;
1761
1762 /* Leave it to update_binding to merge or report error. */
1763 return NULL_TREE;
1764 }
1765 else
1766 {
1767 const char *errmsg = redeclaration_error_message (newdecl, olddecl);
1768 if (errmsg)
1769 {
1770 auto_diagnostic_group d;
1771 error_at (newdecl_loc, errmsg, newdecl);
1772 if (DECL_NAME (olddecl) != NULL_TREE)
1773 inform (olddecl_loc,
1774 (DECL_INITIAL (olddecl) && namespace_bindings_p ())
1775 ? G_("%q#D previously defined here")
1776 : G_("%q#D previously declared here"), olddecl);
1777 return error_mark_node;
1778 }
1779 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1780 && DECL_INITIAL (olddecl) != NULL_TREE
1781 && !prototype_p (TREE_TYPE (olddecl))
1782 && prototype_p (TREE_TYPE (newdecl)))
1783 {
1784 /* Prototype decl follows defn w/o prototype. */
1785 auto_diagnostic_group d;
1786 if (warning_at (newdecl_loc, 0,
1787 "prototype specified for %q#D", newdecl))
1788 inform (olddecl_loc,
1789 "previous non-prototype definition here");
1790 }
1791 else if (VAR_OR_FUNCTION_DECL_P (olddecl)
1792 && DECL_LANGUAGE (newdecl) != DECL_LANGUAGE (olddecl))
1793 {
1794 /* [dcl.link]
1795 If two declarations of the same function or object
1796 specify different linkage-specifications ..., the program
1797 is ill-formed.... Except for functions with C++ linkage,
1798 a function declaration without a linkage specification
1799 shall not precede the first linkage specification for
1800 that function. A function can be declared without a
1801 linkage specification after an explicit linkage
1802 specification has been seen; the linkage explicitly
1803 specified in the earlier declaration is not affected by
1804 such a function declaration.
1805
1806 DR 563 raises the question why the restrictions on
1807 functions should not also apply to objects. Older
1808 versions of G++ silently ignore the linkage-specification
1809 for this example:
1810
1811 namespace N {
1812 extern int i;
1813 extern "C" int i;
1814 }
1815
1816 which is clearly wrong. Therefore, we now treat objects
1817 like functions. */
1818 if (current_lang_depth () == 0)
1819 {
1820 /* There is no explicit linkage-specification, so we use
1821 the linkage from the previous declaration. */
1822 retrofit_lang_decl (newdecl);
1823 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
1824 }
1825 else
1826 {
1827 auto_diagnostic_group d;
1828 error_at (newdecl_loc,
1829 "conflicting declaration of %q#D with %qL linkage",
1830 newdecl, DECL_LANGUAGE (newdecl));
1831 inform (olddecl_loc,
1832 "previous declaration with %qL linkage",
1833 DECL_LANGUAGE (olddecl));
1834 }
1835 }
1836
1837 if (DECL_LANG_SPECIFIC (olddecl) && DECL_USE_TEMPLATE (olddecl))
1838 ;
1839 else if (TREE_CODE (olddecl) == FUNCTION_DECL)
1840 {
1841 /* Note: free functions, as TEMPLATE_DECLs, are handled below. */
1842 if (DECL_FUNCTION_MEMBER_P (olddecl)
1843 && (/* grokfndecl passes member function templates too
1844 as FUNCTION_DECLs. */
1845 DECL_TEMPLATE_INFO (olddecl)
1846 /* C++11 8.3.6/6.
1847 Default arguments for a member function of a class
1848 template shall be specified on the initial declaration
1849 of the member function within the class template. */
1850 || CLASSTYPE_TEMPLATE_INFO (CP_DECL_CONTEXT (olddecl))))
1851 check_redeclaration_no_default_args (newdecl);
1852 else
1853 {
1854 tree t1 = FUNCTION_FIRST_USER_PARMTYPE (olddecl);
1855 tree t2 = FUNCTION_FIRST_USER_PARMTYPE (newdecl);
1856 int i = 1;
1857
1858 for (; t1 && t1 != void_list_node;
1859 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2), i++)
1860 if (TREE_PURPOSE (t1) && TREE_PURPOSE (t2))
1861 {
1862 if (simple_cst_equal (TREE_PURPOSE (t1),
1863 TREE_PURPOSE (t2)) == 1)
1864 {
1865 auto_diagnostic_group d;
1866 if (permerror (newdecl_loc,
1867 "default argument given for parameter "
1868 "%d of %q#D", i, newdecl))
1869 inform (olddecl_loc,
1870 "previous specification in %q#D here",
1871 olddecl);
1872 }
1873 else
1874 {
1875 auto_diagnostic_group d;
1876 error_at (newdecl_loc,
1877 "default argument given for parameter %d "
1878 "of %q#D", i, newdecl);
1879 inform (olddecl_loc,
1880 "previous specification in %q#D here",
1881 olddecl);
1882 }
1883 }
1884
1885 /* C++17 11.3.6/4: "If a friend declaration specifies a default
1886 argument expression, that declaration... shall be the only
1887 declaration of the function or function template in the
1888 translation unit." */
1889 check_no_redeclaration_friend_default_args
1890 (olddecl, newdecl, DECL_HIDDEN_FRIEND_P (olddecl));
1891 }
1892 }
1893 }
1894
1895 /* Do not merge an implicit typedef with an explicit one. In:
1896
1897 class A;
1898 ...
1899 typedef class A A __attribute__ ((foo));
1900
1901 the attribute should apply only to the typedef. */
1902 if (TREE_CODE (olddecl) == TYPE_DECL
1903 && (DECL_IMPLICIT_TYPEDEF_P (olddecl)
1904 || DECL_IMPLICIT_TYPEDEF_P (newdecl)))
1905 return NULL_TREE;
1906
1907 if (!validate_constexpr_redeclaration (olddecl, newdecl))
1908 return error_mark_node;
1909
1910 /* We have committed to returning OLDDECL at this point. */
1911
1912 /* If new decl is `static' and an `extern' was seen previously,
1913 warn about it. */
1914 warn_extern_redeclared_static (newdecl, olddecl);
1915
1916 /* True to merge attributes between the declarations, false to
1917 set OLDDECL's attributes to those of NEWDECL (for template
1918 explicit specializations that specify their own attributes
1919 independent of those specified for the primary template). */
1920 const bool merge_attr = (TREE_CODE (newdecl) != FUNCTION_DECL
1921 || !DECL_TEMPLATE_SPECIALIZATION (newdecl)
1922 || DECL_TEMPLATE_SPECIALIZATION (olddecl));
1923
1924 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1925 {
1926 if (merge_attr)
1927 {
1928 if (diagnose_mismatched_attributes (olddecl, newdecl))
1929 inform (olddecl_loc, DECL_INITIAL (olddecl)
1930 ? G_("previous definition of %qD here")
1931 : G_("previous declaration of %qD here"), olddecl);
1932
1933 /* [dcl.attr.noreturn]: The first declaration of a function shall
1934 specify the noreturn attribute if any declaration of that function
1935 specifies the noreturn attribute. */
1936 tree a;
1937 if (TREE_THIS_VOLATILE (newdecl)
1938 && !TREE_THIS_VOLATILE (olddecl)
1939 /* This applies to [[noreturn]] only, not its GNU variants. */
1940 && (a = lookup_attribute ("noreturn", DECL_ATTRIBUTES (newdecl)))
1941 && cxx11_attribute_p (a)
1942 && get_attribute_namespace (a) == NULL_TREE)
1943 {
1944 error_at (newdecl_loc, "function %qD declared %<[[noreturn]]%> "
1945 "but its first declaration was not", newdecl);
1946 inform (olddecl_loc, "previous declaration of %qD", olddecl);
1947 }
1948 }
1949
1950 /* Now that functions must hold information normally held
1951 by field decls, there is extra work to do so that
1952 declaration information does not get destroyed during
1953 definition. */
1954 if (DECL_VINDEX (olddecl))
1955 DECL_VINDEX (newdecl) = DECL_VINDEX (olddecl);
1956 if (DECL_CONTEXT (olddecl))
1957 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1958 DECL_STATIC_CONSTRUCTOR (newdecl) |= DECL_STATIC_CONSTRUCTOR (olddecl);
1959 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1960 DECL_PURE_VIRTUAL_P (newdecl) |= DECL_PURE_VIRTUAL_P (olddecl);
1961 DECL_VIRTUAL_P (newdecl) |= DECL_VIRTUAL_P (olddecl);
1962 DECL_INVALID_OVERRIDER_P (newdecl) |= DECL_INVALID_OVERRIDER_P (olddecl);
1963 DECL_FINAL_P (newdecl) |= DECL_FINAL_P (olddecl);
1964 DECL_OVERRIDE_P (newdecl) |= DECL_OVERRIDE_P (olddecl);
1965 DECL_THIS_STATIC (newdecl) |= DECL_THIS_STATIC (olddecl);
1966 if (DECL_OVERLOADED_OPERATOR_P (olddecl))
1967 DECL_OVERLOADED_OPERATOR_CODE_RAW (newdecl)
1968 = DECL_OVERLOADED_OPERATOR_CODE_RAW (olddecl);
1969 new_defines_function = DECL_INITIAL (newdecl) != NULL_TREE;
1970
1971 /* Optionally warn about more than one declaration for the same
1972 name, but don't warn about a function declaration followed by a
1973 definition. */
1974 if (warn_redundant_decls && ! DECL_ARTIFICIAL (olddecl)
1975 && !(new_defines_function && DECL_INITIAL (olddecl) == NULL_TREE)
1976 /* Don't warn about extern decl followed by definition. */
1977 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl))
1978 /* Don't warn about friends, let add_friend take care of it. */
1979 && ! (newdecl_is_friend || DECL_FRIEND_P (olddecl))
1980 /* Don't warn about declaration followed by specialization. */
1981 && (! DECL_TEMPLATE_SPECIALIZATION (newdecl)
1982 || DECL_TEMPLATE_SPECIALIZATION (olddecl)))
1983 {
1984 auto_diagnostic_group d;
1985 if (warning_at (newdecl_loc,
1986 OPT_Wredundant_decls,
1987 "redundant redeclaration of %qD in same scope",
1988 newdecl))
1989 inform (olddecl_loc,
1990 "previous declaration of %qD", olddecl);
1991 }
1992
1993 if (!(DECL_TEMPLATE_INSTANTIATION (olddecl)
1994 && DECL_TEMPLATE_SPECIALIZATION (newdecl)))
1995 {
1996 if (DECL_DELETED_FN (newdecl))
1997 {
1998 auto_diagnostic_group d;
1999 error_at (newdecl_loc, "deleted definition of %qD", newdecl);
2000 inform (olddecl_loc,
2001 "previous declaration of %qD", olddecl);
2002 }
2003 DECL_DELETED_FN (newdecl) |= DECL_DELETED_FN (olddecl);
2004 }
2005 }
2006
2007 /* Deal with C++: must preserve virtual function table size. */
2008 if (TREE_CODE (olddecl) == TYPE_DECL)
2009 {
2010 tree newtype = TREE_TYPE (newdecl);
2011 tree oldtype = TREE_TYPE (olddecl);
2012
2013 if (newtype != error_mark_node && oldtype != error_mark_node
2014 && TYPE_LANG_SPECIFIC (newtype) && TYPE_LANG_SPECIFIC (oldtype))
2015 CLASSTYPE_FRIEND_CLASSES (newtype)
2016 = CLASSTYPE_FRIEND_CLASSES (oldtype);
2017
2018 DECL_ORIGINAL_TYPE (newdecl) = DECL_ORIGINAL_TYPE (olddecl);
2019 }
2020
2021 /* Copy all the DECL_... slots specified in the new decl except for
2022 any that we copy here from the old type. */
2023 if (merge_attr)
2024 DECL_ATTRIBUTES (newdecl)
2025 = (*targetm.merge_decl_attributes) (olddecl, newdecl);
2026 else
2027 DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
2028
2029 if (DECL_DECLARES_FUNCTION_P (olddecl))
2030 {
2031 olddecl_friend = DECL_FRIEND_P (olddecl);
2032 olddecl_hidden_friend = DECL_HIDDEN_FRIEND_P (olddecl);
2033 hidden_friend = (DECL_ANTICIPATED (olddecl)
2034 && DECL_HIDDEN_FRIEND_P (olddecl)
2035 && newdecl_is_friend);
2036 if (!hidden_friend)
2037 {
2038 DECL_ANTICIPATED (olddecl) = 0;
2039 DECL_HIDDEN_FRIEND_P (olddecl) = 0;
2040 }
2041 }
2042
2043 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
2044 {
2045 tree old_result = DECL_TEMPLATE_RESULT (olddecl);
2046 tree new_result = DECL_TEMPLATE_RESULT (newdecl);
2047 TREE_TYPE (olddecl) = TREE_TYPE (old_result);
2048
2049 /* The new decl should not already have gathered any
2050 specializations. */
2051 gcc_assert (!DECL_TEMPLATE_SPECIALIZATIONS (newdecl));
2052
2053 DECL_ATTRIBUTES (old_result)
2054 = (*targetm.merge_decl_attributes) (old_result, new_result);
2055
2056 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
2057 {
2058 if (DECL_SOURCE_LOCATION (newdecl)
2059 != DECL_SOURCE_LOCATION (olddecl))
2060 {
2061 /* Per C++11 8.3.6/4, default arguments cannot be added in
2062 later declarations of a function template. */
2063 check_redeclaration_no_default_args (newdecl);
2064 /* C++17 11.3.6/4: "If a friend declaration specifies a default
2065 argument expression, that declaration... shall be the only
2066 declaration of the function or function template in the
2067 translation unit." */
2068 check_no_redeclaration_friend_default_args
2069 (old_result, new_result, olddecl_hidden_friend);
2070 }
2071
2072 check_default_args (newdecl);
2073
2074 if (GNU_INLINE_P (old_result) != GNU_INLINE_P (new_result)
2075 && DECL_INITIAL (new_result))
2076 {
2077 if (DECL_INITIAL (old_result))
2078 DECL_UNINLINABLE (old_result) = 1;
2079 else
2080 DECL_UNINLINABLE (old_result) = DECL_UNINLINABLE (new_result);
2081 DECL_EXTERNAL (old_result) = DECL_EXTERNAL (new_result);
2082 DECL_NOT_REALLY_EXTERN (old_result)
2083 = DECL_NOT_REALLY_EXTERN (new_result);
2084 DECL_INTERFACE_KNOWN (old_result)
2085 = DECL_INTERFACE_KNOWN (new_result);
2086 DECL_DECLARED_INLINE_P (old_result)
2087 = DECL_DECLARED_INLINE_P (new_result);
2088 DECL_DISREGARD_INLINE_LIMITS (old_result)
2089 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
2090
2091 }
2092 else
2093 {
2094 DECL_DECLARED_INLINE_P (old_result)
2095 |= DECL_DECLARED_INLINE_P (new_result);
2096 DECL_DISREGARD_INLINE_LIMITS (old_result)
2097 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
2098 check_redeclaration_exception_specification (newdecl, olddecl);
2099
2100 merge_attribute_bits (new_result, old_result);
2101 }
2102 }
2103
2104 /* If the new declaration is a definition, update the file and
2105 line information on the declaration, and also make
2106 the old declaration the same definition. */
2107 if (DECL_INITIAL (new_result) != NULL_TREE)
2108 {
2109 DECL_SOURCE_LOCATION (olddecl)
2110 = DECL_SOURCE_LOCATION (old_result)
2111 = DECL_SOURCE_LOCATION (newdecl);
2112 DECL_INITIAL (old_result) = DECL_INITIAL (new_result);
2113 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
2114 {
2115 tree parm;
2116 DECL_ARGUMENTS (old_result)
2117 = DECL_ARGUMENTS (new_result);
2118 for (parm = DECL_ARGUMENTS (old_result); parm;
2119 parm = DECL_CHAIN (parm))
2120 DECL_CONTEXT (parm) = old_result;
2121 }
2122 }
2123
2124 return olddecl;
2125 }
2126
2127 if (types_match)
2128 {
2129 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2130 check_redeclaration_exception_specification (newdecl, olddecl);
2131
2132 /* Automatically handles default parameters. */
2133 tree oldtype = TREE_TYPE (olddecl);
2134 tree newtype;
2135
2136 /* For typedefs use the old type, as the new type's DECL_NAME points
2137 at newdecl, which will be ggc_freed. */
2138 if (TREE_CODE (newdecl) == TYPE_DECL)
2139 {
2140 /* But NEWTYPE might have an attribute, honor that. */
2141 tree tem = TREE_TYPE (newdecl);
2142 newtype = oldtype;
2143
2144 if (TYPE_USER_ALIGN (tem))
2145 {
2146 if (TYPE_ALIGN (tem) > TYPE_ALIGN (newtype))
2147 SET_TYPE_ALIGN (newtype, TYPE_ALIGN (tem));
2148 TYPE_USER_ALIGN (newtype) = true;
2149 }
2150
2151 /* And remove the new type from the variants list. */
2152 if (TYPE_NAME (TREE_TYPE (newdecl)) == newdecl)
2153 {
2154 tree remove = TREE_TYPE (newdecl);
2155 if (TYPE_MAIN_VARIANT (remove) == remove)
2156 {
2157 gcc_assert (TYPE_NEXT_VARIANT (remove) == NULL_TREE);
2158 /* If remove is the main variant, no need to remove that
2159 from the list. One of the DECL_ORIGINAL_TYPE
2160 variants, e.g. created for aligned attribute, might still
2161 refer to the newdecl TYPE_DECL though, so remove that one
2162 in that case. */
2163 if (tree orig = DECL_ORIGINAL_TYPE (newdecl))
2164 if (orig != remove)
2165 for (tree t = TYPE_MAIN_VARIANT (orig); t;
2166 t = TYPE_MAIN_VARIANT (t))
2167 if (TYPE_NAME (TYPE_NEXT_VARIANT (t)) == newdecl)
2168 {
2169 TYPE_NEXT_VARIANT (t)
2170 = TYPE_NEXT_VARIANT (TYPE_NEXT_VARIANT (t));
2171 break;
2172 }
2173 }
2174 else
2175 for (tree t = TYPE_MAIN_VARIANT (remove); ;
2176 t = TYPE_NEXT_VARIANT (t))
2177 if (TYPE_NEXT_VARIANT (t) == remove)
2178 {
2179 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (remove);
2180 break;
2181 }
2182 }
2183 }
2184 else if (merge_attr)
2185 newtype = merge_types (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
2186 else
2187 newtype = TREE_TYPE (newdecl);
2188
2189 if (VAR_P (newdecl))
2190 {
2191 DECL_THIS_EXTERN (newdecl) |= DECL_THIS_EXTERN (olddecl);
2192 /* For already initialized vars, TREE_READONLY could have been
2193 cleared in cp_finish_decl, because the var needs runtime
2194 initialization or destruction. Make sure not to set
2195 TREE_READONLY on it again. */
2196 if (DECL_INITIALIZED_P (olddecl)
2197 && !DECL_EXTERNAL (olddecl)
2198 && !TREE_READONLY (olddecl))
2199 TREE_READONLY (newdecl) = 0;
2200 DECL_INITIALIZED_P (newdecl) |= DECL_INITIALIZED_P (olddecl);
2201 DECL_NONTRIVIALLY_INITIALIZED_P (newdecl)
2202 |= DECL_NONTRIVIALLY_INITIALIZED_P (olddecl);
2203 if (DECL_DEPENDENT_INIT_P (olddecl))
2204 SET_DECL_DEPENDENT_INIT_P (newdecl, true);
2205 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (newdecl)
2206 |= DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (olddecl);
2207 DECL_DECLARED_CONSTEXPR_P (newdecl)
2208 |= DECL_DECLARED_CONSTEXPR_P (olddecl);
2209
2210 /* Merge the threadprivate attribute from OLDDECL into NEWDECL. */
2211 if (DECL_LANG_SPECIFIC (olddecl)
2212 && CP_DECL_THREADPRIVATE_P (olddecl))
2213 {
2214 /* Allocate a LANG_SPECIFIC structure for NEWDECL, if needed. */
2215 retrofit_lang_decl (newdecl);
2216 CP_DECL_THREADPRIVATE_P (newdecl) = 1;
2217 }
2218 }
2219
2220 /* An explicit specialization of a function template or of a member
2221 function of a class template can be declared transaction_safe
2222 independently of whether the corresponding template entity is declared
2223 transaction_safe. */
2224 if (flag_tm && TREE_CODE (newdecl) == FUNCTION_DECL
2225 && DECL_TEMPLATE_INSTANTIATION (olddecl)
2226 && DECL_TEMPLATE_SPECIALIZATION (newdecl)
2227 && tx_safe_fn_type_p (newtype)
2228 && !tx_safe_fn_type_p (TREE_TYPE (newdecl)))
2229 newtype = tx_unsafe_fn_variant (newtype);
2230
2231 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = newtype;
2232
2233 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2234 check_default_args (newdecl);
2235
2236 /* Lay the type out, unless already done. */
2237 if (! same_type_p (newtype, oldtype)
2238 && TREE_TYPE (newdecl) != error_mark_node
2239 && !(processing_template_decl && uses_template_parms (newdecl)))
2240 layout_type (TREE_TYPE (newdecl));
2241
2242 if ((VAR_P (newdecl)
2243 || TREE_CODE (newdecl) == PARM_DECL
2244 || TREE_CODE (newdecl) == RESULT_DECL
2245 || TREE_CODE (newdecl) == FIELD_DECL
2246 || TREE_CODE (newdecl) == TYPE_DECL)
2247 && !(processing_template_decl && uses_template_parms (newdecl)))
2248 layout_decl (newdecl, 0);
2249
2250 /* Merge deprecatedness. */
2251 if (TREE_DEPRECATED (newdecl))
2252 TREE_DEPRECATED (olddecl) = 1;
2253
2254 /* Preserve function specific target and optimization options */
2255 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2256 {
2257 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl)
2258 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl))
2259 DECL_FUNCTION_SPECIFIC_TARGET (newdecl)
2260 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl);
2261
2262 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl)
2263 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl))
2264 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl)
2265 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl);
2266 }
2267 else
2268 {
2269 /* Merge the const type qualifier. */
2270 if (TREE_READONLY (newdecl))
2271 TREE_READONLY (olddecl) = 1;
2272 /* Merge the volatile type qualifier. */
2273 if (TREE_THIS_VOLATILE (newdecl))
2274 TREE_THIS_VOLATILE (olddecl) = 1;
2275 }
2276
2277 /* Merge the initialization information. */
2278 if (DECL_INITIAL (newdecl) == NULL_TREE
2279 && DECL_INITIAL (olddecl) != NULL_TREE)
2280 {
2281 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2282 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2283 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2284 {
2285 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
2286 DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl);
2287 }
2288 }
2289
2290 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2291 {
2292 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
2293 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
2294 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
2295 if (DECL_IS_OPERATOR_NEW_P (olddecl))
2296 DECL_SET_IS_OPERATOR_NEW (newdecl, true);
2297 DECL_LOOPING_CONST_OR_PURE_P (newdecl)
2298 |= DECL_LOOPING_CONST_OR_PURE_P (olddecl);
2299
2300 if (merge_attr)
2301 merge_attribute_bits (newdecl, olddecl);
2302 else
2303 {
2304 /* Merge the noreturn bit. */
2305 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
2306 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
2307 TREE_NOTHROW (olddecl) = TREE_NOTHROW (newdecl);
2308 DECL_IS_MALLOC (olddecl) = DECL_IS_MALLOC (newdecl);
2309 DECL_PURE_P (olddecl) = DECL_PURE_P (newdecl);
2310 }
2311 /* Keep the old RTL. */
2312 COPY_DECL_RTL (olddecl, newdecl);
2313 }
2314 else if (VAR_P (newdecl)
2315 && (DECL_SIZE (olddecl) || !DECL_SIZE (newdecl)))
2316 {
2317 /* Keep the old RTL. We cannot keep the old RTL if the old
2318 declaration was for an incomplete object and the new
2319 declaration is not since many attributes of the RTL will
2320 change. */
2321 COPY_DECL_RTL (olddecl, newdecl);
2322 }
2323 }
2324 /* If cannot merge, then use the new type and qualifiers,
2325 and don't preserve the old rtl. */
2326 else
2327 {
2328 /* Clean out any memory we had of the old declaration. */
2329 tree oldstatic = value_member (olddecl, static_aggregates);
2330 if (oldstatic)
2331 TREE_VALUE (oldstatic) = error_mark_node;
2332
2333 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
2334 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
2335 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
2336 TREE_NOTHROW (olddecl) = TREE_NOTHROW (newdecl);
2337 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
2338 }
2339
2340 /* Merge the storage class information. */
2341 merge_weak (newdecl, olddecl);
2342
2343 DECL_DEFER_OUTPUT (newdecl) |= DECL_DEFER_OUTPUT (olddecl);
2344 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
2345 TREE_STATIC (olddecl) = TREE_STATIC (newdecl) |= TREE_STATIC (olddecl);
2346 if (! DECL_EXTERNAL (olddecl))
2347 DECL_EXTERNAL (newdecl) = 0;
2348 if (! DECL_COMDAT (olddecl))
2349 DECL_COMDAT (newdecl) = 0;
2350
2351 new_template_info = NULL_TREE;
2352 if (DECL_LANG_SPECIFIC (newdecl) && DECL_LANG_SPECIFIC (olddecl))
2353 {
2354 bool new_redefines_gnu_inline = false;
2355
2356 if (new_defines_function
2357 && ((DECL_INTERFACE_KNOWN (olddecl)
2358 && TREE_CODE (olddecl) == FUNCTION_DECL)
2359 || (TREE_CODE (olddecl) == TEMPLATE_DECL
2360 && (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl))
2361 == FUNCTION_DECL))))
2362 {
2363 tree fn = olddecl;
2364
2365 if (TREE_CODE (fn) == TEMPLATE_DECL)
2366 fn = DECL_TEMPLATE_RESULT (olddecl);
2367
2368 new_redefines_gnu_inline = GNU_INLINE_P (fn) && DECL_INITIAL (fn);
2369 }
2370
2371 if (!new_redefines_gnu_inline)
2372 {
2373 DECL_INTERFACE_KNOWN (newdecl) |= DECL_INTERFACE_KNOWN (olddecl);
2374 DECL_NOT_REALLY_EXTERN (newdecl) |= DECL_NOT_REALLY_EXTERN (olddecl);
2375 DECL_COMDAT (newdecl) |= DECL_COMDAT (olddecl);
2376 }
2377 DECL_TEMPLATE_INSTANTIATED (newdecl)
2378 |= DECL_TEMPLATE_INSTANTIATED (olddecl);
2379 DECL_ODR_USED (newdecl) |= DECL_ODR_USED (olddecl);
2380
2381 /* If the OLDDECL is an instantiation and/or specialization,
2382 then the NEWDECL must be too. But, it may not yet be marked
2383 as such if the caller has created NEWDECL, but has not yet
2384 figured out that it is a redeclaration. */
2385 if (!DECL_USE_TEMPLATE (newdecl))
2386 DECL_USE_TEMPLATE (newdecl) = DECL_USE_TEMPLATE (olddecl);
2387
2388 /* Don't really know how much of the language-specific
2389 values we should copy from old to new. */
2390 DECL_IN_AGGR_P (newdecl) = DECL_IN_AGGR_P (olddecl);
2391 DECL_INITIALIZED_IN_CLASS_P (newdecl)
2392 |= DECL_INITIALIZED_IN_CLASS_P (olddecl);
2393
2394 if (LANG_DECL_HAS_MIN (newdecl))
2395 {
2396 DECL_ACCESS (newdecl) = DECL_ACCESS (olddecl);
2397 if (DECL_TEMPLATE_INFO (newdecl))
2398 {
2399 new_template_info = DECL_TEMPLATE_INFO (newdecl);
2400 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
2401 && DECL_TEMPLATE_SPECIALIZATION (newdecl))
2402 /* Remember the presence of explicit specialization args. */
2403 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (olddecl))
2404 = TINFO_USED_TEMPLATE_ID (new_template_info);
2405 }
2406 DECL_TEMPLATE_INFO (newdecl) = DECL_TEMPLATE_INFO (olddecl);
2407 }
2408
2409 if (DECL_DECLARES_FUNCTION_P (newdecl))
2410 {
2411 /* Only functions have these fields. */
2412 DECL_NONCONVERTING_P (newdecl) = DECL_NONCONVERTING_P (olddecl);
2413 DECL_BEFRIENDING_CLASSES (newdecl)
2414 = chainon (DECL_BEFRIENDING_CLASSES (newdecl),
2415 DECL_BEFRIENDING_CLASSES (olddecl));
2416 /* DECL_THUNKS is only valid for virtual functions,
2417 otherwise it is a DECL_FRIEND_CONTEXT. */
2418 if (DECL_VIRTUAL_P (newdecl))
2419 SET_DECL_THUNKS (newdecl, DECL_THUNKS (olddecl));
2420 }
2421 else if (VAR_P (newdecl))
2422 {
2423 /* Only variables have this field. */
2424 if (VAR_HAD_UNKNOWN_BOUND (olddecl))
2425 SET_VAR_HAD_UNKNOWN_BOUND (newdecl);
2426 }
2427 }
2428
2429 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2430 {
2431 tree parm;
2432
2433 /* Merge parameter attributes. */
2434 tree oldarg, newarg;
2435 for (oldarg = DECL_ARGUMENTS(olddecl), newarg = DECL_ARGUMENTS(newdecl);
2436 oldarg && newarg;
2437 oldarg = DECL_CHAIN(oldarg), newarg = DECL_CHAIN(newarg))
2438 {
2439 DECL_ATTRIBUTES (newarg)
2440 = (*targetm.merge_decl_attributes) (oldarg, newarg);
2441 DECL_ATTRIBUTES (oldarg) = DECL_ATTRIBUTES (newarg);
2442 }
2443
2444 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
2445 && !DECL_TEMPLATE_INSTANTIATION (newdecl))
2446 {
2447 /* If newdecl is not a specialization, then it is not a
2448 template-related function at all. And that means that we
2449 should have exited above, returning 0. */
2450 gcc_assert (DECL_TEMPLATE_SPECIALIZATION (newdecl));
2451
2452 if (DECL_ODR_USED (olddecl))
2453 /* From [temp.expl.spec]:
2454
2455 If a template, a member template or the member of a class
2456 template is explicitly specialized then that
2457 specialization shall be declared before the first use of
2458 that specialization that would cause an implicit
2459 instantiation to take place, in every translation unit in
2460 which such a use occurs. */
2461 error ("explicit specialization of %qD after first use",
2462 olddecl);
2463
2464 SET_DECL_TEMPLATE_SPECIALIZATION (olddecl);
2465 DECL_COMDAT (newdecl) = (TREE_PUBLIC (newdecl)
2466 && DECL_DECLARED_INLINE_P (newdecl));
2467
2468 /* Don't propagate visibility from the template to the
2469 specialization here. We'll do that in determine_visibility if
2470 appropriate. */
2471 DECL_VISIBILITY_SPECIFIED (olddecl) = 0;
2472
2473 /* [temp.expl.spec/14] We don't inline explicit specialization
2474 just because the primary template says so. */
2475 gcc_assert (!merge_attr);
2476
2477 DECL_DECLARED_INLINE_P (olddecl)
2478 = DECL_DECLARED_INLINE_P (newdecl);
2479
2480 DECL_DISREGARD_INLINE_LIMITS (olddecl)
2481 = DECL_DISREGARD_INLINE_LIMITS (newdecl);
2482
2483 DECL_UNINLINABLE (olddecl) = DECL_UNINLINABLE (newdecl);
2484 }
2485 else if (new_defines_function && DECL_INITIAL (olddecl))
2486 {
2487 /* Never inline re-defined extern inline functions.
2488 FIXME: this could be better handled by keeping both
2489 function as separate declarations. */
2490 DECL_UNINLINABLE (newdecl) = 1;
2491 }
2492 else
2493 {
2494 if (DECL_PENDING_INLINE_P (olddecl))
2495 {
2496 DECL_PENDING_INLINE_P (newdecl) = 1;
2497 DECL_PENDING_INLINE_INFO (newdecl)
2498 = DECL_PENDING_INLINE_INFO (olddecl);
2499 }
2500 else if (DECL_PENDING_INLINE_P (newdecl))
2501 ;
2502 else if (DECL_SAVED_AUTO_RETURN_TYPE (newdecl) == NULL)
2503 DECL_SAVED_AUTO_RETURN_TYPE (newdecl)
2504 = DECL_SAVED_AUTO_RETURN_TYPE (olddecl);
2505
2506 DECL_DECLARED_INLINE_P (newdecl) |= DECL_DECLARED_INLINE_P (olddecl);
2507
2508 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
2509 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
2510
2511 DECL_DISREGARD_INLINE_LIMITS (newdecl)
2512 = DECL_DISREGARD_INLINE_LIMITS (olddecl)
2513 = (DECL_DISREGARD_INLINE_LIMITS (newdecl)
2514 || DECL_DISREGARD_INLINE_LIMITS (olddecl));
2515 }
2516
2517 /* Preserve abstractness on cloned [cd]tors. */
2518 DECL_ABSTRACT_P (newdecl) = DECL_ABSTRACT_P (olddecl);
2519
2520 /* Update newdecl's parms to point at olddecl. */
2521 for (parm = DECL_ARGUMENTS (newdecl); parm;
2522 parm = DECL_CHAIN (parm))
2523 DECL_CONTEXT (parm) = olddecl;
2524
2525 if (! types_match)
2526 {
2527 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
2528 COPY_DECL_ASSEMBLER_NAME (newdecl, olddecl);
2529 COPY_DECL_RTL (newdecl, olddecl);
2530 }
2531 if (! types_match || new_defines_function)
2532 {
2533 /* These need to be copied so that the names are available.
2534 Note that if the types do match, we'll preserve inline
2535 info and other bits, but if not, we won't. */
2536 DECL_ARGUMENTS (olddecl) = DECL_ARGUMENTS (newdecl);
2537 DECL_RESULT (olddecl) = DECL_RESULT (newdecl);
2538 }
2539 /* If redeclaring a builtin function, it stays built in
2540 if newdecl is a gnu_inline definition, or if newdecl is just
2541 a declaration. */
2542 if (fndecl_built_in_p (olddecl)
2543 && (new_defines_function ? GNU_INLINE_P (newdecl) : types_match))
2544 {
2545 copy_decl_built_in_function (newdecl, olddecl);
2546 /* If we're keeping the built-in definition, keep the rtl,
2547 regardless of declaration matches. */
2548 COPY_DECL_RTL (olddecl, newdecl);
2549 if (DECL_BUILT_IN_CLASS (newdecl) == BUILT_IN_NORMAL)
2550 {
2551 enum built_in_function fncode = DECL_FUNCTION_CODE (newdecl);
2552 switch (fncode)
2553 {
2554 /* If a compatible prototype of these builtin functions
2555 is seen, assume the runtime implements it with the
2556 expected semantics. */
2557 case BUILT_IN_STPCPY:
2558 if (builtin_decl_explicit_p (fncode))
2559 set_builtin_decl_implicit_p (fncode, true);
2560 break;
2561 default:
2562 if (builtin_decl_explicit_p (fncode))
2563 set_builtin_decl_declared_p (fncode, true);
2564 break;
2565 }
2566
2567 copy_attributes_to_builtin (newdecl);
2568 }
2569 }
2570 if (new_defines_function)
2571 /* If defining a function declared with other language
2572 linkage, use the previously declared language linkage. */
2573 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
2574 else if (types_match)
2575 {
2576 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2577 /* Don't clear out the arguments if we're just redeclaring a
2578 function. */
2579 if (DECL_ARGUMENTS (olddecl))
2580 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
2581 }
2582 }
2583 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
2584 NAMESPACE_LEVEL (newdecl) = NAMESPACE_LEVEL (olddecl);
2585
2586 /* Now preserve various other info from the definition. */
2587 TREE_ADDRESSABLE (newdecl) = TREE_ADDRESSABLE (olddecl);
2588 TREE_ASM_WRITTEN (newdecl) = TREE_ASM_WRITTEN (olddecl);
2589 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
2590 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
2591
2592 /* Warn about conflicting visibility specifications. */
2593 if (DECL_VISIBILITY_SPECIFIED (olddecl)
2594 && DECL_VISIBILITY_SPECIFIED (newdecl)
2595 && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
2596 {
2597 auto_diagnostic_group d;
2598 if (warning_at (newdecl_loc, OPT_Wattributes,
2599 "%qD: visibility attribute ignored because it "
2600 "conflicts with previous declaration", newdecl))
2601 inform (olddecl_loc,
2602 "previous declaration of %qD", olddecl);
2603 }
2604 /* Choose the declaration which specified visibility. */
2605 if (DECL_VISIBILITY_SPECIFIED (olddecl))
2606 {
2607 DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
2608 DECL_VISIBILITY_SPECIFIED (newdecl) = 1;
2609 }
2610 /* Init priority used to be merged from newdecl to olddecl by the memcpy,
2611 so keep this behavior. */
2612 if (VAR_P (newdecl) && DECL_HAS_INIT_PRIORITY_P (newdecl))
2613 {
2614 SET_DECL_INIT_PRIORITY (olddecl, DECL_INIT_PRIORITY (newdecl));
2615 DECL_HAS_INIT_PRIORITY_P (olddecl) = 1;
2616 }
2617 /* Likewise for DECL_ALIGN, DECL_USER_ALIGN and DECL_PACKED. */
2618 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
2619 {
2620 SET_DECL_ALIGN (newdecl, DECL_ALIGN (olddecl));
2621 DECL_USER_ALIGN (newdecl) |= DECL_USER_ALIGN (olddecl);
2622 }
2623 DECL_USER_ALIGN (olddecl) = DECL_USER_ALIGN (newdecl);
2624 if (DECL_WARN_IF_NOT_ALIGN (olddecl)
2625 > DECL_WARN_IF_NOT_ALIGN (newdecl))
2626 SET_DECL_WARN_IF_NOT_ALIGN (newdecl,
2627 DECL_WARN_IF_NOT_ALIGN (olddecl));
2628 if (TREE_CODE (newdecl) == FIELD_DECL)
2629 DECL_PACKED (olddecl) = DECL_PACKED (newdecl);
2630
2631 /* The DECL_LANG_SPECIFIC information in OLDDECL will be replaced
2632 with that from NEWDECL below. */
2633 if (DECL_LANG_SPECIFIC (olddecl))
2634 {
2635 gcc_assert (DECL_LANG_SPECIFIC (olddecl)
2636 != DECL_LANG_SPECIFIC (newdecl));
2637 ggc_free (DECL_LANG_SPECIFIC (olddecl));
2638 }
2639
2640 /* Merge the USED information. */
2641 if (TREE_USED (olddecl))
2642 TREE_USED (newdecl) = 1;
2643 else if (TREE_USED (newdecl))
2644 TREE_USED (olddecl) = 1;
2645 if (VAR_P (newdecl))
2646 {
2647 if (DECL_READ_P (olddecl))
2648 DECL_READ_P (newdecl) = 1;
2649 else if (DECL_READ_P (newdecl))
2650 DECL_READ_P (olddecl) = 1;
2651 }
2652 if (DECL_PRESERVE_P (olddecl))
2653 DECL_PRESERVE_P (newdecl) = 1;
2654 else if (DECL_PRESERVE_P (newdecl))
2655 DECL_PRESERVE_P (olddecl) = 1;
2656
2657 /* Merge the DECL_FUNCTION_VERSIONED information. newdecl will be copied
2658 to olddecl and deleted. */
2659 if (TREE_CODE (newdecl) == FUNCTION_DECL
2660 && DECL_FUNCTION_VERSIONED (olddecl))
2661 {
2662 /* Set the flag for newdecl so that it gets copied to olddecl. */
2663 DECL_FUNCTION_VERSIONED (newdecl) = 1;
2664 /* newdecl will be purged after copying to olddecl and is no longer
2665 a version. */
2666 cgraph_node::delete_function_version_by_decl (newdecl);
2667 }
2668
2669 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2670 {
2671 int function_size;
2672 struct symtab_node *snode = symtab_node::get (olddecl);
2673
2674 function_size = sizeof (struct tree_decl_common);
2675
2676 memcpy ((char *) olddecl + sizeof (struct tree_common),
2677 (char *) newdecl + sizeof (struct tree_common),
2678 function_size - sizeof (struct tree_common));
2679
2680 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2681 (char *) newdecl + sizeof (struct tree_decl_common),
2682 sizeof (struct tree_function_decl) - sizeof (struct tree_decl_common));
2683
2684 /* Preserve symtab node mapping. */
2685 olddecl->decl_with_vis.symtab_node = snode;
2686
2687 if (new_template_info)
2688 /* If newdecl is a template instantiation, it is possible that
2689 the following sequence of events has occurred:
2690
2691 o A friend function was declared in a class template. The
2692 class template was instantiated.
2693
2694 o The instantiation of the friend declaration was
2695 recorded on the instantiation list, and is newdecl.
2696
2697 o Later, however, instantiate_class_template called pushdecl
2698 on the newdecl to perform name injection. But, pushdecl in
2699 turn called duplicate_decls when it discovered that another
2700 declaration of a global function with the same name already
2701 existed.
2702
2703 o Here, in duplicate_decls, we decided to clobber newdecl.
2704
2705 If we're going to do that, we'd better make sure that
2706 olddecl, and not newdecl, is on the list of
2707 instantiations so that if we try to do the instantiation
2708 again we won't get the clobbered declaration. */
2709 reregister_specialization (newdecl,
2710 new_template_info,
2711 olddecl);
2712 }
2713 else
2714 {
2715 size_t size = tree_code_size (TREE_CODE (newdecl));
2716
2717 memcpy ((char *) olddecl + sizeof (struct tree_common),
2718 (char *) newdecl + sizeof (struct tree_common),
2719 sizeof (struct tree_decl_common) - sizeof (struct tree_common));
2720 switch (TREE_CODE (newdecl))
2721 {
2722 case LABEL_DECL:
2723 case VAR_DECL:
2724 case RESULT_DECL:
2725 case PARM_DECL:
2726 case FIELD_DECL:
2727 case TYPE_DECL:
2728 case CONST_DECL:
2729 {
2730 struct symtab_node *snode = NULL;
2731
2732 if (VAR_P (newdecl)
2733 && (TREE_STATIC (olddecl) || TREE_PUBLIC (olddecl)
2734 || DECL_EXTERNAL (olddecl)))
2735 snode = symtab_node::get (olddecl);
2736 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2737 (char *) newdecl + sizeof (struct tree_decl_common),
2738 size - sizeof (struct tree_decl_common)
2739 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
2740 if (VAR_P (newdecl))
2741 olddecl->decl_with_vis.symtab_node = snode;
2742 }
2743 break;
2744 default:
2745 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2746 (char *) newdecl + sizeof (struct tree_decl_common),
2747 sizeof (struct tree_decl_non_common) - sizeof (struct tree_decl_common)
2748 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
2749 break;
2750 }
2751 }
2752
2753 if (VAR_OR_FUNCTION_DECL_P (newdecl))
2754 {
2755 if (DECL_EXTERNAL (olddecl)
2756 || TREE_PUBLIC (olddecl)
2757 || TREE_STATIC (olddecl))
2758 {
2759 /* Merge the section attribute.
2760 We want to issue an error if the sections conflict but that must be
2761 done later in decl_attributes since we are called before attributes
2762 are assigned. */
2763 if (DECL_SECTION_NAME (newdecl) != NULL)
2764 set_decl_section_name (olddecl, DECL_SECTION_NAME (newdecl));
2765
2766 if (DECL_ONE_ONLY (newdecl))
2767 {
2768 struct symtab_node *oldsym, *newsym;
2769 if (TREE_CODE (olddecl) == FUNCTION_DECL)
2770 oldsym = cgraph_node::get_create (olddecl);
2771 else
2772 oldsym = varpool_node::get_create (olddecl);
2773 newsym = symtab_node::get (newdecl);
2774 oldsym->set_comdat_group (newsym->get_comdat_group ());
2775 }
2776 }
2777
2778 if (VAR_P (newdecl)
2779 && CP_DECL_THREAD_LOCAL_P (newdecl))
2780 {
2781 CP_DECL_THREAD_LOCAL_P (olddecl) = true;
2782 if (!processing_template_decl)
2783 set_decl_tls_model (olddecl, DECL_TLS_MODEL (newdecl));
2784 }
2785 }
2786
2787 DECL_UID (olddecl) = olddecl_uid;
2788 if (olddecl_friend)
2789 DECL_FRIEND_P (olddecl) = 1;
2790 if (hidden_friend)
2791 {
2792 DECL_ANTICIPATED (olddecl) = 1;
2793 DECL_HIDDEN_FRIEND_P (olddecl) = 1;
2794 }
2795
2796 /* NEWDECL contains the merged attribute lists.
2797 Update OLDDECL to be the same. */
2798 DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
2799
2800 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
2801 so that encode_section_info has a chance to look at the new decl
2802 flags and attributes. */
2803 if (DECL_RTL_SET_P (olddecl)
2804 && (TREE_CODE (olddecl) == FUNCTION_DECL
2805 || (VAR_P (olddecl)
2806 && TREE_STATIC (olddecl))))
2807 make_decl_rtl (olddecl);
2808
2809 /* The NEWDECL will no longer be needed. Because every out-of-class
2810 declaration of a member results in a call to duplicate_decls,
2811 freeing these nodes represents in a significant savings.
2812
2813 Before releasing the node, be sore to remove function from symbol
2814 table that might have been inserted there to record comdat group.
2815 Be sure to however do not free DECL_STRUCT_FUNCTION because this
2816 structure is shared in between newdecl and oldecl. */
2817 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2818 DECL_STRUCT_FUNCTION (newdecl) = NULL;
2819 if (VAR_OR_FUNCTION_DECL_P (newdecl))
2820 {
2821 struct symtab_node *snode = symtab_node::get (newdecl);
2822 if (snode)
2823 snode->remove ();
2824 }
2825
2826 /* Remove the associated constraints for newdecl, if any, before
2827 reclaiming memory. */
2828 if (flag_concepts)
2829 remove_constraints (newdecl);
2830
2831 ggc_free (newdecl);
2832
2833 return olddecl;
2834 }
2835 \f
2836 /* Return zero if the declaration NEWDECL is valid
2837 when the declaration OLDDECL (assumed to be for the same name)
2838 has already been seen.
2839 Otherwise return an error message format string with a %s
2840 where the identifier should go. */
2841
2842 static const char *
2843 redeclaration_error_message (tree newdecl, tree olddecl)
2844 {
2845 if (TREE_CODE (newdecl) == TYPE_DECL)
2846 {
2847 /* Because C++ can put things into name space for free,
2848 constructs like "typedef struct foo { ... } foo"
2849 would look like an erroneous redeclaration. */
2850 if (same_type_p (TREE_TYPE (newdecl), TREE_TYPE (olddecl)))
2851 return NULL;
2852 else
2853 return G_("redefinition of %q#D");
2854 }
2855 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2856 {
2857 /* If this is a pure function, its olddecl will actually be
2858 the original initialization to `0' (which we force to call
2859 abort()). Don't complain about redefinition in this case. */
2860 if (DECL_LANG_SPECIFIC (olddecl) && DECL_PURE_VIRTUAL_P (olddecl)
2861 && DECL_INITIAL (olddecl) == NULL_TREE)
2862 return NULL;
2863
2864 /* If both functions come from different namespaces, this is not
2865 a redeclaration - this is a conflict with a used function. */
2866 if (DECL_NAMESPACE_SCOPE_P (olddecl)
2867 && DECL_CONTEXT (olddecl) != DECL_CONTEXT (newdecl)
2868 && ! decls_match (olddecl, newdecl))
2869 return G_("%qD conflicts with used function");
2870
2871 /* We'll complain about linkage mismatches in
2872 warn_extern_redeclared_static. */
2873
2874 /* Defining the same name twice is no good. */
2875 if (decl_defined_p (olddecl)
2876 && decl_defined_p (newdecl))
2877 {
2878 if (DECL_NAME (olddecl) == NULL_TREE)
2879 return G_("%q#D not declared in class");
2880 else if (!GNU_INLINE_P (olddecl)
2881 || GNU_INLINE_P (newdecl))
2882 return G_("redefinition of %q#D");
2883 }
2884
2885 if (DECL_DECLARED_INLINE_P (olddecl) && DECL_DECLARED_INLINE_P (newdecl))
2886 {
2887 bool olda = GNU_INLINE_P (olddecl);
2888 bool newa = GNU_INLINE_P (newdecl);
2889
2890 if (olda != newa)
2891 {
2892 if (newa)
2893 return G_("%q+D redeclared inline with "
2894 "%<gnu_inline%> attribute");
2895 else
2896 return G_("%q+D redeclared inline without "
2897 "%<gnu_inline%> attribute");
2898 }
2899 }
2900
2901 check_abi_tag_redeclaration
2902 (olddecl, lookup_attribute ("abi_tag", DECL_ATTRIBUTES (olddecl)),
2903 lookup_attribute ("abi_tag", DECL_ATTRIBUTES (newdecl)));
2904
2905 return NULL;
2906 }
2907 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
2908 {
2909 tree nt, ot;
2910
2911 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
2912 {
2913 if (COMPLETE_TYPE_P (TREE_TYPE (newdecl))
2914 && COMPLETE_TYPE_P (TREE_TYPE (olddecl)))
2915 return G_("redefinition of %q#D");
2916 return NULL;
2917 }
2918
2919 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != FUNCTION_DECL
2920 || (DECL_TEMPLATE_RESULT (newdecl)
2921 == DECL_TEMPLATE_RESULT (olddecl)))
2922 return NULL;
2923
2924 nt = DECL_TEMPLATE_RESULT (newdecl);
2925 if (DECL_TEMPLATE_INFO (nt))
2926 nt = DECL_TEMPLATE_RESULT (template_for_substitution (nt));
2927 ot = DECL_TEMPLATE_RESULT (olddecl);
2928 if (DECL_TEMPLATE_INFO (ot))
2929 ot = DECL_TEMPLATE_RESULT (template_for_substitution (ot));
2930 if (DECL_INITIAL (nt) && DECL_INITIAL (ot)
2931 && (!GNU_INLINE_P (ot) || GNU_INLINE_P (nt)))
2932 return G_("redefinition of %q#D");
2933
2934 if (DECL_DECLARED_INLINE_P (ot) && DECL_DECLARED_INLINE_P (nt))
2935 {
2936 bool olda = GNU_INLINE_P (ot);
2937 bool newa = GNU_INLINE_P (nt);
2938
2939 if (olda != newa)
2940 {
2941 if (newa)
2942 return G_("%q+D redeclared inline with "
2943 "%<gnu_inline%> attribute");
2944 else
2945 return G_("%q+D redeclared inline without "
2946 "%<gnu_inline%> attribute");
2947 }
2948 }
2949
2950 /* Core issue #226 (C++0x):
2951
2952 If a friend function template declaration specifies a
2953 default template-argument, that declaration shall be a
2954 definition and shall be the only declaration of the
2955 function template in the translation unit. */
2956 if ((cxx_dialect != cxx98)
2957 && TREE_CODE (ot) == FUNCTION_DECL && DECL_FRIEND_P (ot)
2958 && !check_default_tmpl_args (nt, DECL_TEMPLATE_PARMS (newdecl),
2959 /*is_primary=*/true,
2960 /*is_partial=*/false,
2961 /*is_friend_decl=*/2))
2962 return G_("redeclaration of friend %q#D "
2963 "may not have default template arguments");
2964
2965 return NULL;
2966 }
2967 else if (VAR_P (newdecl)
2968 && CP_DECL_THREAD_LOCAL_P (newdecl) != CP_DECL_THREAD_LOCAL_P (olddecl)
2969 && (! DECL_LANG_SPECIFIC (olddecl)
2970 || ! CP_DECL_THREADPRIVATE_P (olddecl)
2971 || CP_DECL_THREAD_LOCAL_P (newdecl)))
2972 {
2973 /* Only variables can be thread-local, and all declarations must
2974 agree on this property. */
2975 if (CP_DECL_THREAD_LOCAL_P (newdecl))
2976 return G_("thread-local declaration of %q#D follows "
2977 "non-thread-local declaration");
2978 else
2979 return G_("non-thread-local declaration of %q#D follows "
2980 "thread-local declaration");
2981 }
2982 else if (toplevel_bindings_p () || DECL_NAMESPACE_SCOPE_P (newdecl))
2983 {
2984 /* The objects have been declared at namespace scope. If either
2985 is a member of an anonymous union, then this is an invalid
2986 redeclaration. For example:
2987
2988 int i;
2989 union { int i; };
2990
2991 is invalid. */
2992 if ((VAR_P (newdecl) && DECL_ANON_UNION_VAR_P (newdecl))
2993 || (VAR_P (olddecl) && DECL_ANON_UNION_VAR_P (olddecl)))
2994 return G_("redeclaration of %q#D");
2995 /* If at least one declaration is a reference, there is no
2996 conflict. For example:
2997
2998 int i = 3;
2999 extern int i;
3000
3001 is valid. */
3002 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
3003 return NULL;
3004
3005 /* Static data member declared outside a class definition
3006 if the variable is defined within the class with constexpr
3007 specifier is declaration rather than definition (and
3008 deprecated). */
3009 if (cxx_dialect >= cxx17
3010 && VAR_P (olddecl)
3011 && DECL_CLASS_SCOPE_P (olddecl)
3012 && DECL_DECLARED_CONSTEXPR_P (olddecl)
3013 && !DECL_INITIAL (newdecl))
3014 {
3015 DECL_EXTERNAL (newdecl) = 1;
3016 /* For now, only warn with explicit -Wdeprecated. */
3017 if (global_options_set.x_warn_deprecated)
3018 {
3019 auto_diagnostic_group d;
3020 if (warning_at (DECL_SOURCE_LOCATION (newdecl), OPT_Wdeprecated,
3021 "redundant redeclaration of %<constexpr%> "
3022 "static data member %qD", newdecl))
3023 inform (DECL_SOURCE_LOCATION (olddecl),
3024 "previous declaration of %qD", olddecl);
3025 }
3026 return NULL;
3027 }
3028
3029 /* Reject two definitions. */
3030 return G_("redefinition of %q#D");
3031 }
3032 else
3033 {
3034 /* Objects declared with block scope: */
3035 /* Reject two definitions, and reject a definition
3036 together with an external reference. */
3037 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl)))
3038 return G_("redeclaration of %q#D");
3039 return NULL;
3040 }
3041 }
3042 \f
3043
3044 /* Hash and equality functions for the named_label table. */
3045
3046 hashval_t
3047 named_label_hash::hash (const value_type entry)
3048 {
3049 return IDENTIFIER_HASH_VALUE (entry->name);
3050 }
3051
3052 bool
3053 named_label_hash::equal (const value_type entry, compare_type name)
3054 {
3055 return name == entry->name;
3056 }
3057
3058 /* Look for a label named ID in the current function. If one cannot
3059 be found, create one. Return the named_label_entry, or NULL on
3060 failure. */
3061
3062 static named_label_entry *
3063 lookup_label_1 (tree id, bool making_local_p)
3064 {
3065 /* You can't use labels at global scope. */
3066 if (current_function_decl == NULL_TREE)
3067 {
3068 error ("label %qE referenced outside of any function", id);
3069 return NULL;
3070 }
3071
3072 if (!named_labels)
3073 named_labels = hash_table<named_label_hash>::create_ggc (13);
3074
3075 hashval_t hash = IDENTIFIER_HASH_VALUE (id);
3076 named_label_entry **slot
3077 = named_labels->find_slot_with_hash (id, hash, INSERT);
3078 named_label_entry *old = *slot;
3079
3080 if (old && old->label_decl)
3081 {
3082 if (!making_local_p)
3083 return old;
3084
3085 if (old->binding_level == current_binding_level)
3086 {
3087 error ("local label %qE conflicts with existing label", id);
3088 inform (DECL_SOURCE_LOCATION (old->label_decl), "previous label");
3089 return NULL;
3090 }
3091 }
3092
3093 /* We are making a new decl, create or reuse the named_label_entry */
3094 named_label_entry *ent = NULL;
3095 if (old && !old->label_decl)
3096 ent = old;
3097 else
3098 {
3099 ent = ggc_cleared_alloc<named_label_entry> ();
3100 ent->name = id;
3101 ent->outer = old;
3102 *slot = ent;
3103 }
3104
3105 /* Now create the LABEL_DECL. */
3106 tree decl = build_decl (input_location, LABEL_DECL, id, void_type_node);
3107
3108 DECL_CONTEXT (decl) = current_function_decl;
3109 SET_DECL_MODE (decl, VOIDmode);
3110 if (making_local_p)
3111 {
3112 C_DECLARED_LABEL_FLAG (decl) = true;
3113 DECL_CHAIN (decl) = current_binding_level->names;
3114 current_binding_level->names = decl;
3115 }
3116
3117 ent->label_decl = decl;
3118
3119 return ent;
3120 }
3121
3122 /* Wrapper for lookup_label_1. */
3123
3124 tree
3125 lookup_label (tree id)
3126 {
3127 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
3128 named_label_entry *ent = lookup_label_1 (id, false);
3129 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
3130 return ent ? ent->label_decl : NULL_TREE;
3131 }
3132
3133 tree
3134 declare_local_label (tree id)
3135 {
3136 bool subtime = timevar_cond_start (TV_NAME_LOOKUP);
3137 named_label_entry *ent = lookup_label_1 (id, true);
3138 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
3139 return ent ? ent->label_decl : NULL_TREE;
3140 }
3141
3142 /* Returns nonzero if it is ill-formed to jump past the declaration of
3143 DECL. Returns 2 if it's also a real problem. */
3144
3145 static int
3146 decl_jump_unsafe (tree decl)
3147 {
3148 /* [stmt.dcl]/3: A program that jumps from a point where a local variable
3149 with automatic storage duration is not in scope to a point where it is
3150 in scope is ill-formed unless the variable has scalar type, class type
3151 with a trivial default constructor and a trivial destructor, a
3152 cv-qualified version of one of these types, or an array of one of the
3153 preceding types and is declared without an initializer (8.5). */
3154 tree type = TREE_TYPE (decl);
3155
3156 if (!VAR_P (decl) || TREE_STATIC (decl)
3157 || type == error_mark_node)
3158 return 0;
3159
3160 if (DECL_NONTRIVIALLY_INITIALIZED_P (decl)
3161 || variably_modified_type_p (type, NULL_TREE))
3162 return 2;
3163
3164 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
3165 return 1;
3166
3167 return 0;
3168 }
3169
3170 /* A subroutine of check_previous_goto_1 and check_goto to identify a branch
3171 to the user. */
3172
3173 static bool
3174 identify_goto (tree decl, location_t loc, const location_t *locus,
3175 diagnostic_t diag_kind)
3176 {
3177 bool complained
3178 = emit_diagnostic (diag_kind, loc, 0,
3179 decl ? N_("jump to label %qD")
3180 : N_("jump to case label"), decl);
3181 if (complained && locus)
3182 inform (*locus, " from here");
3183 return complained;
3184 }
3185
3186 /* Check that a single previously seen jump to a newly defined label
3187 is OK. DECL is the LABEL_DECL or 0; LEVEL is the binding_level for
3188 the jump context; NAMES are the names in scope in LEVEL at the jump
3189 context; LOCUS is the source position of the jump or 0. Returns
3190 true if all is well. */
3191
3192 static bool
3193 check_previous_goto_1 (tree decl, cp_binding_level* level, tree names,
3194 bool exited_omp, const location_t *locus)
3195 {
3196 cp_binding_level *b;
3197 bool complained = false;
3198 int identified = 0;
3199 bool saw_eh = false, saw_omp = false, saw_tm = false, saw_cxif = false;
3200
3201 if (exited_omp)
3202 {
3203 complained = identify_goto (decl, input_location, locus, DK_ERROR);
3204 if (complained)
3205 inform (input_location, " exits OpenMP structured block");
3206 saw_omp = true;
3207 identified = 2;
3208 }
3209
3210 for (b = current_binding_level; b ; b = b->level_chain)
3211 {
3212 tree new_decls, old_decls = (b == level ? names : NULL_TREE);
3213
3214 for (new_decls = b->names; new_decls != old_decls;
3215 new_decls = (DECL_P (new_decls) ? DECL_CHAIN (new_decls)
3216 : TREE_CHAIN (new_decls)))
3217 {
3218 int problem = decl_jump_unsafe (new_decls);
3219 if (! problem)
3220 continue;
3221
3222 if (!identified)
3223 {
3224 complained = identify_goto (decl, input_location, locus,
3225 problem > 1
3226 ? DK_ERROR : DK_PERMERROR);
3227 identified = 1;
3228 }
3229 if (complained)
3230 {
3231 if (problem > 1)
3232 inform (DECL_SOURCE_LOCATION (new_decls),
3233 " crosses initialization of %q#D", new_decls);
3234 else
3235 inform (DECL_SOURCE_LOCATION (new_decls),
3236 " enters scope of %q#D, which has "
3237 "non-trivial destructor", new_decls);
3238 }
3239 }
3240
3241 if (b == level)
3242 break;
3243
3244 const char *inf = NULL;
3245 location_t loc = input_location;
3246 switch (b->kind)
3247 {
3248 case sk_try:
3249 if (!saw_eh)
3250 inf = G_(" enters %<try%> block");
3251 saw_eh = true;
3252 break;
3253
3254 case sk_catch:
3255 if (!saw_eh)
3256 inf = G_(" enters %<catch%> block");
3257 saw_eh = true;
3258 break;
3259
3260 case sk_omp:
3261 if (!saw_omp)
3262 inf = G_(" enters OpenMP structured block");
3263 saw_omp = true;
3264 break;
3265
3266 case sk_transaction:
3267 if (!saw_tm)
3268 inf = G_(" enters synchronized or atomic statement");
3269 saw_tm = true;
3270 break;
3271
3272 case sk_block:
3273 if (!saw_cxif && level_for_constexpr_if (b->level_chain))
3274 {
3275 inf = G_(" enters %<constexpr if%> statement");
3276 loc = EXPR_LOCATION (b->level_chain->this_entity);
3277 saw_cxif = true;
3278 }
3279 break;
3280
3281 default:
3282 break;
3283 }
3284
3285 if (inf)
3286 {
3287 if (identified < 2)
3288 complained = identify_goto (decl, input_location, locus, DK_ERROR);
3289 identified = 2;
3290 if (complained)
3291 inform (loc, inf);
3292 }
3293 }
3294
3295 return !identified;
3296 }
3297
3298 static void
3299 check_previous_goto (tree decl, struct named_label_use_entry *use)
3300 {
3301 check_previous_goto_1 (decl, use->binding_level,
3302 use->names_in_scope, use->in_omp_scope,
3303 &use->o_goto_locus);
3304 }
3305
3306 static bool
3307 check_switch_goto (cp_binding_level* level)
3308 {
3309 return check_previous_goto_1 (NULL_TREE, level, level->names, false, NULL);
3310 }
3311
3312 /* Check that a new jump to a label DECL is OK. Called by
3313 finish_goto_stmt. */
3314
3315 void
3316 check_goto (tree decl)
3317 {
3318 /* We can't know where a computed goto is jumping.
3319 So we assume that it's OK. */
3320 if (TREE_CODE (decl) != LABEL_DECL)
3321 return;
3322
3323 /* We didn't record any information about this label when we created it,
3324 and there's not much point since it's trivial to analyze as a return. */
3325 if (decl == cdtor_label)
3326 return;
3327
3328 hashval_t hash = IDENTIFIER_HASH_VALUE (DECL_NAME (decl));
3329 named_label_entry **slot
3330 = named_labels->find_slot_with_hash (DECL_NAME (decl), hash, NO_INSERT);
3331 named_label_entry *ent = *slot;
3332
3333 /* If the label hasn't been defined yet, defer checking. */
3334 if (! DECL_INITIAL (decl))
3335 {
3336 /* Don't bother creating another use if the last goto had the
3337 same data, and will therefore create the same set of errors. */
3338 if (ent->uses
3339 && ent->uses->names_in_scope == current_binding_level->names)
3340 return;
3341
3342 named_label_use_entry *new_use
3343 = ggc_alloc<named_label_use_entry> ();
3344 new_use->binding_level = current_binding_level;
3345 new_use->names_in_scope = current_binding_level->names;
3346 new_use->o_goto_locus = input_location;
3347 new_use->in_omp_scope = false;
3348
3349 new_use->next = ent->uses;
3350 ent->uses = new_use;
3351 return;
3352 }
3353
3354 bool saw_catch = false, complained = false;
3355 int identified = 0;
3356 tree bad;
3357 unsigned ix;
3358
3359 if (ent->in_try_scope || ent->in_catch_scope || ent->in_transaction_scope
3360 || ent->in_constexpr_if
3361 || ent->in_omp_scope || !vec_safe_is_empty (ent->bad_decls))
3362 {
3363 diagnostic_t diag_kind = DK_PERMERROR;
3364 if (ent->in_try_scope || ent->in_catch_scope || ent->in_constexpr_if
3365 || ent->in_transaction_scope || ent->in_omp_scope)
3366 diag_kind = DK_ERROR;
3367 complained = identify_goto (decl, DECL_SOURCE_LOCATION (decl),
3368 &input_location, diag_kind);
3369 identified = 1 + (diag_kind == DK_ERROR);
3370 }
3371
3372 FOR_EACH_VEC_SAFE_ELT (ent->bad_decls, ix, bad)
3373 {
3374 int u = decl_jump_unsafe (bad);
3375
3376 if (u > 1 && DECL_ARTIFICIAL (bad))
3377 {
3378 /* Can't skip init of __exception_info. */
3379 if (identified == 1)
3380 {
3381 complained = identify_goto (decl, DECL_SOURCE_LOCATION (decl),
3382 &input_location, DK_ERROR);
3383 identified = 2;
3384 }
3385 if (complained)
3386 inform (DECL_SOURCE_LOCATION (bad), " enters %<catch%> block");
3387 saw_catch = true;
3388 }
3389 else if (complained)
3390 {
3391 if (u > 1)
3392 inform (DECL_SOURCE_LOCATION (bad),
3393 " skips initialization of %q#D", bad);
3394 else
3395 inform (DECL_SOURCE_LOCATION (bad),
3396 " enters scope of %q#D which has "
3397 "non-trivial destructor", bad);
3398 }
3399 }
3400
3401 if (complained)
3402 {
3403 if (ent->in_try_scope)
3404 inform (input_location, " enters %<try%> block");
3405 else if (ent->in_catch_scope && !saw_catch)
3406 inform (input_location, " enters %<catch%> block");
3407 else if (ent->in_transaction_scope)
3408 inform (input_location, " enters synchronized or atomic statement");
3409 else if (ent->in_constexpr_if)
3410 inform (input_location, " enters %<constexpr if%> statement");
3411 }
3412
3413 if (ent->in_omp_scope)
3414 {
3415 if (complained)
3416 inform (input_location, " enters OpenMP structured block");
3417 }
3418 else if (flag_openmp)
3419 for (cp_binding_level *b = current_binding_level; b ; b = b->level_chain)
3420 {
3421 if (b == ent->binding_level)
3422 break;
3423 if (b->kind == sk_omp)
3424 {
3425 if (identified < 2)
3426 {
3427 complained = identify_goto (decl,
3428 DECL_SOURCE_LOCATION (decl),
3429 &input_location, DK_ERROR);
3430 identified = 2;
3431 }
3432 if (complained)
3433 inform (input_location, " exits OpenMP structured block");
3434 break;
3435 }
3436 }
3437 }
3438
3439 /* Check that a return is ok wrt OpenMP structured blocks.
3440 Called by finish_return_stmt. Returns true if all is well. */
3441
3442 bool
3443 check_omp_return (void)
3444 {
3445 for (cp_binding_level *b = current_binding_level; b ; b = b->level_chain)
3446 if (b->kind == sk_omp)
3447 {
3448 error ("invalid exit from OpenMP structured block");
3449 return false;
3450 }
3451 else if (b->kind == sk_function_parms)
3452 break;
3453 return true;
3454 }
3455
3456 /* Define a label, specifying the location in the source file.
3457 Return the LABEL_DECL node for the label. */
3458
3459 static tree
3460 define_label_1 (location_t location, tree name)
3461 {
3462 /* After labels, make any new cleanups in the function go into their
3463 own new (temporary) binding contour. */
3464 for (cp_binding_level *p = current_binding_level;
3465 p->kind != sk_function_parms;
3466 p = p->level_chain)
3467 p->more_cleanups_ok = 0;
3468
3469 named_label_entry *ent = lookup_label_1 (name, false);
3470 tree decl = ent->label_decl;
3471
3472 if (DECL_INITIAL (decl) != NULL_TREE)
3473 {
3474 error ("duplicate label %qD", decl);
3475 return error_mark_node;
3476 }
3477 else
3478 {
3479 /* Mark label as having been defined. */
3480 DECL_INITIAL (decl) = error_mark_node;
3481 /* Say where in the source. */
3482 DECL_SOURCE_LOCATION (decl) = location;
3483
3484 ent->binding_level = current_binding_level;
3485 ent->names_in_scope = current_binding_level->names;
3486
3487 for (named_label_use_entry *use = ent->uses; use; use = use->next)
3488 check_previous_goto (decl, use);
3489 ent->uses = NULL;
3490 }
3491
3492 return decl;
3493 }
3494
3495 /* Wrapper for define_label_1. */
3496
3497 tree
3498 define_label (location_t location, tree name)
3499 {
3500 bool running = timevar_cond_start (TV_NAME_LOOKUP);
3501 tree ret = define_label_1 (location, name);
3502 timevar_cond_stop (TV_NAME_LOOKUP, running);
3503 return ret;
3504 }
3505
3506
3507 struct cp_switch
3508 {
3509 cp_binding_level *level;
3510 struct cp_switch *next;
3511 /* The SWITCH_STMT being built. */
3512 tree switch_stmt;
3513 /* A splay-tree mapping the low element of a case range to the high
3514 element, or NULL_TREE if there is no high element. Used to
3515 determine whether or not a new case label duplicates an old case
3516 label. We need a tree, rather than simply a hash table, because
3517 of the GNU case range extension. */
3518 splay_tree cases;
3519 /* Remember whether a default: case label has been seen. */
3520 bool has_default_p;
3521 /* Remember whether a BREAK_STMT has been seen in this SWITCH_STMT. */
3522 bool break_stmt_seen_p;
3523 /* Set if inside of {FOR,DO,WHILE}_BODY nested inside of a switch,
3524 where BREAK_STMT doesn't belong to the SWITCH_STMT. */
3525 bool in_loop_body_p;
3526 };
3527
3528 /* A stack of the currently active switch statements. The innermost
3529 switch statement is on the top of the stack. There is no need to
3530 mark the stack for garbage collection because it is only active
3531 during the processing of the body of a function, and we never
3532 collect at that point. */
3533
3534 static struct cp_switch *switch_stack;
3535
3536 /* Called right after a switch-statement condition is parsed.
3537 SWITCH_STMT is the switch statement being parsed. */
3538
3539 void
3540 push_switch (tree switch_stmt)
3541 {
3542 struct cp_switch *p = XNEW (struct cp_switch);
3543 p->level = current_binding_level;
3544 p->next = switch_stack;
3545 p->switch_stmt = switch_stmt;
3546 p->cases = splay_tree_new (case_compare, NULL, NULL);
3547 p->has_default_p = false;
3548 p->break_stmt_seen_p = false;
3549 p->in_loop_body_p = false;
3550 switch_stack = p;
3551 }
3552
3553 void
3554 pop_switch (void)
3555 {
3556 struct cp_switch *cs = switch_stack;
3557 location_t switch_location;
3558
3559 /* Emit warnings as needed. */
3560 switch_location = cp_expr_loc_or_input_loc (cs->switch_stmt);
3561 const bool bool_cond_p
3562 = (SWITCH_STMT_TYPE (cs->switch_stmt)
3563 && TREE_CODE (SWITCH_STMT_TYPE (cs->switch_stmt)) == BOOLEAN_TYPE);
3564 if (!processing_template_decl)
3565 c_do_switch_warnings (cs->cases, switch_location,
3566 SWITCH_STMT_TYPE (cs->switch_stmt),
3567 SWITCH_STMT_COND (cs->switch_stmt), bool_cond_p);
3568
3569 /* For the benefit of block_may_fallthru remember if the switch body
3570 case labels cover all possible values and if there are break; stmts. */
3571 if (cs->has_default_p
3572 || (!processing_template_decl
3573 && c_switch_covers_all_cases_p (cs->cases,
3574 SWITCH_STMT_TYPE (cs->switch_stmt))))
3575 SWITCH_STMT_ALL_CASES_P (cs->switch_stmt) = 1;
3576 if (!cs->break_stmt_seen_p)
3577 SWITCH_STMT_NO_BREAK_P (cs->switch_stmt) = 1;
3578 gcc_assert (!cs->in_loop_body_p);
3579 splay_tree_delete (cs->cases);
3580 switch_stack = switch_stack->next;
3581 free (cs);
3582 }
3583
3584 /* Note that a BREAK_STMT is about to be added. If it is inside of
3585 a SWITCH_STMT and not inside of a loop body inside of it, note
3586 in switch_stack we've seen a BREAK_STMT. */
3587
3588 void
3589 note_break_stmt (void)
3590 {
3591 if (switch_stack && !switch_stack->in_loop_body_p)
3592 switch_stack->break_stmt_seen_p = true;
3593 }
3594
3595 /* Note the start of processing of an iteration statement's body.
3596 The note_break_stmt function will do nothing while processing it.
3597 Return a flag that should be passed to note_iteration_stmt_body_end. */
3598
3599 bool
3600 note_iteration_stmt_body_start (void)
3601 {
3602 if (!switch_stack)
3603 return false;
3604 bool ret = switch_stack->in_loop_body_p;
3605 switch_stack->in_loop_body_p = true;
3606 return ret;
3607 }
3608
3609 /* Note the end of processing of an iteration statement's body. */
3610
3611 void
3612 note_iteration_stmt_body_end (bool prev)
3613 {
3614 if (switch_stack)
3615 switch_stack->in_loop_body_p = prev;
3616 }
3617
3618 /* Convert a case constant VALUE in a switch to the type TYPE of the switch
3619 condition. Note that if TYPE and VALUE are already integral we don't
3620 really do the conversion because the language-independent
3621 warning/optimization code will work better that way. */
3622
3623 static tree
3624 case_conversion (tree type, tree value)
3625 {
3626 if (value == NULL_TREE)
3627 return value;
3628
3629 value = mark_rvalue_use (value);
3630
3631 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
3632 type = type_promotes_to (type);
3633
3634 tree ovalue = value;
3635 /* The constant-expression VALUE shall be a converted constant expression
3636 of the adjusted type of the switch condition, which doesn't allow
3637 narrowing conversions. */
3638 value = build_converted_constant_expr (type, value, tf_warning_or_error);
3639
3640 if (cxx_dialect >= cxx11
3641 && (SCOPED_ENUM_P (type)
3642 || !INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (ovalue))))
3643 /* Use the converted value. */;
3644 else
3645 /* The already integral case. */
3646 value = ovalue;
3647
3648 return cxx_constant_value (value);
3649 }
3650
3651 /* Note that we've seen a definition of a case label, and complain if this
3652 is a bad place for one. */
3653
3654 tree
3655 finish_case_label (location_t loc, tree low_value, tree high_value)
3656 {
3657 tree cond, r;
3658 cp_binding_level *p;
3659 tree type;
3660
3661 if (low_value == NULL_TREE && high_value == NULL_TREE)
3662 switch_stack->has_default_p = true;
3663
3664 if (processing_template_decl)
3665 {
3666 tree label;
3667
3668 /* For templates, just add the case label; we'll do semantic
3669 analysis at instantiation-time. */
3670 label = build_decl (loc, LABEL_DECL, NULL_TREE, void_type_node);
3671 return add_stmt (build_case_label (low_value, high_value, label));
3672 }
3673
3674 /* Find the condition on which this switch statement depends. */
3675 cond = SWITCH_STMT_COND (switch_stack->switch_stmt);
3676 if (cond && TREE_CODE (cond) == TREE_LIST)
3677 cond = TREE_VALUE (cond);
3678
3679 if (!check_switch_goto (switch_stack->level))
3680 return error_mark_node;
3681
3682 type = SWITCH_STMT_TYPE (switch_stack->switch_stmt);
3683 if (type == error_mark_node)
3684 return error_mark_node;
3685
3686 low_value = case_conversion (type, low_value);
3687 high_value = case_conversion (type, high_value);
3688
3689 r = c_add_case_label (loc, switch_stack->cases, cond, low_value, high_value);
3690
3691 /* After labels, make any new cleanups in the function go into their
3692 own new (temporary) binding contour. */
3693 for (p = current_binding_level;
3694 p->kind != sk_function_parms;
3695 p = p->level_chain)
3696 p->more_cleanups_ok = 0;
3697
3698 return r;
3699 }
3700 \f
3701 struct typename_info {
3702 tree scope;
3703 tree name;
3704 tree template_id;
3705 bool enum_p;
3706 bool class_p;
3707 };
3708
3709 struct typename_hasher : ggc_ptr_hash<tree_node>
3710 {
3711 typedef typename_info *compare_type;
3712
3713 /* Hash a TYPENAME_TYPE. */
3714
3715 static hashval_t
3716 hash (tree t)
3717 {
3718 hashval_t hash;
3719
3720 hash = (htab_hash_pointer (TYPE_CONTEXT (t))
3721 ^ htab_hash_pointer (TYPE_IDENTIFIER (t)));
3722
3723 return hash;
3724 }
3725
3726 /* Compare two TYPENAME_TYPEs. */
3727
3728 static bool
3729 equal (tree t1, const typename_info *t2)
3730 {
3731 return (TYPE_IDENTIFIER (t1) == t2->name
3732 && TYPE_CONTEXT (t1) == t2->scope
3733 && TYPENAME_TYPE_FULLNAME (t1) == t2->template_id
3734 && TYPENAME_IS_ENUM_P (t1) == t2->enum_p
3735 && TYPENAME_IS_CLASS_P (t1) == t2->class_p);
3736 }
3737 };
3738
3739 /* Build a TYPENAME_TYPE. If the type is `typename T::t', CONTEXT is
3740 the type of `T', NAME is the IDENTIFIER_NODE for `t'.
3741
3742 Returns the new TYPENAME_TYPE. */
3743
3744 static GTY (()) hash_table<typename_hasher> *typename_htab;
3745
3746 tree
3747 build_typename_type (tree context, tree name, tree fullname,
3748 enum tag_types tag_type)
3749 {
3750 tree t;
3751 tree d;
3752 typename_info ti;
3753 tree *e;
3754 hashval_t hash;
3755
3756 if (typename_htab == NULL)
3757 typename_htab = hash_table<typename_hasher>::create_ggc (61);
3758
3759 ti.scope = FROB_CONTEXT (context);
3760 ti.name = name;
3761 ti.template_id = fullname;
3762 ti.enum_p = tag_type == enum_type;
3763 ti.class_p = (tag_type == class_type
3764 || tag_type == record_type
3765 || tag_type == union_type);
3766 hash = (htab_hash_pointer (ti.scope)
3767 ^ htab_hash_pointer (ti.name));
3768
3769 /* See if we already have this type. */
3770 e = typename_htab->find_slot_with_hash (&ti, hash, INSERT);
3771 if (*e)
3772 t = *e;
3773 else
3774 {
3775 /* Build the TYPENAME_TYPE. */
3776 t = cxx_make_type (TYPENAME_TYPE);
3777 TYPE_CONTEXT (t) = ti.scope;
3778 TYPENAME_TYPE_FULLNAME (t) = ti.template_id;
3779 TYPENAME_IS_ENUM_P (t) = ti.enum_p;
3780 TYPENAME_IS_CLASS_P (t) = ti.class_p;
3781
3782 /* Build the corresponding TYPE_DECL. */
3783 d = build_decl (input_location, TYPE_DECL, name, t);
3784 TYPE_NAME (TREE_TYPE (d)) = d;
3785 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
3786 DECL_CONTEXT (d) = FROB_CONTEXT (context);
3787 DECL_ARTIFICIAL (d) = 1;
3788
3789 /* Store it in the hash table. */
3790 *e = t;
3791
3792 /* TYPENAME_TYPEs must always be compared structurally, because
3793 they may or may not resolve down to another type depending on
3794 the currently open classes. */
3795 SET_TYPE_STRUCTURAL_EQUALITY (t);
3796 }
3797
3798 return t;
3799 }
3800
3801 /* Resolve `typename CONTEXT::NAME'. TAG_TYPE indicates the tag
3802 provided to name the type. Returns an appropriate type, unless an
3803 error occurs, in which case error_mark_node is returned. If we
3804 locate a non-artificial TYPE_DECL and TF_KEEP_TYPE_DECL is set, we
3805 return that, rather than the _TYPE it corresponds to, in other
3806 cases we look through the type decl. If TF_ERROR is set, complain
3807 about errors, otherwise be quiet. */
3808
3809 tree
3810 make_typename_type (tree context, tree name, enum tag_types tag_type,
3811 tsubst_flags_t complain)
3812 {
3813 tree fullname;
3814 tree t;
3815 bool want_template;
3816
3817 if (name == error_mark_node
3818 || context == NULL_TREE
3819 || context == error_mark_node)
3820 return error_mark_node;
3821
3822 if (TYPE_P (name))
3823 {
3824 if (!(TYPE_LANG_SPECIFIC (name)
3825 && (CLASSTYPE_IS_TEMPLATE (name)
3826 || CLASSTYPE_USE_TEMPLATE (name))))
3827 name = TYPE_IDENTIFIER (name);
3828 else
3829 /* Create a TEMPLATE_ID_EXPR for the type. */
3830 name = build_nt (TEMPLATE_ID_EXPR,
3831 CLASSTYPE_TI_TEMPLATE (name),
3832 CLASSTYPE_TI_ARGS (name));
3833 }
3834 else if (TREE_CODE (name) == TYPE_DECL)
3835 name = DECL_NAME (name);
3836
3837 fullname = name;
3838
3839 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
3840 {
3841 name = TREE_OPERAND (name, 0);
3842 if (DECL_TYPE_TEMPLATE_P (name))
3843 name = TREE_OPERAND (fullname, 0) = DECL_NAME (name);
3844 if (TREE_CODE (name) != IDENTIFIER_NODE)
3845 {
3846 if (complain & tf_error)
3847 error ("%qD is not a type", name);
3848 return error_mark_node;
3849 }
3850 }
3851 if (TREE_CODE (name) == TEMPLATE_DECL)
3852 {
3853 if (complain & tf_error)
3854 error ("%qD used without template arguments", name);
3855 return error_mark_node;
3856 }
3857 gcc_assert (identifier_p (name));
3858 gcc_assert (TYPE_P (context));
3859
3860 if (TREE_CODE (context) == TYPE_PACK_EXPANSION)
3861 /* This can happen for C++17 variadic using (c++/88986). */;
3862 else if (!MAYBE_CLASS_TYPE_P (context))
3863 {
3864 if (complain & tf_error)
3865 error ("%q#T is not a class", context);
3866 return error_mark_node;
3867 }
3868
3869 /* When the CONTEXT is a dependent type, NAME could refer to a
3870 dependent base class of CONTEXT. But look inside it anyway
3871 if CONTEXT is a currently open scope, in case it refers to a
3872 member of the current instantiation or a non-dependent base;
3873 lookup will stop when we hit a dependent base. */
3874 if (!dependent_scope_p (context))
3875 /* We should only set WANT_TYPE when we're a nested typename type.
3876 Then we can give better diagnostics if we find a non-type. */
3877 t = lookup_field (context, name, 2, /*want_type=*/true);
3878 else
3879 t = NULL_TREE;
3880
3881 if ((!t || TREE_CODE (t) == TREE_LIST) && dependent_type_p (context))
3882 return build_typename_type (context, name, fullname, tag_type);
3883
3884 want_template = TREE_CODE (fullname) == TEMPLATE_ID_EXPR;
3885
3886 if (!t)
3887 {
3888 if (complain & tf_error)
3889 {
3890 if (!COMPLETE_TYPE_P (context))
3891 cxx_incomplete_type_error (NULL_TREE, context);
3892 else
3893 error (want_template ? G_("no class template named %q#T in %q#T")
3894 : G_("no type named %q#T in %q#T"), name, context);
3895 }
3896 return error_mark_node;
3897 }
3898
3899 /* Pull out the template from an injected-class-name (or multiple). */
3900 if (want_template)
3901 t = maybe_get_template_decl_from_type_decl (t);
3902
3903 if (TREE_CODE (t) == TREE_LIST)
3904 {
3905 if (complain & tf_error)
3906 {
3907 error ("lookup of %qT in %qT is ambiguous", name, context);
3908 print_candidates (t);
3909 }
3910 return error_mark_node;
3911 }
3912
3913 if (want_template && !DECL_TYPE_TEMPLATE_P (t))
3914 {
3915 if (complain & tf_error)
3916 error ("%<typename %T::%D%> names %q#T, which is not a class template",
3917 context, name, t);
3918 return error_mark_node;
3919 }
3920 if (!want_template && TREE_CODE (t) != TYPE_DECL)
3921 {
3922 if (complain & tf_error)
3923 error ("%<typename %T::%D%> names %q#T, which is not a type",
3924 context, name, t);
3925 return error_mark_node;
3926 }
3927
3928 if (!perform_or_defer_access_check (TYPE_BINFO (context), t, t, complain))
3929 return error_mark_node;
3930
3931 /* If we are currently parsing a template and if T is a typedef accessed
3932 through CONTEXT then we need to remember and check access of T at
3933 template instantiation time. */
3934 add_typedef_to_current_template_for_access_check (t, context, input_location);
3935
3936 if (want_template)
3937 return lookup_template_class (t, TREE_OPERAND (fullname, 1),
3938 NULL_TREE, context,
3939 /*entering_scope=*/0,
3940 complain | tf_user);
3941
3942 if (DECL_ARTIFICIAL (t) || !(complain & tf_keep_type_decl))
3943 t = TREE_TYPE (t);
3944
3945 maybe_record_typedef_use (t);
3946
3947 return t;
3948 }
3949
3950 /* Resolve `CONTEXT::template NAME'. Returns a TEMPLATE_DECL if the name
3951 can be resolved or an UNBOUND_CLASS_TEMPLATE, unless an error occurs,
3952 in which case error_mark_node is returned.
3953
3954 If PARM_LIST is non-NULL, also make sure that the template parameter
3955 list of TEMPLATE_DECL matches.
3956
3957 If COMPLAIN zero, don't complain about any errors that occur. */
3958
3959 tree
3960 make_unbound_class_template (tree context, tree name, tree parm_list,
3961 tsubst_flags_t complain)
3962 {
3963 tree t;
3964 tree d;
3965
3966 if (TYPE_P (name))
3967 name = TYPE_IDENTIFIER (name);
3968 else if (DECL_P (name))
3969 name = DECL_NAME (name);
3970 gcc_assert (identifier_p (name));
3971
3972 if (!dependent_type_p (context)
3973 || currently_open_class (context))
3974 {
3975 tree tmpl = NULL_TREE;
3976
3977 if (MAYBE_CLASS_TYPE_P (context))
3978 tmpl = lookup_field (context, name, 0, false);
3979
3980 if (tmpl && TREE_CODE (tmpl) == TYPE_DECL)
3981 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
3982
3983 if (!tmpl || !DECL_TYPE_TEMPLATE_P (tmpl))
3984 {
3985 if (complain & tf_error)
3986 error ("no class template named %q#T in %q#T", name, context);
3987 return error_mark_node;
3988 }
3989
3990 if (parm_list
3991 && !comp_template_parms (DECL_TEMPLATE_PARMS (tmpl), parm_list))
3992 {
3993 if (complain & tf_error)
3994 {
3995 error ("template parameters do not match template %qD", tmpl);
3996 inform (DECL_SOURCE_LOCATION (tmpl),
3997 "%qD declared here", tmpl);
3998 }
3999 return error_mark_node;
4000 }
4001
4002 if (!perform_or_defer_access_check (TYPE_BINFO (context), tmpl, tmpl,
4003 complain))
4004 return error_mark_node;
4005
4006 return tmpl;
4007 }
4008
4009 /* Build the UNBOUND_CLASS_TEMPLATE. */
4010 t = cxx_make_type (UNBOUND_CLASS_TEMPLATE);
4011 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
4012 TREE_TYPE (t) = NULL_TREE;
4013 SET_TYPE_STRUCTURAL_EQUALITY (t);
4014
4015 /* Build the corresponding TEMPLATE_DECL. */
4016 d = build_decl (input_location, TEMPLATE_DECL, name, t);
4017 TYPE_NAME (TREE_TYPE (d)) = d;
4018 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
4019 DECL_CONTEXT (d) = FROB_CONTEXT (context);
4020 DECL_ARTIFICIAL (d) = 1;
4021 DECL_TEMPLATE_PARMS (d) = parm_list;
4022
4023 return t;
4024 }
4025
4026 \f
4027
4028 /* Push the declarations of builtin types into the global namespace.
4029 RID_INDEX is the index of the builtin type in the array
4030 RID_POINTERS. NAME is the name used when looking up the builtin
4031 type. TYPE is the _TYPE node for the builtin type.
4032
4033 The calls to set_global_binding below should be
4034 eliminated. Built-in types should not be looked up name; their
4035 names are keywords that the parser can recognize. However, there
4036 is code in c-common.c that uses identifier_global_value to look up
4037 built-in types by name. */
4038
4039 void
4040 record_builtin_type (enum rid rid_index,
4041 const char* name,
4042 tree type)
4043 {
4044 tree decl = NULL_TREE;
4045
4046 if (name)
4047 {
4048 tree tname = get_identifier (name);
4049 tree tdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, tname, type);
4050 DECL_ARTIFICIAL (tdecl) = 1;
4051 set_global_binding (tdecl);
4052 decl = tdecl;
4053 }
4054
4055 if ((int) rid_index < (int) RID_MAX)
4056 if (tree rname = ridpointers[(int) rid_index])
4057 if (!decl || DECL_NAME (decl) != rname)
4058 {
4059 tree rdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, rname, type);
4060 DECL_ARTIFICIAL (rdecl) = 1;
4061 set_global_binding (rdecl);
4062 if (!decl)
4063 decl = rdecl;
4064 }
4065
4066 if (decl)
4067 {
4068 if (!TYPE_NAME (type))
4069 TYPE_NAME (type) = decl;
4070 debug_hooks->type_decl (decl, 0);
4071 }
4072 }
4073
4074 /* Push a type into the namespace so that the back ends ignore it. */
4075
4076 static void
4077 record_unknown_type (tree type, const char* name)
4078 {
4079 tree decl = pushdecl (build_decl (UNKNOWN_LOCATION,
4080 TYPE_DECL, get_identifier (name), type));
4081 /* Make sure the "unknown type" typedecl gets ignored for debug info. */
4082 DECL_IGNORED_P (decl) = 1;
4083 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
4084 TYPE_SIZE (type) = TYPE_SIZE (void_type_node);
4085 SET_TYPE_ALIGN (type, 1);
4086 TYPE_USER_ALIGN (type) = 0;
4087 SET_TYPE_MODE (type, TYPE_MODE (void_type_node));
4088 }
4089
4090 /* Create all the predefined identifiers. */
4091
4092 static void
4093 initialize_predefined_identifiers (void)
4094 {
4095 struct predefined_identifier
4096 {
4097 const char *name; /* Name. */
4098 tree *node; /* Node to store it in. */
4099 cp_identifier_kind kind; /* Kind of identifier. */
4100 };
4101
4102 /* A table of identifiers to create at startup. */
4103 static const predefined_identifier predefined_identifiers[] = {
4104 {"C++", &lang_name_cplusplus, cik_normal},
4105 {"C", &lang_name_c, cik_normal},
4106 /* Some of these names have a trailing space so that it is
4107 impossible for them to conflict with names written by users. */
4108 {"__ct ", &ctor_identifier, cik_ctor},
4109 {"__ct_base ", &base_ctor_identifier, cik_ctor},
4110 {"__ct_comp ", &complete_ctor_identifier, cik_ctor},
4111 {"__dt ", &dtor_identifier, cik_dtor},
4112 {"__dt_base ", &base_dtor_identifier, cik_dtor},
4113 {"__dt_comp ", &complete_dtor_identifier, cik_dtor},
4114 {"__dt_del ", &deleting_dtor_identifier, cik_dtor},
4115 {"__conv_op ", &conv_op_identifier, cik_conv_op},
4116 {"__in_chrg", &in_charge_identifier, cik_normal},
4117 {"this", &this_identifier, cik_normal},
4118 {"__delta", &delta_identifier, cik_normal},
4119 {"__pfn", &pfn_identifier, cik_normal},
4120 {"_vptr", &vptr_identifier, cik_normal},
4121 {"__vtt_parm", &vtt_parm_identifier, cik_normal},
4122 {"::", &global_identifier, cik_normal},
4123 {"std", &std_identifier, cik_normal},
4124 /* The demangler expects anonymous namespaces to be called
4125 something starting with '_GLOBAL__N_'. It no longer needs
4126 to be unique to the TU. */
4127 {"_GLOBAL__N_1", &anon_identifier, cik_normal},
4128 {"auto", &auto_identifier, cik_normal},
4129 {"decltype(auto)", &decltype_auto_identifier, cik_normal},
4130 {"initializer_list", &init_list_identifier, cik_normal},
4131 {"__for_range ", &for_range__identifier, cik_normal},
4132 {"__for_begin ", &for_begin__identifier, cik_normal},
4133 {"__for_end ", &for_end__identifier, cik_normal},
4134 {"__for_range", &for_range_identifier, cik_normal},
4135 {"__for_begin", &for_begin_identifier, cik_normal},
4136 {"__for_end", &for_end_identifier, cik_normal},
4137 {"abi_tag", &abi_tag_identifier, cik_normal},
4138 {"aligned", &aligned_identifier, cik_normal},
4139 {"begin", &begin_identifier, cik_normal},
4140 {"end", &end_identifier, cik_normal},
4141 {"get", &get__identifier, cik_normal},
4142 {"gnu", &gnu_identifier, cik_normal},
4143 {"tuple_element", &tuple_element_identifier, cik_normal},
4144 {"tuple_size", &tuple_size_identifier, cik_normal},
4145 {"type", &type_identifier, cik_normal},
4146 {"value", &value_identifier, cik_normal},
4147 {"_FUN", &fun_identifier, cik_normal},
4148 {"__closure", &closure_identifier, cik_normal},
4149 {NULL, NULL, cik_normal}
4150 };
4151
4152 for (const predefined_identifier *pid = predefined_identifiers;
4153 pid->name; ++pid)
4154 {
4155 *pid->node = get_identifier (pid->name);
4156 /* Some of these identifiers already have a special kind. */
4157 if (pid->kind != cik_normal)
4158 set_identifier_kind (*pid->node, pid->kind);
4159 }
4160 }
4161
4162 /* Create the predefined scalar types of C,
4163 and some nodes representing standard constants (0, 1, (void *)0).
4164 Initialize the global binding level.
4165 Make definitions for built-in primitive functions. */
4166
4167 void
4168 cxx_init_decl_processing (void)
4169 {
4170 tree void_ftype;
4171 tree void_ftype_ptr;
4172
4173 /* Create all the identifiers we need. */
4174 initialize_predefined_identifiers ();
4175
4176 /* Create the global variables. */
4177 push_to_top_level ();
4178
4179 current_function_decl = NULL_TREE;
4180 current_binding_level = NULL;
4181 /* Enter the global namespace. */
4182 gcc_assert (global_namespace == NULL_TREE);
4183 global_namespace = build_lang_decl (NAMESPACE_DECL, global_identifier,
4184 void_type_node);
4185 TREE_PUBLIC (global_namespace) = 1;
4186 DECL_CONTEXT (global_namespace)
4187 = build_translation_unit_decl (get_identifier (main_input_filename));
4188 /* Remember whether we want the empty class passing ABI change warning
4189 in this TU. */
4190 TRANSLATION_UNIT_WARN_EMPTY_P (DECL_CONTEXT (global_namespace))
4191 = warn_abi && abi_version_crosses (12);
4192 debug_hooks->register_main_translation_unit
4193 (DECL_CONTEXT (global_namespace));
4194 begin_scope (sk_namespace, global_namespace);
4195 current_namespace = global_namespace;
4196
4197 if (flag_visibility_ms_compat)
4198 default_visibility = VISIBILITY_HIDDEN;
4199
4200 /* Initially, C. */
4201 current_lang_name = lang_name_c;
4202
4203 /* Create the `std' namespace. */
4204 push_namespace (std_identifier);
4205 std_node = current_namespace;
4206 pop_namespace ();
4207
4208 flag_noexcept_type = (cxx_dialect >= cxx17);
4209
4210 c_common_nodes_and_builtins ();
4211
4212 tree bool_ftype = build_function_type_list (boolean_type_node, NULL_TREE);
4213 tree decl
4214 = add_builtin_function ("__builtin_is_constant_evaluated",
4215 bool_ftype, CP_BUILT_IN_IS_CONSTANT_EVALUATED,
4216 BUILT_IN_FRONTEND, NULL, NULL_TREE);
4217 set_call_expr_flags (decl, ECF_CONST | ECF_NOTHROW | ECF_LEAF);
4218
4219 integer_two_node = build_int_cst (NULL_TREE, 2);
4220
4221 /* Guess at the initial static decls size. */
4222 vec_alloc (static_decls, 500);
4223
4224 /* ... and keyed classes. */
4225 vec_alloc (keyed_classes, 100);
4226
4227 record_builtin_type (RID_BOOL, "bool", boolean_type_node);
4228 truthvalue_type_node = boolean_type_node;
4229 truthvalue_false_node = boolean_false_node;
4230 truthvalue_true_node = boolean_true_node;
4231
4232 empty_except_spec = build_tree_list (NULL_TREE, NULL_TREE);
4233 noexcept_true_spec = build_tree_list (boolean_true_node, NULL_TREE);
4234 noexcept_false_spec = build_tree_list (boolean_false_node, NULL_TREE);
4235 noexcept_deferred_spec = build_tree_list (make_node (DEFERRED_NOEXCEPT),
4236 NULL_TREE);
4237
4238 #if 0
4239 record_builtin_type (RID_MAX, NULL, string_type_node);
4240 #endif
4241
4242 delta_type_node = ptrdiff_type_node;
4243 vtable_index_type = ptrdiff_type_node;
4244
4245 vtt_parm_type = build_pointer_type (const_ptr_type_node);
4246 void_ftype = build_function_type_list (void_type_node, NULL_TREE);
4247 void_ftype_ptr = build_function_type_list (void_type_node,
4248 ptr_type_node, NULL_TREE);
4249 void_ftype_ptr
4250 = build_exception_variant (void_ftype_ptr, empty_except_spec);
4251
4252 /* Create the conversion operator marker. This operator's DECL_NAME
4253 is in the identifier table, so we can use identifier equality to
4254 find it. */
4255 conv_op_marker = build_lang_decl (FUNCTION_DECL, conv_op_identifier,
4256 void_ftype);
4257
4258 /* C++ extensions */
4259
4260 unknown_type_node = make_node (LANG_TYPE);
4261 record_unknown_type (unknown_type_node, "unknown type");
4262
4263 /* Indirecting an UNKNOWN_TYPE node yields an UNKNOWN_TYPE node. */
4264 TREE_TYPE (unknown_type_node) = unknown_type_node;
4265
4266 /* Looking up TYPE_POINTER_TO and TYPE_REFERENCE_TO yield the same
4267 result. */
4268 TYPE_POINTER_TO (unknown_type_node) = unknown_type_node;
4269 TYPE_REFERENCE_TO (unknown_type_node) = unknown_type_node;
4270
4271 init_list_type_node = make_node (LANG_TYPE);
4272 record_unknown_type (init_list_type_node, "init list");
4273
4274 {
4275 /* Make sure we get a unique function type, so we can give
4276 its pointer type a name. (This wins for gdb.) */
4277 tree vfunc_type = make_node (FUNCTION_TYPE);
4278 TREE_TYPE (vfunc_type) = integer_type_node;
4279 TYPE_ARG_TYPES (vfunc_type) = NULL_TREE;
4280 layout_type (vfunc_type);
4281
4282 vtable_entry_type = build_pointer_type (vfunc_type);
4283 }
4284 record_builtin_type (RID_MAX, "__vtbl_ptr_type", vtable_entry_type);
4285
4286 vtbl_type_node
4287 = build_cplus_array_type (vtable_entry_type, NULL_TREE);
4288 layout_type (vtbl_type_node);
4289 vtbl_type_node = cp_build_qualified_type (vtbl_type_node, TYPE_QUAL_CONST);
4290 record_builtin_type (RID_MAX, NULL, vtbl_type_node);
4291 vtbl_ptr_type_node = build_pointer_type (vtable_entry_type);
4292 layout_type (vtbl_ptr_type_node);
4293 record_builtin_type (RID_MAX, NULL, vtbl_ptr_type_node);
4294
4295 push_namespace (get_identifier ("__cxxabiv1"));
4296 abi_node = current_namespace;
4297 pop_namespace ();
4298
4299 global_type_node = make_node (LANG_TYPE);
4300 record_unknown_type (global_type_node, "global type");
4301
4302 any_targ_node = make_node (LANG_TYPE);
4303 record_unknown_type (any_targ_node, "any type");
4304
4305 /* Now, C++. */
4306 current_lang_name = lang_name_cplusplus;
4307
4308 if (aligned_new_threshold > 1
4309 && !pow2p_hwi (aligned_new_threshold))
4310 {
4311 error ("%<-faligned-new=%d%> is not a power of two",
4312 aligned_new_threshold);
4313 aligned_new_threshold = 1;
4314 }
4315 if (aligned_new_threshold == -1)
4316 aligned_new_threshold = (cxx_dialect >= cxx17) ? 1 : 0;
4317 if (aligned_new_threshold == 1)
4318 aligned_new_threshold = malloc_alignment () / BITS_PER_UNIT;
4319
4320 {
4321 tree newattrs, extvisattr;
4322 tree newtype, deltype;
4323 tree ptr_ftype_sizetype;
4324 tree new_eh_spec;
4325
4326 ptr_ftype_sizetype
4327 = build_function_type_list (ptr_type_node, size_type_node, NULL_TREE);
4328 if (cxx_dialect == cxx98)
4329 {
4330 tree bad_alloc_id;
4331 tree bad_alloc_type_node;
4332 tree bad_alloc_decl;
4333
4334 push_namespace (std_identifier);
4335 bad_alloc_id = get_identifier ("bad_alloc");
4336 bad_alloc_type_node = make_class_type (RECORD_TYPE);
4337 TYPE_CONTEXT (bad_alloc_type_node) = current_namespace;
4338 bad_alloc_decl
4339 = create_implicit_typedef (bad_alloc_id, bad_alloc_type_node);
4340 DECL_CONTEXT (bad_alloc_decl) = current_namespace;
4341 pop_namespace ();
4342
4343 new_eh_spec
4344 = add_exception_specifier (NULL_TREE, bad_alloc_type_node, -1);
4345 }
4346 else
4347 new_eh_spec = noexcept_false_spec;
4348
4349 /* Ensure attribs.c is initialized. */
4350 init_attributes ();
4351
4352 /* Ensure constraint.cc is initialized. */
4353 init_constraint_processing ();
4354
4355 extvisattr = build_tree_list (get_identifier ("externally_visible"),
4356 NULL_TREE);
4357 newattrs = tree_cons (get_identifier ("alloc_size"),
4358 build_tree_list (NULL_TREE, integer_one_node),
4359 extvisattr);
4360 newtype = cp_build_type_attribute_variant (ptr_ftype_sizetype, newattrs);
4361 newtype = build_exception_variant (newtype, new_eh_spec);
4362 deltype = cp_build_type_attribute_variant (void_ftype_ptr, extvisattr);
4363 deltype = build_exception_variant (deltype, empty_except_spec);
4364 tree opnew = push_cp_library_fn (NEW_EXPR, newtype, 0);
4365 DECL_IS_MALLOC (opnew) = 1;
4366 DECL_SET_IS_OPERATOR_NEW (opnew, true);
4367 opnew = push_cp_library_fn (VEC_NEW_EXPR, newtype, 0);
4368 DECL_IS_MALLOC (opnew) = 1;
4369 DECL_SET_IS_OPERATOR_NEW (opnew, true);
4370 tree opdel = push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4371 DECL_SET_IS_OPERATOR_DELETE (opdel, true);
4372 opdel = push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4373 DECL_SET_IS_OPERATOR_DELETE (opdel, true);
4374 if (flag_sized_deallocation)
4375 {
4376 /* Also push the sized deallocation variants:
4377 void operator delete(void*, std::size_t) throw();
4378 void operator delete[](void*, std::size_t) throw(); */
4379 tree void_ftype_ptr_size
4380 = build_function_type_list (void_type_node, ptr_type_node,
4381 size_type_node, NULL_TREE);
4382 deltype = cp_build_type_attribute_variant (void_ftype_ptr_size,
4383 extvisattr);
4384 deltype = build_exception_variant (deltype, empty_except_spec);
4385 opdel = push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4386 DECL_SET_IS_OPERATOR_DELETE (opdel, true);
4387 opdel = push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4388 DECL_SET_IS_OPERATOR_DELETE (opdel, true);
4389 }
4390
4391 if (aligned_new_threshold)
4392 {
4393 push_namespace (std_identifier);
4394 tree align_id = get_identifier ("align_val_t");
4395 align_type_node = start_enum (align_id, NULL_TREE, size_type_node,
4396 NULL_TREE, /*scoped*/true, NULL);
4397 pop_namespace ();
4398
4399 /* operator new (size_t, align_val_t); */
4400 newtype = build_function_type_list (ptr_type_node, size_type_node,
4401 align_type_node, NULL_TREE);
4402 newtype = cp_build_type_attribute_variant (newtype, newattrs);
4403 newtype = build_exception_variant (newtype, new_eh_spec);
4404 opnew = push_cp_library_fn (NEW_EXPR, newtype, 0);
4405 DECL_IS_MALLOC (opnew) = 1;
4406 DECL_SET_IS_OPERATOR_NEW (opnew, true);
4407 opnew = push_cp_library_fn (VEC_NEW_EXPR, newtype, 0);
4408 DECL_IS_MALLOC (opnew) = 1;
4409 DECL_SET_IS_OPERATOR_NEW (opnew, true);
4410
4411 /* operator delete (void *, align_val_t); */
4412 deltype = build_function_type_list (void_type_node, ptr_type_node,
4413 align_type_node, NULL_TREE);
4414 deltype = cp_build_type_attribute_variant (deltype, extvisattr);
4415 deltype = build_exception_variant (deltype, empty_except_spec);
4416 opdel = push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4417 DECL_SET_IS_OPERATOR_DELETE (opdel, true);
4418 opdel = push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4419 DECL_SET_IS_OPERATOR_DELETE (opdel, true);
4420
4421 if (flag_sized_deallocation)
4422 {
4423 /* operator delete (void *, size_t, align_val_t); */
4424 deltype = build_function_type_list (void_type_node, ptr_type_node,
4425 size_type_node, align_type_node,
4426 NULL_TREE);
4427 deltype = cp_build_type_attribute_variant (deltype, extvisattr);
4428 deltype = build_exception_variant (deltype, empty_except_spec);
4429 opdel = push_cp_library_fn (DELETE_EXPR, deltype, ECF_NOTHROW);
4430 DECL_SET_IS_OPERATOR_DELETE (opdel, true);
4431 opdel = push_cp_library_fn (VEC_DELETE_EXPR, deltype, ECF_NOTHROW);
4432 DECL_SET_IS_OPERATOR_DELETE (opdel, true);
4433 }
4434 }
4435
4436 nullptr_type_node = make_node (NULLPTR_TYPE);
4437 TYPE_SIZE (nullptr_type_node) = bitsize_int (GET_MODE_BITSIZE (ptr_mode));
4438 TYPE_SIZE_UNIT (nullptr_type_node) = size_int (GET_MODE_SIZE (ptr_mode));
4439 TYPE_UNSIGNED (nullptr_type_node) = 1;
4440 TYPE_PRECISION (nullptr_type_node) = GET_MODE_BITSIZE (ptr_mode);
4441 if (abi_version_at_least (9))
4442 SET_TYPE_ALIGN (nullptr_type_node, GET_MODE_ALIGNMENT (ptr_mode));
4443 SET_TYPE_MODE (nullptr_type_node, ptr_mode);
4444 record_builtin_type (RID_MAX, "decltype(nullptr)", nullptr_type_node);
4445 nullptr_node = build_int_cst (nullptr_type_node, 0);
4446 }
4447
4448 abort_fndecl
4449 = build_library_fn_ptr ("__cxa_pure_virtual", void_ftype,
4450 ECF_NORETURN | ECF_NOTHROW | ECF_COLD);
4451
4452 /* Perform other language dependent initializations. */
4453 init_class_processing ();
4454 init_rtti_processing ();
4455 init_template_processing ();
4456
4457 if (flag_exceptions)
4458 init_exception_processing ();
4459
4460 if (! supports_one_only ())
4461 flag_weak = 0;
4462
4463 make_fname_decl = cp_make_fname_decl;
4464 start_fname_decls ();
4465
4466 /* Show we use EH for cleanups. */
4467 if (flag_exceptions)
4468 using_eh_for_cleanups ();
4469 }
4470
4471 /* Generate an initializer for a function naming variable from
4472 NAME. NAME may be NULL, to indicate a dependent name. TYPE_P is
4473 filled in with the type of the init. */
4474
4475 tree
4476 cp_fname_init (const char* name, tree *type_p)
4477 {
4478 tree domain = NULL_TREE;
4479 tree type;
4480 tree init = NULL_TREE;
4481 size_t length = 0;
4482
4483 if (name)
4484 {
4485 length = strlen (name);
4486 domain = build_index_type (size_int (length));
4487 init = build_string (length + 1, name);
4488 }
4489
4490 type = cp_build_qualified_type (char_type_node, TYPE_QUAL_CONST);
4491 type = build_cplus_array_type (type, domain);
4492
4493 *type_p = type;
4494
4495 if (init)
4496 TREE_TYPE (init) = type;
4497 else
4498 init = error_mark_node;
4499
4500 return init;
4501 }
4502
4503 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give
4504 the decl, LOC is the location to give the decl, NAME is the
4505 initialization string and TYPE_DEP indicates whether NAME depended
4506 on the type of the function. We make use of that to detect
4507 __PRETTY_FUNCTION__ inside a template fn. This is being done lazily
4508 at the point of first use, so we mustn't push the decl now. */
4509
4510 static tree
4511 cp_make_fname_decl (location_t loc, tree id, int type_dep)
4512 {
4513 const char * name = NULL;
4514 bool release_name = false;
4515 if (!(type_dep && in_template_function ()))
4516 {
4517 if (current_function_decl == NULL_TREE)
4518 name = "top level";
4519 else if (type_dep == 1) /* __PRETTY_FUNCTION__ */
4520 name = cxx_printable_name (current_function_decl, 2);
4521 else if (type_dep == 0) /* __FUNCTION__ */
4522 {
4523 name = fname_as_string (type_dep);
4524 release_name = true;
4525 }
4526 else
4527 gcc_unreachable ();
4528 }
4529 tree type;
4530 tree init = cp_fname_init (name, &type);
4531 tree decl = build_decl (loc, VAR_DECL, id, type);
4532
4533 if (release_name)
4534 free (CONST_CAST (char *, name));
4535
4536 /* As we're using pushdecl_with_scope, we must set the context. */
4537 DECL_CONTEXT (decl) = current_function_decl;
4538
4539 TREE_READONLY (decl) = 1;
4540 DECL_ARTIFICIAL (decl) = 1;
4541 DECL_DECLARED_CONSTEXPR_P (decl) = 1;
4542 TREE_STATIC (decl) = 1;
4543
4544 TREE_USED (decl) = 1;
4545
4546 if (init)
4547 {
4548 SET_DECL_VALUE_EXPR (decl, init);
4549 DECL_HAS_VALUE_EXPR_P (decl) = 1;
4550 /* For decl_constant_var_p. */
4551 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = 1;
4552 }
4553
4554 if (current_function_decl)
4555 {
4556 DECL_CONTEXT (decl) = current_function_decl;
4557 decl = pushdecl_outermost_localscope (decl);
4558 if (decl != error_mark_node)
4559 add_decl_expr (decl);
4560 }
4561 else
4562 {
4563 DECL_THIS_STATIC (decl) = true;
4564 pushdecl_top_level_and_finish (decl, NULL_TREE);
4565 }
4566
4567 return decl;
4568 }
4569
4570 static tree
4571 builtin_function_1 (tree decl, tree context, bool is_global)
4572 {
4573 tree id = DECL_NAME (decl);
4574 const char *name = IDENTIFIER_POINTER (id);
4575
4576 retrofit_lang_decl (decl);
4577
4578 DECL_ARTIFICIAL (decl) = 1;
4579 SET_DECL_LANGUAGE (decl, lang_c);
4580 /* Runtime library routines are, by definition, available in an
4581 external shared object. */
4582 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
4583 DECL_VISIBILITY_SPECIFIED (decl) = 1;
4584
4585 DECL_CONTEXT (decl) = context;
4586
4587 /* A function in the user's namespace should have an explicit
4588 declaration before it is used. Mark the built-in function as
4589 anticipated but not actually declared. */
4590 if (name[0] != '_' || name[1] != '_')
4591 DECL_ANTICIPATED (decl) = 1;
4592 else if (strncmp (name + 2, "builtin_", strlen ("builtin_")) != 0)
4593 {
4594 size_t len = strlen (name);
4595
4596 /* Treat __*_chk fortification functions as anticipated as well,
4597 unless they are __builtin_*. */
4598 if (len > strlen ("___chk")
4599 && memcmp (name + len - strlen ("_chk"),
4600 "_chk", strlen ("_chk") + 1) == 0)
4601 DECL_ANTICIPATED (decl) = 1;
4602 }
4603
4604 if (is_global)
4605 return pushdecl_top_level (decl);
4606 else
4607 return pushdecl (decl);
4608 }
4609
4610 tree
4611 cxx_builtin_function (tree decl)
4612 {
4613 tree id = DECL_NAME (decl);
4614 const char *name = IDENTIFIER_POINTER (id);
4615 /* All builtins that don't begin with an '_' should additionally
4616 go in the 'std' namespace. */
4617 if (name[0] != '_')
4618 {
4619 tree decl2 = copy_node(decl);
4620 push_namespace (std_identifier);
4621 builtin_function_1 (decl2, std_node, false);
4622 pop_namespace ();
4623 }
4624
4625 return builtin_function_1 (decl, NULL_TREE, false);
4626 }
4627
4628 /* Like cxx_builtin_function, but guarantee the function is added to the global
4629 scope. This is to allow function specific options to add new machine
4630 dependent builtins when the target ISA changes via attribute((target(...)))
4631 which saves space on program startup if the program does not use non-generic
4632 ISAs. */
4633
4634 tree
4635 cxx_builtin_function_ext_scope (tree decl)
4636 {
4637
4638 tree id = DECL_NAME (decl);
4639 const char *name = IDENTIFIER_POINTER (id);
4640 /* All builtins that don't begin with an '_' should additionally
4641 go in the 'std' namespace. */
4642 if (name[0] != '_')
4643 {
4644 tree decl2 = copy_node(decl);
4645 push_namespace (std_identifier);
4646 builtin_function_1 (decl2, std_node, true);
4647 pop_namespace ();
4648 }
4649
4650 return builtin_function_1 (decl, NULL_TREE, true);
4651 }
4652
4653 /* Generate a FUNCTION_DECL with the typical flags for a runtime library
4654 function. Not called directly. */
4655
4656 static tree
4657 build_library_fn (tree name, enum tree_code operator_code, tree type,
4658 int ecf_flags)
4659 {
4660 tree fn = build_lang_decl (FUNCTION_DECL, name, type);
4661 DECL_EXTERNAL (fn) = 1;
4662 TREE_PUBLIC (fn) = 1;
4663 DECL_ARTIFICIAL (fn) = 1;
4664 DECL_OVERLOADED_OPERATOR_CODE_RAW (fn)
4665 = OVL_OP_INFO (false, operator_code)->ovl_op_code;
4666 SET_DECL_LANGUAGE (fn, lang_c);
4667 /* Runtime library routines are, by definition, available in an
4668 external shared object. */
4669 DECL_VISIBILITY (fn) = VISIBILITY_DEFAULT;
4670 DECL_VISIBILITY_SPECIFIED (fn) = 1;
4671 set_call_expr_flags (fn, ecf_flags);
4672 return fn;
4673 }
4674
4675 /* Returns the _DECL for a library function with C++ linkage. */
4676
4677 static tree
4678 build_cp_library_fn (tree name, enum tree_code operator_code, tree type,
4679 int ecf_flags)
4680 {
4681 tree fn = build_library_fn (name, operator_code, type, ecf_flags);
4682 DECL_CONTEXT (fn) = FROB_CONTEXT (current_namespace);
4683 SET_DECL_LANGUAGE (fn, lang_cplusplus);
4684 return fn;
4685 }
4686
4687 /* Like build_library_fn, but takes a C string instead of an
4688 IDENTIFIER_NODE. */
4689
4690 tree
4691 build_library_fn_ptr (const char* name, tree type, int ecf_flags)
4692 {
4693 return build_library_fn (get_identifier (name), ERROR_MARK, type, ecf_flags);
4694 }
4695
4696 /* Like build_cp_library_fn, but takes a C string instead of an
4697 IDENTIFIER_NODE. */
4698
4699 tree
4700 build_cp_library_fn_ptr (const char* name, tree type, int ecf_flags)
4701 {
4702 return build_cp_library_fn (get_identifier (name), ERROR_MARK, type,
4703 ecf_flags);
4704 }
4705
4706 /* Like build_library_fn, but also pushes the function so that we will
4707 be able to find it via get_global_binding. Also, the function
4708 may throw exceptions listed in RAISES. */
4709
4710 tree
4711 push_library_fn (tree name, tree type, tree raises, int ecf_flags)
4712 {
4713 tree fn;
4714
4715 if (raises)
4716 type = build_exception_variant (type, raises);
4717
4718 fn = build_library_fn (name, ERROR_MARK, type, ecf_flags);
4719 pushdecl_top_level (fn);
4720 return fn;
4721 }
4722
4723 /* Like build_cp_library_fn, but also pushes the function so that it
4724 will be found by normal lookup. */
4725
4726 static tree
4727 push_cp_library_fn (enum tree_code operator_code, tree type,
4728 int ecf_flags)
4729 {
4730 tree fn = build_cp_library_fn (ovl_op_identifier (false, operator_code),
4731 operator_code, type, ecf_flags);
4732 pushdecl (fn);
4733 if (flag_tm)
4734 apply_tm_attr (fn, get_identifier ("transaction_safe"));
4735 return fn;
4736 }
4737
4738 /* Like push_library_fn, but takes a TREE_LIST of parm types rather than
4739 a FUNCTION_TYPE. */
4740
4741 tree
4742 push_void_library_fn (tree name, tree parmtypes, int ecf_flags)
4743 {
4744 tree type = build_function_type (void_type_node, parmtypes);
4745 return push_library_fn (name, type, NULL_TREE, ecf_flags);
4746 }
4747
4748 /* Like push_library_fn, but also note that this function throws
4749 and does not return. Used for __throw_foo and the like. */
4750
4751 tree
4752 push_throw_library_fn (tree name, tree type)
4753 {
4754 tree fn = push_library_fn (name, type, NULL_TREE, ECF_NORETURN | ECF_COLD);
4755 return fn;
4756 }
4757 \f
4758 /* When we call finish_struct for an anonymous union, we create
4759 default copy constructors and such. But, an anonymous union
4760 shouldn't have such things; this function undoes the damage to the
4761 anonymous union type T.
4762
4763 (The reason that we create the synthesized methods is that we don't
4764 distinguish `union { int i; }' from `typedef union { int i; } U'.
4765 The first is an anonymous union; the second is just an ordinary
4766 union type.) */
4767
4768 void
4769 fixup_anonymous_aggr (tree t)
4770 {
4771 /* Wipe out memory of synthesized methods. */
4772 TYPE_HAS_USER_CONSTRUCTOR (t) = 0;
4773 TYPE_HAS_DEFAULT_CONSTRUCTOR (t) = 0;
4774 TYPE_HAS_COPY_CTOR (t) = 0;
4775 TYPE_HAS_CONST_COPY_CTOR (t) = 0;
4776 TYPE_HAS_COPY_ASSIGN (t) = 0;
4777 TYPE_HAS_CONST_COPY_ASSIGN (t) = 0;
4778
4779 /* Splice the implicitly generated functions out of TYPE_FIELDS. */
4780 for (tree probe, *prev_p = &TYPE_FIELDS (t); (probe = *prev_p);)
4781 if (TREE_CODE (probe) == FUNCTION_DECL && DECL_ARTIFICIAL (probe))
4782 *prev_p = DECL_CHAIN (probe);
4783 else
4784 prev_p = &DECL_CHAIN (probe);
4785
4786 /* Anonymous aggregates cannot have fields with ctors, dtors or complex
4787 assignment operators (because they cannot have these methods themselves).
4788 For anonymous unions this is already checked because they are not allowed
4789 in any union, otherwise we have to check it. */
4790 if (TREE_CODE (t) != UNION_TYPE)
4791 {
4792 tree field, type;
4793
4794 for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
4795 if (TREE_CODE (field) == FIELD_DECL)
4796 {
4797 type = TREE_TYPE (field);
4798 if (CLASS_TYPE_P (type))
4799 {
4800 if (TYPE_NEEDS_CONSTRUCTING (type))
4801 error ("member %q+#D with constructor not allowed "
4802 "in anonymous aggregate", field);
4803 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
4804 error ("member %q+#D with destructor not allowed "
4805 "in anonymous aggregate", field);
4806 if (TYPE_HAS_COMPLEX_COPY_ASSIGN (type))
4807 error ("member %q+#D with copy assignment operator "
4808 "not allowed in anonymous aggregate", field);
4809 }
4810 }
4811 }
4812 }
4813
4814 /* Warn for an attribute located at LOCATION that appertains to the
4815 class type CLASS_TYPE that has not been properly placed after its
4816 class-key, in it class-specifier. */
4817
4818 void
4819 warn_misplaced_attr_for_class_type (location_t location,
4820 tree class_type)
4821 {
4822 gcc_assert (OVERLOAD_TYPE_P (class_type));
4823
4824 auto_diagnostic_group d;
4825 if (warning_at (location, OPT_Wattributes,
4826 "attribute ignored in declaration "
4827 "of %q#T", class_type))
4828 inform (location,
4829 "attribute for %q#T must follow the %qs keyword",
4830 class_type, class_key_or_enum_as_string (class_type));
4831 }
4832
4833 /* Returns the cv-qualifiers that apply to the type specified
4834 by the DECLSPECS. */
4835
4836 static int
4837 get_type_quals (const cp_decl_specifier_seq *declspecs)
4838 {
4839 int type_quals = TYPE_UNQUALIFIED;
4840
4841 if (decl_spec_seq_has_spec_p (declspecs, ds_const))
4842 type_quals |= TYPE_QUAL_CONST;
4843 if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
4844 type_quals |= TYPE_QUAL_VOLATILE;
4845 if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
4846 type_quals |= TYPE_QUAL_RESTRICT;
4847
4848 return type_quals;
4849 }
4850
4851 /* Make sure that a declaration with no declarator is well-formed, i.e.
4852 just declares a tagged type or anonymous union.
4853
4854 Returns the type declared; or NULL_TREE if none. */
4855
4856 tree
4857 check_tag_decl (cp_decl_specifier_seq *declspecs,
4858 bool explicit_type_instantiation_p)
4859 {
4860 int saw_friend = decl_spec_seq_has_spec_p (declspecs, ds_friend);
4861 int saw_typedef = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
4862 /* If a class, struct, or enum type is declared by the DECLSPECS
4863 (i.e, if a class-specifier, enum-specifier, or non-typename
4864 elaborated-type-specifier appears in the DECLSPECS),
4865 DECLARED_TYPE is set to the corresponding type. */
4866 tree declared_type = NULL_TREE;
4867 bool error_p = false;
4868
4869 if (declspecs->multiple_types_p)
4870 error_at (smallest_type_location (declspecs),
4871 "multiple types in one declaration");
4872 else if (declspecs->redefined_builtin_type)
4873 {
4874 if (!in_system_header_at (input_location))
4875 permerror (declspecs->locations[ds_redefined_builtin_type_spec],
4876 "redeclaration of C++ built-in type %qT",
4877 declspecs->redefined_builtin_type);
4878 return NULL_TREE;
4879 }
4880
4881 if (declspecs->type
4882 && TYPE_P (declspecs->type)
4883 && ((TREE_CODE (declspecs->type) != TYPENAME_TYPE
4884 && MAYBE_CLASS_TYPE_P (declspecs->type))
4885 || TREE_CODE (declspecs->type) == ENUMERAL_TYPE))
4886 declared_type = declspecs->type;
4887 else if (declspecs->type == error_mark_node)
4888 error_p = true;
4889
4890 if (type_uses_auto (declared_type))
4891 {
4892 error_at (declspecs->locations[ds_type_spec],
4893 "%<auto%> can only be specified for variables "
4894 "or function declarations");
4895 return error_mark_node;
4896 }
4897
4898 if (declared_type && !OVERLOAD_TYPE_P (declared_type))
4899 declared_type = NULL_TREE;
4900
4901 if (!declared_type && !saw_friend && !error_p)
4902 permerror (input_location, "declaration does not declare anything");
4903 /* Check for an anonymous union. */
4904 else if (declared_type && RECORD_OR_UNION_CODE_P (TREE_CODE (declared_type))
4905 && TYPE_UNNAMED_P (declared_type))
4906 {
4907 /* 7/3 In a simple-declaration, the optional init-declarator-list
4908 can be omitted only when declaring a class (clause 9) or
4909 enumeration (7.2), that is, when the decl-specifier-seq contains
4910 either a class-specifier, an elaborated-type-specifier with
4911 a class-key (9.1), or an enum-specifier. In these cases and
4912 whenever a class-specifier or enum-specifier is present in the
4913 decl-specifier-seq, the identifiers in these specifiers are among
4914 the names being declared by the declaration (as class-name,
4915 enum-names, or enumerators, depending on the syntax). In such
4916 cases, and except for the declaration of an unnamed bit-field (9.6),
4917 the decl-specifier-seq shall introduce one or more names into the
4918 program, or shall redeclare a name introduced by a previous
4919 declaration. [Example:
4920 enum { }; // ill-formed
4921 typedef class { }; // ill-formed
4922 --end example] */
4923 if (saw_typedef)
4924 {
4925 error ("missing type-name in typedef-declaration");
4926 return NULL_TREE;
4927 }
4928 /* Anonymous unions are objects, so they can have specifiers. */;
4929 SET_ANON_AGGR_TYPE_P (declared_type);
4930
4931 if (TREE_CODE (declared_type) != UNION_TYPE
4932 && !in_system_header_at (input_location))
4933 pedwarn (input_location, OPT_Wpedantic, "ISO C++ prohibits anonymous structs");
4934 }
4935
4936 else
4937 {
4938 if (decl_spec_seq_has_spec_p (declspecs, ds_inline))
4939 error_at (declspecs->locations[ds_inline],
4940 "%<inline%> can only be specified for functions");
4941 else if (decl_spec_seq_has_spec_p (declspecs, ds_virtual))
4942 error_at (declspecs->locations[ds_virtual],
4943 "%<virtual%> can only be specified for functions");
4944 else if (saw_friend
4945 && (!current_class_type
4946 || current_scope () != current_class_type))
4947 error_at (declspecs->locations[ds_friend],
4948 "%<friend%> can only be specified inside a class");
4949 else if (decl_spec_seq_has_spec_p (declspecs, ds_explicit))
4950 error_at (declspecs->locations[ds_explicit],
4951 "%<explicit%> can only be specified for constructors");
4952 else if (declspecs->storage_class)
4953 error_at (declspecs->locations[ds_storage_class],
4954 "a storage class can only be specified for objects "
4955 "and functions");
4956 else if (decl_spec_seq_has_spec_p (declspecs, ds_const))
4957 error_at (declspecs->locations[ds_const],
4958 "%<const%> can only be specified for objects and "
4959 "functions");
4960 else if (decl_spec_seq_has_spec_p (declspecs, ds_volatile))
4961 error_at (declspecs->locations[ds_volatile],
4962 "%<volatile%> can only be specified for objects and "
4963 "functions");
4964 else if (decl_spec_seq_has_spec_p (declspecs, ds_restrict))
4965 error_at (declspecs->locations[ds_restrict],
4966 "%<__restrict%> can only be specified for objects and "
4967 "functions");
4968 else if (decl_spec_seq_has_spec_p (declspecs, ds_thread))
4969 error_at (declspecs->locations[ds_thread],
4970 "%<__thread%> can only be specified for objects "
4971 "and functions");
4972 else if (saw_typedef)
4973 warning_at (declspecs->locations[ds_typedef], 0,
4974 "%<typedef%> was ignored in this declaration");
4975 else if (decl_spec_seq_has_spec_p (declspecs, ds_constexpr))
4976 error_at (declspecs->locations[ds_constexpr],
4977 "%<constexpr%> cannot be used for type declarations");
4978 else if (decl_spec_seq_has_spec_p (declspecs, ds_constinit))
4979 error_at (declspecs->locations[ds_constinit],
4980 "%<constinit%> cannot be used for type declarations");
4981 }
4982
4983 if (declspecs->attributes && warn_attributes && declared_type)
4984 {
4985 location_t loc;
4986 if (!CLASS_TYPE_P (declared_type)
4987 || !CLASSTYPE_TEMPLATE_INSTANTIATION (declared_type))
4988 /* For a non-template class, use the name location. */
4989 loc = location_of (declared_type);
4990 else
4991 /* For a template class (an explicit instantiation), use the
4992 current location. */
4993 loc = input_location;
4994
4995 if (explicit_type_instantiation_p)
4996 /* [dcl.attr.grammar]/4:
4997
4998 No attribute-specifier-seq shall appertain to an explicit
4999 instantiation. */
5000 {
5001 if (warning_at (loc, OPT_Wattributes,
5002 "attribute ignored in explicit instantiation %q#T",
5003 declared_type))
5004 inform (loc,
5005 "no attribute can be applied to "
5006 "an explicit instantiation");
5007 }
5008 else
5009 warn_misplaced_attr_for_class_type (loc, declared_type);
5010 }
5011
5012 return declared_type;
5013 }
5014
5015 /* Called when a declaration is seen that contains no names to declare.
5016 If its type is a reference to a structure, union or enum inherited
5017 from a containing scope, shadow that tag name for the current scope
5018 with a forward reference.
5019 If its type defines a new named structure or union
5020 or defines an enum, it is valid but we need not do anything here.
5021 Otherwise, it is an error.
5022
5023 C++: may have to grok the declspecs to learn about static,
5024 complain for anonymous unions.
5025
5026 Returns the TYPE declared -- or NULL_TREE if none. */
5027
5028 tree
5029 shadow_tag (cp_decl_specifier_seq *declspecs)
5030 {
5031 tree t = check_tag_decl (declspecs,
5032 /*explicit_type_instantiation_p=*/false);
5033
5034 if (!t)
5035 return NULL_TREE;
5036
5037 if (maybe_process_partial_specialization (t) == error_mark_node)
5038 return NULL_TREE;
5039
5040 /* This is where the variables in an anonymous union are
5041 declared. An anonymous union declaration looks like:
5042 union { ... } ;
5043 because there is no declarator after the union, the parser
5044 sends that declaration here. */
5045 if (ANON_AGGR_TYPE_P (t))
5046 {
5047 fixup_anonymous_aggr (t);
5048
5049 if (TYPE_FIELDS (t))
5050 {
5051 tree decl = grokdeclarator (/*declarator=*/NULL,
5052 declspecs, NORMAL, 0, NULL);
5053 finish_anon_union (decl);
5054 }
5055 }
5056
5057 return t;
5058 }
5059 \f
5060 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
5061
5062 tree
5063 groktypename (cp_decl_specifier_seq *type_specifiers,
5064 const cp_declarator *declarator,
5065 bool is_template_arg)
5066 {
5067 tree attrs;
5068 tree type;
5069 enum decl_context context
5070 = is_template_arg ? TEMPLATE_TYPE_ARG : TYPENAME;
5071 attrs = type_specifiers->attributes;
5072 type_specifiers->attributes = NULL_TREE;
5073 type = grokdeclarator (declarator, type_specifiers, context, 0, &attrs);
5074 if (attrs && type != error_mark_node)
5075 {
5076 if (CLASS_TYPE_P (type))
5077 warning (OPT_Wattributes, "ignoring attributes applied to class type %qT "
5078 "outside of definition", type);
5079 else if (MAYBE_CLASS_TYPE_P (type))
5080 /* A template type parameter or other dependent type. */
5081 warning (OPT_Wattributes, "ignoring attributes applied to dependent "
5082 "type %qT without an associated declaration", type);
5083 else
5084 cplus_decl_attributes (&type, attrs, 0);
5085 }
5086 return type;
5087 }
5088
5089 /* Process a DECLARATOR for a function-scope variable declaration,
5090 namespace-scope variable declaration, or function declaration.
5091 (Function definitions go through start_function; class member
5092 declarations appearing in the body of the class go through
5093 grokfield.) The DECL corresponding to the DECLARATOR is returned.
5094 If an error occurs, the error_mark_node is returned instead.
5095
5096 DECLSPECS are the decl-specifiers for the declaration. INITIALIZED is
5097 SD_INITIALIZED if an explicit initializer is present, or SD_DEFAULTED
5098 for an explicitly defaulted function, or SD_DELETED for an explicitly
5099 deleted function, but 0 (SD_UNINITIALIZED) if this is a variable
5100 implicitly initialized via a default constructor. ATTRIBUTES and
5101 PREFIX_ATTRIBUTES are GNU attributes associated with this declaration.
5102
5103 The scope represented by the context of the returned DECL is pushed
5104 (if it is not the global namespace) and is assigned to
5105 *PUSHED_SCOPE_P. The caller is then responsible for calling
5106 pop_scope on *PUSHED_SCOPE_P if it is set. */
5107
5108 tree
5109 start_decl (const cp_declarator *declarator,
5110 cp_decl_specifier_seq *declspecs,
5111 int initialized,
5112 tree attributes,
5113 tree prefix_attributes,
5114 tree *pushed_scope_p)
5115 {
5116 tree decl;
5117 tree context;
5118 bool was_public;
5119 int flags;
5120 bool alias;
5121
5122 *pushed_scope_p = NULL_TREE;
5123
5124 /* An object declared as __attribute__((deprecated)) suppresses
5125 warnings of uses of other deprecated items. */
5126 if (lookup_attribute ("deprecated", attributes))
5127 deprecated_state = DEPRECATED_SUPPRESS;
5128
5129 attributes = chainon (attributes, prefix_attributes);
5130
5131 decl = grokdeclarator (declarator, declspecs, NORMAL, initialized,
5132 &attributes);
5133
5134 deprecated_state = DEPRECATED_NORMAL;
5135
5136 if (decl == NULL_TREE || VOID_TYPE_P (decl)
5137 || decl == error_mark_node)
5138 return error_mark_node;
5139
5140 context = CP_DECL_CONTEXT (decl);
5141 if (context != global_namespace)
5142 *pushed_scope_p = push_scope (context);
5143
5144 /* Is it valid for this decl to have an initializer at all?
5145 If not, set INITIALIZED to zero, which will indirectly
5146 tell `cp_finish_decl' to ignore the initializer once it is parsed. */
5147 if (initialized
5148 && TREE_CODE (decl) == TYPE_DECL)
5149 {
5150 error_at (DECL_SOURCE_LOCATION (decl),
5151 "typedef %qD is initialized (use %qs instead)",
5152 decl, "decltype");
5153 return error_mark_node;
5154 }
5155
5156 if (initialized)
5157 {
5158 if (! toplevel_bindings_p ()
5159 && DECL_EXTERNAL (decl))
5160 warning (0, "declaration of %q#D has %<extern%> and is initialized",
5161 decl);
5162 DECL_EXTERNAL (decl) = 0;
5163 if (toplevel_bindings_p ())
5164 TREE_STATIC (decl) = 1;
5165 }
5166 alias = lookup_attribute ("alias", DECL_ATTRIBUTES (decl)) != 0;
5167
5168 if (alias && TREE_CODE (decl) == FUNCTION_DECL)
5169 record_key_method_defined (decl);
5170
5171 /* If this is a typedef that names the class for linkage purposes
5172 (7.1.3p8), apply any attributes directly to the type. */
5173 if (TREE_CODE (decl) == TYPE_DECL
5174 && OVERLOAD_TYPE_P (TREE_TYPE (decl))
5175 && decl == TYPE_NAME (TYPE_MAIN_VARIANT (TREE_TYPE (decl))))
5176 flags = ATTR_FLAG_TYPE_IN_PLACE;
5177 else
5178 flags = 0;
5179
5180 /* Set attributes here so if duplicate decl, will have proper attributes. */
5181 cplus_decl_attributes (&decl, attributes, flags);
5182
5183 /* Dllimported symbols cannot be defined. Static data members (which
5184 can be initialized in-class and dllimported) go through grokfield,
5185 not here, so we don't need to exclude those decls when checking for
5186 a definition. */
5187 if (initialized && DECL_DLLIMPORT_P (decl))
5188 {
5189 error_at (DECL_SOURCE_LOCATION (decl),
5190 "definition of %q#D is marked %<dllimport%>", decl);
5191 DECL_DLLIMPORT_P (decl) = 0;
5192 }
5193
5194 /* If #pragma weak was used, mark the decl weak now. */
5195 if (!processing_template_decl && !DECL_DECOMPOSITION_P (decl))
5196 maybe_apply_pragma_weak (decl);
5197
5198 if (TREE_CODE (decl) == FUNCTION_DECL
5199 && DECL_DECLARED_INLINE_P (decl)
5200 && DECL_UNINLINABLE (decl)
5201 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
5202 warning_at (DECL_SOURCE_LOCATION (decl), 0,
5203 "inline function %qD given attribute %qs", decl, "noinline");
5204
5205 if (TYPE_P (context) && COMPLETE_TYPE_P (complete_type (context)))
5206 {
5207 bool this_tmpl = (processing_template_decl
5208 > template_class_depth (context));
5209 if (VAR_P (decl))
5210 {
5211 tree field = lookup_field (context, DECL_NAME (decl), 0, false);
5212 if (field == NULL_TREE
5213 || !(VAR_P (field) || variable_template_p (field)))
5214 error ("%q+#D is not a static data member of %q#T", decl, context);
5215 else if (variable_template_p (field)
5216 && (DECL_LANG_SPECIFIC (decl)
5217 && DECL_TEMPLATE_SPECIALIZATION (decl)))
5218 /* OK, specialization was already checked. */;
5219 else if (variable_template_p (field) && !this_tmpl)
5220 {
5221 error_at (DECL_SOURCE_LOCATION (decl),
5222 "non-member-template declaration of %qD", decl);
5223 inform (DECL_SOURCE_LOCATION (field), "does not match "
5224 "member template declaration here");
5225 return error_mark_node;
5226 }
5227 else
5228 {
5229 if (variable_template_p (field))
5230 field = DECL_TEMPLATE_RESULT (field);
5231
5232 if (DECL_CONTEXT (field) != context)
5233 {
5234 if (!same_type_p (DECL_CONTEXT (field), context))
5235 permerror (input_location, "ISO C++ does not permit %<%T::%D%> "
5236 "to be defined as %<%T::%D%>",
5237 DECL_CONTEXT (field), DECL_NAME (decl),
5238 context, DECL_NAME (decl));
5239 DECL_CONTEXT (decl) = DECL_CONTEXT (field);
5240 }
5241 /* Static data member are tricky; an in-class initialization
5242 still doesn't provide a definition, so the in-class
5243 declaration will have DECL_EXTERNAL set, but will have an
5244 initialization. Thus, duplicate_decls won't warn
5245 about this situation, and so we check here. */
5246 if (initialized && DECL_INITIALIZED_IN_CLASS_P (field))
5247 error ("duplicate initialization of %qD", decl);
5248 field = duplicate_decls (decl, field,
5249 /*newdecl_is_friend=*/false);
5250 if (field == error_mark_node)
5251 return error_mark_node;
5252 else if (field)
5253 decl = field;
5254 }
5255 }
5256 else
5257 {
5258 tree field = check_classfn (context, decl,
5259 this_tmpl
5260 ? current_template_parms
5261 : NULL_TREE);
5262 if (field && field != error_mark_node
5263 && duplicate_decls (decl, field,
5264 /*newdecl_is_friend=*/false))
5265 decl = field;
5266 }
5267
5268 /* cp_finish_decl sets DECL_EXTERNAL if DECL_IN_AGGR_P is set. */
5269 DECL_IN_AGGR_P (decl) = 0;
5270 /* Do not mark DECL as an explicit specialization if it was not
5271 already marked as an instantiation; a declaration should
5272 never be marked as a specialization unless we know what
5273 template is being specialized. */
5274 if (DECL_LANG_SPECIFIC (decl) && DECL_USE_TEMPLATE (decl))
5275 {
5276 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
5277 if (TREE_CODE (decl) == FUNCTION_DECL)
5278 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
5279 && DECL_DECLARED_INLINE_P (decl));
5280 else
5281 DECL_COMDAT (decl) = false;
5282
5283 /* [temp.expl.spec] An explicit specialization of a static data
5284 member of a template is a definition if the declaration
5285 includes an initializer; otherwise, it is a declaration.
5286
5287 We check for processing_specialization so this only applies
5288 to the new specialization syntax. */
5289 if (!initialized && processing_specialization)
5290 DECL_EXTERNAL (decl) = 1;
5291 }
5292
5293 if (DECL_EXTERNAL (decl) && ! DECL_TEMPLATE_SPECIALIZATION (decl)
5294 /* Aliases are definitions. */
5295 && !alias)
5296 permerror (declarator->id_loc,
5297 "declaration of %q#D outside of class is not definition",
5298 decl);
5299 }
5300
5301 was_public = TREE_PUBLIC (decl);
5302
5303 /* Enter this declaration into the symbol table. Don't push the plain
5304 VAR_DECL for a variable template. */
5305 if (!template_parm_scope_p ()
5306 || !VAR_P (decl))
5307 decl = maybe_push_decl (decl);
5308
5309 if (processing_template_decl)
5310 {
5311 /* Make sure that for a `constinit' decl push_template_decl creates
5312 a DECL_TEMPLATE_INFO info for us, so that cp_finish_decl can then set
5313 TINFO_VAR_DECLARED_CONSTINIT. */
5314 if (decl_spec_seq_has_spec_p (declspecs, ds_constinit))
5315 retrofit_lang_decl (decl);
5316 decl = push_template_decl (decl);
5317 }
5318 if (decl == error_mark_node)
5319 return error_mark_node;
5320
5321 if (VAR_P (decl)
5322 && DECL_NAMESPACE_SCOPE_P (decl) && !TREE_PUBLIC (decl) && !was_public
5323 && !DECL_THIS_STATIC (decl) && !DECL_ARTIFICIAL (decl))
5324 {
5325 /* This is a const variable with implicit 'static'. Set
5326 DECL_THIS_STATIC so we can tell it from variables that are
5327 !TREE_PUBLIC because of the anonymous namespace. */
5328 gcc_assert (CP_TYPE_CONST_P (TREE_TYPE (decl)) || errorcount);
5329 DECL_THIS_STATIC (decl) = 1;
5330 }
5331
5332 if (current_function_decl && VAR_P (decl)
5333 && DECL_DECLARED_CONSTEXPR_P (current_function_decl))
5334 {
5335 bool ok = false;
5336 if (CP_DECL_THREAD_LOCAL_P (decl))
5337 error_at (DECL_SOURCE_LOCATION (decl),
5338 "%qD declared %<thread_local%> in %<constexpr%> function",
5339 decl);
5340 else if (TREE_STATIC (decl))
5341 error_at (DECL_SOURCE_LOCATION (decl),
5342 "%qD declared %<static%> in %<constexpr%> function", decl);
5343 else
5344 ok = true;
5345 if (!ok)
5346 cp_function_chain->invalid_constexpr = true;
5347 }
5348
5349 if (!processing_template_decl && VAR_P (decl))
5350 start_decl_1 (decl, initialized);
5351
5352 return decl;
5353 }
5354
5355 /* Process the declaration of a variable DECL. INITIALIZED is true
5356 iff DECL is explicitly initialized. (INITIALIZED is false if the
5357 variable is initialized via an implicitly-called constructor.)
5358 This function must be called for ordinary variables (including, for
5359 example, implicit instantiations of templates), but must not be
5360 called for template declarations. */
5361
5362 void
5363 start_decl_1 (tree decl, bool initialized)
5364 {
5365 tree type;
5366 bool complete_p;
5367 bool aggregate_definition_p;
5368
5369 gcc_assert (!processing_template_decl);
5370
5371 if (error_operand_p (decl))
5372 return;
5373
5374 gcc_assert (VAR_P (decl));
5375
5376 type = TREE_TYPE (decl);
5377 complete_p = COMPLETE_TYPE_P (type);
5378 aggregate_definition_p = MAYBE_CLASS_TYPE_P (type) && !DECL_EXTERNAL (decl);
5379
5380 /* If an explicit initializer is present, or if this is a definition
5381 of an aggregate, then we need a complete type at this point.
5382 (Scalars are always complete types, so there is nothing to
5383 check.) This code just sets COMPLETE_P; errors (if necessary)
5384 are issued below. */
5385 if ((initialized || aggregate_definition_p)
5386 && !complete_p
5387 && COMPLETE_TYPE_P (complete_type (type)))
5388 {
5389 complete_p = true;
5390 /* We will not yet have set TREE_READONLY on DECL if the type
5391 was "const", but incomplete, before this point. But, now, we
5392 have a complete type, so we can try again. */
5393 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
5394 }
5395
5396 if (initialized)
5397 /* Is it valid for this decl to have an initializer at all? */
5398 {
5399 /* Don't allow initializations for incomplete types except for
5400 arrays which might be completed by the initialization. */
5401 if (complete_p)
5402 ; /* A complete type is ok. */
5403 else if (type_uses_auto (type))
5404 ; /* An auto type is ok. */
5405 else if (TREE_CODE (type) != ARRAY_TYPE)
5406 {
5407 error ("variable %q#D has initializer but incomplete type", decl);
5408 type = TREE_TYPE (decl) = error_mark_node;
5409 }
5410 else if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (type))))
5411 {
5412 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
5413 error ("elements of array %q#D have incomplete type", decl);
5414 /* else we already gave an error in start_decl. */
5415 }
5416 }
5417 else if (aggregate_definition_p && !complete_p)
5418 {
5419 if (type_uses_auto (type))
5420 gcc_assert (CLASS_PLACEHOLDER_TEMPLATE (type));
5421 else
5422 {
5423 error ("aggregate %q#D has incomplete type and cannot be defined",
5424 decl);
5425 /* Change the type so that assemble_variable will give
5426 DECL an rtl we can live with: (mem (const_int 0)). */
5427 type = TREE_TYPE (decl) = error_mark_node;
5428 }
5429 }
5430
5431 /* Create a new scope to hold this declaration if necessary.
5432 Whether or not a new scope is necessary cannot be determined
5433 until after the type has been completed; if the type is a
5434 specialization of a class template it is not until after
5435 instantiation has occurred that TYPE_HAS_NONTRIVIAL_DESTRUCTOR
5436 will be set correctly. */
5437 maybe_push_cleanup_level (type);
5438 }
5439
5440 /* Handle initialization of references. DECL, TYPE, and INIT have the
5441 same meaning as in cp_finish_decl. *CLEANUP must be NULL on entry,
5442 but will be set to a new CLEANUP_STMT if a temporary is created
5443 that must be destroyed subsequently.
5444
5445 Returns an initializer expression to use to initialize DECL, or
5446 NULL if the initialization can be performed statically.
5447
5448 Quotes on semantics can be found in ARM 8.4.3. */
5449
5450 static tree
5451 grok_reference_init (tree decl, tree type, tree init, int flags)
5452 {
5453 if (init == NULL_TREE)
5454 {
5455 if ((DECL_LANG_SPECIFIC (decl) == 0
5456 || DECL_IN_AGGR_P (decl) == 0)
5457 && ! DECL_THIS_EXTERN (decl))
5458 error_at (DECL_SOURCE_LOCATION (decl),
5459 "%qD declared as reference but not initialized", decl);
5460 return NULL_TREE;
5461 }
5462
5463 if (TREE_CODE (init) == TREE_LIST)
5464 init = build_x_compound_expr_from_list (init, ELK_INIT,
5465 tf_warning_or_error);
5466
5467 tree ttype = TREE_TYPE (type);
5468 if (TREE_CODE (ttype) != ARRAY_TYPE
5469 && TREE_CODE (TREE_TYPE (init)) == ARRAY_TYPE)
5470 /* Note: default conversion is only called in very special cases. */
5471 init = decay_conversion (init, tf_warning_or_error);
5472
5473 /* check_initializer handles this for non-reference variables, but for
5474 references we need to do it here or the initializer will get the
5475 incomplete array type and confuse later calls to
5476 cp_complete_array_type. */
5477 if (TREE_CODE (ttype) == ARRAY_TYPE
5478 && TYPE_DOMAIN (ttype) == NULL_TREE
5479 && (BRACE_ENCLOSED_INITIALIZER_P (init)
5480 || TREE_CODE (init) == STRING_CST))
5481 {
5482 cp_complete_array_type (&ttype, init, false);
5483 if (ttype != TREE_TYPE (type))
5484 type = cp_build_reference_type (ttype, TYPE_REF_IS_RVALUE (type));
5485 }
5486
5487 /* Convert INIT to the reference type TYPE. This may involve the
5488 creation of a temporary, whose lifetime must be the same as that
5489 of the reference. If so, a DECL_EXPR for the temporary will be
5490 added just after the DECL_EXPR for DECL. That's why we don't set
5491 DECL_INITIAL for local references (instead assigning to them
5492 explicitly); we need to allow the temporary to be initialized
5493 first. */
5494 return initialize_reference (type, init, flags,
5495 tf_warning_or_error);
5496 }
5497
5498 /* Designated initializers in arrays are not supported in GNU C++.
5499 The parser cannot detect this error since it does not know whether
5500 a given brace-enclosed initializer is for a class type or for an
5501 array. This function checks that CE does not use a designated
5502 initializer. If it does, an error is issued. Returns true if CE
5503 is valid, i.e., does not have a designated initializer. */
5504
5505 bool
5506 check_array_designated_initializer (constructor_elt *ce,
5507 unsigned HOST_WIDE_INT index)
5508 {
5509 /* Designated initializers for array elements are not supported. */
5510 if (ce->index)
5511 {
5512 /* The parser only allows identifiers as designated
5513 initializers. */
5514 if (ce->index == error_mark_node)
5515 {
5516 error ("name used in a GNU-style designated "
5517 "initializer for an array");
5518 return false;
5519 }
5520 else if (identifier_p (ce->index))
5521 {
5522 error ("name %qD used in a GNU-style designated "
5523 "initializer for an array", ce->index);
5524 return false;
5525 }
5526
5527 tree ce_index = build_expr_type_conversion (WANT_INT | WANT_ENUM,
5528 ce->index, true);
5529 if (ce_index
5530 && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (ce_index))
5531 && (TREE_CODE (ce_index = fold_non_dependent_expr (ce_index))
5532 == INTEGER_CST))
5533 {
5534 /* A C99 designator is OK if it matches the current index. */
5535 if (wi::to_wide (ce_index) == index)
5536 {
5537 ce->index = ce_index;
5538 return true;
5539 }
5540 else
5541 sorry ("non-trivial designated initializers not supported");
5542 }
5543 else
5544 error_at (cp_expr_loc_or_input_loc (ce->index),
5545 "C99 designator %qE is not an integral constant-expression",
5546 ce->index);
5547
5548 return false;
5549 }
5550
5551 return true;
5552 }
5553
5554 /* When parsing `int a[] = {1, 2};' we don't know the size of the
5555 array until we finish parsing the initializer. If that's the
5556 situation we're in, update DECL accordingly. */
5557
5558 static void
5559 maybe_deduce_size_from_array_init (tree decl, tree init)
5560 {
5561 tree type = TREE_TYPE (decl);
5562
5563 if (TREE_CODE (type) == ARRAY_TYPE
5564 && TYPE_DOMAIN (type) == NULL_TREE
5565 && TREE_CODE (decl) != TYPE_DECL)
5566 {
5567 /* do_default is really a C-ism to deal with tentative definitions.
5568 But let's leave it here to ease the eventual merge. */
5569 int do_default = !DECL_EXTERNAL (decl);
5570 tree initializer = init ? init : DECL_INITIAL (decl);
5571 int failure = 0;
5572
5573 /* Check that there are no designated initializers in INIT, as
5574 those are not supported in GNU C++, and as the middle-end
5575 will crash if presented with a non-numeric designated
5576 initializer. */
5577 if (initializer && BRACE_ENCLOSED_INITIALIZER_P (initializer))
5578 {
5579 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initializer);
5580 constructor_elt *ce;
5581 HOST_WIDE_INT i;
5582 FOR_EACH_VEC_SAFE_ELT (v, i, ce)
5583 {
5584 if (instantiation_dependent_expression_p (ce->index))
5585 return;
5586 if (!check_array_designated_initializer (ce, i))
5587 failure = 1;
5588 }
5589 }
5590
5591 if (failure)
5592 TREE_TYPE (decl) = error_mark_node;
5593 else
5594 {
5595 failure = cp_complete_array_type (&TREE_TYPE (decl), initializer,
5596 do_default);
5597 if (failure == 1)
5598 {
5599 error_at (cp_expr_loc_or_loc (initializer,
5600 DECL_SOURCE_LOCATION (decl)),
5601 "initializer fails to determine size of %qD", decl);
5602 }
5603 else if (failure == 2)
5604 {
5605 if (do_default)
5606 {
5607 error_at (DECL_SOURCE_LOCATION (decl),
5608 "array size missing in %qD", decl);
5609 }
5610 /* If a `static' var's size isn't known, make it extern as
5611 well as static, so it does not get allocated. If it's not
5612 `static', then don't mark it extern; finish_incomplete_decl
5613 will give it a default size and it will get allocated. */
5614 else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
5615 DECL_EXTERNAL (decl) = 1;
5616 }
5617 else if (failure == 3)
5618 {
5619 error_at (DECL_SOURCE_LOCATION (decl),
5620 "zero-size array %qD", decl);
5621 }
5622 }
5623
5624 cp_apply_type_quals_to_decl (cp_type_quals (TREE_TYPE (decl)), decl);
5625
5626 relayout_decl (decl);
5627 }
5628 }
5629
5630 /* Set DECL_SIZE, DECL_ALIGN, etc. for DECL (a VAR_DECL), and issue
5631 any appropriate error messages regarding the layout. */
5632
5633 static void
5634 layout_var_decl (tree decl)
5635 {
5636 tree type;
5637
5638 type = TREE_TYPE (decl);
5639 if (type == error_mark_node)
5640 return;
5641
5642 /* If we haven't already laid out this declaration, do so now.
5643 Note that we must not call complete type for an external object
5644 because it's type might involve templates that we are not
5645 supposed to instantiate yet. (And it's perfectly valid to say
5646 `extern X x' for some incomplete type `X'.) */
5647 if (!DECL_EXTERNAL (decl))
5648 complete_type (type);
5649 if (!DECL_SIZE (decl)
5650 && TREE_TYPE (decl) != error_mark_node
5651 && complete_or_array_type_p (type))
5652 layout_decl (decl, 0);
5653
5654 if (!DECL_EXTERNAL (decl) && DECL_SIZE (decl) == NULL_TREE)
5655 {
5656 /* An automatic variable with an incomplete type: that is an error.
5657 Don't talk about array types here, since we took care of that
5658 message in grokdeclarator. */
5659 error_at (DECL_SOURCE_LOCATION (decl),
5660 "storage size of %qD isn%'t known", decl);
5661 TREE_TYPE (decl) = error_mark_node;
5662 }
5663 #if 0
5664 /* Keep this code around in case we later want to control debug info
5665 based on whether a type is "used". (jason 1999-11-11) */
5666
5667 else if (!DECL_EXTERNAL (decl) && MAYBE_CLASS_TYPE_P (ttype))
5668 /* Let debugger know it should output info for this type. */
5669 note_debug_info_needed (ttype);
5670
5671 if (TREE_STATIC (decl) && DECL_CLASS_SCOPE_P (decl))
5672 note_debug_info_needed (DECL_CONTEXT (decl));
5673 #endif
5674
5675 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
5676 && DECL_SIZE (decl) != NULL_TREE
5677 && ! TREE_CONSTANT (DECL_SIZE (decl)))
5678 {
5679 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
5680 constant_expression_warning (DECL_SIZE (decl));
5681 else
5682 {
5683 error_at (DECL_SOURCE_LOCATION (decl),
5684 "storage size of %qD isn%'t constant", decl);
5685 TREE_TYPE (decl) = error_mark_node;
5686 }
5687 }
5688 }
5689
5690 /* If a local static variable is declared in an inline function, or if
5691 we have a weak definition, we must endeavor to create only one
5692 instance of the variable at link-time. */
5693
5694 void
5695 maybe_commonize_var (tree decl)
5696 {
5697 /* Don't mess with __FUNCTION__ and similar. */
5698 if (DECL_ARTIFICIAL (decl))
5699 return;
5700
5701 /* Static data in a function with comdat linkage also has comdat
5702 linkage. */
5703 if ((TREE_STATIC (decl)
5704 && DECL_FUNCTION_SCOPE_P (decl)
5705 && vague_linkage_p (DECL_CONTEXT (decl)))
5706 || (TREE_PUBLIC (decl) && DECL_INLINE_VAR_P (decl)))
5707 {
5708 if (flag_weak)
5709 {
5710 /* With weak symbols, we simply make the variable COMDAT;
5711 that will cause copies in multiple translations units to
5712 be merged. */
5713 comdat_linkage (decl);
5714 }
5715 else
5716 {
5717 if (DECL_INITIAL (decl) == NULL_TREE
5718 || DECL_INITIAL (decl) == error_mark_node)
5719 {
5720 /* Without weak symbols, we can use COMMON to merge
5721 uninitialized variables. */
5722 TREE_PUBLIC (decl) = 1;
5723 DECL_COMMON (decl) = 1;
5724 }
5725 else
5726 {
5727 /* While for initialized variables, we must use internal
5728 linkage -- which means that multiple copies will not
5729 be merged. */
5730 TREE_PUBLIC (decl) = 0;
5731 DECL_COMMON (decl) = 0;
5732 DECL_INTERFACE_KNOWN (decl) = 1;
5733 const char *msg;
5734 if (DECL_INLINE_VAR_P (decl))
5735 msg = G_("sorry: semantics of inline variable "
5736 "%q#D are wrong (you%'ll wind up with "
5737 "multiple copies)");
5738 else
5739 msg = G_("sorry: semantics of inline function "
5740 "static data %q#D are wrong (you%'ll wind "
5741 "up with multiple copies)");
5742 if (warning_at (DECL_SOURCE_LOCATION (decl), 0,
5743 msg, decl))
5744 inform (DECL_SOURCE_LOCATION (decl),
5745 "you can work around this by removing the initializer");
5746 }
5747 }
5748 }
5749 }
5750
5751 /* Issue an error message if DECL is an uninitialized const variable.
5752 CONSTEXPR_CONTEXT_P is true when the function is called in a constexpr
5753 context from potential_constant_expression. Returns true if all is well,
5754 false otherwise. */
5755
5756 bool
5757 check_for_uninitialized_const_var (tree decl, bool constexpr_context_p,
5758 tsubst_flags_t complain)
5759 {
5760 tree type = strip_array_types (TREE_TYPE (decl));
5761
5762 /* ``Unless explicitly declared extern, a const object does not have
5763 external linkage and must be initialized. ($8.4; $12.1)'' ARM
5764 7.1.6 */
5765 if (VAR_P (decl)
5766 && !TYPE_REF_P (type)
5767 && (constexpr_context_p
5768 || CP_TYPE_CONST_P (type) || var_in_constexpr_fn (decl))
5769 && !DECL_NONTRIVIALLY_INITIALIZED_P (decl))
5770 {
5771 tree field = default_init_uninitialized_part (type);
5772 if (!field)
5773 return true;
5774
5775 bool show_notes = true;
5776
5777 if (!constexpr_context_p)
5778 {
5779 if (CP_TYPE_CONST_P (type))
5780 {
5781 if (complain & tf_error)
5782 show_notes = permerror (DECL_SOURCE_LOCATION (decl),
5783 "uninitialized %<const %D%>", decl);
5784 }
5785 else
5786 {
5787 if (!is_instantiation_of_constexpr (current_function_decl)
5788 && (complain & tf_error))
5789 error_at (DECL_SOURCE_LOCATION (decl),
5790 "uninitialized variable %qD in %<constexpr%> "
5791 "function", decl);
5792 else
5793 show_notes = false;
5794 cp_function_chain->invalid_constexpr = true;
5795 }
5796 }
5797 else if (complain & tf_error)
5798 error_at (DECL_SOURCE_LOCATION (decl),
5799 "uninitialized variable %qD in %<constexpr%> context",
5800 decl);
5801
5802 if (show_notes && CLASS_TYPE_P (type) && (complain & tf_error))
5803 {
5804 tree defaulted_ctor;
5805
5806 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)),
5807 "%q#T has no user-provided default constructor", type);
5808 defaulted_ctor = in_class_defaulted_default_constructor (type);
5809 if (defaulted_ctor)
5810 inform (DECL_SOURCE_LOCATION (defaulted_ctor),
5811 "constructor is not user-provided because it is "
5812 "explicitly defaulted in the class body");
5813 inform (DECL_SOURCE_LOCATION (field),
5814 "and the implicitly-defined constructor does not "
5815 "initialize %q#D", field);
5816 }
5817
5818 return false;
5819 }
5820
5821 return true;
5822 }
5823 \f
5824 /* Structure holding the current initializer being processed by reshape_init.
5825 CUR is a pointer to the current element being processed, END is a pointer
5826 after the last element present in the initializer. */
5827 struct reshape_iter
5828 {
5829 constructor_elt *cur;
5830 constructor_elt *end;
5831 };
5832
5833 static tree reshape_init_r (tree, reshape_iter *, bool, tsubst_flags_t);
5834
5835 /* FIELD is a FIELD_DECL or NULL. In the former case, the value
5836 returned is the next FIELD_DECL (possibly FIELD itself) that can be
5837 initialized. If there are no more such fields, the return value
5838 will be NULL. */
5839
5840 tree
5841 next_initializable_field (tree field)
5842 {
5843 while (field
5844 && (TREE_CODE (field) != FIELD_DECL
5845 || DECL_UNNAMED_BIT_FIELD (field)
5846 || (DECL_ARTIFICIAL (field)
5847 && !(cxx_dialect >= cxx17 && DECL_FIELD_IS_BASE (field)))))
5848 field = DECL_CHAIN (field);
5849
5850 return field;
5851 }
5852
5853 /* Return true for [dcl.init.list] direct-list-initialization from
5854 single element of enumeration with a fixed underlying type. */
5855
5856 bool
5857 is_direct_enum_init (tree type, tree init)
5858 {
5859 if (cxx_dialect >= cxx17
5860 && TREE_CODE (type) == ENUMERAL_TYPE
5861 && ENUM_FIXED_UNDERLYING_TYPE_P (type)
5862 && TREE_CODE (init) == CONSTRUCTOR
5863 && CONSTRUCTOR_IS_DIRECT_INIT (init)
5864 && CONSTRUCTOR_NELTS (init) == 1)
5865 return true;
5866 return false;
5867 }
5868
5869 /* Subroutine of reshape_init_array and reshape_init_vector, which does
5870 the actual work. ELT_TYPE is the element type of the array. MAX_INDEX is an
5871 INTEGER_CST representing the size of the array minus one (the maximum index),
5872 or NULL_TREE if the array was declared without specifying the size. D is
5873 the iterator within the constructor. */
5874
5875 static tree
5876 reshape_init_array_1 (tree elt_type, tree max_index, reshape_iter *d,
5877 tsubst_flags_t complain)
5878 {
5879 tree new_init;
5880 bool sized_array_p = (max_index && TREE_CONSTANT (max_index));
5881 unsigned HOST_WIDE_INT max_index_cst = 0;
5882 unsigned HOST_WIDE_INT index;
5883
5884 /* The initializer for an array is always a CONSTRUCTOR. */
5885 new_init = build_constructor (init_list_type_node, NULL);
5886
5887 if (sized_array_p)
5888 {
5889 /* Minus 1 is used for zero sized arrays. */
5890 if (integer_all_onesp (max_index))
5891 return new_init;
5892
5893 if (tree_fits_uhwi_p (max_index))
5894 max_index_cst = tree_to_uhwi (max_index);
5895 /* sizetype is sign extended, not zero extended. */
5896 else
5897 max_index_cst = tree_to_uhwi (fold_convert (size_type_node, max_index));
5898 }
5899
5900 /* Set to the index of the last element with a non-zero initializer.
5901 Zero initializers for elements past this one can be dropped. */
5902 unsigned HOST_WIDE_INT last_nonzero = -1;
5903 /* Loop until there are no more initializers. */
5904 for (index = 0;
5905 d->cur != d->end && (!sized_array_p || index <= max_index_cst);
5906 ++index)
5907 {
5908 tree elt_init;
5909 constructor_elt *old_cur = d->cur;
5910
5911 check_array_designated_initializer (d->cur, index);
5912 elt_init = reshape_init_r (elt_type, d, /*first_initializer_p=*/false,
5913 complain);
5914 if (elt_init == error_mark_node)
5915 return error_mark_node;
5916 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init),
5917 size_int (index), elt_init);
5918 if (!TREE_CONSTANT (elt_init))
5919 TREE_CONSTANT (new_init) = false;
5920
5921 /* Pointers initialized to strings must be treated as non-zero
5922 even if the string is empty. */
5923 tree init_type = TREE_TYPE (elt_init);
5924 if ((POINTER_TYPE_P (elt_type) != POINTER_TYPE_P (init_type)))
5925 last_nonzero = index;
5926 else if (!type_initializer_zero_p (elt_type, elt_init))
5927 last_nonzero = index;
5928
5929 /* This can happen with an invalid initializer (c++/54501). */
5930 if (d->cur == old_cur && !sized_array_p)
5931 break;
5932 }
5933
5934 if (sized_array_p && trivial_type_p (elt_type))
5935 {
5936 /* Strip trailing zero-initializers from an array of a trivial
5937 type of known size. They are redundant and get in the way
5938 of telling them apart from those with implicit zero value. */
5939 unsigned HOST_WIDE_INT nelts = CONSTRUCTOR_NELTS (new_init);
5940 if (last_nonzero > nelts)
5941 nelts = 0;
5942 else if (last_nonzero < nelts - 1)
5943 nelts = last_nonzero + 1;
5944
5945 vec_safe_truncate (CONSTRUCTOR_ELTS (new_init), nelts);
5946 }
5947
5948 return new_init;
5949 }
5950
5951 /* Subroutine of reshape_init_r, processes the initializers for arrays.
5952 Parameters are the same of reshape_init_r. */
5953
5954 static tree
5955 reshape_init_array (tree type, reshape_iter *d, tsubst_flags_t complain)
5956 {
5957 tree max_index = NULL_TREE;
5958
5959 gcc_assert (TREE_CODE (type) == ARRAY_TYPE);
5960
5961 if (TYPE_DOMAIN (type))
5962 max_index = array_type_nelts (type);
5963
5964 return reshape_init_array_1 (TREE_TYPE (type), max_index, d, complain);
5965 }
5966
5967 /* Subroutine of reshape_init_r, processes the initializers for vectors.
5968 Parameters are the same of reshape_init_r. */
5969
5970 static tree
5971 reshape_init_vector (tree type, reshape_iter *d, tsubst_flags_t complain)
5972 {
5973 tree max_index = NULL_TREE;
5974
5975 gcc_assert (VECTOR_TYPE_P (type));
5976
5977 if (COMPOUND_LITERAL_P (d->cur->value))
5978 {
5979 tree value = d->cur->value;
5980 if (!same_type_p (TREE_TYPE (value), type))
5981 {
5982 if (complain & tf_error)
5983 error ("invalid type %qT as initializer for a vector of type %qT",
5984 TREE_TYPE (d->cur->value), type);
5985 value = error_mark_node;
5986 }
5987 ++d->cur;
5988 return value;
5989 }
5990
5991 /* For a vector, we initialize it as an array of the appropriate size. */
5992 if (VECTOR_TYPE_P (type))
5993 max_index = size_int (TYPE_VECTOR_SUBPARTS (type) - 1);
5994
5995 return reshape_init_array_1 (TREE_TYPE (type), max_index, d, complain);
5996 }
5997
5998 /* Subroutine of reshape_init_r, processes the initializers for classes
5999 or union. Parameters are the same of reshape_init_r. */
6000
6001 static tree
6002 reshape_init_class (tree type, reshape_iter *d, bool first_initializer_p,
6003 tsubst_flags_t complain)
6004 {
6005 tree field;
6006 tree new_init;
6007
6008 gcc_assert (CLASS_TYPE_P (type));
6009
6010 /* The initializer for a class is always a CONSTRUCTOR. */
6011 new_init = build_constructor (init_list_type_node, NULL);
6012 field = next_initializable_field (TYPE_FIELDS (type));
6013
6014 if (!field)
6015 {
6016 /* [dcl.init.aggr]
6017
6018 An initializer for an aggregate member that is an
6019 empty class shall have the form of an empty
6020 initializer-list {}. */
6021 if (!first_initializer_p)
6022 {
6023 if (complain & tf_error)
6024 error ("initializer for %qT must be brace-enclosed", type);
6025 return error_mark_node;
6026 }
6027 return new_init;
6028 }
6029
6030 /* Loop through the initializable fields, gathering initializers. */
6031 while (d->cur != d->end)
6032 {
6033 tree field_init;
6034 constructor_elt *old_cur = d->cur;
6035
6036 /* Handle designated initializers, as an extension. */
6037 if (d->cur->index)
6038 {
6039 if (d->cur->index == error_mark_node)
6040 return error_mark_node;
6041
6042 if (TREE_CODE (d->cur->index) == FIELD_DECL)
6043 {
6044 /* We already reshaped this. */
6045 if (field != d->cur->index)
6046 {
6047 tree id = DECL_NAME (d->cur->index);
6048 gcc_assert (id);
6049 gcc_checking_assert (d->cur->index
6050 == get_class_binding (type, id));
6051 field = d->cur->index;
6052 }
6053 }
6054 else if (TREE_CODE (d->cur->index) == IDENTIFIER_NODE)
6055 field = get_class_binding (type, d->cur->index);
6056 else
6057 {
6058 if (complain & tf_error)
6059 error ("%<[%E] =%> used in a GNU-style designated initializer"
6060 " for class %qT", d->cur->index, type);
6061 return error_mark_node;
6062 }
6063
6064 if (!field || TREE_CODE (field) != FIELD_DECL)
6065 {
6066 if (complain & tf_error)
6067 error ("%qT has no non-static data member named %qD", type,
6068 d->cur->index);
6069 return error_mark_node;
6070 }
6071 }
6072
6073 /* If we processed all the member of the class, we are done. */
6074 if (!field)
6075 break;
6076
6077 field_init = reshape_init_r (TREE_TYPE (field), d,
6078 /*first_initializer_p=*/false, complain);
6079 if (field_init == error_mark_node)
6080 return error_mark_node;
6081
6082 if (d->cur == old_cur && d->cur->index)
6083 {
6084 /* This can happen with an invalid initializer for a flexible
6085 array member (c++/54441). */
6086 if (complain & tf_error)
6087 error ("invalid initializer for %q#D", field);
6088 return error_mark_node;
6089 }
6090
6091 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init), field, field_init);
6092
6093 /* [dcl.init.aggr]
6094
6095 When a union is initialized with a brace-enclosed
6096 initializer, the braces shall only contain an
6097 initializer for the first member of the union. */
6098 if (TREE_CODE (type) == UNION_TYPE)
6099 break;
6100
6101 field = next_initializable_field (DECL_CHAIN (field));
6102 }
6103
6104 return new_init;
6105 }
6106
6107 /* Subroutine of reshape_init_r. We're in a context where C99 initializer
6108 designators are not valid; either complain or return true to indicate
6109 that reshape_init_r should return error_mark_node. */
6110
6111 static bool
6112 has_designator_problem (reshape_iter *d, tsubst_flags_t complain)
6113 {
6114 if (d->cur->index)
6115 {
6116 if (complain & tf_error)
6117 error_at (cp_expr_loc_or_input_loc (d->cur->index),
6118 "C99 designator %qE outside aggregate initializer",
6119 d->cur->index);
6120 else
6121 return true;
6122 }
6123 return false;
6124 }
6125
6126 /* Subroutine of reshape_init, which processes a single initializer (part of
6127 a CONSTRUCTOR). TYPE is the type of the variable being initialized, D is the
6128 iterator within the CONSTRUCTOR which points to the initializer to process.
6129 FIRST_INITIALIZER_P is true if this is the first initializer of the
6130 outermost CONSTRUCTOR node. */
6131
6132 static tree
6133 reshape_init_r (tree type, reshape_iter *d, bool first_initializer_p,
6134 tsubst_flags_t complain)
6135 {
6136 tree init = d->cur->value;
6137
6138 if (error_operand_p (init))
6139 return error_mark_node;
6140
6141 if (first_initializer_p && !CP_AGGREGATE_TYPE_P (type)
6142 && has_designator_problem (d, complain))
6143 return error_mark_node;
6144
6145 tree stripped_init = tree_strip_any_location_wrapper (init);
6146
6147 if (TREE_CODE (type) == COMPLEX_TYPE)
6148 {
6149 /* A complex type can be initialized from one or two initializers,
6150 but braces are not elided. */
6151 d->cur++;
6152 if (BRACE_ENCLOSED_INITIALIZER_P (stripped_init))
6153 {
6154 if (CONSTRUCTOR_NELTS (stripped_init) > 2)
6155 {
6156 if (complain & tf_error)
6157 error ("too many initializers for %qT", type);
6158 else
6159 return error_mark_node;
6160 }
6161 }
6162 else if (first_initializer_p && d->cur != d->end)
6163 {
6164 vec<constructor_elt, va_gc> *v = 0;
6165 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, init);
6166 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, d->cur->value);
6167 if (has_designator_problem (d, complain))
6168 return error_mark_node;
6169 d->cur++;
6170 init = build_constructor (init_list_type_node, v);
6171 }
6172 return init;
6173 }
6174
6175 /* A non-aggregate type is always initialized with a single
6176 initializer. */
6177 if (!CP_AGGREGATE_TYPE_P (type))
6178 {
6179 /* It is invalid to initialize a non-aggregate type with a
6180 brace-enclosed initializer before C++0x.
6181 We need to check for BRACE_ENCLOSED_INITIALIZER_P here because
6182 of g++.old-deja/g++.mike/p7626.C: a pointer-to-member constant is
6183 a CONSTRUCTOR (with a record type). */
6184 if (TREE_CODE (stripped_init) == CONSTRUCTOR
6185 /* Don't complain about a capture-init. */
6186 && !CONSTRUCTOR_IS_DIRECT_INIT (stripped_init)
6187 && BRACE_ENCLOSED_INITIALIZER_P (stripped_init)) /* p7626.C */
6188 {
6189 if (SCALAR_TYPE_P (type))
6190 {
6191 if (cxx_dialect < cxx11)
6192 {
6193 if (complain & tf_error)
6194 error ("braces around scalar initializer for type %qT",
6195 type);
6196 init = error_mark_node;
6197 }
6198 else if (first_initializer_p
6199 || (CONSTRUCTOR_NELTS (stripped_init) > 0
6200 && (BRACE_ENCLOSED_INITIALIZER_P
6201 (CONSTRUCTOR_ELT (stripped_init,0)->value))))
6202 {
6203 if (complain & tf_error)
6204 error ("too many braces around scalar initializer"
6205 "for type %qT", type);
6206 init = error_mark_node;
6207 }
6208 }
6209 else
6210 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
6211 }
6212
6213 d->cur++;
6214 return init;
6215 }
6216
6217 /* "If T is a class type and the initializer list has a single element of
6218 type cv U, where U is T or a class derived from T, the object is
6219 initialized from that element." Even if T is an aggregate. */
6220 if (cxx_dialect >= cxx11 && (CLASS_TYPE_P (type) || VECTOR_TYPE_P (type))
6221 && first_initializer_p
6222 && d->end - d->cur == 1
6223 && reference_related_p (type, TREE_TYPE (init)))
6224 {
6225 d->cur++;
6226 return init;
6227 }
6228
6229 /* [dcl.init.aggr]
6230
6231 All implicit type conversions (clause _conv_) are considered when
6232 initializing the aggregate member with an initializer from an
6233 initializer-list. If the initializer can initialize a member,
6234 the member is initialized. Otherwise, if the member is itself a
6235 non-empty subaggregate, brace elision is assumed and the
6236 initializer is considered for the initialization of the first
6237 member of the subaggregate. */
6238 if (TREE_CODE (init) != CONSTRUCTOR
6239 /* But don't try this for the first initializer, since that would be
6240 looking through the outermost braces; A a2 = { a1 }; is not a
6241 valid aggregate initialization. */
6242 && !first_initializer_p
6243 && (same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (init))
6244 || can_convert_arg (type, TREE_TYPE (init), init, LOOKUP_NORMAL,
6245 complain)))
6246 {
6247 d->cur++;
6248 return init;
6249 }
6250
6251 /* [dcl.init.string]
6252
6253 A char array (whether plain char, signed char, or unsigned char)
6254 can be initialized by a string-literal (optionally enclosed in
6255 braces); a wchar_t array can be initialized by a wide
6256 string-literal (optionally enclosed in braces). */
6257 if (TREE_CODE (type) == ARRAY_TYPE
6258 && char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (type))))
6259 {
6260 tree str_init = init;
6261 tree stripped_str_init = stripped_init;
6262
6263 /* Strip one level of braces if and only if they enclose a single
6264 element (as allowed by [dcl.init.string]). */
6265 if (!first_initializer_p
6266 && TREE_CODE (stripped_str_init) == CONSTRUCTOR
6267 && CONSTRUCTOR_NELTS (stripped_str_init) == 1)
6268 {
6269 str_init = (*CONSTRUCTOR_ELTS (stripped_str_init))[0].value;
6270 stripped_str_init = tree_strip_any_location_wrapper (str_init);
6271 }
6272
6273 /* If it's a string literal, then it's the initializer for the array
6274 as a whole. Otherwise, continue with normal initialization for
6275 array types (one value per array element). */
6276 if (TREE_CODE (stripped_str_init) == STRING_CST)
6277 {
6278 if (has_designator_problem (d, complain))
6279 return error_mark_node;
6280 d->cur++;
6281 return str_init;
6282 }
6283 }
6284
6285 /* The following cases are about aggregates. If we are not within a full
6286 initializer already, and there is not a CONSTRUCTOR, it means that there
6287 is a missing set of braces (that is, we are processing the case for
6288 which reshape_init exists). */
6289 if (!first_initializer_p)
6290 {
6291 if (TREE_CODE (stripped_init) == CONSTRUCTOR)
6292 {
6293 tree init_type = TREE_TYPE (init);
6294 if (init_type && TYPE_PTRMEMFUNC_P (init_type))
6295 /* There is no need to call reshape_init for pointer-to-member
6296 function initializers, as they are always constructed correctly
6297 by the front end. Here we have e.g. {.__pfn=0B, .__delta=0},
6298 which is missing outermost braces. We should warn below, and
6299 one of the routines below will wrap it in additional { }. */;
6300 /* For a nested compound literal, there is no need to reshape since
6301 we called reshape_init in finish_compound_literal, before calling
6302 digest_init. */
6303 else if (COMPOUND_LITERAL_P (stripped_init)
6304 /* Similarly, a CONSTRUCTOR of the target's type is a
6305 previously digested initializer. */
6306 || same_type_ignoring_top_level_qualifiers_p (type,
6307 init_type))
6308 {
6309 ++d->cur;
6310 gcc_assert (!BRACE_ENCLOSED_INITIALIZER_P (stripped_init));
6311 return init;
6312 }
6313 else
6314 {
6315 /* Something that hasn't been reshaped yet. */
6316 ++d->cur;
6317 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (stripped_init));
6318 return reshape_init (type, init, complain);
6319 }
6320 }
6321
6322 if (complain & tf_warning)
6323 warning (OPT_Wmissing_braces,
6324 "missing braces around initializer for %qT",
6325 type);
6326 }
6327
6328 /* Dispatch to specialized routines. */
6329 if (CLASS_TYPE_P (type))
6330 return reshape_init_class (type, d, first_initializer_p, complain);
6331 else if (TREE_CODE (type) == ARRAY_TYPE)
6332 return reshape_init_array (type, d, complain);
6333 else if (VECTOR_TYPE_P (type))
6334 return reshape_init_vector (type, d, complain);
6335 else
6336 gcc_unreachable();
6337 }
6338
6339 /* Undo the brace-elision allowed by [dcl.init.aggr] in a
6340 brace-enclosed aggregate initializer.
6341
6342 INIT is the CONSTRUCTOR containing the list of initializers describing
6343 a brace-enclosed initializer for an entity of the indicated aggregate TYPE.
6344 It may not presently match the shape of the TYPE; for example:
6345
6346 struct S { int a; int b; };
6347 struct S a[] = { 1, 2, 3, 4 };
6348
6349 Here INIT will hold a vector of four elements, rather than a
6350 vector of two elements, each itself a vector of two elements. This
6351 routine transforms INIT from the former form into the latter. The
6352 revised CONSTRUCTOR node is returned. */
6353
6354 tree
6355 reshape_init (tree type, tree init, tsubst_flags_t complain)
6356 {
6357 vec<constructor_elt, va_gc> *v;
6358 reshape_iter d;
6359 tree new_init;
6360
6361 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
6362
6363 v = CONSTRUCTOR_ELTS (init);
6364
6365 /* An empty constructor does not need reshaping, and it is always a valid
6366 initializer. */
6367 if (vec_safe_is_empty (v))
6368 return init;
6369
6370 /* Handle [dcl.init.list] direct-list-initialization from
6371 single element of enumeration with a fixed underlying type. */
6372 if (is_direct_enum_init (type, init))
6373 {
6374 tree elt = CONSTRUCTOR_ELT (init, 0)->value;
6375 type = cv_unqualified (type);
6376 if (check_narrowing (ENUM_UNDERLYING_TYPE (type), elt, complain))
6377 {
6378 warning_sentinel w (warn_useless_cast);
6379 warning_sentinel w2 (warn_ignored_qualifiers);
6380 return cp_build_c_cast (type, elt, tf_warning_or_error);
6381 }
6382 else
6383 return error_mark_node;
6384 }
6385
6386 /* Recurse on this CONSTRUCTOR. */
6387 d.cur = &(*v)[0];
6388 d.end = d.cur + v->length ();
6389
6390 new_init = reshape_init_r (type, &d, true, complain);
6391 if (new_init == error_mark_node)
6392 return error_mark_node;
6393
6394 /* Make sure all the element of the constructor were used. Otherwise,
6395 issue an error about exceeding initializers. */
6396 if (d.cur != d.end)
6397 {
6398 if (complain & tf_error)
6399 error ("too many initializers for %qT", type);
6400 return error_mark_node;
6401 }
6402
6403 if (CONSTRUCTOR_IS_DIRECT_INIT (init)
6404 && BRACE_ENCLOSED_INITIALIZER_P (new_init))
6405 CONSTRUCTOR_IS_DIRECT_INIT (new_init) = true;
6406 if (CONSTRUCTOR_IS_DESIGNATED_INIT (init)
6407 && BRACE_ENCLOSED_INITIALIZER_P (new_init))
6408 CONSTRUCTOR_IS_DESIGNATED_INIT (new_init) = true;
6409
6410 return new_init;
6411 }
6412
6413 /* Verify array initializer. Returns true if errors have been reported. */
6414
6415 bool
6416 check_array_initializer (tree decl, tree type, tree init)
6417 {
6418 tree element_type = TREE_TYPE (type);
6419
6420 /* The array type itself need not be complete, because the
6421 initializer may tell us how many elements are in the array.
6422 But, the elements of the array must be complete. */
6423 if (!COMPLETE_TYPE_P (complete_type (element_type)))
6424 {
6425 if (decl)
6426 error_at (DECL_SOURCE_LOCATION (decl),
6427 "elements of array %q#D have incomplete type", decl);
6428 else
6429 error ("elements of array %q#T have incomplete type", type);
6430 return true;
6431 }
6432 /* A compound literal can't have variable size. */
6433 if (init && !decl
6434 && ((COMPLETE_TYPE_P (type) && !TREE_CONSTANT (TYPE_SIZE (type)))
6435 || !TREE_CONSTANT (TYPE_SIZE (element_type))))
6436 {
6437 error ("variable-sized compound literal");
6438 return true;
6439 }
6440 return false;
6441 }
6442
6443 /* Subroutine of check_initializer; args are passed down from that function.
6444 Set stmts_are_full_exprs_p to 1 across a call to build_aggr_init. */
6445
6446 static tree
6447 build_aggr_init_full_exprs (tree decl, tree init, int flags)
6448
6449 {
6450 gcc_assert (stmts_are_full_exprs_p ());
6451 return build_aggr_init (decl, init, flags, tf_warning_or_error);
6452 }
6453
6454 /* Verify INIT (the initializer for DECL), and record the
6455 initialization in DECL_INITIAL, if appropriate. CLEANUP is as for
6456 grok_reference_init.
6457
6458 If the return value is non-NULL, it is an expression that must be
6459 evaluated dynamically to initialize DECL. */
6460
6461 static tree
6462 check_initializer (tree decl, tree init, int flags, vec<tree, va_gc> **cleanups)
6463 {
6464 tree type;
6465 tree init_code = NULL;
6466 tree core_type;
6467
6468 /* Things that are going to be initialized need to have complete
6469 type. */
6470 TREE_TYPE (decl) = type = complete_type (TREE_TYPE (decl));
6471
6472 if (DECL_HAS_VALUE_EXPR_P (decl))
6473 {
6474 /* A variable with DECL_HAS_VALUE_EXPR_P set is just a placeholder,
6475 it doesn't have storage to be initialized. */
6476 gcc_assert (init == NULL_TREE);
6477 return NULL_TREE;
6478 }
6479
6480 if (type == error_mark_node)
6481 /* We will have already complained. */
6482 return NULL_TREE;
6483
6484 if (TREE_CODE (type) == ARRAY_TYPE)
6485 {
6486 if (check_array_initializer (decl, type, init))
6487 return NULL_TREE;
6488 }
6489 else if (!COMPLETE_TYPE_P (type))
6490 {
6491 error_at (DECL_SOURCE_LOCATION (decl),
6492 "%q#D has incomplete type", decl);
6493 TREE_TYPE (decl) = error_mark_node;
6494 return NULL_TREE;
6495 }
6496 else
6497 /* There is no way to make a variable-sized class type in GNU C++. */
6498 gcc_assert (TREE_CONSTANT (TYPE_SIZE (type)));
6499
6500 if (init && BRACE_ENCLOSED_INITIALIZER_P (init))
6501 {
6502 int init_len = CONSTRUCTOR_NELTS (init);
6503 if (SCALAR_TYPE_P (type))
6504 {
6505 if (init_len == 0)
6506 {
6507 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
6508 init = build_zero_init (type, NULL_TREE, false);
6509 }
6510 else if (init_len != 1 && TREE_CODE (type) != COMPLEX_TYPE)
6511 {
6512 error_at (cp_expr_loc_or_loc (init, DECL_SOURCE_LOCATION (decl)),
6513 "scalar object %qD requires one element in "
6514 "initializer", decl);
6515 TREE_TYPE (decl) = error_mark_node;
6516 return NULL_TREE;
6517 }
6518 }
6519 }
6520
6521 if (TREE_CODE (decl) == CONST_DECL)
6522 {
6523 gcc_assert (!TYPE_REF_P (type));
6524
6525 DECL_INITIAL (decl) = init;
6526
6527 gcc_assert (init != NULL_TREE);
6528 init = NULL_TREE;
6529 }
6530 else if (!init && DECL_REALLY_EXTERN (decl))
6531 ;
6532 else if (init || type_build_ctor_call (type)
6533 || TYPE_REF_P (type))
6534 {
6535 if (TYPE_REF_P (type))
6536 {
6537 init = grok_reference_init (decl, type, init, flags);
6538 flags |= LOOKUP_ALREADY_DIGESTED;
6539 }
6540 else if (!init)
6541 check_for_uninitialized_const_var (decl, /*constexpr_context_p=*/false,
6542 tf_warning_or_error);
6543 /* Do not reshape constructors of vectors (they don't need to be
6544 reshaped. */
6545 else if (BRACE_ENCLOSED_INITIALIZER_P (init))
6546 {
6547 if (is_std_init_list (type))
6548 {
6549 init = perform_implicit_conversion (type, init,
6550 tf_warning_or_error);
6551 flags |= LOOKUP_ALREADY_DIGESTED;
6552 }
6553 else if (TYPE_NON_AGGREGATE_CLASS (type))
6554 {
6555 /* Don't reshape if the class has constructors. */
6556 if (cxx_dialect == cxx98)
6557 error_at (cp_expr_loc_or_loc (init, DECL_SOURCE_LOCATION (decl)),
6558 "in C++98 %qD must be initialized by "
6559 "constructor, not by %<{...}%>",
6560 decl);
6561 }
6562 else if (VECTOR_TYPE_P (type) && TYPE_VECTOR_OPAQUE (type))
6563 {
6564 error ("opaque vector types cannot be initialized");
6565 init = error_mark_node;
6566 }
6567 else
6568 {
6569 init = reshape_init (type, init, tf_warning_or_error);
6570 flags |= LOOKUP_NO_NARROWING;
6571 }
6572 }
6573 else if (TREE_CODE (init) == TREE_LIST
6574 && TREE_TYPE (init) != unknown_type_node
6575 && !MAYBE_CLASS_TYPE_P (type))
6576 {
6577 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
6578
6579 /* We get here with code like `int a (2);' */
6580 init = build_x_compound_expr_from_list (init, ELK_INIT,
6581 tf_warning_or_error);
6582 }
6583
6584 /* If DECL has an array type without a specific bound, deduce the
6585 array size from the initializer. */
6586 maybe_deduce_size_from_array_init (decl, init);
6587 type = TREE_TYPE (decl);
6588 if (type == error_mark_node)
6589 return NULL_TREE;
6590
6591 if (((type_build_ctor_call (type) || CLASS_TYPE_P (type))
6592 && !(flags & LOOKUP_ALREADY_DIGESTED)
6593 && !(init && BRACE_ENCLOSED_INITIALIZER_P (init)
6594 && CP_AGGREGATE_TYPE_P (type)
6595 && (CLASS_TYPE_P (type)
6596 || !TYPE_NEEDS_CONSTRUCTING (type)
6597 || type_has_extended_temps (type))))
6598 || (DECL_DECOMPOSITION_P (decl) && TREE_CODE (type) == ARRAY_TYPE))
6599 {
6600 init_code = build_aggr_init_full_exprs (decl, init, flags);
6601
6602 /* A constructor call is a non-trivial initializer even if
6603 it isn't explicitly written. */
6604 if (TREE_SIDE_EFFECTS (init_code))
6605 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = true;
6606
6607 /* If this is a constexpr initializer, expand_default_init will
6608 have returned an INIT_EXPR rather than a CALL_EXPR. In that
6609 case, pull the initializer back out and pass it down into
6610 store_init_value. */
6611 while (TREE_CODE (init_code) == EXPR_STMT
6612 || TREE_CODE (init_code) == CONVERT_EXPR)
6613 init_code = TREE_OPERAND (init_code, 0);
6614 if (TREE_CODE (init_code) == INIT_EXPR)
6615 {
6616 init = TREE_OPERAND (init_code, 1);
6617 init_code = NULL_TREE;
6618 /* Don't call digest_init; it's unnecessary and will complain
6619 about aggregate initialization of non-aggregate classes. */
6620 flags |= LOOKUP_ALREADY_DIGESTED;
6621 }
6622 else if (DECL_DECLARED_CONSTEXPR_P (decl)
6623 || (flags & LOOKUP_CONSTINIT))
6624 {
6625 /* Declared constexpr or constinit, but no suitable initializer;
6626 massage init appropriately so we can pass it into
6627 store_init_value for the error. */
6628 if (CLASS_TYPE_P (type)
6629 && (!init || TREE_CODE (init) == TREE_LIST))
6630 {
6631 init = build_functional_cast (type, init, tf_none);
6632 if (TREE_CODE (init) == TARGET_EXPR)
6633 TARGET_EXPR_DIRECT_INIT_P (init) = true;
6634 }
6635 init_code = NULL_TREE;
6636 }
6637 else
6638 init = NULL_TREE;
6639 }
6640
6641 if (init && TREE_CODE (init) != TREE_VEC)
6642 {
6643 /* In aggregate initialization of a variable, each element
6644 initialization is a full-expression because there is no
6645 enclosing expression. */
6646 gcc_assert (stmts_are_full_exprs_p ());
6647
6648 init_code = store_init_value (decl, init, cleanups, flags);
6649
6650 if (DECL_INITIAL (decl)
6651 && TREE_CODE (DECL_INITIAL (decl)) == CONSTRUCTOR
6652 && !vec_safe_is_empty (CONSTRUCTOR_ELTS (DECL_INITIAL (decl))))
6653 {
6654 tree elt = CONSTRUCTOR_ELTS (DECL_INITIAL (decl))->last ().value;
6655 if (TREE_CODE (TREE_TYPE (elt)) == ARRAY_TYPE
6656 && TYPE_SIZE (TREE_TYPE (elt)) == NULL_TREE)
6657 cp_complete_array_type (&TREE_TYPE (elt), elt, false);
6658 }
6659
6660 if (pedantic && TREE_CODE (type) == ARRAY_TYPE
6661 && DECL_INITIAL (decl)
6662 && TREE_CODE (DECL_INITIAL (decl)) == STRING_CST
6663 && PAREN_STRING_LITERAL_P (DECL_INITIAL (decl)))
6664 warning_at (cp_expr_loc_or_loc (DECL_INITIAL (decl),
6665 DECL_SOURCE_LOCATION (decl)),
6666 0, "array %qD initialized by parenthesized "
6667 "string literal %qE",
6668 decl, DECL_INITIAL (decl));
6669 init = NULL;
6670 }
6671 }
6672 else
6673 {
6674 if (CLASS_TYPE_P (core_type = strip_array_types (type))
6675 && (CLASSTYPE_READONLY_FIELDS_NEED_INIT (core_type)
6676 || CLASSTYPE_REF_FIELDS_NEED_INIT (core_type)))
6677 diagnose_uninitialized_cst_or_ref_member (core_type, /*using_new=*/false,
6678 /*complain=*/true);
6679
6680 check_for_uninitialized_const_var (decl, /*constexpr_context_p=*/false,
6681 tf_warning_or_error);
6682 }
6683
6684 if (init && init != error_mark_node)
6685 init_code = build2 (INIT_EXPR, type, decl, init);
6686
6687 if (init_code)
6688 {
6689 /* We might have set these in cp_finish_decl. */
6690 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = false;
6691 TREE_CONSTANT (decl) = false;
6692 }
6693
6694 if (init_code
6695 && DECL_IN_AGGR_P (decl)
6696 && DECL_INITIALIZED_IN_CLASS_P (decl))
6697 {
6698 static int explained = 0;
6699
6700 if (cxx_dialect < cxx11)
6701 error ("initializer invalid for static member with constructor");
6702 else if (cxx_dialect < cxx17)
6703 error ("non-constant in-class initialization invalid for static "
6704 "member %qD", decl);
6705 else
6706 error ("non-constant in-class initialization invalid for non-inline "
6707 "static member %qD", decl);
6708 if (!explained)
6709 {
6710 inform (input_location,
6711 "(an out of class initialization is required)");
6712 explained = 1;
6713 }
6714 return NULL_TREE;
6715 }
6716
6717 return init_code;
6718 }
6719
6720 /* If DECL is not a local variable, give it RTL. */
6721
6722 static void
6723 make_rtl_for_nonlocal_decl (tree decl, tree init, const char* asmspec)
6724 {
6725 int toplev = toplevel_bindings_p ();
6726 int defer_p;
6727
6728 /* Set the DECL_ASSEMBLER_NAME for the object. */
6729 if (asmspec)
6730 {
6731 /* The `register' keyword, when used together with an
6732 asm-specification, indicates that the variable should be
6733 placed in a particular register. */
6734 if (VAR_P (decl) && DECL_REGISTER (decl))
6735 {
6736 set_user_assembler_name (decl, asmspec);
6737 DECL_HARD_REGISTER (decl) = 1;
6738 }
6739 else
6740 {
6741 if (TREE_CODE (decl) == FUNCTION_DECL
6742 && fndecl_built_in_p (decl, BUILT_IN_NORMAL))
6743 set_builtin_user_assembler_name (decl, asmspec);
6744 set_user_assembler_name (decl, asmspec);
6745 }
6746 }
6747
6748 /* Handle non-variables up front. */
6749 if (!VAR_P (decl))
6750 {
6751 rest_of_decl_compilation (decl, toplev, at_eof);
6752 return;
6753 }
6754
6755 /* If we see a class member here, it should be a static data
6756 member. */
6757 if (DECL_LANG_SPECIFIC (decl) && DECL_IN_AGGR_P (decl))
6758 {
6759 gcc_assert (TREE_STATIC (decl));
6760 /* An in-class declaration of a static data member should be
6761 external; it is only a declaration, and not a definition. */
6762 if (init == NULL_TREE)
6763 gcc_assert (DECL_EXTERNAL (decl)
6764 || !TREE_PUBLIC (decl));
6765 }
6766
6767 /* We don't create any RTL for local variables. */
6768 if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
6769 return;
6770
6771 /* We defer emission of local statics until the corresponding
6772 DECL_EXPR is expanded. But with constexpr its function might never
6773 be expanded, so go ahead and tell cgraph about the variable now. */
6774 defer_p = ((DECL_FUNCTION_SCOPE_P (decl)
6775 && !var_in_maybe_constexpr_fn (decl))
6776 || DECL_VIRTUAL_P (decl));
6777
6778 /* Defer template instantiations. */
6779 if (DECL_LANG_SPECIFIC (decl)
6780 && DECL_IMPLICIT_INSTANTIATION (decl))
6781 defer_p = 1;
6782
6783 /* If we're not deferring, go ahead and assemble the variable. */
6784 if (!defer_p)
6785 rest_of_decl_compilation (decl, toplev, at_eof);
6786 }
6787
6788 /* walk_tree helper for wrap_temporary_cleanups, below. */
6789
6790 static tree
6791 wrap_cleanups_r (tree *stmt_p, int *walk_subtrees, void *data)
6792 {
6793 /* Stop at types or full-expression boundaries. */
6794 if (TYPE_P (*stmt_p)
6795 || TREE_CODE (*stmt_p) == CLEANUP_POINT_EXPR)
6796 {
6797 *walk_subtrees = 0;
6798 return NULL_TREE;
6799 }
6800
6801 if (TREE_CODE (*stmt_p) == TARGET_EXPR)
6802 {
6803 tree guard = (tree)data;
6804 tree tcleanup = TARGET_EXPR_CLEANUP (*stmt_p);
6805
6806 tcleanup = build2 (TRY_CATCH_EXPR, void_type_node, tcleanup, guard);
6807 /* Tell honor_protect_cleanup_actions to handle this as a separate
6808 cleanup. */
6809 TRY_CATCH_IS_CLEANUP (tcleanup) = 1;
6810
6811 TARGET_EXPR_CLEANUP (*stmt_p) = tcleanup;
6812 }
6813
6814 return NULL_TREE;
6815 }
6816
6817 /* We're initializing a local variable which has a cleanup GUARD. If there
6818 are any temporaries used in the initializer INIT of this variable, we
6819 need to wrap their cleanups with TRY_CATCH_EXPR (, GUARD) so that the
6820 variable will be cleaned up properly if one of them throws.
6821
6822 Unfortunately, there's no way to express this properly in terms of
6823 nesting, as the regions for the temporaries overlap the region for the
6824 variable itself; if there are two temporaries, the variable needs to be
6825 the first thing destroyed if either of them throws. However, we only
6826 want to run the variable's cleanup if it actually got constructed. So
6827 we need to guard the temporary cleanups with the variable's cleanup if
6828 they are run on the normal path, but not if they are run on the
6829 exceptional path. We implement this by telling
6830 honor_protect_cleanup_actions to strip the variable cleanup from the
6831 exceptional path. */
6832
6833 static void
6834 wrap_temporary_cleanups (tree init, tree guard)
6835 {
6836 cp_walk_tree_without_duplicates (&init, wrap_cleanups_r, (void *)guard);
6837 }
6838
6839 /* Generate code to initialize DECL (a local variable). */
6840
6841 static void
6842 initialize_local_var (tree decl, tree init)
6843 {
6844 tree type = TREE_TYPE (decl);
6845 tree cleanup;
6846 int already_used;
6847
6848 gcc_assert (VAR_P (decl)
6849 || TREE_CODE (decl) == RESULT_DECL);
6850 gcc_assert (!TREE_STATIC (decl));
6851
6852 if (DECL_SIZE (decl) == NULL_TREE)
6853 {
6854 /* If we used it already as memory, it must stay in memory. */
6855 DECL_INITIAL (decl) = NULL_TREE;
6856 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
6857 return;
6858 }
6859
6860 if (type == error_mark_node)
6861 return;
6862
6863 /* Compute and store the initial value. */
6864 already_used = TREE_USED (decl) || TREE_USED (type);
6865 if (TREE_USED (type))
6866 DECL_READ_P (decl) = 1;
6867
6868 /* Generate a cleanup, if necessary. */
6869 cleanup = cxx_maybe_build_cleanup (decl, tf_warning_or_error);
6870
6871 /* Perform the initialization. */
6872 if (init)
6873 {
6874 tree rinit = (TREE_CODE (init) == INIT_EXPR
6875 ? TREE_OPERAND (init, 1) : NULL_TREE);
6876 if (rinit && !TREE_SIDE_EFFECTS (rinit))
6877 {
6878 /* Stick simple initializers in DECL_INITIAL so that
6879 -Wno-init-self works (c++/34772). */
6880 gcc_assert (TREE_OPERAND (init, 0) == decl);
6881 DECL_INITIAL (decl) = rinit;
6882
6883 if (warn_init_self && TYPE_REF_P (type))
6884 {
6885 STRIP_NOPS (rinit);
6886 if (rinit == decl)
6887 warning_at (DECL_SOURCE_LOCATION (decl),
6888 OPT_Winit_self,
6889 "reference %qD is initialized with itself", decl);
6890 }
6891 }
6892 else
6893 {
6894 int saved_stmts_are_full_exprs_p;
6895
6896 /* If we're only initializing a single object, guard the
6897 destructors of any temporaries used in its initializer with
6898 its destructor. This isn't right for arrays because each
6899 element initialization is a full-expression. */
6900 if (cleanup && TREE_CODE (type) != ARRAY_TYPE)
6901 wrap_temporary_cleanups (init, cleanup);
6902
6903 gcc_assert (building_stmt_list_p ());
6904 saved_stmts_are_full_exprs_p = stmts_are_full_exprs_p ();
6905 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
6906 finish_expr_stmt (init);
6907 current_stmt_tree ()->stmts_are_full_exprs_p =
6908 saved_stmts_are_full_exprs_p;
6909 }
6910 }
6911
6912 /* Set this to 0 so we can tell whether an aggregate which was
6913 initialized was ever used. Don't do this if it has a
6914 destructor, so we don't complain about the 'resource
6915 allocation is initialization' idiom. Now set
6916 attribute((unused)) on types so decls of that type will be
6917 marked used. (see TREE_USED, above.) */
6918 if (TYPE_NEEDS_CONSTRUCTING (type)
6919 && ! already_used
6920 && TYPE_HAS_TRIVIAL_DESTRUCTOR (type)
6921 && DECL_NAME (decl))
6922 TREE_USED (decl) = 0;
6923 else if (already_used)
6924 TREE_USED (decl) = 1;
6925
6926 if (cleanup)
6927 finish_decl_cleanup (decl, cleanup);
6928 }
6929
6930 /* DECL is a VAR_DECL for a compiler-generated variable with static
6931 storage duration (like a virtual table) whose initializer is a
6932 compile-time constant. Initialize the variable and provide it to the
6933 back end. */
6934
6935 void
6936 initialize_artificial_var (tree decl, vec<constructor_elt, va_gc> *v)
6937 {
6938 tree init;
6939 gcc_assert (DECL_ARTIFICIAL (decl));
6940 init = build_constructor (TREE_TYPE (decl), v);
6941 gcc_assert (TREE_CODE (init) == CONSTRUCTOR);
6942 DECL_INITIAL (decl) = init;
6943 DECL_INITIALIZED_P (decl) = 1;
6944 /* Mark the decl as constexpr so that we can access its content
6945 at compile time. */
6946 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = true;
6947 DECL_DECLARED_CONSTEXPR_P (decl) = true;
6948 determine_visibility (decl);
6949 layout_var_decl (decl);
6950 maybe_commonize_var (decl);
6951 make_rtl_for_nonlocal_decl (decl, init, /*asmspec=*/NULL);
6952 }
6953
6954 /* INIT is the initializer for a variable, as represented by the
6955 parser. Returns true iff INIT is value-dependent. */
6956
6957 static bool
6958 value_dependent_init_p (tree init)
6959 {
6960 if (TREE_CODE (init) == TREE_LIST)
6961 /* A parenthesized initializer, e.g.: int i (3, 2); ? */
6962 return any_value_dependent_elements_p (init);
6963 else if (TREE_CODE (init) == CONSTRUCTOR)
6964 /* A brace-enclosed initializer, e.g.: int i = { 3 }; ? */
6965 {
6966 if (dependent_type_p (TREE_TYPE (init)))
6967 return true;
6968
6969 vec<constructor_elt, va_gc> *elts;
6970 size_t nelts;
6971 size_t i;
6972
6973 elts = CONSTRUCTOR_ELTS (init);
6974 nelts = vec_safe_length (elts);
6975 for (i = 0; i < nelts; ++i)
6976 if (value_dependent_init_p ((*elts)[i].value))
6977 return true;
6978 }
6979 else
6980 /* It must be a simple expression, e.g., int i = 3; */
6981 return value_dependent_expression_p (init);
6982
6983 return false;
6984 }
6985
6986 // Returns true if a DECL is VAR_DECL with the concept specifier.
6987 static inline bool
6988 is_concept_var (tree decl)
6989 {
6990 return (VAR_P (decl)
6991 // Not all variables have DECL_LANG_SPECIFIC.
6992 && DECL_LANG_SPECIFIC (decl)
6993 && DECL_DECLARED_CONCEPT_P (decl));
6994 }
6995
6996 /* A helper function to be called via walk_tree. If any label exists
6997 under *TP, it is (going to be) forced. Set has_forced_label_in_static. */
6998
6999 static tree
7000 notice_forced_label_r (tree *tp, int *walk_subtrees, void *)
7001 {
7002 if (TYPE_P (*tp))
7003 *walk_subtrees = 0;
7004 if (TREE_CODE (*tp) == LABEL_DECL)
7005 cfun->has_forced_label_in_static = 1;
7006 return NULL_TREE;
7007 }
7008
7009 /* Finish processing of a declaration;
7010 install its line number and initial value.
7011 If the length of an array type is not known before,
7012 it must be determined now, from the initial value, or it is an error.
7013
7014 INIT is the initializer (if any) for DECL. If INIT_CONST_EXPR_P is
7015 true, then INIT is an integral constant expression.
7016
7017 FLAGS is LOOKUP_ONLYCONVERTING if the = init syntax was used, else 0
7018 if the (init) syntax was used. */
7019
7020 void
7021 cp_finish_decl (tree decl, tree init, bool init_const_expr_p,
7022 tree asmspec_tree, int flags)
7023 {
7024 tree type;
7025 vec<tree, va_gc> *cleanups = NULL;
7026 const char *asmspec = NULL;
7027 int was_readonly = 0;
7028 bool var_definition_p = false;
7029 tree auto_node;
7030
7031 if (decl == error_mark_node)
7032 return;
7033 else if (! decl)
7034 {
7035 if (init)
7036 error ("assignment (not initialization) in declaration");
7037 return;
7038 }
7039
7040 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
7041 /* Parameters are handled by store_parm_decls, not cp_finish_decl. */
7042 gcc_assert (TREE_CODE (decl) != PARM_DECL);
7043
7044 type = TREE_TYPE (decl);
7045 if (type == error_mark_node)
7046 return;
7047
7048 /* Warn about register storage specifiers except when in GNU global
7049 or local register variable extension. */
7050 if (VAR_P (decl) && DECL_REGISTER (decl) && asmspec_tree == NULL_TREE)
7051 {
7052 if (cxx_dialect >= cxx17)
7053 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
7054 "ISO C++17 does not allow %<register%> storage "
7055 "class specifier");
7056 else
7057 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
7058 "%<register%> storage class specifier used");
7059 }
7060
7061 /* If a name was specified, get the string. */
7062 if (at_namespace_scope_p ())
7063 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
7064 if (asmspec_tree && asmspec_tree != error_mark_node)
7065 asmspec = TREE_STRING_POINTER (asmspec_tree);
7066
7067 if (current_class_type
7068 && CP_DECL_CONTEXT (decl) == current_class_type
7069 && TYPE_BEING_DEFINED (current_class_type)
7070 && !CLASSTYPE_TEMPLATE_INSTANTIATION (current_class_type)
7071 && (DECL_INITIAL (decl) || init))
7072 DECL_INITIALIZED_IN_CLASS_P (decl) = 1;
7073
7074 /* Do auto deduction unless decl is a function or an uninstantiated
7075 template specialization. */
7076 if (TREE_CODE (decl) != FUNCTION_DECL
7077 && !(init == NULL_TREE
7078 && DECL_LANG_SPECIFIC (decl)
7079 && DECL_TEMPLATE_INSTANTIATION (decl)
7080 && !DECL_TEMPLATE_INSTANTIATED (decl))
7081 && (auto_node = type_uses_auto (type)))
7082 {
7083 tree d_init;
7084 if (init == NULL_TREE)
7085 gcc_assert (CLASS_PLACEHOLDER_TEMPLATE (auto_node));
7086 d_init = init;
7087 if (d_init)
7088 {
7089 if (TREE_CODE (d_init) == TREE_LIST
7090 && !CLASS_PLACEHOLDER_TEMPLATE (auto_node))
7091 d_init = build_x_compound_expr_from_list (d_init, ELK_INIT,
7092 tf_warning_or_error);
7093 d_init = resolve_nondeduced_context (d_init, tf_warning_or_error);
7094 }
7095 enum auto_deduction_context adc = adc_variable_type;
7096 if (VAR_P (decl) && DECL_DECOMPOSITION_P (decl))
7097 adc = adc_decomp_type;
7098 type = TREE_TYPE (decl) = do_auto_deduction (type, d_init, auto_node,
7099 tf_warning_or_error, adc,
7100 NULL_TREE, flags);
7101 if (type == error_mark_node)
7102 return;
7103 if (TREE_CODE (type) == FUNCTION_TYPE)
7104 {
7105 error ("initializer for %<decltype(auto) %D%> has function type; "
7106 "did you forget the %<()%>?", decl);
7107 TREE_TYPE (decl) = error_mark_node;
7108 return;
7109 }
7110 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
7111 }
7112
7113 if (ensure_literal_type_for_constexpr_object (decl) == error_mark_node)
7114 {
7115 DECL_DECLARED_CONSTEXPR_P (decl) = 0;
7116 if (VAR_P (decl) && DECL_CLASS_SCOPE_P (decl))
7117 {
7118 init = NULL_TREE;
7119 DECL_EXTERNAL (decl) = 1;
7120 }
7121 }
7122
7123 if (VAR_P (decl)
7124 && DECL_CLASS_SCOPE_P (decl)
7125 && DECL_INITIALIZED_IN_CLASS_P (decl))
7126 check_static_variable_definition (decl, type);
7127
7128 if (init && TREE_CODE (decl) == FUNCTION_DECL)
7129 {
7130 tree clone;
7131 if (init == ridpointers[(int)RID_DELETE])
7132 {
7133 /* FIXME check this is 1st decl. */
7134 DECL_DELETED_FN (decl) = 1;
7135 DECL_DECLARED_INLINE_P (decl) = 1;
7136 DECL_INITIAL (decl) = error_mark_node;
7137 FOR_EACH_CLONE (clone, decl)
7138 {
7139 DECL_DELETED_FN (clone) = 1;
7140 DECL_DECLARED_INLINE_P (clone) = 1;
7141 DECL_INITIAL (clone) = error_mark_node;
7142 }
7143 init = NULL_TREE;
7144 }
7145 else if (init == ridpointers[(int)RID_DEFAULT])
7146 {
7147 if (defaultable_fn_check (decl))
7148 DECL_DEFAULTED_FN (decl) = 1;
7149 else
7150 DECL_INITIAL (decl) = NULL_TREE;
7151 }
7152 }
7153
7154 if (init && VAR_P (decl))
7155 {
7156 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = 1;
7157 /* If DECL is a reference, then we want to know whether init is a
7158 reference constant; init_const_expr_p as passed tells us whether
7159 it's an rvalue constant. */
7160 if (TYPE_REF_P (type))
7161 init_const_expr_p = potential_constant_expression (init);
7162 if (init_const_expr_p)
7163 {
7164 /* Set these flags now for templates. We'll update the flags in
7165 store_init_value for instantiations. */
7166 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = 1;
7167 if (decl_maybe_constant_var_p (decl)
7168 /* FIXME setting TREE_CONSTANT on refs breaks the back end. */
7169 && !TYPE_REF_P (type))
7170 TREE_CONSTANT (decl) = 1;
7171 }
7172 }
7173
7174 if (processing_template_decl)
7175 {
7176 bool type_dependent_p;
7177
7178 /* Add this declaration to the statement-tree. */
7179 if (at_function_scope_p ())
7180 add_decl_expr (decl);
7181
7182 type_dependent_p = dependent_type_p (type);
7183
7184 if (check_for_bare_parameter_packs (init))
7185 {
7186 init = NULL_TREE;
7187 DECL_INITIAL (decl) = NULL_TREE;
7188 }
7189
7190 /* Handle `constinit' on variable templates. */
7191 if (flags & LOOKUP_CONSTINIT)
7192 TINFO_VAR_DECLARED_CONSTINIT (DECL_TEMPLATE_INFO (decl)) = true;
7193
7194 /* Generally, initializers in templates are expanded when the
7195 template is instantiated. But, if DECL is a variable constant
7196 then it can be used in future constant expressions, so its value
7197 must be available. */
7198
7199 bool dep_init = false;
7200
7201 if (!VAR_P (decl) || type_dependent_p)
7202 /* We can't do anything if the decl has dependent type. */;
7203 else if (!init && is_concept_var (decl))
7204 {
7205 error ("variable concept has no initializer");
7206 init = boolean_true_node;
7207 }
7208 else if (init
7209 && init_const_expr_p
7210 && !TYPE_REF_P (type)
7211 && decl_maybe_constant_var_p (decl)
7212 && !(dep_init = value_dependent_init_p (init)))
7213 {
7214 /* This variable seems to be a non-dependent constant, so process
7215 its initializer. If check_initializer returns non-null the
7216 initialization wasn't constant after all. */
7217 tree init_code;
7218 cleanups = make_tree_vector ();
7219 init_code = check_initializer (decl, init, flags, &cleanups);
7220 if (init_code == NULL_TREE)
7221 init = NULL_TREE;
7222 release_tree_vector (cleanups);
7223 }
7224 else
7225 {
7226 gcc_assert (!DECL_PRETTY_FUNCTION_P (decl));
7227 /* Deduce array size even if the initializer is dependent. */
7228 maybe_deduce_size_from_array_init (decl, init);
7229 /* And complain about multiple initializers. */
7230 if (init && TREE_CODE (init) == TREE_LIST && TREE_CHAIN (init)
7231 && !MAYBE_CLASS_TYPE_P (type))
7232 init = build_x_compound_expr_from_list (init, ELK_INIT,
7233 tf_warning_or_error);
7234 }
7235
7236 if (init)
7237 DECL_INITIAL (decl) = init;
7238
7239 if (dep_init)
7240 {
7241 retrofit_lang_decl (decl);
7242 SET_DECL_DEPENDENT_INIT_P (decl, true);
7243 }
7244 return;
7245 }
7246
7247 /* Just store non-static data member initializers for later. */
7248 if (init && TREE_CODE (decl) == FIELD_DECL)
7249 DECL_INITIAL (decl) = init;
7250
7251 /* Take care of TYPE_DECLs up front. */
7252 if (TREE_CODE (decl) == TYPE_DECL)
7253 {
7254 if (type != error_mark_node
7255 && MAYBE_CLASS_TYPE_P (type) && DECL_NAME (decl))
7256 {
7257 if (TREE_TYPE (DECL_NAME (decl)) && TREE_TYPE (decl) != type)
7258 warning (0, "shadowing previous type declaration of %q#D", decl);
7259 set_identifier_type_value (DECL_NAME (decl), decl);
7260 }
7261
7262 /* If we have installed this as the canonical typedef for this
7263 type, and that type has not been defined yet, delay emitting
7264 the debug information for it, as we will emit it later. */
7265 if (TYPE_MAIN_DECL (TREE_TYPE (decl)) == decl
7266 && !COMPLETE_TYPE_P (TREE_TYPE (decl)))
7267 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
7268
7269 rest_of_decl_compilation (decl, DECL_FILE_SCOPE_P (decl),
7270 at_eof);
7271 return;
7272 }
7273
7274 /* A reference will be modified here, as it is initialized. */
7275 if (! DECL_EXTERNAL (decl)
7276 && TREE_READONLY (decl)
7277 && TYPE_REF_P (type))
7278 {
7279 was_readonly = 1;
7280 TREE_READONLY (decl) = 0;
7281 }
7282
7283 if (VAR_P (decl))
7284 {
7285 duration_kind dk = decl_storage_duration (decl);
7286 /* [dcl.constinit]/1 "The constinit specifier shall be applied
7287 only to a declaration of a variable with static or thread storage
7288 duration." */
7289 if ((flags & LOOKUP_CONSTINIT)
7290 && !(dk == dk_thread || dk == dk_static))
7291 {
7292 error_at (DECL_SOURCE_LOCATION (decl),
7293 "%<constinit%> can only be applied to a variable with "
7294 "static or thread storage duration");
7295 return;
7296 }
7297
7298 /* If this is a local variable that will need a mangled name,
7299 register it now. We must do this before processing the
7300 initializer for the variable, since the initialization might
7301 require a guard variable, and since the mangled name of the
7302 guard variable will depend on the mangled name of this
7303 variable. */
7304 if (DECL_FUNCTION_SCOPE_P (decl)
7305 && TREE_STATIC (decl)
7306 && !DECL_ARTIFICIAL (decl))
7307 {
7308 /* The variable holding an anonymous union will have had its
7309 discriminator set in finish_anon_union, after which it's
7310 NAME will have been cleared. */
7311 if (DECL_NAME (decl))
7312 determine_local_discriminator (decl);
7313 /* Normally has_forced_label_in_static is set during GIMPLE
7314 lowering, but [cd]tors are never actually compiled directly.
7315 We need to set this early so we can deal with the label
7316 address extension. */
7317 if ((DECL_CONSTRUCTOR_P (current_function_decl)
7318 || DECL_DESTRUCTOR_P (current_function_decl))
7319 && init)
7320 {
7321 walk_tree (&init, notice_forced_label_r, NULL, NULL);
7322 add_local_decl (cfun, decl);
7323 }
7324 /* And make sure it's in the symbol table for
7325 c_parse_final_cleanups to find. */
7326 varpool_node::get_create (decl);
7327 }
7328
7329 /* Convert the initializer to the type of DECL, if we have not
7330 already initialized DECL. */
7331 if (!DECL_INITIALIZED_P (decl)
7332 /* If !DECL_EXTERNAL then DECL is being defined. In the
7333 case of a static data member initialized inside the
7334 class-specifier, there can be an initializer even if DECL
7335 is *not* defined. */
7336 && (!DECL_EXTERNAL (decl) || init))
7337 {
7338 cleanups = make_tree_vector ();
7339 init = check_initializer (decl, init, flags, &cleanups);
7340
7341 /* Handle:
7342
7343 [dcl.init]
7344
7345 The memory occupied by any object of static storage
7346 duration is zero-initialized at program startup before
7347 any other initialization takes place.
7348
7349 We cannot create an appropriate initializer until after
7350 the type of DECL is finalized. If DECL_INITIAL is set,
7351 then the DECL is statically initialized, and any
7352 necessary zero-initialization has already been performed. */
7353 if (TREE_STATIC (decl) && !DECL_INITIAL (decl))
7354 DECL_INITIAL (decl) = build_zero_init (TREE_TYPE (decl),
7355 /*nelts=*/NULL_TREE,
7356 /*static_storage_p=*/true);
7357 /* Remember that the initialization for this variable has
7358 taken place. */
7359 DECL_INITIALIZED_P (decl) = 1;
7360 /* This declaration is the definition of this variable,
7361 unless we are initializing a static data member within
7362 the class specifier. */
7363 if (!DECL_EXTERNAL (decl))
7364 var_definition_p = true;
7365 }
7366 /* If the variable has an array type, lay out the type, even if
7367 there is no initializer. It is valid to index through the
7368 array, and we must get TYPE_ALIGN set correctly on the array
7369 type. */
7370 else if (TREE_CODE (type) == ARRAY_TYPE)
7371 layout_type (type);
7372
7373 if (TREE_STATIC (decl)
7374 && !at_function_scope_p ()
7375 && current_function_decl == NULL)
7376 /* So decl is a global variable or a static member of a
7377 non local class. Record the types it uses
7378 so that we can decide later to emit debug info for them. */
7379 record_types_used_by_current_var_decl (decl);
7380 }
7381
7382 /* Add this declaration to the statement-tree. This needs to happen
7383 after the call to check_initializer so that the DECL_EXPR for a
7384 reference temp is added before the DECL_EXPR for the reference itself. */
7385 if (DECL_FUNCTION_SCOPE_P (decl))
7386 {
7387 /* If we're building a variable sized type, and we might be
7388 reachable other than via the top of the current binding
7389 level, then create a new BIND_EXPR so that we deallocate
7390 the object at the right time. */
7391 if (VAR_P (decl)
7392 && DECL_SIZE (decl)
7393 && !TREE_CONSTANT (DECL_SIZE (decl))
7394 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list))
7395 {
7396 tree bind;
7397 bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
7398 TREE_SIDE_EFFECTS (bind) = 1;
7399 add_stmt (bind);
7400 BIND_EXPR_BODY (bind) = push_stmt_list ();
7401 }
7402 add_decl_expr (decl);
7403 }
7404
7405 /* Let the middle end know about variables and functions -- but not
7406 static data members in uninstantiated class templates. */
7407 if (VAR_OR_FUNCTION_DECL_P (decl))
7408 {
7409 if (VAR_P (decl))
7410 {
7411 layout_var_decl (decl);
7412 maybe_commonize_var (decl);
7413 }
7414
7415 /* This needs to happen after the linkage is set. */
7416 determine_visibility (decl);
7417
7418 if (var_definition_p && TREE_STATIC (decl))
7419 {
7420 /* If a TREE_READONLY variable needs initialization
7421 at runtime, it is no longer readonly and we need to
7422 avoid MEM_READONLY_P being set on RTL created for it. */
7423 if (init)
7424 {
7425 if (TREE_READONLY (decl))
7426 TREE_READONLY (decl) = 0;
7427 was_readonly = 0;
7428 }
7429 else if (was_readonly)
7430 TREE_READONLY (decl) = 1;
7431
7432 /* Likewise if it needs destruction. */
7433 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
7434 TREE_READONLY (decl) = 0;
7435 }
7436
7437 make_rtl_for_nonlocal_decl (decl, init, asmspec);
7438
7439 /* Check for abstractness of the type. Notice that there is no
7440 need to strip array types here since the check for those types
7441 is already done within create_array_type_for_decl. */
7442 abstract_virtuals_error (decl, type);
7443
7444 if (TREE_TYPE (decl) == error_mark_node)
7445 /* No initialization required. */
7446 ;
7447 else if (TREE_CODE (decl) == FUNCTION_DECL)
7448 {
7449 if (init)
7450 {
7451 if (init == ridpointers[(int)RID_DEFAULT])
7452 {
7453 /* An out-of-class default definition is defined at
7454 the point where it is explicitly defaulted. */
7455 if (DECL_DELETED_FN (decl))
7456 maybe_explain_implicit_delete (decl);
7457 else if (DECL_INITIAL (decl) == error_mark_node)
7458 synthesize_method (decl);
7459 }
7460 else
7461 error_at (cp_expr_loc_or_loc (init,
7462 DECL_SOURCE_LOCATION (decl)),
7463 "function %q#D is initialized like a variable",
7464 decl);
7465 }
7466 /* else no initialization required. */
7467 }
7468 else if (DECL_EXTERNAL (decl)
7469 && ! (DECL_LANG_SPECIFIC (decl)
7470 && DECL_NOT_REALLY_EXTERN (decl)))
7471 {
7472 /* check_initializer will have done any constant initialization. */
7473 }
7474 /* A variable definition. */
7475 else if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
7476 /* Initialize the local variable. */
7477 initialize_local_var (decl, init);
7478
7479 /* If a variable is defined, and then a subsequent
7480 definition with external linkage is encountered, we will
7481 get here twice for the same variable. We want to avoid
7482 calling expand_static_init more than once. For variables
7483 that are not static data members, we can call
7484 expand_static_init only when we actually process the
7485 initializer. It is not legal to redeclare a static data
7486 member, so this issue does not arise in that case. */
7487 else if (var_definition_p && TREE_STATIC (decl))
7488 expand_static_init (decl, init);
7489 }
7490
7491 /* If a CLEANUP_STMT was created to destroy a temporary bound to a
7492 reference, insert it in the statement-tree now. */
7493 if (cleanups)
7494 {
7495 unsigned i; tree t;
7496 FOR_EACH_VEC_ELT (*cleanups, i, t)
7497 push_cleanup (decl, t, false);
7498 release_tree_vector (cleanups);
7499 }
7500
7501 if (was_readonly)
7502 TREE_READONLY (decl) = 1;
7503
7504 if (flag_openmp
7505 && VAR_P (decl)
7506 && lookup_attribute ("omp declare target implicit",
7507 DECL_ATTRIBUTES (decl)))
7508 {
7509 DECL_ATTRIBUTES (decl)
7510 = remove_attribute ("omp declare target implicit",
7511 DECL_ATTRIBUTES (decl));
7512 complete_type (TREE_TYPE (decl));
7513 if (!cp_omp_mappable_type (TREE_TYPE (decl)))
7514 {
7515 error ("%q+D in declare target directive does not have mappable"
7516 " type", decl);
7517 cp_omp_emit_unmappable_type_notes (TREE_TYPE (decl));
7518 }
7519 else if (!lookup_attribute ("omp declare target",
7520 DECL_ATTRIBUTES (decl))
7521 && !lookup_attribute ("omp declare target link",
7522 DECL_ATTRIBUTES (decl)))
7523 DECL_ATTRIBUTES (decl)
7524 = tree_cons (get_identifier ("omp declare target"),
7525 NULL_TREE, DECL_ATTRIBUTES (decl));
7526 }
7527
7528 invoke_plugin_callbacks (PLUGIN_FINISH_DECL, decl);
7529 }
7530
7531 /* For class TYPE return itself or some its bases that contain
7532 any direct non-static data members. Return error_mark_node if an
7533 error has been diagnosed. */
7534
7535 static tree
7536 find_decomp_class_base (location_t loc, tree type, tree ret)
7537 {
7538 bool member_seen = false;
7539 for (tree field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
7540 if (TREE_CODE (field) != FIELD_DECL
7541 || DECL_ARTIFICIAL (field)
7542 || DECL_UNNAMED_BIT_FIELD (field))
7543 continue;
7544 else if (ret)
7545 return type;
7546 else if (ANON_AGGR_TYPE_P (TREE_TYPE (field)))
7547 {
7548 if (TREE_CODE (TREE_TYPE (field)) == RECORD_TYPE)
7549 error_at (loc, "cannot decompose class type %qT because it has an "
7550 "anonymous struct member", type);
7551 else
7552 error_at (loc, "cannot decompose class type %qT because it has an "
7553 "anonymous union member", type);
7554 inform (DECL_SOURCE_LOCATION (field), "declared here");
7555 return error_mark_node;
7556 }
7557 else if (!accessible_p (type, field, true))
7558 {
7559 error_at (loc, "cannot decompose inaccessible member %qD of %qT",
7560 field, type);
7561 inform (DECL_SOURCE_LOCATION (field),
7562 TREE_PRIVATE (field)
7563 ? G_("declared private here")
7564 : G_("declared protected here"));
7565 return error_mark_node;
7566 }
7567 else
7568 member_seen = true;
7569
7570 tree base_binfo, binfo;
7571 tree orig_ret = ret;
7572 int i;
7573 if (member_seen)
7574 ret = type;
7575 for (binfo = TYPE_BINFO (type), i = 0;
7576 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
7577 {
7578 tree t = find_decomp_class_base (loc, TREE_TYPE (base_binfo), ret);
7579 if (t == error_mark_node)
7580 return error_mark_node;
7581 if (t != NULL_TREE && t != ret)
7582 {
7583 if (ret == type)
7584 {
7585 error_at (loc, "cannot decompose class type %qT: both it and "
7586 "its base class %qT have non-static data members",
7587 type, t);
7588 return error_mark_node;
7589 }
7590 else if (orig_ret != NULL_TREE)
7591 return t;
7592 else if (ret != NULL_TREE)
7593 {
7594 error_at (loc, "cannot decompose class type %qT: its base "
7595 "classes %qT and %qT have non-static data "
7596 "members", type, ret, t);
7597 return error_mark_node;
7598 }
7599 else
7600 ret = t;
7601 }
7602 }
7603 return ret;
7604 }
7605
7606 /* Return std::tuple_size<TYPE>::value. */
7607
7608 static tree
7609 get_tuple_size (tree type)
7610 {
7611 tree args = make_tree_vec (1);
7612 TREE_VEC_ELT (args, 0) = type;
7613 tree inst = lookup_template_class (tuple_size_identifier, args,
7614 /*in_decl*/NULL_TREE,
7615 /*context*/std_node,
7616 /*entering_scope*/false, tf_none);
7617 inst = complete_type (inst);
7618 if (inst == error_mark_node || !COMPLETE_TYPE_P (inst))
7619 return NULL_TREE;
7620 tree val = lookup_qualified_name (inst, value_identifier,
7621 /*type*/false, /*complain*/false);
7622 if (TREE_CODE (val) == VAR_DECL || TREE_CODE (val) == CONST_DECL)
7623 val = maybe_constant_value (val);
7624 if (TREE_CODE (val) == INTEGER_CST)
7625 return val;
7626 else
7627 return error_mark_node;
7628 }
7629
7630 /* Return std::tuple_element<I,TYPE>::type. */
7631
7632 static tree
7633 get_tuple_element_type (tree type, unsigned i)
7634 {
7635 tree args = make_tree_vec (2);
7636 TREE_VEC_ELT (args, 0) = build_int_cst (integer_type_node, i);
7637 TREE_VEC_ELT (args, 1) = type;
7638 tree inst = lookup_template_class (tuple_element_identifier, args,
7639 /*in_decl*/NULL_TREE,
7640 /*context*/std_node,
7641 /*entering_scope*/false,
7642 tf_warning_or_error);
7643 return make_typename_type (inst, type_identifier,
7644 none_type, tf_warning_or_error);
7645 }
7646
7647 /* Return e.get<i>() or get<i>(e). */
7648
7649 static tree
7650 get_tuple_decomp_init (tree decl, unsigned i)
7651 {
7652 tree targs = make_tree_vec (1);
7653 TREE_VEC_ELT (targs, 0) = build_int_cst (integer_type_node, i);
7654
7655 tree etype = TREE_TYPE (decl);
7656 tree e = convert_from_reference (decl);
7657
7658 /* [The id-expression] e is an lvalue if the type of the entity e is an
7659 lvalue reference and an xvalue otherwise. */
7660 if (!TYPE_REF_P (etype)
7661 || TYPE_REF_IS_RVALUE (etype))
7662 e = move (e);
7663
7664 tree fns = lookup_qualified_name (TREE_TYPE (e), get__identifier,
7665 /*type*/false, /*complain*/false);
7666 bool use_member_get = false;
7667
7668 /* To use a member get, member lookup must find at least one
7669 declaration that is a function template
7670 whose first template parameter is a non-type parameter. */
7671 for (lkp_iterator iter (MAYBE_BASELINK_FUNCTIONS (fns)); iter; ++iter)
7672 {
7673 tree fn = *iter;
7674 if (TREE_CODE (fn) == TEMPLATE_DECL)
7675 {
7676 tree tparms = DECL_TEMPLATE_PARMS (fn);
7677 tree parm = TREE_VEC_ELT (INNERMOST_TEMPLATE_PARMS (tparms), 0);
7678 if (TREE_CODE (TREE_VALUE (parm)) == PARM_DECL)
7679 {
7680 use_member_get = true;
7681 break;
7682 }
7683 }
7684 }
7685
7686 if (use_member_get)
7687 {
7688 fns = lookup_template_function (fns, targs);
7689 return build_new_method_call (e, fns, /*args*/NULL,
7690 /*path*/NULL_TREE, LOOKUP_NORMAL,
7691 /*fn_p*/NULL, tf_warning_or_error);
7692 }
7693 else
7694 {
7695 releasing_vec args (make_tree_vector_single (e));
7696 fns = lookup_template_function (get__identifier, targs);
7697 fns = perform_koenig_lookup (fns, args, tf_warning_or_error);
7698 return finish_call_expr (fns, &args, /*novirt*/false,
7699 /*koenig*/true, tf_warning_or_error);
7700 }
7701 }
7702
7703 /* It's impossible to recover the decltype of a tuple decomposition variable
7704 based on the actual type of the variable, so store it in a hash table. */
7705
7706 static GTY((cache)) tree_cache_map *decomp_type_table;
7707 static void
7708 store_decomp_type (tree v, tree t)
7709 {
7710 if (!decomp_type_table)
7711 decomp_type_table = tree_cache_map::create_ggc (13);
7712 decomp_type_table->put (v, t);
7713 }
7714
7715 tree
7716 lookup_decomp_type (tree v)
7717 {
7718 return *decomp_type_table->get (v);
7719 }
7720
7721 /* Mangle a decomposition declaration if needed. Arguments like
7722 in cp_finish_decomp. */
7723
7724 void
7725 cp_maybe_mangle_decomp (tree decl, tree first, unsigned int count)
7726 {
7727 if (!processing_template_decl
7728 && !error_operand_p (decl)
7729 && TREE_STATIC (decl))
7730 {
7731 auto_vec<tree, 16> v;
7732 v.safe_grow (count);
7733 tree d = first;
7734 for (unsigned int i = 0; i < count; i++, d = DECL_CHAIN (d))
7735 v[count - i - 1] = d;
7736 SET_DECL_ASSEMBLER_NAME (decl, mangle_decomp (decl, v));
7737 maybe_apply_pragma_weak (decl);
7738 }
7739 }
7740
7741 /* Finish a decomposition declaration. DECL is the underlying declaration
7742 "e", FIRST is the head of a chain of decls for the individual identifiers
7743 chained through DECL_CHAIN in reverse order and COUNT is the number of
7744 those decls. */
7745
7746 void
7747 cp_finish_decomp (tree decl, tree first, unsigned int count)
7748 {
7749 if (error_operand_p (decl))
7750 {
7751 error_out:
7752 while (count--)
7753 {
7754 TREE_TYPE (first) = error_mark_node;
7755 if (DECL_HAS_VALUE_EXPR_P (first))
7756 {
7757 SET_DECL_VALUE_EXPR (first, NULL_TREE);
7758 DECL_HAS_VALUE_EXPR_P (first) = 0;
7759 }
7760 first = DECL_CHAIN (first);
7761 }
7762 if (DECL_P (decl) && DECL_NAMESPACE_SCOPE_P (decl))
7763 SET_DECL_ASSEMBLER_NAME (decl, get_identifier ("<decomp>"));
7764 return;
7765 }
7766
7767 location_t loc = DECL_SOURCE_LOCATION (decl);
7768 if (type_dependent_expression_p (decl)
7769 /* This happens for range for when not in templates.
7770 Still add the DECL_VALUE_EXPRs for later processing. */
7771 || (!processing_template_decl
7772 && type_uses_auto (TREE_TYPE (decl))))
7773 {
7774 for (unsigned int i = 0; i < count; i++)
7775 {
7776 if (!DECL_HAS_VALUE_EXPR_P (first))
7777 {
7778 tree v = build_nt (ARRAY_REF, decl,
7779 size_int (count - i - 1),
7780 NULL_TREE, NULL_TREE);
7781 SET_DECL_VALUE_EXPR (first, v);
7782 DECL_HAS_VALUE_EXPR_P (first) = 1;
7783 }
7784 if (processing_template_decl)
7785 fit_decomposition_lang_decl (first, decl);
7786 first = DECL_CHAIN (first);
7787 }
7788 return;
7789 }
7790
7791 auto_vec<tree, 16> v;
7792 v.safe_grow (count);
7793 tree d = first;
7794 for (unsigned int i = 0; i < count; i++, d = DECL_CHAIN (d))
7795 {
7796 v[count - i - 1] = d;
7797 fit_decomposition_lang_decl (d, decl);
7798 }
7799
7800 tree type = TREE_TYPE (decl);
7801 tree dexp = decl;
7802
7803 if (TYPE_REF_P (type))
7804 {
7805 dexp = convert_from_reference (dexp);
7806 type = complete_type (TREE_TYPE (type));
7807 if (type == error_mark_node)
7808 goto error_out;
7809 if (!COMPLETE_TYPE_P (type))
7810 {
7811 error_at (loc, "structured binding refers to incomplete type %qT",
7812 type);
7813 goto error_out;
7814 }
7815 }
7816
7817 tree eltype = NULL_TREE;
7818 unsigned HOST_WIDE_INT eltscnt = 0;
7819 if (TREE_CODE (type) == ARRAY_TYPE)
7820 {
7821 tree nelts;
7822 nelts = array_type_nelts_top (type);
7823 if (nelts == error_mark_node)
7824 goto error_out;
7825 if (!tree_fits_uhwi_p (nelts))
7826 {
7827 error_at (loc, "cannot decompose variable length array %qT", type);
7828 goto error_out;
7829 }
7830 eltscnt = tree_to_uhwi (nelts);
7831 if (count != eltscnt)
7832 {
7833 cnt_mismatch:
7834 if (count > eltscnt)
7835 error_n (loc, count,
7836 "%u name provided for structured binding",
7837 "%u names provided for structured binding", count);
7838 else
7839 error_n (loc, count,
7840 "only %u name provided for structured binding",
7841 "only %u names provided for structured binding", count);
7842 inform_n (loc, eltscnt,
7843 "while %qT decomposes into %wu element",
7844 "while %qT decomposes into %wu elements",
7845 type, eltscnt);
7846 goto error_out;
7847 }
7848 eltype = TREE_TYPE (type);
7849 for (unsigned int i = 0; i < count; i++)
7850 {
7851 TREE_TYPE (v[i]) = eltype;
7852 layout_decl (v[i], 0);
7853 if (processing_template_decl)
7854 continue;
7855 tree t = unshare_expr (dexp);
7856 t = build4_loc (DECL_SOURCE_LOCATION (v[i]), ARRAY_REF,
7857 eltype, t, size_int (i), NULL_TREE,
7858 NULL_TREE);
7859 SET_DECL_VALUE_EXPR (v[i], t);
7860 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
7861 }
7862 }
7863 /* 2 GNU extensions. */
7864 else if (TREE_CODE (type) == COMPLEX_TYPE)
7865 {
7866 eltscnt = 2;
7867 if (count != eltscnt)
7868 goto cnt_mismatch;
7869 eltype = cp_build_qualified_type (TREE_TYPE (type), TYPE_QUALS (type));
7870 for (unsigned int i = 0; i < count; i++)
7871 {
7872 TREE_TYPE (v[i]) = eltype;
7873 layout_decl (v[i], 0);
7874 if (processing_template_decl)
7875 continue;
7876 tree t = unshare_expr (dexp);
7877 t = build1_loc (DECL_SOURCE_LOCATION (v[i]),
7878 i ? IMAGPART_EXPR : REALPART_EXPR, eltype,
7879 t);
7880 SET_DECL_VALUE_EXPR (v[i], t);
7881 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
7882 }
7883 }
7884 else if (TREE_CODE (type) == VECTOR_TYPE)
7885 {
7886 if (!TYPE_VECTOR_SUBPARTS (type).is_constant (&eltscnt))
7887 {
7888 error_at (loc, "cannot decompose variable length vector %qT", type);
7889 goto error_out;
7890 }
7891 if (count != eltscnt)
7892 goto cnt_mismatch;
7893 eltype = cp_build_qualified_type (TREE_TYPE (type), TYPE_QUALS (type));
7894 for (unsigned int i = 0; i < count; i++)
7895 {
7896 TREE_TYPE (v[i]) = eltype;
7897 layout_decl (v[i], 0);
7898 if (processing_template_decl)
7899 continue;
7900 tree t = unshare_expr (dexp);
7901 convert_vector_to_array_for_subscript (DECL_SOURCE_LOCATION (v[i]),
7902 &t, size_int (i));
7903 t = build4_loc (DECL_SOURCE_LOCATION (v[i]), ARRAY_REF,
7904 eltype, t, size_int (i), NULL_TREE,
7905 NULL_TREE);
7906 SET_DECL_VALUE_EXPR (v[i], t);
7907 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
7908 }
7909 }
7910 else if (tree tsize = get_tuple_size (type))
7911 {
7912 if (tsize == error_mark_node)
7913 {
7914 error_at (loc, "%<std::tuple_size<%T>::value%> is not an integral "
7915 "constant expression", type);
7916 goto error_out;
7917 }
7918 if (!tree_fits_uhwi_p (tsize))
7919 {
7920 error_n (loc, count,
7921 "%u name provided for structured binding",
7922 "%u names provided for structured binding", count);
7923 inform (loc, "while %qT decomposes into %E elements",
7924 type, tsize);
7925 goto error_out;
7926 }
7927 eltscnt = tree_to_uhwi (tsize);
7928 if (count != eltscnt)
7929 goto cnt_mismatch;
7930 int save_read = DECL_READ_P (decl);
7931 for (unsigned i = 0; i < count; ++i)
7932 {
7933 location_t sloc = input_location;
7934 location_t dloc = DECL_SOURCE_LOCATION (v[i]);
7935
7936 input_location = dloc;
7937 tree init = get_tuple_decomp_init (decl, i);
7938 tree eltype = (init == error_mark_node ? error_mark_node
7939 : get_tuple_element_type (type, i));
7940 input_location = sloc;
7941
7942 if (init == error_mark_node || eltype == error_mark_node)
7943 {
7944 inform (dloc, "in initialization of structured binding "
7945 "variable %qD", v[i]);
7946 goto error_out;
7947 }
7948 /* Save the decltype away before reference collapse. */
7949 store_decomp_type (v[i], eltype);
7950 eltype = cp_build_reference_type (eltype, !lvalue_p (init));
7951 TREE_TYPE (v[i]) = eltype;
7952 layout_decl (v[i], 0);
7953 if (DECL_HAS_VALUE_EXPR_P (v[i]))
7954 {
7955 /* In this case the names are variables, not just proxies. */
7956 SET_DECL_VALUE_EXPR (v[i], NULL_TREE);
7957 DECL_HAS_VALUE_EXPR_P (v[i]) = 0;
7958 }
7959 if (!processing_template_decl)
7960 {
7961 TREE_PUBLIC (v[i]) = TREE_PUBLIC (decl);
7962 TREE_STATIC (v[i]) = TREE_STATIC (decl);
7963 DECL_COMMON (v[i]) = DECL_COMMON (decl);
7964 DECL_COMDAT (v[i]) = DECL_COMDAT (decl);
7965 if (TREE_STATIC (v[i]))
7966 {
7967 CP_DECL_THREAD_LOCAL_P (v[i])
7968 = CP_DECL_THREAD_LOCAL_P (decl);
7969 set_decl_tls_model (v[i], DECL_TLS_MODEL (decl));
7970 if (DECL_ONE_ONLY (decl))
7971 make_decl_one_only (v[i], cxx_comdat_group (v[i]));
7972 if (TREE_PUBLIC (decl))
7973 DECL_WEAK (v[i]) = DECL_WEAK (decl);
7974 DECL_VISIBILITY (v[i]) = DECL_VISIBILITY (decl);
7975 DECL_VISIBILITY_SPECIFIED (v[i])
7976 = DECL_VISIBILITY_SPECIFIED (decl);
7977 }
7978 cp_finish_decl (v[i], init, /*constexpr*/false,
7979 /*asm*/NULL_TREE, LOOKUP_NORMAL);
7980 }
7981 }
7982 /* Ignore reads from the underlying decl performed during initialization
7983 of the individual variables. If those will be read, we'll mark
7984 the underlying decl as read at that point. */
7985 DECL_READ_P (decl) = save_read;
7986 }
7987 else if (TREE_CODE (type) == UNION_TYPE)
7988 {
7989 error_at (loc, "cannot decompose union type %qT", type);
7990 goto error_out;
7991 }
7992 else if (!CLASS_TYPE_P (type))
7993 {
7994 error_at (loc, "cannot decompose non-array non-class type %qT", type);
7995 goto error_out;
7996 }
7997 else if (LAMBDA_TYPE_P (type))
7998 {
7999 error_at (loc, "cannot decompose lambda closure type %qT", type);
8000 goto error_out;
8001 }
8002 else if (processing_template_decl && !COMPLETE_TYPE_P (type))
8003 pedwarn (loc, 0, "structured binding refers to incomplete class type %qT",
8004 type);
8005 else
8006 {
8007 tree btype = find_decomp_class_base (loc, type, NULL_TREE);
8008 if (btype == error_mark_node)
8009 goto error_out;
8010 else if (btype == NULL_TREE)
8011 {
8012 error_at (loc, "cannot decompose class type %qT without non-static "
8013 "data members", type);
8014 goto error_out;
8015 }
8016 for (tree field = TYPE_FIELDS (btype); field; field = TREE_CHAIN (field))
8017 if (TREE_CODE (field) != FIELD_DECL
8018 || DECL_ARTIFICIAL (field)
8019 || DECL_UNNAMED_BIT_FIELD (field))
8020 continue;
8021 else
8022 eltscnt++;
8023 if (count != eltscnt)
8024 goto cnt_mismatch;
8025 tree t = dexp;
8026 if (type != btype)
8027 {
8028 t = convert_to_base (t, btype, /*check_access*/true,
8029 /*nonnull*/false, tf_warning_or_error);
8030 type = btype;
8031 }
8032 unsigned int i = 0;
8033 for (tree field = TYPE_FIELDS (btype); field; field = TREE_CHAIN (field))
8034 if (TREE_CODE (field) != FIELD_DECL
8035 || DECL_ARTIFICIAL (field)
8036 || DECL_UNNAMED_BIT_FIELD (field))
8037 continue;
8038 else
8039 {
8040 tree tt = finish_non_static_data_member (field, unshare_expr (t),
8041 NULL_TREE);
8042 if (REFERENCE_REF_P (tt))
8043 tt = TREE_OPERAND (tt, 0);
8044 TREE_TYPE (v[i]) = TREE_TYPE (tt);
8045 layout_decl (v[i], 0);
8046 if (!processing_template_decl)
8047 {
8048 SET_DECL_VALUE_EXPR (v[i], tt);
8049 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
8050 }
8051 i++;
8052 }
8053 }
8054 if (processing_template_decl)
8055 {
8056 for (unsigned int i = 0; i < count; i++)
8057 if (!DECL_HAS_VALUE_EXPR_P (v[i]))
8058 {
8059 tree a = build_nt (ARRAY_REF, decl, size_int (i),
8060 NULL_TREE, NULL_TREE);
8061 SET_DECL_VALUE_EXPR (v[i], a);
8062 DECL_HAS_VALUE_EXPR_P (v[i]) = 1;
8063 }
8064 }
8065 }
8066
8067 /* Returns a declaration for a VAR_DECL as if:
8068
8069 extern "C" TYPE NAME;
8070
8071 had been seen. Used to create compiler-generated global
8072 variables. */
8073
8074 static tree
8075 declare_global_var (tree name, tree type)
8076 {
8077 tree decl;
8078
8079 push_to_top_level ();
8080 decl = build_decl (input_location, VAR_DECL, name, type);
8081 TREE_PUBLIC (decl) = 1;
8082 DECL_EXTERNAL (decl) = 1;
8083 DECL_ARTIFICIAL (decl) = 1;
8084 DECL_CONTEXT (decl) = FROB_CONTEXT (global_namespace);
8085 /* If the user has explicitly declared this variable (perhaps
8086 because the code we are compiling is part of a low-level runtime
8087 library), then it is possible that our declaration will be merged
8088 with theirs by pushdecl. */
8089 decl = pushdecl (decl);
8090 cp_finish_decl (decl, NULL_TREE, false, NULL_TREE, 0);
8091 pop_from_top_level ();
8092
8093 return decl;
8094 }
8095
8096 /* Returns the type for the argument to "__cxa_atexit" (or "atexit",
8097 if "__cxa_atexit" is not being used) corresponding to the function
8098 to be called when the program exits. */
8099
8100 static tree
8101 get_atexit_fn_ptr_type (void)
8102 {
8103 tree fn_type;
8104
8105 if (!atexit_fn_ptr_type_node)
8106 {
8107 tree arg_type;
8108 if (flag_use_cxa_atexit
8109 && !targetm.cxx.use_atexit_for_cxa_atexit ())
8110 /* The parameter to "__cxa_atexit" is "void (*)(void *)". */
8111 arg_type = ptr_type_node;
8112 else
8113 /* The parameter to "atexit" is "void (*)(void)". */
8114 arg_type = NULL_TREE;
8115
8116 fn_type = build_function_type_list (void_type_node,
8117 arg_type, NULL_TREE);
8118 atexit_fn_ptr_type_node = build_pointer_type (fn_type);
8119 }
8120
8121 return atexit_fn_ptr_type_node;
8122 }
8123
8124 /* Returns a pointer to the `atexit' function. Note that if
8125 FLAG_USE_CXA_ATEXIT is nonzero, then this will actually be the new
8126 `__cxa_atexit' function specified in the IA64 C++ ABI. */
8127
8128 static tree
8129 get_atexit_node (void)
8130 {
8131 tree atexit_fndecl;
8132 tree fn_type;
8133 tree fn_ptr_type;
8134 const char *name;
8135 bool use_aeabi_atexit;
8136
8137 if (atexit_node)
8138 return atexit_node;
8139
8140 if (flag_use_cxa_atexit && !targetm.cxx.use_atexit_for_cxa_atexit ())
8141 {
8142 /* The declaration for `__cxa_atexit' is:
8143
8144 int __cxa_atexit (void (*)(void *), void *, void *)
8145
8146 We build up the argument types and then the function type
8147 itself. */
8148 tree argtype0, argtype1, argtype2;
8149
8150 use_aeabi_atexit = targetm.cxx.use_aeabi_atexit ();
8151 /* First, build the pointer-to-function type for the first
8152 argument. */
8153 fn_ptr_type = get_atexit_fn_ptr_type ();
8154 /* Then, build the rest of the argument types. */
8155 argtype2 = ptr_type_node;
8156 if (use_aeabi_atexit)
8157 {
8158 argtype1 = fn_ptr_type;
8159 argtype0 = ptr_type_node;
8160 }
8161 else
8162 {
8163 argtype1 = ptr_type_node;
8164 argtype0 = fn_ptr_type;
8165 }
8166 /* And the final __cxa_atexit type. */
8167 fn_type = build_function_type_list (integer_type_node,
8168 argtype0, argtype1, argtype2,
8169 NULL_TREE);
8170 if (use_aeabi_atexit)
8171 name = "__aeabi_atexit";
8172 else
8173 name = "__cxa_atexit";
8174 }
8175 else
8176 {
8177 /* The declaration for `atexit' is:
8178
8179 int atexit (void (*)());
8180
8181 We build up the argument types and then the function type
8182 itself. */
8183 fn_ptr_type = get_atexit_fn_ptr_type ();
8184 /* Build the final atexit type. */
8185 fn_type = build_function_type_list (integer_type_node,
8186 fn_ptr_type, NULL_TREE);
8187 name = "atexit";
8188 }
8189
8190 /* Now, build the function declaration. */
8191 push_lang_context (lang_name_c);
8192 atexit_fndecl = build_library_fn_ptr (name, fn_type, ECF_LEAF | ECF_NOTHROW);
8193 mark_used (atexit_fndecl);
8194 pop_lang_context ();
8195 atexit_node = decay_conversion (atexit_fndecl, tf_warning_or_error);
8196
8197 return atexit_node;
8198 }
8199
8200 /* Like get_atexit_node, but for thread-local cleanups. */
8201
8202 static tree
8203 get_thread_atexit_node (void)
8204 {
8205 /* The declaration for `__cxa_thread_atexit' is:
8206
8207 int __cxa_thread_atexit (void (*)(void *), void *, void *) */
8208 tree fn_type = build_function_type_list (integer_type_node,
8209 get_atexit_fn_ptr_type (),
8210 ptr_type_node, ptr_type_node,
8211 NULL_TREE);
8212
8213 /* Now, build the function declaration. */
8214 tree atexit_fndecl = build_library_fn_ptr ("__cxa_thread_atexit", fn_type,
8215 ECF_LEAF | ECF_NOTHROW);
8216 return decay_conversion (atexit_fndecl, tf_warning_or_error);
8217 }
8218
8219 /* Returns the __dso_handle VAR_DECL. */
8220
8221 static tree
8222 get_dso_handle_node (void)
8223 {
8224 if (dso_handle_node)
8225 return dso_handle_node;
8226
8227 /* Declare the variable. */
8228 dso_handle_node = declare_global_var (get_identifier ("__dso_handle"),
8229 ptr_type_node);
8230
8231 #ifdef HAVE_GAS_HIDDEN
8232 if (dso_handle_node != error_mark_node)
8233 {
8234 DECL_VISIBILITY (dso_handle_node) = VISIBILITY_HIDDEN;
8235 DECL_VISIBILITY_SPECIFIED (dso_handle_node) = 1;
8236 }
8237 #endif
8238
8239 return dso_handle_node;
8240 }
8241
8242 /* Begin a new function with internal linkage whose job will be simply
8243 to destroy some particular variable. */
8244
8245 static GTY(()) int start_cleanup_cnt;
8246
8247 static tree
8248 start_cleanup_fn (void)
8249 {
8250 char name[32];
8251 tree fntype;
8252 tree fndecl;
8253 bool use_cxa_atexit = flag_use_cxa_atexit
8254 && !targetm.cxx.use_atexit_for_cxa_atexit ();
8255
8256 push_to_top_level ();
8257
8258 /* No need to mangle this. */
8259 push_lang_context (lang_name_c);
8260
8261 /* Build the name of the function. */
8262 sprintf (name, "__tcf_%d", start_cleanup_cnt++);
8263 /* Build the function declaration. */
8264 fntype = TREE_TYPE (get_atexit_fn_ptr_type ());
8265 fndecl = build_lang_decl (FUNCTION_DECL, get_identifier (name), fntype);
8266 /* It's a function with internal linkage, generated by the
8267 compiler. */
8268 TREE_PUBLIC (fndecl) = 0;
8269 DECL_ARTIFICIAL (fndecl) = 1;
8270 /* Make the function `inline' so that it is only emitted if it is
8271 actually needed. It is unlikely that it will be inlined, since
8272 it is only called via a function pointer, but we avoid unnecessary
8273 emissions this way. */
8274 DECL_DECLARED_INLINE_P (fndecl) = 1;
8275 DECL_INTERFACE_KNOWN (fndecl) = 1;
8276 /* Build the parameter. */
8277 if (use_cxa_atexit)
8278 {
8279 tree parmdecl = cp_build_parm_decl (fndecl, NULL_TREE, ptr_type_node);
8280 TREE_USED (parmdecl) = 1;
8281 DECL_READ_P (parmdecl) = 1;
8282 DECL_ARGUMENTS (fndecl) = parmdecl;
8283 }
8284
8285 pushdecl (fndecl);
8286 start_preparsed_function (fndecl, NULL_TREE, SF_PRE_PARSED);
8287
8288 pop_lang_context ();
8289
8290 return current_function_decl;
8291 }
8292
8293 /* Finish the cleanup function begun by start_cleanup_fn. */
8294
8295 static void
8296 end_cleanup_fn (void)
8297 {
8298 expand_or_defer_fn (finish_function (/*inline_p=*/false));
8299
8300 pop_from_top_level ();
8301 }
8302
8303 /* Generate code to handle the destruction of DECL, an object with
8304 static storage duration. */
8305
8306 tree
8307 register_dtor_fn (tree decl)
8308 {
8309 tree cleanup;
8310 tree addr;
8311 tree compound_stmt;
8312 tree fcall;
8313 tree type;
8314 bool ob_parm, dso_parm, use_dtor;
8315 tree arg0, arg1, arg2;
8316 tree atex_node;
8317
8318 type = TREE_TYPE (decl);
8319 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
8320 return void_node;
8321
8322 /* If we're using "__cxa_atexit" (or "__cxa_thread_atexit" or
8323 "__aeabi_atexit"), and DECL is a class object, we can just pass the
8324 destructor to "__cxa_atexit"; we don't have to build a temporary
8325 function to do the cleanup. */
8326 dso_parm = (flag_use_cxa_atexit
8327 && !targetm.cxx.use_atexit_for_cxa_atexit ());
8328 ob_parm = (CP_DECL_THREAD_LOCAL_P (decl) || dso_parm);
8329 use_dtor = ob_parm && CLASS_TYPE_P (type);
8330 if (use_dtor)
8331 {
8332 cleanup = get_class_binding (type, complete_dtor_identifier);
8333
8334 /* Make sure it is accessible. */
8335 perform_or_defer_access_check (TYPE_BINFO (type), cleanup, cleanup,
8336 tf_warning_or_error);
8337 }
8338 else
8339 {
8340 /* Call build_cleanup before we enter the anonymous function so
8341 that any access checks will be done relative to the current
8342 scope, rather than the scope of the anonymous function. */
8343 build_cleanup (decl);
8344
8345 /* Now start the function. */
8346 cleanup = start_cleanup_fn ();
8347
8348 /* Now, recompute the cleanup. It may contain SAVE_EXPRs that refer
8349 to the original function, rather than the anonymous one. That
8350 will make the back end think that nested functions are in use,
8351 which causes confusion. */
8352 push_deferring_access_checks (dk_no_check);
8353 fcall = build_cleanup (decl);
8354 pop_deferring_access_checks ();
8355
8356 /* Create the body of the anonymous function. */
8357 compound_stmt = begin_compound_stmt (BCS_FN_BODY);
8358 finish_expr_stmt (fcall);
8359 finish_compound_stmt (compound_stmt);
8360 end_cleanup_fn ();
8361 }
8362
8363 /* Call atexit with the cleanup function. */
8364 mark_used (cleanup);
8365 cleanup = build_address (cleanup);
8366
8367 if (CP_DECL_THREAD_LOCAL_P (decl))
8368 atex_node = get_thread_atexit_node ();
8369 else
8370 atex_node = get_atexit_node ();
8371
8372 if (use_dtor)
8373 {
8374 /* We must convert CLEANUP to the type that "__cxa_atexit"
8375 expects. */
8376 cleanup = build_nop (get_atexit_fn_ptr_type (), cleanup);
8377 /* "__cxa_atexit" will pass the address of DECL to the
8378 cleanup function. */
8379 mark_used (decl);
8380 addr = build_address (decl);
8381 /* The declared type of the parameter to "__cxa_atexit" is
8382 "void *". For plain "T*", we could just let the
8383 machinery in cp_build_function_call convert it -- but if the
8384 type is "cv-qualified T *", then we need to convert it
8385 before passing it in, to avoid spurious errors. */
8386 addr = build_nop (ptr_type_node, addr);
8387 }
8388 else
8389 /* Since the cleanup functions we build ignore the address
8390 they're given, there's no reason to pass the actual address
8391 in, and, in general, it's cheaper to pass NULL than any
8392 other value. */
8393 addr = null_pointer_node;
8394
8395 if (dso_parm)
8396 arg2 = cp_build_addr_expr (get_dso_handle_node (),
8397 tf_warning_or_error);
8398 else if (ob_parm)
8399 /* Just pass NULL to the dso handle parm if we don't actually
8400 have a DSO handle on this target. */
8401 arg2 = null_pointer_node;
8402 else
8403 arg2 = NULL_TREE;
8404
8405 if (ob_parm)
8406 {
8407 if (!CP_DECL_THREAD_LOCAL_P (decl)
8408 && targetm.cxx.use_aeabi_atexit ())
8409 {
8410 arg1 = cleanup;
8411 arg0 = addr;
8412 }
8413 else
8414 {
8415 arg1 = addr;
8416 arg0 = cleanup;
8417 }
8418 }
8419 else
8420 {
8421 arg0 = cleanup;
8422 arg1 = NULL_TREE;
8423 }
8424 return cp_build_function_call_nary (atex_node, tf_warning_or_error,
8425 arg0, arg1, arg2, NULL_TREE);
8426 }
8427
8428 /* DECL is a VAR_DECL with static storage duration. INIT, if present,
8429 is its initializer. Generate code to handle the construction
8430 and destruction of DECL. */
8431
8432 static void
8433 expand_static_init (tree decl, tree init)
8434 {
8435 gcc_assert (VAR_P (decl));
8436 gcc_assert (TREE_STATIC (decl));
8437
8438 /* Some variables require no dynamic initialization. */
8439 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
8440 {
8441 /* Make sure the destructor is callable. */
8442 cxx_maybe_build_cleanup (decl, tf_warning_or_error);
8443 if (!init)
8444 return;
8445 }
8446
8447 if (CP_DECL_THREAD_LOCAL_P (decl) && DECL_GNU_TLS_P (decl)
8448 && !DECL_FUNCTION_SCOPE_P (decl))
8449 {
8450 location_t dloc = DECL_SOURCE_LOCATION (decl);
8451 if (init)
8452 error_at (dloc, "non-local variable %qD declared %<__thread%> "
8453 "needs dynamic initialization", decl);
8454 else
8455 error_at (dloc, "non-local variable %qD declared %<__thread%> "
8456 "has a non-trivial destructor", decl);
8457 static bool informed;
8458 if (!informed)
8459 {
8460 inform (dloc, "C++11 %<thread_local%> allows dynamic "
8461 "initialization and destruction");
8462 informed = true;
8463 }
8464 return;
8465 }
8466
8467 if (DECL_FUNCTION_SCOPE_P (decl))
8468 {
8469 /* Emit code to perform this initialization but once. */
8470 tree if_stmt = NULL_TREE, inner_if_stmt = NULL_TREE;
8471 tree then_clause = NULL_TREE, inner_then_clause = NULL_TREE;
8472 tree guard, guard_addr;
8473 tree flag, begin;
8474 /* We don't need thread-safety code for thread-local vars. */
8475 bool thread_guard = (flag_threadsafe_statics
8476 && !CP_DECL_THREAD_LOCAL_P (decl));
8477
8478 /* Emit code to perform this initialization but once. This code
8479 looks like:
8480
8481 static <type> guard;
8482 if (!__atomic_load (guard.first_byte)) {
8483 if (__cxa_guard_acquire (&guard)) {
8484 bool flag = false;
8485 try {
8486 // Do initialization.
8487 flag = true; __cxa_guard_release (&guard);
8488 // Register variable for destruction at end of program.
8489 } catch {
8490 if (!flag) __cxa_guard_abort (&guard);
8491 }
8492 }
8493 }
8494
8495 Note that the `flag' variable is only set to 1 *after* the
8496 initialization is complete. This ensures that an exception,
8497 thrown during the construction, will cause the variable to
8498 reinitialized when we pass through this code again, as per:
8499
8500 [stmt.dcl]
8501
8502 If the initialization exits by throwing an exception, the
8503 initialization is not complete, so it will be tried again
8504 the next time control enters the declaration.
8505
8506 This process should be thread-safe, too; multiple threads
8507 should not be able to initialize the variable more than
8508 once. */
8509
8510 /* Create the guard variable. */
8511 guard = get_guard (decl);
8512
8513 /* Begin the conditional initialization. */
8514 if_stmt = begin_if_stmt ();
8515
8516 finish_if_stmt_cond (get_guard_cond (guard, thread_guard), if_stmt);
8517 then_clause = begin_compound_stmt (BCS_NO_SCOPE);
8518
8519 if (thread_guard)
8520 {
8521 tree vfntype = NULL_TREE;
8522 tree acquire_name, release_name, abort_name;
8523 tree acquire_fn, release_fn, abort_fn;
8524 guard_addr = build_address (guard);
8525
8526 acquire_name = get_identifier ("__cxa_guard_acquire");
8527 release_name = get_identifier ("__cxa_guard_release");
8528 abort_name = get_identifier ("__cxa_guard_abort");
8529 acquire_fn = get_global_binding (acquire_name);
8530 release_fn = get_global_binding (release_name);
8531 abort_fn = get_global_binding (abort_name);
8532 if (!acquire_fn)
8533 acquire_fn = push_library_fn
8534 (acquire_name, build_function_type_list (integer_type_node,
8535 TREE_TYPE (guard_addr),
8536 NULL_TREE),
8537 NULL_TREE, ECF_NOTHROW | ECF_LEAF);
8538 if (!release_fn || !abort_fn)
8539 vfntype = build_function_type_list (void_type_node,
8540 TREE_TYPE (guard_addr),
8541 NULL_TREE);
8542 if (!release_fn)
8543 release_fn = push_library_fn (release_name, vfntype, NULL_TREE,
8544 ECF_NOTHROW | ECF_LEAF);
8545 if (!abort_fn)
8546 abort_fn = push_library_fn (abort_name, vfntype, NULL_TREE,
8547 ECF_NOTHROW | ECF_LEAF);
8548
8549 inner_if_stmt = begin_if_stmt ();
8550 finish_if_stmt_cond (build_call_n (acquire_fn, 1, guard_addr),
8551 inner_if_stmt);
8552
8553 inner_then_clause = begin_compound_stmt (BCS_NO_SCOPE);
8554 begin = get_target_expr (boolean_false_node);
8555 flag = TARGET_EXPR_SLOT (begin);
8556
8557 TARGET_EXPR_CLEANUP (begin)
8558 = build3 (COND_EXPR, void_type_node, flag,
8559 void_node,
8560 build_call_n (abort_fn, 1, guard_addr));
8561 CLEANUP_EH_ONLY (begin) = 1;
8562
8563 /* Do the initialization itself. */
8564 init = add_stmt_to_compound (begin, init);
8565 init = add_stmt_to_compound
8566 (init, build2 (MODIFY_EXPR, void_type_node, flag, boolean_true_node));
8567 init = add_stmt_to_compound
8568 (init, build_call_n (release_fn, 1, guard_addr));
8569 }
8570 else
8571 init = add_stmt_to_compound (init, set_guard (guard));
8572
8573 /* Use atexit to register a function for destroying this static
8574 variable. */
8575 init = add_stmt_to_compound (init, register_dtor_fn (decl));
8576
8577 finish_expr_stmt (init);
8578
8579 if (thread_guard)
8580 {
8581 finish_compound_stmt (inner_then_clause);
8582 finish_then_clause (inner_if_stmt);
8583 finish_if_stmt (inner_if_stmt);
8584 }
8585
8586 finish_compound_stmt (then_clause);
8587 finish_then_clause (if_stmt);
8588 finish_if_stmt (if_stmt);
8589 }
8590 else if (CP_DECL_THREAD_LOCAL_P (decl))
8591 tls_aggregates = tree_cons (init, decl, tls_aggregates);
8592 else
8593 static_aggregates = tree_cons (init, decl, static_aggregates);
8594 }
8595
8596 \f
8597 /* Make TYPE a complete type based on INITIAL_VALUE.
8598 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
8599 2 if there was no information (in which case assume 0 if DO_DEFAULT),
8600 3 if the initializer list is empty (in pedantic mode). */
8601
8602 int
8603 cp_complete_array_type (tree *ptype, tree initial_value, bool do_default)
8604 {
8605 int failure;
8606 tree type, elt_type;
8607
8608 /* Don't get confused by a CONSTRUCTOR for some other type. */
8609 if (initial_value && TREE_CODE (initial_value) == CONSTRUCTOR
8610 && !BRACE_ENCLOSED_INITIALIZER_P (initial_value)
8611 && TREE_CODE (TREE_TYPE (initial_value)) != ARRAY_TYPE)
8612 return 1;
8613
8614 if (initial_value)
8615 {
8616 unsigned HOST_WIDE_INT i;
8617 tree value;
8618
8619 /* An array of character type can be initialized from a
8620 brace-enclosed string constant.
8621
8622 FIXME: this code is duplicated from reshape_init. Probably
8623 we should just call reshape_init here? */
8624 if (char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (*ptype)))
8625 && TREE_CODE (initial_value) == CONSTRUCTOR
8626 && !vec_safe_is_empty (CONSTRUCTOR_ELTS (initial_value)))
8627 {
8628 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initial_value);
8629 tree value = (*v)[0].value;
8630 STRIP_ANY_LOCATION_WRAPPER (value);
8631
8632 if (TREE_CODE (value) == STRING_CST
8633 && v->length () == 1)
8634 initial_value = value;
8635 }
8636
8637 /* If any of the elements are parameter packs, we can't actually
8638 complete this type now because the array size is dependent. */
8639 if (TREE_CODE (initial_value) == CONSTRUCTOR)
8640 {
8641 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (initial_value),
8642 i, value)
8643 {
8644 if (PACK_EXPANSION_P (value))
8645 return 0;
8646 }
8647 }
8648 }
8649
8650 failure = complete_array_type (ptype, initial_value, do_default);
8651
8652 /* We can create the array before the element type is complete, which
8653 means that we didn't have these two bits set in the original type
8654 either. In completing the type, we are expected to propagate these
8655 bits. See also complete_type which does the same thing for arrays
8656 of fixed size. */
8657 type = *ptype;
8658 if (type != error_mark_node && TYPE_DOMAIN (type))
8659 {
8660 elt_type = TREE_TYPE (type);
8661 TYPE_NEEDS_CONSTRUCTING (type) = TYPE_NEEDS_CONSTRUCTING (elt_type);
8662 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
8663 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (elt_type);
8664 }
8665
8666 return failure;
8667 }
8668
8669 /* As above, but either give an error or reject zero-size arrays, depending
8670 on COMPLAIN. */
8671
8672 int
8673 cp_complete_array_type_or_error (tree *ptype, tree initial_value,
8674 bool do_default, tsubst_flags_t complain)
8675 {
8676 int failure;
8677 bool sfinae = !(complain & tf_error);
8678 /* In SFINAE context we can't be lenient about zero-size arrays. */
8679 if (sfinae)
8680 ++pedantic;
8681 failure = cp_complete_array_type (ptype, initial_value, do_default);
8682 if (sfinae)
8683 --pedantic;
8684 if (failure)
8685 {
8686 if (sfinae)
8687 /* Not an error. */;
8688 else if (failure == 1)
8689 error ("initializer fails to determine size of %qT", *ptype);
8690 else if (failure == 2)
8691 {
8692 if (do_default)
8693 error ("array size missing in %qT", *ptype);
8694 }
8695 else if (failure == 3)
8696 error ("zero-size array %qT", *ptype);
8697 *ptype = error_mark_node;
8698 }
8699 return failure;
8700 }
8701 \f
8702 /* Return zero if something is declared to be a member of type
8703 CTYPE when in the context of CUR_TYPE. STRING is the error
8704 message to print in that case. Otherwise, quietly return 1. */
8705
8706 static int
8707 member_function_or_else (tree ctype, tree cur_type, enum overload_flags flags)
8708 {
8709 if (ctype && ctype != cur_type)
8710 {
8711 if (flags == DTOR_FLAG)
8712 error ("destructor for alien class %qT cannot be a member", ctype);
8713 else
8714 error ("constructor for alien class %qT cannot be a member", ctype);
8715 return 0;
8716 }
8717 return 1;
8718 }
8719 \f
8720 /* Subroutine of `grokdeclarator'. */
8721
8722 /* Generate errors possibly applicable for a given set of specifiers.
8723 This is for ARM $7.1.2. */
8724
8725 static void
8726 bad_specifiers (tree object,
8727 enum bad_spec_place type,
8728 int virtualp,
8729 int quals,
8730 int inlinep,
8731 int friendp,
8732 int raises,
8733 const location_t* locations)
8734 {
8735 switch (type)
8736 {
8737 case BSP_VAR:
8738 if (virtualp)
8739 error_at (locations[ds_virtual],
8740 "%qD declared as a %<virtual%> variable", object);
8741 if (quals)
8742 error ("%<const%> and %<volatile%> function specifiers on "
8743 "%qD invalid in variable declaration", object);
8744 break;
8745 case BSP_PARM:
8746 if (virtualp)
8747 error_at (locations[ds_virtual],
8748 "%qD declared as a %<virtual%> parameter", object);
8749 if (inlinep)
8750 error_at (locations[ds_inline],
8751 "%qD declared as an %<inline%> parameter", object);
8752 if (quals)
8753 error ("%<const%> and %<volatile%> function specifiers on "
8754 "%qD invalid in parameter declaration", object);
8755 break;
8756 case BSP_TYPE:
8757 if (virtualp)
8758 error_at (locations[ds_virtual],
8759 "%qD declared as a %<virtual%> type", object);
8760 if (inlinep)
8761 error_at (locations[ds_inline],
8762 "%qD declared as an %<inline%> type", object);
8763 if (quals)
8764 error ("%<const%> and %<volatile%> function specifiers on "
8765 "%qD invalid in type declaration", object);
8766 break;
8767 case BSP_FIELD:
8768 if (virtualp)
8769 error_at (locations[ds_virtual],
8770 "%qD declared as a %<virtual%> field", object);
8771 if (inlinep)
8772 error_at (locations[ds_inline],
8773 "%qD declared as an %<inline%> field", object);
8774 if (quals)
8775 error ("%<const%> and %<volatile%> function specifiers on "
8776 "%qD invalid in field declaration", object);
8777 break;
8778 default:
8779 gcc_unreachable();
8780 }
8781 if (friendp)
8782 error ("%q+D declared as a friend", object);
8783 if (raises
8784 && !flag_noexcept_type
8785 && (TREE_CODE (object) == TYPE_DECL
8786 || (!TYPE_PTRFN_P (TREE_TYPE (object))
8787 && !TYPE_REFFN_P (TREE_TYPE (object))
8788 && !TYPE_PTRMEMFUNC_P (TREE_TYPE (object)))))
8789 error ("%q+D declared with an exception specification", object);
8790 }
8791
8792 /* DECL is a member function or static data member and is presently
8793 being defined. Check that the definition is taking place in a
8794 valid namespace. */
8795
8796 static void
8797 check_class_member_definition_namespace (tree decl)
8798 {
8799 /* These checks only apply to member functions and static data
8800 members. */
8801 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl));
8802 /* We check for problems with specializations in pt.c in
8803 check_specialization_namespace, where we can issue better
8804 diagnostics. */
8805 if (processing_specialization)
8806 return;
8807 /* We check this in check_explicit_instantiation_namespace. */
8808 if (processing_explicit_instantiation)
8809 return;
8810 /* [class.mfct]
8811
8812 A member function definition that appears outside of the
8813 class definition shall appear in a namespace scope enclosing
8814 the class definition.
8815
8816 [class.static.data]
8817
8818 The definition for a static data member shall appear in a
8819 namespace scope enclosing the member's class definition. */
8820 if (!is_ancestor (current_namespace, DECL_CONTEXT (decl)))
8821 permerror (input_location, "definition of %qD is not in namespace enclosing %qT",
8822 decl, DECL_CONTEXT (decl));
8823 }
8824
8825 /* Build a PARM_DECL for the "this" parameter of FN. TYPE is the
8826 METHOD_TYPE for a non-static member function; QUALS are the
8827 cv-qualifiers that apply to the function. */
8828
8829 tree
8830 build_this_parm (tree fn, tree type, cp_cv_quals quals)
8831 {
8832 tree this_type;
8833 tree qual_type;
8834 tree parm;
8835 cp_cv_quals this_quals;
8836
8837 if (CLASS_TYPE_P (type))
8838 {
8839 this_type
8840 = cp_build_qualified_type (type, quals & ~TYPE_QUAL_RESTRICT);
8841 this_type = build_pointer_type (this_type);
8842 }
8843 else
8844 this_type = type_of_this_parm (type);
8845 /* The `this' parameter is implicitly `const'; it cannot be
8846 assigned to. */
8847 this_quals = (quals & TYPE_QUAL_RESTRICT) | TYPE_QUAL_CONST;
8848 qual_type = cp_build_qualified_type (this_type, this_quals);
8849 parm = build_artificial_parm (fn, this_identifier, qual_type);
8850 cp_apply_type_quals_to_decl (this_quals, parm);
8851 return parm;
8852 }
8853
8854 /* DECL is a static member function. Complain if it was declared
8855 with function-cv-quals. */
8856
8857 static void
8858 check_static_quals (tree decl, cp_cv_quals quals)
8859 {
8860 if (quals != TYPE_UNQUALIFIED)
8861 error ("static member function %q#D declared with type qualifiers",
8862 decl);
8863 }
8864
8865 // Check that FN takes no arguments and returns bool.
8866 static void
8867 check_concept_fn (tree fn)
8868 {
8869 // A constraint is nullary.
8870 if (DECL_ARGUMENTS (fn))
8871 error_at (DECL_SOURCE_LOCATION (fn),
8872 "concept %q#D declared with function parameters", fn);
8873
8874 // The declared return type of the concept shall be bool, and
8875 // it shall not be deduced from it definition.
8876 tree type = TREE_TYPE (TREE_TYPE (fn));
8877 if (is_auto (type))
8878 error_at (DECL_SOURCE_LOCATION (fn),
8879 "concept %q#D declared with a deduced return type", fn);
8880 else if (type != boolean_type_node)
8881 error_at (DECL_SOURCE_LOCATION (fn),
8882 "concept %q#D with non-%<bool%> return type %qT", fn, type);
8883 }
8884
8885 /* Helper function. Replace the temporary this parameter injected
8886 during cp_finish_omp_declare_simd with the real this parameter. */
8887
8888 static tree
8889 declare_simd_adjust_this (tree *tp, int *walk_subtrees, void *data)
8890 {
8891 tree this_parm = (tree) data;
8892 if (TREE_CODE (*tp) == PARM_DECL
8893 && DECL_NAME (*tp) == this_identifier
8894 && *tp != this_parm)
8895 *tp = this_parm;
8896 else if (TYPE_P (*tp))
8897 *walk_subtrees = 0;
8898 return NULL_TREE;
8899 }
8900
8901 /* CTYPE is class type, or null if non-class.
8902 TYPE is type this FUNCTION_DECL should have, either FUNCTION_TYPE
8903 or METHOD_TYPE.
8904 DECLARATOR is the function's name.
8905 PARMS is a chain of PARM_DECLs for the function.
8906 VIRTUALP is truthvalue of whether the function is virtual or not.
8907 FLAGS are to be passed through to `grokclassfn'.
8908 QUALS are qualifiers indicating whether the function is `const'
8909 or `volatile'.
8910 RAISES is a list of exceptions that this function can raise.
8911 CHECK is 1 if we must find this method in CTYPE, 0 if we should
8912 not look, and -1 if we should not call `grokclassfn' at all.
8913
8914 SFK is the kind of special function (if any) for the new function.
8915
8916 Returns `NULL_TREE' if something goes wrong, after issuing
8917 applicable error messages. */
8918
8919 static tree
8920 grokfndecl (tree ctype,
8921 tree type,
8922 tree declarator,
8923 tree parms,
8924 tree orig_declarator,
8925 const cp_decl_specifier_seq *declspecs,
8926 tree decl_reqs,
8927 int virtualp,
8928 enum overload_flags flags,
8929 cp_cv_quals quals,
8930 cp_ref_qualifier rqual,
8931 tree raises,
8932 int check,
8933 int friendp,
8934 int publicp,
8935 int inlinep,
8936 bool deletedp,
8937 special_function_kind sfk,
8938 bool funcdef_flag,
8939 bool late_return_type_p,
8940 int template_count,
8941 tree in_namespace,
8942 tree* attrlist,
8943 location_t location)
8944 {
8945 tree decl;
8946 int staticp = ctype && TREE_CODE (type) == FUNCTION_TYPE;
8947 tree t;
8948
8949 if (location == UNKNOWN_LOCATION)
8950 location = input_location;
8951
8952 /* Was the concept specifier present? */
8953 bool concept_p = inlinep & 4;
8954
8955 /* Concept declarations must have a corresponding definition. */
8956 if (concept_p && !funcdef_flag)
8957 {
8958 error_at (location, "concept %qD has no definition", declarator);
8959 return NULL_TREE;
8960 }
8961
8962 type = build_cp_fntype_variant (type, rqual, raises, late_return_type_p);
8963
8964 decl = build_lang_decl_loc (location, FUNCTION_DECL, declarator, type);
8965
8966 /* Set the constraints on the declaration. */
8967 if (flag_concepts)
8968 {
8969 tree tmpl_reqs = NULL_TREE;
8970 if (processing_template_decl > template_class_depth (ctype))
8971 tmpl_reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
8972
8973 /* Adjust the required expression into a constraint. */
8974 if (decl_reqs)
8975 decl_reqs = normalize_expression (decl_reqs);
8976
8977 tree ci = build_constraints (tmpl_reqs, decl_reqs);
8978 set_constraints (decl, ci);
8979 }
8980
8981 if (TREE_CODE (type) == METHOD_TYPE)
8982 {
8983 tree parm = build_this_parm (decl, type, quals);
8984 DECL_CHAIN (parm) = parms;
8985 parms = parm;
8986
8987 /* Allocate space to hold the vptr bit if needed. */
8988 SET_DECL_ALIGN (decl, MINIMUM_METHOD_BOUNDARY);
8989 }
8990
8991 DECL_ARGUMENTS (decl) = parms;
8992 for (t = parms; t; t = DECL_CHAIN (t))
8993 DECL_CONTEXT (t) = decl;
8994
8995 /* Propagate volatile out from type to decl. */
8996 if (TYPE_VOLATILE (type))
8997 TREE_THIS_VOLATILE (decl) = 1;
8998
8999 /* Setup decl according to sfk. */
9000 switch (sfk)
9001 {
9002 case sfk_constructor:
9003 case sfk_copy_constructor:
9004 case sfk_move_constructor:
9005 DECL_CXX_CONSTRUCTOR_P (decl) = 1;
9006 DECL_NAME (decl) = ctor_identifier;
9007 break;
9008 case sfk_destructor:
9009 DECL_CXX_DESTRUCTOR_P (decl) = 1;
9010 DECL_NAME (decl) = dtor_identifier;
9011 break;
9012 default:
9013 break;
9014 }
9015
9016 if (friendp && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)
9017 {
9018 if (funcdef_flag)
9019 error_at (location,
9020 "defining explicit specialization %qD in friend declaration",
9021 orig_declarator);
9022 else
9023 {
9024 tree fns = TREE_OPERAND (orig_declarator, 0);
9025 tree args = TREE_OPERAND (orig_declarator, 1);
9026
9027 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
9028 {
9029 /* Something like `template <class T> friend void f<T>()'. */
9030 error_at (location,
9031 "invalid use of template-id %qD in declaration "
9032 "of primary template",
9033 orig_declarator);
9034 return NULL_TREE;
9035 }
9036
9037
9038 /* A friend declaration of the form friend void f<>(). Record
9039 the information in the TEMPLATE_ID_EXPR. */
9040 SET_DECL_IMPLICIT_INSTANTIATION (decl);
9041
9042 gcc_assert (identifier_p (fns) || OVL_P (fns));
9043 DECL_TEMPLATE_INFO (decl) = build_template_info (fns, args);
9044
9045 for (t = TYPE_ARG_TYPES (TREE_TYPE (decl)); t; t = TREE_CHAIN (t))
9046 if (TREE_PURPOSE (t)
9047 && TREE_CODE (TREE_PURPOSE (t)) == DEFERRED_PARSE)
9048 {
9049 error_at (defparse_location (TREE_PURPOSE (t)),
9050 "default arguments are not allowed in declaration "
9051 "of friend template specialization %qD",
9052 decl);
9053 return NULL_TREE;
9054 }
9055
9056 if (inlinep & 1)
9057 {
9058 error_at (declspecs->locations[ds_inline],
9059 "%<inline%> is not allowed in declaration of friend "
9060 "template specialization %qD",
9061 decl);
9062 return NULL_TREE;
9063 }
9064 }
9065 }
9066
9067 /* C++17 11.3.6/4: "If a friend declaration specifies a default argument
9068 expression, that declaration shall be a definition..." */
9069 if (friendp && !funcdef_flag)
9070 {
9071 for (tree t = FUNCTION_FIRST_USER_PARMTYPE (decl);
9072 t && t != void_list_node; t = TREE_CHAIN (t))
9073 if (TREE_PURPOSE (t))
9074 {
9075 permerror (DECL_SOURCE_LOCATION (decl),
9076 "friend declaration of %qD specifies default "
9077 "arguments and isn%'t a definition", decl);
9078 break;
9079 }
9080 }
9081
9082 /* If this decl has namespace scope, set that up. */
9083 if (in_namespace)
9084 set_decl_namespace (decl, in_namespace, friendp);
9085 else if (!ctype)
9086 DECL_CONTEXT (decl) = FROB_CONTEXT (current_decl_namespace ());
9087
9088 /* `main' and builtins have implicit 'C' linkage. */
9089 if (ctype == NULL_TREE
9090 && DECL_FILE_SCOPE_P (decl)
9091 && current_lang_name == lang_name_cplusplus
9092 && (MAIN_NAME_P (declarator)
9093 || (IDENTIFIER_LENGTH (declarator) > 10
9094 && IDENTIFIER_POINTER (declarator)[0] == '_'
9095 && IDENTIFIER_POINTER (declarator)[1] == '_'
9096 && strncmp (IDENTIFIER_POINTER (declarator)+2,
9097 "builtin_", 8) == 0)
9098 || (targetcm.cxx_implicit_extern_c
9099 && (targetcm.cxx_implicit_extern_c
9100 (IDENTIFIER_POINTER (declarator))))))
9101 SET_DECL_LANGUAGE (decl, lang_c);
9102
9103 /* Should probably propagate const out from type to decl I bet (mrs). */
9104 if (staticp)
9105 {
9106 DECL_STATIC_FUNCTION_P (decl) = 1;
9107 DECL_CONTEXT (decl) = ctype;
9108 }
9109
9110 if (deletedp)
9111 DECL_DELETED_FN (decl) = 1;
9112
9113 if (ctype)
9114 {
9115 DECL_CONTEXT (decl) = ctype;
9116 if (funcdef_flag)
9117 check_class_member_definition_namespace (decl);
9118 }
9119
9120 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
9121 {
9122 if (PROCESSING_REAL_TEMPLATE_DECL_P())
9123 error_at (location, "cannot declare %<::main%> to be a template");
9124 if (inlinep & 1)
9125 error_at (declspecs->locations[ds_inline],
9126 "cannot declare %<::main%> to be inline");
9127 if (inlinep & 2)
9128 error_at (declspecs->locations[ds_constexpr],
9129 "cannot declare %<::main%> to be %<constexpr%>");
9130 if (!publicp)
9131 error_at (location, "cannot declare %<::main%> to be static");
9132 inlinep = 0;
9133 publicp = 1;
9134 }
9135
9136 /* Members of anonymous types and local classes have no linkage; make
9137 them internal. If a typedef is made later, this will be changed. */
9138 if (ctype && (!TREE_PUBLIC (TYPE_MAIN_DECL (ctype))
9139 || decl_function_context (TYPE_MAIN_DECL (ctype))))
9140 publicp = 0;
9141
9142 if (publicp && cxx_dialect == cxx98)
9143 {
9144 /* [basic.link]: A name with no linkage (notably, the name of a class
9145 or enumeration declared in a local scope) shall not be used to
9146 declare an entity with linkage.
9147
9148 DR 757 relaxes this restriction for C++0x. */
9149 no_linkage_error (decl);
9150 }
9151
9152 TREE_PUBLIC (decl) = publicp;
9153 if (! publicp)
9154 {
9155 DECL_INTERFACE_KNOWN (decl) = 1;
9156 DECL_NOT_REALLY_EXTERN (decl) = 1;
9157 }
9158
9159 /* If the declaration was declared inline, mark it as such. */
9160 if (inlinep)
9161 {
9162 DECL_DECLARED_INLINE_P (decl) = 1;
9163 if (publicp)
9164 DECL_COMDAT (decl) = 1;
9165 }
9166 if (inlinep & 2)
9167 DECL_DECLARED_CONSTEXPR_P (decl) = true;
9168
9169 // If the concept declaration specifier was found, check
9170 // that the declaration satisfies the necessary requirements.
9171 if (concept_p)
9172 {
9173 DECL_DECLARED_CONCEPT_P (decl) = true;
9174 check_concept_fn (decl);
9175 }
9176
9177 DECL_EXTERNAL (decl) = 1;
9178 if (TREE_CODE (type) == FUNCTION_TYPE)
9179 {
9180 if (quals || rqual)
9181 TREE_TYPE (decl) = apply_memfn_quals (TREE_TYPE (decl),
9182 TYPE_UNQUALIFIED,
9183 REF_QUAL_NONE);
9184
9185 if (quals)
9186 {
9187 error (ctype
9188 ? G_("static member function %qD cannot have cv-qualifier")
9189 : G_("non-member function %qD cannot have cv-qualifier"),
9190 decl);
9191 quals = TYPE_UNQUALIFIED;
9192 }
9193
9194 if (rqual)
9195 {
9196 error (ctype
9197 ? G_("static member function %qD cannot have ref-qualifier")
9198 : G_("non-member function %qD cannot have ref-qualifier"),
9199 decl);
9200 rqual = REF_QUAL_NONE;
9201 }
9202 }
9203
9204 if (deduction_guide_p (decl))
9205 {
9206 if (!DECL_NAMESPACE_SCOPE_P (decl))
9207 {
9208 error_at (location, "deduction guide %qD must be declared at "
9209 "namespace scope", decl);
9210 return NULL_TREE;
9211 }
9212 if (funcdef_flag)
9213 error_at (location,
9214 "deduction guide %qD must not have a function body", decl);
9215 }
9216 else if (IDENTIFIER_ANY_OP_P (DECL_NAME (decl))
9217 && !grok_op_properties (decl, /*complain=*/true))
9218 return NULL_TREE;
9219 else if (UDLIT_OPER_P (DECL_NAME (decl)))
9220 {
9221 bool long_long_unsigned_p;
9222 bool long_double_p;
9223 const char *suffix = NULL;
9224 /* [over.literal]/6: Literal operators shall not have C linkage. */
9225 if (DECL_LANGUAGE (decl) == lang_c)
9226 {
9227 error_at (location, "literal operator with C linkage");
9228 maybe_show_extern_c_location ();
9229 return NULL_TREE;
9230 }
9231
9232 if (DECL_NAMESPACE_SCOPE_P (decl))
9233 {
9234 if (!check_literal_operator_args (decl, &long_long_unsigned_p,
9235 &long_double_p))
9236 {
9237 error_at (location, "%qD has invalid argument list", decl);
9238 return NULL_TREE;
9239 }
9240
9241 suffix = UDLIT_OP_SUFFIX (DECL_NAME (decl));
9242 if (long_long_unsigned_p)
9243 {
9244 if (cpp_interpret_int_suffix (parse_in, suffix, strlen (suffix)))
9245 warning_at (location, 0, "integer suffix %qs"
9246 " shadowed by implementation", suffix);
9247 }
9248 else if (long_double_p)
9249 {
9250 if (cpp_interpret_float_suffix (parse_in, suffix, strlen (suffix)))
9251 warning_at (location, 0, "floating-point suffix %qs"
9252 " shadowed by implementation", suffix);
9253 }
9254 /* 17.6.3.3.5 */
9255 if (suffix[0] != '_'
9256 && !in_system_header_at (location)
9257 && !current_function_decl && !(friendp && !funcdef_flag))
9258 warning_at (location, OPT_Wliteral_suffix,
9259 "literal operator suffixes not preceded by %<_%>"
9260 " are reserved for future standardization");
9261 }
9262 else
9263 {
9264 error_at (location, "%qD must be a non-member function", decl);
9265 return NULL_TREE;
9266 }
9267 }
9268
9269 if (funcdef_flag)
9270 /* Make the init_value nonzero so pushdecl knows this is not
9271 tentative. error_mark_node is replaced later with the BLOCK. */
9272 DECL_INITIAL (decl) = error_mark_node;
9273
9274 if (TYPE_NOTHROW_P (type) || nothrow_libfn_p (decl))
9275 TREE_NOTHROW (decl) = 1;
9276
9277 if (flag_openmp || flag_openmp_simd)
9278 {
9279 /* Adjust "omp declare simd" attributes. */
9280 tree ods = lookup_attribute ("omp declare simd", *attrlist);
9281 if (ods)
9282 {
9283 tree attr;
9284 for (attr = ods; attr;
9285 attr = lookup_attribute ("omp declare simd", TREE_CHAIN (attr)))
9286 {
9287 if (TREE_CODE (type) == METHOD_TYPE)
9288 walk_tree (&TREE_VALUE (attr), declare_simd_adjust_this,
9289 DECL_ARGUMENTS (decl), NULL);
9290 if (TREE_VALUE (attr) != NULL_TREE)
9291 {
9292 tree cl = TREE_VALUE (TREE_VALUE (attr));
9293 cl = c_omp_declare_simd_clauses_to_numbers
9294 (DECL_ARGUMENTS (decl), cl);
9295 if (cl)
9296 TREE_VALUE (TREE_VALUE (attr)) = cl;
9297 else
9298 TREE_VALUE (attr) = NULL_TREE;
9299 }
9300 }
9301 }
9302 }
9303
9304 /* Caller will do the rest of this. */
9305 if (check < 0)
9306 return decl;
9307
9308 if (ctype != NULL_TREE)
9309 grokclassfn (ctype, decl, flags);
9310
9311 /* 12.4/3 */
9312 if (cxx_dialect >= cxx11
9313 && DECL_DESTRUCTOR_P (decl)
9314 && !TYPE_BEING_DEFINED (DECL_CONTEXT (decl))
9315 && !processing_template_decl)
9316 deduce_noexcept_on_destructor (decl);
9317
9318 decl = check_explicit_specialization (orig_declarator, decl,
9319 template_count,
9320 2 * funcdef_flag +
9321 4 * (friendp != 0) +
9322 8 * concept_p,
9323 *attrlist);
9324 if (decl == error_mark_node)
9325 return NULL_TREE;
9326
9327 if (DECL_STATIC_FUNCTION_P (decl))
9328 check_static_quals (decl, quals);
9329
9330 if (attrlist)
9331 {
9332 cplus_decl_attributes (&decl, *attrlist, 0);
9333 *attrlist = NULL_TREE;
9334 }
9335
9336 /* Check main's type after attributes have been applied. */
9337 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
9338 {
9339 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
9340 integer_type_node))
9341 {
9342 tree oldtypeargs = TYPE_ARG_TYPES (TREE_TYPE (decl));
9343 tree newtype;
9344 error_at (declspecs->locations[ds_type_spec],
9345 "%<::main%> must return %<int%>");
9346 newtype = build_function_type (integer_type_node, oldtypeargs);
9347 TREE_TYPE (decl) = newtype;
9348 }
9349 if (warn_main)
9350 check_main_parameter_types (decl);
9351 }
9352
9353 if (ctype != NULL_TREE && check)
9354 {
9355 tree old_decl = check_classfn (ctype, decl,
9356 (processing_template_decl
9357 > template_class_depth (ctype))
9358 ? current_template_parms
9359 : NULL_TREE);
9360
9361 if (old_decl == error_mark_node)
9362 return NULL_TREE;
9363
9364 if (old_decl)
9365 {
9366 tree ok;
9367 tree pushed_scope;
9368
9369 if (TREE_CODE (old_decl) == TEMPLATE_DECL)
9370 /* Because grokfndecl is always supposed to return a
9371 FUNCTION_DECL, we pull out the DECL_TEMPLATE_RESULT
9372 here. We depend on our callers to figure out that its
9373 really a template that's being returned. */
9374 old_decl = DECL_TEMPLATE_RESULT (old_decl);
9375
9376 if (DECL_STATIC_FUNCTION_P (old_decl)
9377 && TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE)
9378 {
9379 /* Remove the `this' parm added by grokclassfn. */
9380 revert_static_member_fn (decl);
9381 check_static_quals (decl, quals);
9382 }
9383 if (DECL_ARTIFICIAL (old_decl))
9384 {
9385 error ("definition of implicitly-declared %qD", old_decl);
9386 return NULL_TREE;
9387 }
9388 else if (DECL_DEFAULTED_FN (old_decl))
9389 {
9390 error ("definition of explicitly-defaulted %q+D", decl);
9391 inform (DECL_SOURCE_LOCATION (old_decl),
9392 "%q#D explicitly defaulted here", old_decl);
9393 return NULL_TREE;
9394 }
9395
9396 /* Since we've smashed OLD_DECL to its
9397 DECL_TEMPLATE_RESULT, we must do the same to DECL. */
9398 if (TREE_CODE (decl) == TEMPLATE_DECL)
9399 decl = DECL_TEMPLATE_RESULT (decl);
9400
9401 /* Attempt to merge the declarations. This can fail, in
9402 the case of some invalid specialization declarations. */
9403 pushed_scope = push_scope (ctype);
9404 ok = duplicate_decls (decl, old_decl, friendp);
9405 if (pushed_scope)
9406 pop_scope (pushed_scope);
9407 if (!ok)
9408 {
9409 error ("no %q#D member function declared in class %qT",
9410 decl, ctype);
9411 return NULL_TREE;
9412 }
9413 if (ok == error_mark_node)
9414 return NULL_TREE;
9415 return old_decl;
9416 }
9417 }
9418
9419 if (DECL_CONSTRUCTOR_P (decl) && !grok_ctor_properties (ctype, decl))
9420 return NULL_TREE;
9421
9422 if (ctype == NULL_TREE || check)
9423 return decl;
9424
9425 if (virtualp)
9426 DECL_VIRTUAL_P (decl) = 1;
9427
9428 return decl;
9429 }
9430
9431 /* decl is a FUNCTION_DECL.
9432 specifiers are the parsed virt-specifiers.
9433
9434 Set flags to reflect the virt-specifiers.
9435
9436 Returns decl. */
9437
9438 static tree
9439 set_virt_specifiers (tree decl, cp_virt_specifiers specifiers)
9440 {
9441 if (decl == NULL_TREE)
9442 return decl;
9443 if (specifiers & VIRT_SPEC_OVERRIDE)
9444 DECL_OVERRIDE_P (decl) = 1;
9445 if (specifiers & VIRT_SPEC_FINAL)
9446 DECL_FINAL_P (decl) = 1;
9447 return decl;
9448 }
9449
9450 /* DECL is a VAR_DECL for a static data member. Set flags to reflect
9451 the linkage that DECL will receive in the object file. */
9452
9453 static void
9454 set_linkage_for_static_data_member (tree decl)
9455 {
9456 /* A static data member always has static storage duration and
9457 external linkage. Note that static data members are forbidden in
9458 local classes -- the only situation in which a class has
9459 non-external linkage. */
9460 TREE_PUBLIC (decl) = 1;
9461 TREE_STATIC (decl) = 1;
9462 /* For non-template classes, static data members are always put
9463 out in exactly those files where they are defined, just as
9464 with ordinary namespace-scope variables. */
9465 if (!processing_template_decl)
9466 DECL_INTERFACE_KNOWN (decl) = 1;
9467 }
9468
9469 /* Create a VAR_DECL named NAME with the indicated TYPE.
9470
9471 If SCOPE is non-NULL, it is the class type or namespace containing
9472 the variable. If SCOPE is NULL, the variable should is created in
9473 the innermost enclosing scope. */
9474
9475 static tree
9476 grokvardecl (tree type,
9477 tree name,
9478 tree orig_declarator,
9479 const cp_decl_specifier_seq *declspecs,
9480 int initialized,
9481 int type_quals,
9482 int inlinep,
9483 bool conceptp,
9484 int template_count,
9485 tree scope,
9486 location_t location)
9487 {
9488 tree decl;
9489 tree explicit_scope;
9490
9491 gcc_assert (!name || identifier_p (name));
9492
9493 bool constp = (type_quals & TYPE_QUAL_CONST) != 0;
9494 bool volatilep = (type_quals & TYPE_QUAL_VOLATILE) != 0;
9495
9496 /* Compute the scope in which to place the variable, but remember
9497 whether or not that scope was explicitly specified by the user. */
9498 explicit_scope = scope;
9499 if (!scope)
9500 {
9501 /* An explicit "extern" specifier indicates a namespace-scope
9502 variable. */
9503 if (declspecs->storage_class == sc_extern)
9504 scope = current_decl_namespace ();
9505 else if (!at_function_scope_p ())
9506 scope = current_scope ();
9507 }
9508
9509 if (scope
9510 && (/* If the variable is a namespace-scope variable declared in a
9511 template, we need DECL_LANG_SPECIFIC. */
9512 (TREE_CODE (scope) == NAMESPACE_DECL && processing_template_decl)
9513 /* Similarly for namespace-scope variables with language linkage
9514 other than C++. */
9515 || (TREE_CODE (scope) == NAMESPACE_DECL
9516 && current_lang_name != lang_name_cplusplus)
9517 /* Similarly for static data members. */
9518 || TYPE_P (scope)
9519 /* Similarly for explicit specializations. */
9520 || (orig_declarator
9521 && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)))
9522 decl = build_lang_decl_loc (location, VAR_DECL, name, type);
9523 else
9524 decl = build_decl (location, VAR_DECL, name, type);
9525
9526 if (explicit_scope && TREE_CODE (explicit_scope) == NAMESPACE_DECL)
9527 set_decl_namespace (decl, explicit_scope, 0);
9528 else
9529 DECL_CONTEXT (decl) = FROB_CONTEXT (scope);
9530
9531 if (declspecs->storage_class == sc_extern)
9532 {
9533 DECL_THIS_EXTERN (decl) = 1;
9534 DECL_EXTERNAL (decl) = !initialized;
9535 }
9536
9537 if (DECL_CLASS_SCOPE_P (decl))
9538 {
9539 set_linkage_for_static_data_member (decl);
9540 /* This function is only called with out-of-class definitions. */
9541 DECL_EXTERNAL (decl) = 0;
9542 check_class_member_definition_namespace (decl);
9543 }
9544 /* At top level, either `static' or no s.c. makes a definition
9545 (perhaps tentative), and absence of `static' makes it public. */
9546 else if (toplevel_bindings_p ())
9547 {
9548 TREE_PUBLIC (decl) = (declspecs->storage_class != sc_static
9549 && (DECL_THIS_EXTERN (decl)
9550 || ! constp
9551 || volatilep
9552 || inlinep));
9553 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
9554 }
9555 /* Not at top level, only `static' makes a static definition. */
9556 else
9557 {
9558 TREE_STATIC (decl) = declspecs->storage_class == sc_static;
9559 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
9560 }
9561
9562 if (decl_spec_seq_has_spec_p (declspecs, ds_thread))
9563 {
9564 if (DECL_EXTERNAL (decl) || TREE_STATIC (decl))
9565 {
9566 CP_DECL_THREAD_LOCAL_P (decl) = true;
9567 if (!processing_template_decl)
9568 set_decl_tls_model (decl, decl_default_tls_model (decl));
9569 }
9570 if (declspecs->gnu_thread_keyword_p)
9571 SET_DECL_GNU_TLS_P (decl);
9572 }
9573
9574 /* If the type of the decl has no linkage, make sure that we'll
9575 notice that in mark_used. */
9576 if (cxx_dialect > cxx98
9577 && decl_linkage (decl) != lk_none
9578 && DECL_LANG_SPECIFIC (decl) == NULL
9579 && !DECL_EXTERN_C_P (decl)
9580 && no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/false))
9581 retrofit_lang_decl (decl);
9582
9583 if (TREE_PUBLIC (decl))
9584 {
9585 /* [basic.link]: A name with no linkage (notably, the name of a class
9586 or enumeration declared in a local scope) shall not be used to
9587 declare an entity with linkage.
9588
9589 DR 757 relaxes this restriction for C++0x. */
9590 if (cxx_dialect < cxx11)
9591 no_linkage_error (decl);
9592 }
9593 else
9594 DECL_INTERFACE_KNOWN (decl) = 1;
9595
9596 if (DECL_NAME (decl)
9597 && MAIN_NAME_P (DECL_NAME (decl))
9598 && scope == global_namespace)
9599 error_at (DECL_SOURCE_LOCATION (decl),
9600 "cannot declare %<::main%> to be a global variable");
9601
9602 /* Check that the variable can be safely declared as a concept.
9603 Note that this also forbids explicit specializations. */
9604 if (conceptp)
9605 {
9606 if (!processing_template_decl)
9607 {
9608 error_at (declspecs->locations[ds_concept],
9609 "a non-template variable cannot be %<concept%>");
9610 return NULL_TREE;
9611 }
9612 else
9613 DECL_DECLARED_CONCEPT_P (decl) = true;
9614 if (!same_type_ignoring_top_level_qualifiers_p (type, boolean_type_node))
9615 error_at (declspecs->locations[ds_type_spec],
9616 "concept must have type %<bool%>");
9617 }
9618 else if (flag_concepts
9619 && processing_template_decl > template_class_depth (scope))
9620 {
9621 tree reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
9622 tree ci = build_constraints (reqs, NULL_TREE);
9623 set_constraints (decl, ci);
9624 }
9625
9626 // Handle explicit specializations and instantiations of variable templates.
9627 if (orig_declarator)
9628 decl = check_explicit_specialization (orig_declarator, decl,
9629 template_count, conceptp * 8);
9630
9631 return decl != error_mark_node ? decl : NULL_TREE;
9632 }
9633
9634 /* Create and return a canonical pointer to member function type, for
9635 TYPE, which is a POINTER_TYPE to a METHOD_TYPE. */
9636
9637 tree
9638 build_ptrmemfunc_type (tree type)
9639 {
9640 tree field, fields;
9641 tree t;
9642
9643 if (type == error_mark_node)
9644 return type;
9645
9646 /* Make sure that we always have the unqualified pointer-to-member
9647 type first. */
9648 if (cp_cv_quals quals = cp_type_quals (type))
9649 {
9650 tree unqual = build_ptrmemfunc_type (TYPE_MAIN_VARIANT (type));
9651 return cp_build_qualified_type (unqual, quals);
9652 }
9653
9654 /* If a canonical type already exists for this type, use it. We use
9655 this method instead of type_hash_canon, because it only does a
9656 simple equality check on the list of field members. */
9657
9658 t = TYPE_PTRMEMFUNC_TYPE (type);
9659 if (t)
9660 return t;
9661
9662 t = make_node (RECORD_TYPE);
9663
9664 /* Let the front end know this is a pointer to member function. */
9665 TYPE_PTRMEMFUNC_FLAG (t) = 1;
9666
9667 field = build_decl (input_location, FIELD_DECL, pfn_identifier, type);
9668 fields = field;
9669
9670 field = build_decl (input_location, FIELD_DECL, delta_identifier,
9671 delta_type_node);
9672 DECL_CHAIN (field) = fields;
9673 fields = field;
9674
9675 finish_builtin_struct (t, "__ptrmemfunc_type", fields, ptr_type_node);
9676
9677 /* Zap out the name so that the back end will give us the debugging
9678 information for this anonymous RECORD_TYPE. */
9679 TYPE_NAME (t) = NULL_TREE;
9680
9681 /* Cache this pointer-to-member type so that we can find it again
9682 later. */
9683 TYPE_PTRMEMFUNC_TYPE (type) = t;
9684
9685 if (TYPE_STRUCTURAL_EQUALITY_P (type))
9686 SET_TYPE_STRUCTURAL_EQUALITY (t);
9687 else if (TYPE_CANONICAL (type) != type)
9688 TYPE_CANONICAL (t) = build_ptrmemfunc_type (TYPE_CANONICAL (type));
9689
9690 return t;
9691 }
9692
9693 /* Create and return a pointer to data member type. */
9694
9695 tree
9696 build_ptrmem_type (tree class_type, tree member_type)
9697 {
9698 if (TREE_CODE (member_type) == METHOD_TYPE)
9699 {
9700 cp_cv_quals quals = type_memfn_quals (member_type);
9701 cp_ref_qualifier rqual = type_memfn_rqual (member_type);
9702 member_type = build_memfn_type (member_type, class_type, quals, rqual);
9703 return build_ptrmemfunc_type (build_pointer_type (member_type));
9704 }
9705 else
9706 {
9707 gcc_assert (TREE_CODE (member_type) != FUNCTION_TYPE);
9708 return build_offset_type (class_type, member_type);
9709 }
9710 }
9711
9712 /* DECL is a VAR_DECL defined in-class, whose TYPE is also given.
9713 Check to see that the definition is valid. Issue appropriate error
9714 messages. */
9715
9716 static void
9717 check_static_variable_definition (tree decl, tree type)
9718 {
9719 /* Avoid redundant diagnostics on out-of-class definitions. */
9720 if (!current_class_type || !TYPE_BEING_DEFINED (current_class_type))
9721 ;
9722 /* Can't check yet if we don't know the type. */
9723 else if (dependent_type_p (type))
9724 ;
9725 /* If DECL is declared constexpr, we'll do the appropriate checks
9726 in check_initializer. Similarly for inline static data members. */
9727 else if (DECL_P (decl)
9728 && (DECL_DECLARED_CONSTEXPR_P (decl)
9729 || undeduced_auto_decl (decl)
9730 || DECL_VAR_DECLARED_INLINE_P (decl)))
9731 ;
9732 else if (cxx_dialect >= cxx11 && !INTEGRAL_OR_ENUMERATION_TYPE_P (type))
9733 {
9734 if (!COMPLETE_TYPE_P (type))
9735 error_at (DECL_SOURCE_LOCATION (decl),
9736 "in-class initialization of static data member %q#D of "
9737 "incomplete type", decl);
9738 else if (literal_type_p (type))
9739 permerror (DECL_SOURCE_LOCATION (decl),
9740 "%<constexpr%> needed for in-class initialization of "
9741 "static data member %q#D of non-integral type", decl);
9742 else
9743 error_at (DECL_SOURCE_LOCATION (decl),
9744 "in-class initialization of static data member %q#D of "
9745 "non-literal type", decl);
9746 }
9747 /* Motion 10 at San Diego: If a static const integral data member is
9748 initialized with an integral constant expression, the initializer
9749 may appear either in the declaration (within the class), or in
9750 the definition, but not both. If it appears in the class, the
9751 member is a member constant. The file-scope definition is always
9752 required. */
9753 else if (!ARITHMETIC_TYPE_P (type) && TREE_CODE (type) != ENUMERAL_TYPE)
9754 error_at (DECL_SOURCE_LOCATION (decl),
9755 "invalid in-class initialization of static data member "
9756 "of non-integral type %qT",
9757 type);
9758 else if (!CP_TYPE_CONST_P (type))
9759 error_at (DECL_SOURCE_LOCATION (decl),
9760 "ISO C++ forbids in-class initialization of non-const "
9761 "static member %qD",
9762 decl);
9763 else if (!INTEGRAL_OR_ENUMERATION_TYPE_P (type))
9764 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wpedantic,
9765 "ISO C++ forbids initialization of member constant "
9766 "%qD of non-integral type %qT", decl, type);
9767 }
9768
9769 /* *expr_p is part of the TYPE_SIZE of a variably-sized array. If any
9770 SAVE_EXPRs in *expr_p wrap expressions with side-effects, break those
9771 expressions out into temporary variables so that walk_tree doesn't
9772 step into them (c++/15764). */
9773
9774 static tree
9775 stabilize_save_expr_r (tree *expr_p, int *walk_subtrees, void *data)
9776 {
9777 hash_set<tree> *pset = (hash_set<tree> *)data;
9778 tree expr = *expr_p;
9779 if (TREE_CODE (expr) == SAVE_EXPR)
9780 {
9781 tree op = TREE_OPERAND (expr, 0);
9782 cp_walk_tree (&op, stabilize_save_expr_r, data, pset);
9783 if (TREE_SIDE_EFFECTS (op))
9784 TREE_OPERAND (expr, 0) = get_temp_regvar (TREE_TYPE (op), op);
9785 *walk_subtrees = 0;
9786 }
9787 else if (!EXPR_P (expr) || !TREE_SIDE_EFFECTS (expr))
9788 *walk_subtrees = 0;
9789 return NULL;
9790 }
9791
9792 /* Entry point for the above. */
9793
9794 static void
9795 stabilize_vla_size (tree size)
9796 {
9797 hash_set<tree> pset;
9798 /* Break out any function calls into temporary variables. */
9799 cp_walk_tree (&size, stabilize_save_expr_r, &pset, &pset);
9800 }
9801
9802 /* Reduce a SIZEOF_EXPR to its value. */
9803
9804 tree
9805 fold_sizeof_expr (tree t)
9806 {
9807 tree r;
9808 if (SIZEOF_EXPR_TYPE_P (t))
9809 r = cxx_sizeof_or_alignof_type (TREE_TYPE (TREE_OPERAND (t, 0)),
9810 SIZEOF_EXPR, false, false);
9811 else if (TYPE_P (TREE_OPERAND (t, 0)))
9812 r = cxx_sizeof_or_alignof_type (TREE_OPERAND (t, 0), SIZEOF_EXPR,
9813 false, false);
9814 else
9815 r = cxx_sizeof_or_alignof_expr (TREE_OPERAND (t, 0), SIZEOF_EXPR,
9816 false);
9817 if (r == error_mark_node)
9818 r = size_one_node;
9819 return r;
9820 }
9821
9822 /* Given the SIZE (i.e., number of elements) in an array, compute
9823 an appropriate index type for the array. If non-NULL, NAME is
9824 the name of the entity being declared. */
9825
9826 static tree
9827 compute_array_index_type_loc (location_t name_loc, tree name, tree size,
9828 tsubst_flags_t complain)
9829 {
9830 if (error_operand_p (size))
9831 return error_mark_node;
9832
9833 /* The type of the index being computed. */
9834 tree itype;
9835
9836 /* The original numeric size as seen in the source code before
9837 conversion to size_t. */
9838 tree origsize = size;
9839
9840 location_t loc = cp_expr_loc_or_loc (size, name ? name_loc : input_location);
9841
9842 if (!type_dependent_expression_p (size))
9843 {
9844 origsize = size = mark_rvalue_use (size);
9845
9846 if (cxx_dialect < cxx11 && TREE_CODE (size) == NOP_EXPR
9847 && TREE_SIDE_EFFECTS (size))
9848 /* In C++98, we mark a non-constant array bound with a magic
9849 NOP_EXPR with TREE_SIDE_EFFECTS; don't fold in that case. */;
9850 else
9851 {
9852 size = instantiate_non_dependent_expr_sfinae (size, complain);
9853 size = build_converted_constant_expr (size_type_node, size, complain);
9854 /* Pedantically a constant expression is required here and so
9855 __builtin_is_constant_evaluated () should fold to true if it
9856 is successfully folded into a constant. */
9857 size = maybe_constant_value (size, NULL_TREE,
9858 /*manifestly_const_eval=*/true);
9859
9860 if (!TREE_CONSTANT (size))
9861 size = origsize;
9862 }
9863
9864 if (error_operand_p (size))
9865 return error_mark_node;
9866
9867 /* The array bound must be an integer type. */
9868 tree type = TREE_TYPE (size);
9869 if (!INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
9870 {
9871 if (!(complain & tf_error))
9872 return error_mark_node;
9873 if (name)
9874 error_at (loc, "size of array %qD has non-integral type %qT",
9875 name, type);
9876 else
9877 error_at (loc, "size of array has non-integral type %qT", type);
9878 size = integer_one_node;
9879 }
9880 }
9881
9882 /* A type is dependent if it is...an array type constructed from any
9883 dependent type or whose size is specified by a constant expression
9884 that is value-dependent. */
9885 /* We can only call value_dependent_expression_p on integral constant
9886 expressions; treat non-constant expressions as dependent, too. */
9887 if (processing_template_decl
9888 && (type_dependent_expression_p (size)
9889 || !TREE_CONSTANT (size) || value_dependent_expression_p (size)))
9890 {
9891 /* We cannot do any checking for a SIZE that isn't known to be
9892 constant. Just build the index type and mark that it requires
9893 structural equality checks. */
9894 itype = build_index_type (build_min (MINUS_EXPR, sizetype,
9895 size, size_one_node));
9896 TYPE_DEPENDENT_P (itype) = 1;
9897 TYPE_DEPENDENT_P_VALID (itype) = 1;
9898 SET_TYPE_STRUCTURAL_EQUALITY (itype);
9899 return itype;
9900 }
9901
9902 if (TREE_CODE (size) != INTEGER_CST)
9903 {
9904 tree folded = cp_fully_fold (size);
9905 if (TREE_CODE (folded) == INTEGER_CST)
9906 {
9907 if (name)
9908 pedwarn (loc, OPT_Wpedantic, "size of array %qD is not an "
9909 "integral constant-expression", name);
9910 else
9911 pedwarn (loc, OPT_Wpedantic,
9912 "size of array is not an integral constant-expression");
9913 }
9914 /* Use the folded result for VLAs, too; it will have resolved
9915 SIZEOF_EXPR. */
9916 size = folded;
9917 }
9918
9919 /* Normally, the array-bound will be a constant. */
9920 if (TREE_CODE (size) == INTEGER_CST)
9921 {
9922 /* The size to use in diagnostics that reflects the constant
9923 size used in the source, rather than SIZE massaged above. */
9924 tree diagsize = size;
9925
9926 /* If the original size before conversion to size_t was signed
9927 and negative, convert it to ssizetype to restore the sign. */
9928 if (!TYPE_UNSIGNED (TREE_TYPE (origsize))
9929 && TREE_CODE (size) == INTEGER_CST
9930 && tree_int_cst_sign_bit (size))
9931 {
9932 diagsize = fold_convert (ssizetype, size);
9933
9934 /* Clear the overflow bit that may have been set as a result
9935 of the conversion from the sizetype of the new size to
9936 ssizetype. */
9937 TREE_OVERFLOW (diagsize) = false;
9938 }
9939
9940 /* Verify that the array has a positive number of elements
9941 and issue the appropriate diagnostic if it doesn't. */
9942 if (!valid_array_size_p (loc, diagsize, name, (complain & tf_error)))
9943 {
9944 if (!(complain & tf_error))
9945 return error_mark_node;
9946 size = integer_one_node;
9947 }
9948 /* As an extension we allow zero-sized arrays. */
9949 else if (integer_zerop (size))
9950 {
9951 if (!(complain & tf_error))
9952 /* We must fail if performing argument deduction (as
9953 indicated by the state of complain), so that
9954 another substitution can be found. */
9955 return error_mark_node;
9956 else if (in_system_header_at (input_location))
9957 /* Allow them in system headers because glibc uses them. */;
9958 else if (name)
9959 pedwarn (loc, OPT_Wpedantic,
9960 "ISO C++ forbids zero-size array %qD", name);
9961 else
9962 pedwarn (loc, OPT_Wpedantic,
9963 "ISO C++ forbids zero-size array");
9964 }
9965 }
9966 else if (TREE_CONSTANT (size)
9967 /* We don't allow VLAs at non-function scopes, or during
9968 tentative template substitution. */
9969 || !at_function_scope_p ()
9970 || !(complain & tf_error))
9971 {
9972 if (!(complain & tf_error))
9973 return error_mark_node;
9974 /* `(int) &fn' is not a valid array bound. */
9975 if (name)
9976 error_at (loc,
9977 "size of array %qD is not an integral constant-expression",
9978 name);
9979 else
9980 error_at (loc, "size of array is not an integral constant-expression");
9981 size = integer_one_node;
9982 }
9983 else if (pedantic && warn_vla != 0)
9984 {
9985 if (name)
9986 pedwarn (name_loc, OPT_Wvla,
9987 "ISO C++ forbids variable length array %qD", name);
9988 else
9989 pedwarn (input_location, OPT_Wvla,
9990 "ISO C++ forbids variable length array");
9991 }
9992 else if (warn_vla > 0)
9993 {
9994 if (name)
9995 warning_at (name_loc, OPT_Wvla,
9996 "variable length array %qD is used", name);
9997 else
9998 warning (OPT_Wvla,
9999 "variable length array is used");
10000 }
10001
10002 if (processing_template_decl && !TREE_CONSTANT (size))
10003 /* A variable sized array. */
10004 itype = build_min (MINUS_EXPR, sizetype, size, integer_one_node);
10005 else
10006 {
10007 /* Compute the index of the largest element in the array. It is
10008 one less than the number of elements in the array. We save
10009 and restore PROCESSING_TEMPLATE_DECL so that computations in
10010 cp_build_binary_op will be appropriately folded. */
10011 {
10012 processing_template_decl_sentinel s;
10013 itype = cp_build_binary_op (input_location,
10014 MINUS_EXPR,
10015 cp_convert (ssizetype, size, complain),
10016 cp_convert (ssizetype, integer_one_node,
10017 complain),
10018 complain);
10019 itype = maybe_constant_value (itype);
10020 }
10021
10022 if (!TREE_CONSTANT (itype))
10023 {
10024 /* A variable sized array. */
10025 itype = variable_size (itype);
10026
10027 stabilize_vla_size (itype);
10028
10029 if (sanitize_flags_p (SANITIZE_VLA)
10030 && current_function_decl != NULL_TREE)
10031 {
10032 /* We have to add 1 -- in the ubsan routine we generate
10033 LE_EXPR rather than LT_EXPR. */
10034 tree t = fold_build2 (PLUS_EXPR, TREE_TYPE (itype), itype,
10035 build_one_cst (TREE_TYPE (itype)));
10036 t = ubsan_instrument_vla (input_location, t);
10037 finish_expr_stmt (t);
10038 }
10039 }
10040 /* Make sure that there was no overflow when creating to a signed
10041 index type. (For example, on a 32-bit machine, an array with
10042 size 2^32 - 1 is too big.) */
10043 else if (TREE_CODE (itype) == INTEGER_CST
10044 && TREE_OVERFLOW (itype))
10045 {
10046 if (!(complain & tf_error))
10047 return error_mark_node;
10048 error ("overflow in array dimension");
10049 TREE_OVERFLOW (itype) = 0;
10050 }
10051 }
10052
10053 /* Create and return the appropriate index type. */
10054 itype = build_index_type (itype);
10055
10056 /* If the index type were dependent, we would have returned early, so
10057 remember that it isn't. */
10058 TYPE_DEPENDENT_P (itype) = 0;
10059 TYPE_DEPENDENT_P_VALID (itype) = 1;
10060 return itype;
10061 }
10062
10063 tree
10064 compute_array_index_type (tree name, tree size, tsubst_flags_t complain)
10065 {
10066 return compute_array_index_type_loc (input_location, name, size, complain);
10067 }
10068
10069 /* Returns the scope (if any) in which the entity declared by
10070 DECLARATOR will be located. If the entity was declared with an
10071 unqualified name, NULL_TREE is returned. */
10072
10073 tree
10074 get_scope_of_declarator (const cp_declarator *declarator)
10075 {
10076 while (declarator && declarator->kind != cdk_id)
10077 declarator = declarator->declarator;
10078
10079 /* If the declarator-id is a SCOPE_REF, the scope in which the
10080 declaration occurs is the first operand. */
10081 if (declarator
10082 && declarator->u.id.qualifying_scope)
10083 return declarator->u.id.qualifying_scope;
10084
10085 /* Otherwise, the declarator is not a qualified name; the entity will
10086 be declared in the current scope. */
10087 return NULL_TREE;
10088 }
10089
10090 /* Returns an ARRAY_TYPE for an array with SIZE elements of the
10091 indicated TYPE. If non-NULL, NAME is the NAME of the declaration
10092 with this type. */
10093
10094 static tree
10095 create_array_type_for_decl (tree name, tree type, tree size, location_t loc)
10096 {
10097 tree itype = NULL_TREE;
10098
10099 /* If things have already gone awry, bail now. */
10100 if (type == error_mark_node || size == error_mark_node)
10101 return error_mark_node;
10102
10103 /* 8.3.4/1: If the type of the identifier of D contains the auto
10104 type-specifier, the program is ill-formed. */
10105 if (type_uses_auto (type))
10106 {
10107 if (name)
10108 error_at (loc, "%qD declared as array of %qT", name, type);
10109 else
10110 error ("creating array of %qT", type);
10111 return error_mark_node;
10112 }
10113
10114 /* If there are some types which cannot be array elements,
10115 issue an error-message and return. */
10116 switch (TREE_CODE (type))
10117 {
10118 case VOID_TYPE:
10119 if (name)
10120 error_at (loc, "declaration of %qD as array of void", name);
10121 else
10122 error ("creating array of void");
10123 return error_mark_node;
10124
10125 case FUNCTION_TYPE:
10126 if (name)
10127 error_at (loc, "declaration of %qD as array of functions", name);
10128 else
10129 error ("creating array of functions");
10130 return error_mark_node;
10131
10132 case REFERENCE_TYPE:
10133 if (name)
10134 error_at (loc, "declaration of %qD as array of references", name);
10135 else
10136 error ("creating array of references");
10137 return error_mark_node;
10138
10139 case METHOD_TYPE:
10140 if (name)
10141 error_at (loc, "declaration of %qD as array of function members",
10142 name);
10143 else
10144 error ("creating array of function members");
10145 return error_mark_node;
10146
10147 default:
10148 break;
10149 }
10150
10151 /* [dcl.array]
10152
10153 The constant expressions that specify the bounds of the arrays
10154 can be omitted only for the first member of the sequence. */
10155 if (TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type))
10156 {
10157 if (name)
10158 error_at (loc, "declaration of %qD as multidimensional array must "
10159 "have bounds for all dimensions except the first",
10160 name);
10161 else
10162 error ("multidimensional array must have bounds for all "
10163 "dimensions except the first");
10164
10165 return error_mark_node;
10166 }
10167
10168 /* Figure out the index type for the array. */
10169 if (size)
10170 itype = compute_array_index_type_loc (loc, name, size,
10171 tf_warning_or_error);
10172
10173 /* [dcl.array]
10174 T is called the array element type; this type shall not be [...] an
10175 abstract class type. */
10176 abstract_virtuals_error (name, type);
10177
10178 return build_cplus_array_type (type, itype);
10179 }
10180
10181 /* Returns the smallest location that is not UNKNOWN_LOCATION. */
10182
10183 static location_t
10184 min_location (location_t loca, location_t locb)
10185 {
10186 if (loca == UNKNOWN_LOCATION
10187 || (locb != UNKNOWN_LOCATION
10188 && linemap_location_before_p (line_table, locb, loca)))
10189 return locb;
10190 return loca;
10191 }
10192
10193 /* Returns the smallest location != UNKNOWN_LOCATION among the
10194 three stored in LOCATIONS[ds_const], LOCATIONS[ds_volatile],
10195 and LOCATIONS[ds_restrict]. */
10196
10197 static location_t
10198 smallest_type_quals_location (int type_quals, const location_t* locations)
10199 {
10200 location_t loc = UNKNOWN_LOCATION;
10201
10202 if (type_quals & TYPE_QUAL_CONST)
10203 loc = locations[ds_const];
10204
10205 if (type_quals & TYPE_QUAL_VOLATILE)
10206 loc = min_location (loc, locations[ds_volatile]);
10207
10208 if (type_quals & TYPE_QUAL_RESTRICT)
10209 loc = min_location (loc, locations[ds_restrict]);
10210
10211 return loc;
10212 }
10213
10214 /* Returns the smallest among the latter and locations[ds_type_spec]. */
10215
10216 static location_t
10217 smallest_type_location (int type_quals, const location_t* locations)
10218 {
10219 location_t loc = smallest_type_quals_location (type_quals, locations);
10220 return min_location (loc, locations[ds_type_spec]);
10221 }
10222
10223 static location_t
10224 smallest_type_location (const cp_decl_specifier_seq *declspecs)
10225 {
10226 int type_quals = get_type_quals (declspecs);
10227 return smallest_type_location (type_quals, declspecs->locations);
10228 }
10229
10230 /* Check that it's OK to declare a function with the indicated TYPE
10231 and TYPE_QUALS. SFK indicates the kind of special function (if any)
10232 that this function is. OPTYPE is the type given in a conversion
10233 operator declaration, or the class type for a constructor/destructor.
10234 Returns the actual return type of the function; that may be different
10235 than TYPE if an error occurs, or for certain special functions. */
10236
10237 static tree
10238 check_special_function_return_type (special_function_kind sfk,
10239 tree type,
10240 tree optype,
10241 int type_quals,
10242 const location_t* locations)
10243 {
10244 switch (sfk)
10245 {
10246 case sfk_constructor:
10247 if (type)
10248 error_at (smallest_type_location (type_quals, locations),
10249 "return type specification for constructor invalid");
10250 else if (type_quals != TYPE_UNQUALIFIED)
10251 error_at (smallest_type_quals_location (type_quals, locations),
10252 "qualifiers are not allowed on constructor declaration");
10253
10254 if (targetm.cxx.cdtor_returns_this ())
10255 type = build_pointer_type (optype);
10256 else
10257 type = void_type_node;
10258 break;
10259
10260 case sfk_destructor:
10261 if (type)
10262 error_at (smallest_type_location (type_quals, locations),
10263 "return type specification for destructor invalid");
10264 else if (type_quals != TYPE_UNQUALIFIED)
10265 error_at (smallest_type_quals_location (type_quals, locations),
10266 "qualifiers are not allowed on destructor declaration");
10267
10268 /* We can't use the proper return type here because we run into
10269 problems with ambiguous bases and covariant returns. */
10270 if (targetm.cxx.cdtor_returns_this ())
10271 type = build_pointer_type (void_type_node);
10272 else
10273 type = void_type_node;
10274 break;
10275
10276 case sfk_conversion:
10277 if (type)
10278 error_at (smallest_type_location (type_quals, locations),
10279 "return type specified for %<operator %T%>", optype);
10280 else if (type_quals != TYPE_UNQUALIFIED)
10281 error_at (smallest_type_quals_location (type_quals, locations),
10282 "qualifiers are not allowed on declaration of "
10283 "%<operator %T%>", optype);
10284
10285 type = optype;
10286 break;
10287
10288 case sfk_deduction_guide:
10289 if (type)
10290 error_at (smallest_type_location (type_quals, locations),
10291 "return type specified for deduction guide");
10292 else if (type_quals != TYPE_UNQUALIFIED)
10293 error_at (smallest_type_quals_location (type_quals, locations),
10294 "qualifiers are not allowed on declaration of "
10295 "deduction guide");
10296 if (TREE_CODE (optype) == TEMPLATE_TEMPLATE_PARM)
10297 {
10298 error ("template template parameter %qT in declaration of "
10299 "deduction guide", optype);
10300 type = error_mark_node;
10301 }
10302 else
10303 type = make_template_placeholder (CLASSTYPE_TI_TEMPLATE (optype));
10304 for (int i = 0; i < ds_last; ++i)
10305 if (i != ds_explicit && locations[i])
10306 error_at (locations[i],
10307 "%<decl-specifier%> in declaration of deduction guide");
10308 break;
10309
10310 default:
10311 gcc_unreachable ();
10312 }
10313
10314 return type;
10315 }
10316
10317 /* A variable or data member (whose unqualified name is IDENTIFIER)
10318 has been declared with the indicated TYPE. If the TYPE is not
10319 acceptable, issue an error message and return a type to use for
10320 error-recovery purposes. */
10321
10322 tree
10323 check_var_type (tree identifier, tree type, location_t loc)
10324 {
10325 if (VOID_TYPE_P (type))
10326 {
10327 if (!identifier)
10328 error_at (loc, "unnamed variable or field declared void");
10329 else if (identifier_p (identifier))
10330 {
10331 gcc_assert (!IDENTIFIER_ANY_OP_P (identifier));
10332 error_at (loc, "variable or field %qE declared void",
10333 identifier);
10334 }
10335 else
10336 error_at (loc, "variable or field declared void");
10337 type = error_mark_node;
10338 }
10339
10340 return type;
10341 }
10342
10343 /* Handle declaring DECL as an inline variable. */
10344
10345 static void
10346 mark_inline_variable (tree decl, location_t loc)
10347 {
10348 bool inlinep = true;
10349 if (! toplevel_bindings_p ())
10350 {
10351 error_at (loc, "%<inline%> specifier invalid for variable "
10352 "%qD declared at block scope", decl);
10353 inlinep = false;
10354 }
10355 else if (cxx_dialect < cxx17)
10356 pedwarn (loc, 0, "inline variables are only available "
10357 "with %<-std=c++17%> or %<-std=gnu++17%>");
10358 if (inlinep)
10359 {
10360 retrofit_lang_decl (decl);
10361 SET_DECL_VAR_DECLARED_INLINE_P (decl);
10362 }
10363 }
10364
10365
10366 /* Assign a typedef-given name to a class or enumeration type declared
10367 as anonymous at first. This was split out of grokdeclarator
10368 because it is also used in libcc1. */
10369
10370 void
10371 name_unnamed_type (tree type, tree decl)
10372 {
10373 gcc_assert (TYPE_UNNAMED_P (type));
10374
10375 /* Replace the anonymous name with the real name everywhere. */
10376 for (tree t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
10377 if (IDENTIFIER_ANON_P (TYPE_IDENTIFIER (t)))
10378 /* We do not rename the debug info representing the unnamed
10379 tagged type because the standard says in [dcl.typedef] that
10380 the naming applies only for linkage purposes. */
10381 /*debug_hooks->set_name (t, decl);*/
10382 TYPE_NAME (t) = decl;
10383
10384 if (TYPE_LANG_SPECIFIC (type))
10385 TYPE_WAS_UNNAMED (type) = 1;
10386
10387 /* If this is a typedef within a template class, the nested
10388 type is a (non-primary) template. The name for the
10389 template needs updating as well. */
10390 if (TYPE_LANG_SPECIFIC (type) && CLASSTYPE_TEMPLATE_INFO (type))
10391 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type))
10392 = TYPE_IDENTIFIER (type);
10393
10394 /* Adjust linkage now that we aren't unnamed anymore. */
10395 reset_type_linkage (type);
10396
10397 /* FIXME remangle member functions; member functions of a
10398 type with external linkage have external linkage. */
10399
10400 /* Check that our job is done, and that it would fail if we
10401 attempted to do it again. */
10402 gcc_assert (!TYPE_UNNAMED_P (type));
10403 }
10404
10405 /* Given declspecs and a declarator (abstract or otherwise), determine
10406 the name and type of the object declared and construct a DECL node
10407 for it.
10408
10409 DECLSPECS points to the representation of declaration-specifier
10410 sequence that precedes declarator.
10411
10412 DECL_CONTEXT says which syntactic context this declaration is in:
10413 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
10414 FUNCDEF for a function definition. Like NORMAL but a few different
10415 error messages in each case. Return value may be zero meaning
10416 this definition is too screwy to try to parse.
10417 MEMFUNCDEF for a function definition. Like FUNCDEF but prepares to
10418 handle member functions (which have FIELD context).
10419 Return value may be zero meaning this definition is too screwy to
10420 try to parse.
10421 PARM for a parameter declaration (either within a function prototype
10422 or before a function body). Make a PARM_DECL, or return void_type_node.
10423 TPARM for a template parameter declaration.
10424 CATCHPARM for a parameter declaration before a catch clause.
10425 TYPENAME if for a typename (in a cast or sizeof).
10426 Don't make a DECL node; just return the ..._TYPE node.
10427 FIELD for a struct or union field; make a FIELD_DECL.
10428 BITFIELD for a field with specified width.
10429
10430 INITIALIZED is as for start_decl.
10431
10432 ATTRLIST is a pointer to the list of attributes, which may be NULL
10433 if there are none; *ATTRLIST may be modified if attributes from inside
10434 the declarator should be applied to the declaration.
10435
10436 When this function is called, scoping variables (such as
10437 CURRENT_CLASS_TYPE) should reflect the scope in which the
10438 declaration occurs, not the scope in which the new declaration will
10439 be placed. For example, on:
10440
10441 void S::f() { ... }
10442
10443 when grokdeclarator is called for `S::f', the CURRENT_CLASS_TYPE
10444 should not be `S'.
10445
10446 Returns a DECL (if a declarator is present), a TYPE (if there is no
10447 declarator, in cases like "struct S;"), or the ERROR_MARK_NODE if an
10448 error occurs. */
10449
10450 tree
10451 grokdeclarator (const cp_declarator *declarator,
10452 cp_decl_specifier_seq *declspecs,
10453 enum decl_context decl_context,
10454 int initialized,
10455 tree* attrlist)
10456 {
10457 tree type = NULL_TREE;
10458 int longlong = 0;
10459 int explicit_intN = 0;
10460 int int_n_alt = 0;
10461 int virtualp, explicitp, friendp, inlinep, staticp;
10462 int explicit_int = 0;
10463 int explicit_char = 0;
10464 int defaulted_int = 0;
10465
10466 tree typedef_decl = NULL_TREE;
10467 const char *name = NULL;
10468 tree typedef_type = NULL_TREE;
10469 /* True if this declarator is a function definition. */
10470 bool funcdef_flag = false;
10471 cp_declarator_kind innermost_code = cdk_error;
10472 int bitfield = 0;
10473 #if 0
10474 /* See the code below that used this. */
10475 tree decl_attr = NULL_TREE;
10476 #endif
10477
10478 /* Keep track of what sort of function is being processed
10479 so that we can warn about default return values, or explicit
10480 return values which do not match prescribed defaults. */
10481 special_function_kind sfk = sfk_none;
10482
10483 tree dname = NULL_TREE;
10484 tree ctor_return_type = NULL_TREE;
10485 enum overload_flags flags = NO_SPECIAL;
10486 /* cv-qualifiers that apply to the declarator, for a declaration of
10487 a member function. */
10488 cp_cv_quals memfn_quals = TYPE_UNQUALIFIED;
10489 /* virt-specifiers that apply to the declarator, for a declaration of
10490 a member function. */
10491 cp_virt_specifiers virt_specifiers = VIRT_SPEC_UNSPECIFIED;
10492 /* ref-qualifier that applies to the declarator, for a declaration of
10493 a member function. */
10494 cp_ref_qualifier rqual = REF_QUAL_NONE;
10495 /* cv-qualifiers that apply to the type specified by the DECLSPECS. */
10496 int type_quals = get_type_quals (declspecs);
10497 tree raises = NULL_TREE;
10498 int template_count = 0;
10499 tree returned_attrs = NULL_TREE;
10500 tree parms = NULL_TREE;
10501 const cp_declarator *id_declarator;
10502 /* The unqualified name of the declarator; either an
10503 IDENTIFIER_NODE, BIT_NOT_EXPR, or TEMPLATE_ID_EXPR. */
10504 tree unqualified_id;
10505 /* The class type, if any, in which this entity is located,
10506 or NULL_TREE if none. Note that this value may be different from
10507 the current class type; for example if an attempt is made to declare
10508 "A::f" inside "B", this value will be "A". */
10509 tree ctype = current_class_type;
10510 /* The NAMESPACE_DECL for the namespace in which this entity is
10511 located. If an unqualified name is used to declare the entity,
10512 this value will be NULL_TREE, even if the entity is located at
10513 namespace scope. */
10514 tree in_namespace = NULL_TREE;
10515 cp_storage_class storage_class;
10516 bool unsigned_p, signed_p, short_p, long_p, thread_p;
10517 bool type_was_error_mark_node = false;
10518 bool parameter_pack_p = declarator ? declarator->parameter_pack_p : false;
10519 bool template_type_arg = false;
10520 bool template_parm_flag = false;
10521 bool typedef_p = decl_spec_seq_has_spec_p (declspecs, ds_typedef);
10522 bool constexpr_p = decl_spec_seq_has_spec_p (declspecs, ds_constexpr);
10523 bool constinit_p = decl_spec_seq_has_spec_p (declspecs, ds_constinit);
10524 bool late_return_type_p = false;
10525 bool array_parameter_p = false;
10526 tree reqs = NULL_TREE;
10527
10528 signed_p = decl_spec_seq_has_spec_p (declspecs, ds_signed);
10529 unsigned_p = decl_spec_seq_has_spec_p (declspecs, ds_unsigned);
10530 short_p = decl_spec_seq_has_spec_p (declspecs, ds_short);
10531 long_p = decl_spec_seq_has_spec_p (declspecs, ds_long);
10532 longlong = decl_spec_seq_has_spec_p (declspecs, ds_long_long);
10533 explicit_intN = declspecs->explicit_intN_p;
10534 int_n_alt = declspecs->int_n_alt;
10535 thread_p = decl_spec_seq_has_spec_p (declspecs, ds_thread);
10536
10537 // Was concept_p specified? Note that ds_concept
10538 // implies ds_constexpr!
10539 bool concept_p = decl_spec_seq_has_spec_p (declspecs, ds_concept);
10540 if (concept_p)
10541 constexpr_p = true;
10542
10543 if (decl_context == FUNCDEF)
10544 funcdef_flag = true, decl_context = NORMAL;
10545 else if (decl_context == MEMFUNCDEF)
10546 funcdef_flag = true, decl_context = FIELD;
10547 else if (decl_context == BITFIELD)
10548 bitfield = 1, decl_context = FIELD;
10549 else if (decl_context == TEMPLATE_TYPE_ARG)
10550 template_type_arg = true, decl_context = TYPENAME;
10551 else if (decl_context == TPARM)
10552 template_parm_flag = true, decl_context = PARM;
10553
10554 if (initialized > 1)
10555 funcdef_flag = true;
10556
10557 location_t typespec_loc = smallest_type_location (type_quals,
10558 declspecs->locations);
10559 if (typespec_loc == UNKNOWN_LOCATION)
10560 typespec_loc = input_location;
10561
10562 location_t id_loc = declarator ? declarator->id_loc : input_location;
10563 if (id_loc == UNKNOWN_LOCATION)
10564 id_loc = input_location;
10565
10566 /* Look inside a declarator for the name being declared
10567 and get it as a string, for an error message. */
10568 for (id_declarator = declarator;
10569 id_declarator;
10570 id_declarator = id_declarator->declarator)
10571 {
10572 if (id_declarator->kind != cdk_id)
10573 innermost_code = id_declarator->kind;
10574
10575 switch (id_declarator->kind)
10576 {
10577 case cdk_function:
10578 if (id_declarator->declarator
10579 && id_declarator->declarator->kind == cdk_id)
10580 {
10581 sfk = id_declarator->declarator->u.id.sfk;
10582 if (sfk == sfk_destructor)
10583 flags = DTOR_FLAG;
10584 }
10585 break;
10586
10587 case cdk_id:
10588 {
10589 tree qualifying_scope = id_declarator->u.id.qualifying_scope;
10590 tree decl = id_declarator->u.id.unqualified_name;
10591 if (!decl)
10592 break;
10593 if (qualifying_scope)
10594 {
10595 if (check_for_bare_parameter_packs (qualifying_scope,
10596 id_declarator->id_loc))
10597 return error_mark_node;
10598 if (at_function_scope_p ())
10599 {
10600 /* [dcl.meaning]
10601
10602 A declarator-id shall not be qualified except
10603 for ...
10604
10605 None of the cases are permitted in block
10606 scope. */
10607 if (qualifying_scope == global_namespace)
10608 error ("invalid use of qualified-name %<::%D%>",
10609 decl);
10610 else if (TYPE_P (qualifying_scope))
10611 error ("invalid use of qualified-name %<%T::%D%>",
10612 qualifying_scope, decl);
10613 else
10614 error ("invalid use of qualified-name %<%D::%D%>",
10615 qualifying_scope, decl);
10616 return error_mark_node;
10617 }
10618 else if (TYPE_P (qualifying_scope))
10619 {
10620 ctype = qualifying_scope;
10621 if (!MAYBE_CLASS_TYPE_P (ctype))
10622 {
10623 error_at (id_declarator->id_loc,
10624 "%q#T is not a class or namespace", ctype);
10625 ctype = NULL_TREE;
10626 }
10627 else if (innermost_code != cdk_function
10628 && current_class_type
10629 && !uniquely_derived_from_p (ctype,
10630 current_class_type))
10631 {
10632 error_at (id_declarator->id_loc,
10633 "invalid use of qualified-name %<%T::%D%>",
10634 qualifying_scope, decl);
10635 return error_mark_node;
10636 }
10637 }
10638 else if (TREE_CODE (qualifying_scope) == NAMESPACE_DECL)
10639 in_namespace = qualifying_scope;
10640 }
10641 switch (TREE_CODE (decl))
10642 {
10643 case BIT_NOT_EXPR:
10644 {
10645 if (innermost_code != cdk_function)
10646 {
10647 error_at (EXPR_LOCATION (decl),
10648 "declaration of %qE as non-function", decl);
10649 return error_mark_node;
10650 }
10651 else if (!qualifying_scope
10652 && !(current_class_type && at_class_scope_p ()))
10653 {
10654 error_at (EXPR_LOCATION (decl),
10655 "declaration of %qE as non-member", decl);
10656 return error_mark_node;
10657 }
10658
10659 tree type = TREE_OPERAND (decl, 0);
10660 if (TYPE_P (type))
10661 type = constructor_name (type);
10662 name = identifier_to_locale (IDENTIFIER_POINTER (type));
10663 dname = decl;
10664 }
10665 break;
10666
10667 case TEMPLATE_ID_EXPR:
10668 {
10669 tree fns = TREE_OPERAND (decl, 0);
10670
10671 dname = fns;
10672 if (!identifier_p (dname))
10673 dname = OVL_NAME (dname);
10674 }
10675 /* Fall through. */
10676
10677 case IDENTIFIER_NODE:
10678 if (identifier_p (decl))
10679 dname = decl;
10680
10681 if (IDENTIFIER_KEYWORD_P (dname))
10682 {
10683 error ("declarator-id missing; using reserved word %qD",
10684 dname);
10685 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
10686 }
10687 else if (!IDENTIFIER_CONV_OP_P (dname))
10688 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
10689 else
10690 {
10691 gcc_assert (flags == NO_SPECIAL);
10692 flags = TYPENAME_FLAG;
10693 sfk = sfk_conversion;
10694 tree glob = get_global_binding (dname);
10695 if (glob && TREE_CODE (glob) == TYPE_DECL)
10696 name = identifier_to_locale (IDENTIFIER_POINTER (dname));
10697 else
10698 name = "<invalid operator>";
10699 }
10700 break;
10701
10702 default:
10703 gcc_unreachable ();
10704 }
10705 break;
10706 }
10707
10708 case cdk_array:
10709 case cdk_pointer:
10710 case cdk_reference:
10711 case cdk_ptrmem:
10712 break;
10713
10714 case cdk_decomp:
10715 name = "structured binding";
10716 break;
10717
10718 case cdk_error:
10719 return error_mark_node;
10720
10721 default:
10722 gcc_unreachable ();
10723 }
10724 if (id_declarator->kind == cdk_id)
10725 break;
10726 }
10727
10728 /* [dcl.fct.edf]
10729
10730 The declarator in a function-definition shall have the form
10731 D1 ( parameter-declaration-clause) ... */
10732 if (funcdef_flag && innermost_code != cdk_function)
10733 {
10734 error_at (id_loc, "function definition does not declare parameters");
10735 return error_mark_node;
10736 }
10737
10738 if (flags == TYPENAME_FLAG
10739 && innermost_code != cdk_function
10740 && ! (ctype && !declspecs->any_specifiers_p))
10741 {
10742 error_at (id_loc, "declaration of %qD as non-function", dname);
10743 return error_mark_node;
10744 }
10745
10746 if (dname && identifier_p (dname))
10747 {
10748 if (UDLIT_OPER_P (dname)
10749 && innermost_code != cdk_function)
10750 {
10751 error_at (id_loc, "declaration of %qD as non-function", dname);
10752 return error_mark_node;
10753 }
10754
10755 if (IDENTIFIER_ANY_OP_P (dname))
10756 {
10757 if (typedef_p)
10758 {
10759 error_at (id_loc, "declaration of %qD as %<typedef%>", dname);
10760 return error_mark_node;
10761 }
10762 else if (decl_context == PARM || decl_context == CATCHPARM)
10763 {
10764 error_at (id_loc, "declaration of %qD as parameter", dname);
10765 return error_mark_node;
10766 }
10767 }
10768 }
10769
10770 /* Anything declared one level down from the top level
10771 must be one of the parameters of a function
10772 (because the body is at least two levels down). */
10773
10774 /* This heuristic cannot be applied to C++ nodes! Fixed, however,
10775 by not allowing C++ class definitions to specify their parameters
10776 with xdecls (must be spec.d in the parmlist).
10777
10778 Since we now wait to push a class scope until we are sure that
10779 we are in a legitimate method context, we must set oldcname
10780 explicitly (since current_class_name is not yet alive).
10781
10782 We also want to avoid calling this a PARM if it is in a namespace. */
10783
10784 if (decl_context == NORMAL && !toplevel_bindings_p ())
10785 {
10786 cp_binding_level *b = current_binding_level;
10787 current_binding_level = b->level_chain;
10788 if (current_binding_level != 0 && toplevel_bindings_p ())
10789 decl_context = PARM;
10790 current_binding_level = b;
10791 }
10792
10793 if (name == NULL)
10794 name = decl_context == PARM ? "parameter" : "type name";
10795
10796 if (concept_p && typedef_p)
10797 {
10798 error_at (declspecs->locations[ds_concept],
10799 "%<concept%> cannot appear in a typedef declaration");
10800 return error_mark_node;
10801 }
10802
10803 if (constexpr_p && typedef_p)
10804 {
10805 error_at (declspecs->locations[ds_constexpr],
10806 "%<constexpr%> cannot appear in a typedef declaration");
10807 return error_mark_node;
10808 }
10809
10810 if (constinit_p && typedef_p)
10811 {
10812 error_at (declspecs->locations[ds_constinit],
10813 "%<constinit%> cannot appear in a typedef declaration");
10814 return error_mark_node;
10815 }
10816
10817 /* [dcl.spec]/2 "At most one of the constexpr, consteval, and constinit
10818 keywords shall appear in a decl-specifier-seq." */
10819 if (constinit_p && constexpr_p)
10820 {
10821 gcc_rich_location richloc (declspecs->locations[ds_constinit]);
10822 richloc.add_range (declspecs->locations[ds_constexpr]);
10823 error_at (&richloc,
10824 "can use at most one of the %<constinit%> and %<constexpr%> "
10825 "specifiers");
10826 return error_mark_node;
10827 }
10828
10829 /* If there were multiple types specified in the decl-specifier-seq,
10830 issue an error message. */
10831 if (declspecs->multiple_types_p)
10832 {
10833 error_at (typespec_loc,
10834 "two or more data types in declaration of %qs", name);
10835 return error_mark_node;
10836 }
10837
10838 if (declspecs->conflicting_specifiers_p)
10839 {
10840 error_at (min_location (declspecs->locations[ds_typedef],
10841 declspecs->locations[ds_storage_class]),
10842 "conflicting specifiers in declaration of %qs", name);
10843 return error_mark_node;
10844 }
10845
10846 /* Extract the basic type from the decl-specifier-seq. */
10847 type = declspecs->type;
10848 if (type == error_mark_node)
10849 {
10850 type = NULL_TREE;
10851 type_was_error_mark_node = true;
10852 }
10853 cp_warn_deprecated_use (type);
10854 if (type && TREE_CODE (type) == TYPE_DECL)
10855 {
10856 cp_warn_deprecated_use_scopes (CP_DECL_CONTEXT (type));
10857 typedef_decl = type;
10858 type = TREE_TYPE (typedef_decl);
10859 if (DECL_ARTIFICIAL (typedef_decl))
10860 cp_warn_deprecated_use (type);
10861 }
10862 /* No type at all: default to `int', and set DEFAULTED_INT
10863 because it was not a user-defined typedef. */
10864 if (type == NULL_TREE)
10865 {
10866 if (signed_p || unsigned_p || long_p || short_p)
10867 {
10868 /* These imply 'int'. */
10869 type = integer_type_node;
10870 defaulted_int = 1;
10871 }
10872 /* If we just have "complex", it is equivalent to "complex double". */
10873 else if (!longlong && !explicit_intN
10874 && decl_spec_seq_has_spec_p (declspecs, ds_complex))
10875 {
10876 type = double_type_node;
10877 pedwarn (declspecs->locations[ds_complex], OPT_Wpedantic,
10878 "ISO C++ does not support plain %<complex%> meaning "
10879 "%<double complex%>");
10880 }
10881 }
10882 /* Gather flags. */
10883 explicit_int = declspecs->explicit_int_p;
10884 explicit_char = declspecs->explicit_char_p;
10885
10886 #if 0
10887 /* See the code below that used this. */
10888 if (typedef_decl)
10889 decl_attr = DECL_ATTRIBUTES (typedef_decl);
10890 #endif
10891 typedef_type = type;
10892
10893 if (sfk == sfk_conversion || sfk == sfk_deduction_guide)
10894 ctor_return_type = TREE_TYPE (dname);
10895 else
10896 ctor_return_type = ctype;
10897
10898 if (sfk != sfk_none)
10899 {
10900 type = check_special_function_return_type (sfk, type,
10901 ctor_return_type,
10902 type_quals,
10903 declspecs->locations);
10904 type_quals = TYPE_UNQUALIFIED;
10905 }
10906 else if (type == NULL_TREE)
10907 {
10908 int is_main;
10909
10910 explicit_int = -1;
10911
10912 /* We handle `main' specially here, because 'main () { }' is so
10913 common. With no options, it is allowed. With -Wreturn-type,
10914 it is a warning. It is only an error with -pedantic-errors. */
10915 is_main = (funcdef_flag
10916 && dname && identifier_p (dname)
10917 && MAIN_NAME_P (dname)
10918 && ctype == NULL_TREE
10919 && in_namespace == NULL_TREE
10920 && current_namespace == global_namespace);
10921
10922 if (type_was_error_mark_node)
10923 /* We've already issued an error, don't complain more. */;
10924 else if (in_system_header_at (input_location) || flag_ms_extensions)
10925 /* Allow it, sigh. */;
10926 else if (! is_main)
10927 permerror (id_loc, "ISO C++ forbids declaration of %qs with no type",
10928 name);
10929 else if (pedantic)
10930 pedwarn (id_loc, OPT_Wpedantic,
10931 "ISO C++ forbids declaration of %qs with no type", name);
10932 else
10933 warning_at (id_loc, OPT_Wreturn_type,
10934 "ISO C++ forbids declaration of %qs with no type", name);
10935
10936 if (type_was_error_mark_node && template_parm_flag)
10937 /* FIXME we should be able to propagate the error_mark_node as is
10938 for other contexts too. */
10939 type = error_mark_node;
10940 else
10941 type = integer_type_node;
10942 }
10943
10944 ctype = NULL_TREE;
10945
10946 if (explicit_intN)
10947 {
10948 if (! int_n_enabled_p[declspecs->int_n_idx])
10949 {
10950 error_at (declspecs->locations[ds_type_spec],
10951 "%<__int%d%> is not supported by this target",
10952 int_n_data[declspecs->int_n_idx].bitsize);
10953 explicit_intN = false;
10954 }
10955 /* Don't pedwarn if the alternate "__intN__" form has been used instead
10956 of "__intN". */
10957 else if (!int_n_alt && pedantic && ! in_system_header_at (input_location))
10958 pedwarn (declspecs->locations[ds_type_spec], OPT_Wpedantic,
10959 "ISO C++ does not support %<__int%d%> for %qs",
10960 int_n_data[declspecs->int_n_idx].bitsize, name);
10961 }
10962
10963 /* Now process the modifiers that were specified
10964 and check for invalid combinations. */
10965
10966 /* Long double is a special combination. */
10967 if (long_p && !longlong && TYPE_MAIN_VARIANT (type) == double_type_node)
10968 {
10969 long_p = false;
10970 type = cp_build_qualified_type (long_double_type_node,
10971 cp_type_quals (type));
10972 }
10973
10974 /* Check all other uses of type modifiers. */
10975
10976 if (unsigned_p || signed_p || long_p || short_p)
10977 {
10978 location_t loc;
10979 const char *key;
10980 if (unsigned_p)
10981 {
10982 key = "unsigned";
10983 loc = declspecs->locations[ds_unsigned];
10984 }
10985 else if (signed_p)
10986 {
10987 key = "signed";
10988 loc = declspecs->locations[ds_signed];
10989 }
10990 else if (longlong)
10991 {
10992 key = "long long";
10993 loc = declspecs->locations[ds_long_long];
10994 }
10995 else if (long_p)
10996 {
10997 key = "long";
10998 loc = declspecs->locations[ds_long];
10999 }
11000 else /* if (short_p) */
11001 {
11002 key = "short";
11003 loc = declspecs->locations[ds_short];
11004 }
11005
11006 int ok = 0;
11007
11008 if (signed_p && unsigned_p)
11009 {
11010 gcc_rich_location richloc (declspecs->locations[ds_signed]);
11011 richloc.add_range (declspecs->locations[ds_unsigned]);
11012 error_at (&richloc,
11013 "%<signed%> and %<unsigned%> specified together");
11014 }
11015 else if (long_p && short_p)
11016 {
11017 gcc_rich_location richloc (declspecs->locations[ds_long]);
11018 richloc.add_range (declspecs->locations[ds_short]);
11019 error_at (&richloc, "%<long%> and %<short%> specified together");
11020 }
11021 else if (TREE_CODE (type) != INTEGER_TYPE
11022 || type == char8_type_node
11023 || type == char16_type_node
11024 || type == char32_type_node
11025 || ((long_p || short_p)
11026 && (explicit_char || explicit_intN)))
11027 error_at (loc, "%qs specified with %qT", key, type);
11028 else if (!explicit_int && !defaulted_int
11029 && !explicit_char && !explicit_intN)
11030 {
11031 if (typedef_decl)
11032 {
11033 pedwarn (loc, OPT_Wpedantic, "%qs specified with %qT",
11034 key, type);
11035 ok = !flag_pedantic_errors;
11036 }
11037 else if (declspecs->decltype_p)
11038 error_at (loc, "%qs specified with %<decltype%>", key);
11039 else
11040 error_at (loc, "%qs specified with %<typeof%>", key);
11041 }
11042 else
11043 ok = 1;
11044
11045 /* Discard the type modifiers if they are invalid. */
11046 if (! ok)
11047 {
11048 unsigned_p = false;
11049 signed_p = false;
11050 long_p = false;
11051 short_p = false;
11052 longlong = 0;
11053 }
11054 }
11055
11056 /* Decide whether an integer type is signed or not.
11057 Optionally treat bitfields as signed by default. */
11058 if (unsigned_p
11059 /* [class.bit]
11060
11061 It is implementation-defined whether a plain (neither
11062 explicitly signed or unsigned) char, short, int, or long
11063 bit-field is signed or unsigned.
11064
11065 Naturally, we extend this to long long as well. Note that
11066 this does not include wchar_t. */
11067 || (bitfield && !flag_signed_bitfields
11068 && !signed_p
11069 /* A typedef for plain `int' without `signed' can be
11070 controlled just like plain `int', but a typedef for
11071 `signed int' cannot be so controlled. */
11072 && !(typedef_decl
11073 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl))
11074 && TREE_CODE (type) == INTEGER_TYPE
11075 && !same_type_p (TYPE_MAIN_VARIANT (type), wchar_type_node)))
11076 {
11077 if (explicit_intN)
11078 type = int_n_trees[declspecs->int_n_idx].unsigned_type;
11079 else if (longlong)
11080 type = long_long_unsigned_type_node;
11081 else if (long_p)
11082 type = long_unsigned_type_node;
11083 else if (short_p)
11084 type = short_unsigned_type_node;
11085 else if (type == char_type_node)
11086 type = unsigned_char_type_node;
11087 else if (typedef_decl)
11088 type = unsigned_type_for (type);
11089 else
11090 type = unsigned_type_node;
11091 }
11092 else if (signed_p && type == char_type_node)
11093 type = signed_char_type_node;
11094 else if (explicit_intN)
11095 type = int_n_trees[declspecs->int_n_idx].signed_type;
11096 else if (longlong)
11097 type = long_long_integer_type_node;
11098 else if (long_p)
11099 type = long_integer_type_node;
11100 else if (short_p)
11101 type = short_integer_type_node;
11102
11103 if (decl_spec_seq_has_spec_p (declspecs, ds_complex))
11104 {
11105 if (TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
11106 error_at (declspecs->locations[ds_complex],
11107 "complex invalid for %qs", name);
11108 /* If a modifier is specified, the resulting complex is the complex
11109 form of TYPE. E.g, "complex short" is "complex short int". */
11110 else if (type == integer_type_node)
11111 type = complex_integer_type_node;
11112 else if (type == float_type_node)
11113 type = complex_float_type_node;
11114 else if (type == double_type_node)
11115 type = complex_double_type_node;
11116 else if (type == long_double_type_node)
11117 type = complex_long_double_type_node;
11118 else
11119 type = build_complex_type (type);
11120 }
11121
11122 /* If we're using the injected-class-name to form a compound type or a
11123 declaration, replace it with the underlying class so we don't get
11124 redundant typedefs in the debug output. But if we are returning the
11125 type unchanged, leave it alone so that it's available to
11126 maybe_get_template_decl_from_type_decl. */
11127 if (CLASS_TYPE_P (type)
11128 && DECL_SELF_REFERENCE_P (TYPE_NAME (type))
11129 && type == TREE_TYPE (TYPE_NAME (type))
11130 && (declarator || type_quals))
11131 type = DECL_ORIGINAL_TYPE (TYPE_NAME (type));
11132
11133 type_quals |= cp_type_quals (type);
11134 type = cp_build_qualified_type_real
11135 (type, type_quals, ((((typedef_decl && !DECL_ARTIFICIAL (typedef_decl))
11136 || declspecs->decltype_p)
11137 ? tf_ignore_bad_quals : 0) | tf_warning_or_error));
11138 /* We might have ignored or rejected some of the qualifiers. */
11139 type_quals = cp_type_quals (type);
11140
11141 if (cxx_dialect >= cxx17 && type && is_auto (type)
11142 && innermost_code != cdk_function
11143 && id_declarator && declarator != id_declarator)
11144 if (tree tmpl = CLASS_PLACEHOLDER_TEMPLATE (type))
11145 {
11146 error_at (typespec_loc, "template placeholder type %qT must be followed "
11147 "by a simple declarator-id", type);
11148 inform (DECL_SOURCE_LOCATION (tmpl), "%qD declared here", tmpl);
11149 type = error_mark_node;
11150 }
11151
11152 staticp = 0;
11153 inlinep = decl_spec_seq_has_spec_p (declspecs, ds_inline);
11154 virtualp = decl_spec_seq_has_spec_p (declspecs, ds_virtual);
11155 explicitp = decl_spec_seq_has_spec_p (declspecs, ds_explicit);
11156
11157 storage_class = declspecs->storage_class;
11158 if (storage_class == sc_static)
11159 staticp = 1 + (decl_context == FIELD);
11160
11161 if (virtualp)
11162 {
11163 if (staticp == 2)
11164 {
11165 gcc_rich_location richloc (declspecs->locations[ds_virtual]);
11166 richloc.add_range (declspecs->locations[ds_storage_class]);
11167 error_at (&richloc, "member %qD cannot be declared both %<virtual%> "
11168 "and %<static%>", dname);
11169 storage_class = sc_none;
11170 staticp = 0;
11171 }
11172 if (constexpr_p && cxx_dialect < cxx2a)
11173 {
11174 gcc_rich_location richloc (declspecs->locations[ds_virtual]);
11175 richloc.add_range (declspecs->locations[ds_constexpr]);
11176 pedwarn (&richloc, OPT_Wpedantic, "member %qD can be declared both "
11177 "%<virtual%> and %<constexpr%> only in %<-std=c++2a%> or "
11178 "%<-std=gnu++2a%>", dname);
11179 }
11180 }
11181 friendp = decl_spec_seq_has_spec_p (declspecs, ds_friend);
11182
11183 /* Issue errors about use of storage classes for parameters. */
11184 if (decl_context == PARM)
11185 {
11186 if (typedef_p)
11187 {
11188 error_at (declspecs->locations[ds_typedef],
11189 "typedef declaration invalid in parameter declaration");
11190 return error_mark_node;
11191 }
11192 else if (template_parm_flag && storage_class != sc_none)
11193 {
11194 error_at (min_location (declspecs->locations[ds_thread],
11195 declspecs->locations[ds_storage_class]),
11196 "storage class specified for template parameter %qs",
11197 name);
11198 return error_mark_node;
11199 }
11200 else if (storage_class == sc_static
11201 || storage_class == sc_extern
11202 || thread_p)
11203 {
11204 error_at (min_location (declspecs->locations[ds_thread],
11205 declspecs->locations[ds_storage_class]),
11206 "storage class specified for parameter %qs", name);
11207 return error_mark_node;
11208 }
11209
11210 /* Function parameters cannot be concept. */
11211 if (concept_p)
11212 error_at (declspecs->locations[ds_concept],
11213 "a parameter cannot be declared %<concept%>");
11214 /* Function parameters cannot be constexpr. If we saw one, moan
11215 and pretend it wasn't there. */
11216 else if (constexpr_p)
11217 {
11218 error_at (declspecs->locations[ds_constexpr],
11219 "a parameter cannot be declared %<constexpr%>");
11220 constexpr_p = 0;
11221 }
11222 else if (constinit_p)
11223 {
11224 error_at (declspecs->locations[ds_constinit],
11225 "a parameter cannot be declared %<constinit%>");
11226 constexpr_p = 0;
11227 }
11228 }
11229
11230 /* Give error if `virtual' is used outside of class declaration. */
11231 if (virtualp
11232 && (current_class_name == NULL_TREE || decl_context != FIELD))
11233 {
11234 error_at (declspecs->locations[ds_virtual],
11235 "%<virtual%> outside class declaration");
11236 virtualp = 0;
11237 }
11238
11239 if (innermost_code == cdk_decomp)
11240 {
11241 location_t loc = (declarator->kind == cdk_reference
11242 ? declarator->declarator->id_loc : declarator->id_loc);
11243 if (inlinep)
11244 error_at (declspecs->locations[ds_inline],
11245 "structured binding declaration cannot be %qs", "inline");
11246 if (typedef_p)
11247 error_at (declspecs->locations[ds_typedef],
11248 "structured binding declaration cannot be %qs", "typedef");
11249 if (constexpr_p)
11250 error_at (declspecs->locations[ds_constexpr], "structured "
11251 "binding declaration cannot be %qs", "constexpr");
11252 if (thread_p && cxx_dialect < cxx2a)
11253 pedwarn (declspecs->locations[ds_thread], 0,
11254 "structured binding declaration can be %qs only in "
11255 "%<-std=c++2a%> or %<-std=gnu++2a%>",
11256 declspecs->gnu_thread_keyword_p
11257 ? "__thread" : "thread_local");
11258 if (concept_p)
11259 error_at (declspecs->locations[ds_concept],
11260 "structured binding declaration cannot be %qs", "concept");
11261 /* [dcl.struct.bind] "A cv that includes volatile is deprecated." */
11262 if (type_quals & TYPE_QUAL_VOLATILE)
11263 warning_at (declspecs->locations[ds_volatile], OPT_Wvolatile,
11264 "%<volatile%>-qualified structured binding is deprecated");
11265 switch (storage_class)
11266 {
11267 case sc_none:
11268 break;
11269 case sc_register:
11270 error_at (loc, "structured binding declaration cannot be %qs",
11271 "register");
11272 break;
11273 case sc_static:
11274 if (cxx_dialect < cxx2a)
11275 pedwarn (loc, 0,
11276 "structured binding declaration can be %qs only in "
11277 "%<-std=c++2a%> or %<-std=gnu++2a%>", "static");
11278 break;
11279 case sc_extern:
11280 error_at (loc, "structured binding declaration cannot be %qs",
11281 "extern");
11282 break;
11283 case sc_mutable:
11284 error_at (loc, "structured binding declaration cannot be %qs",
11285 "mutable");
11286 break;
11287 case sc_auto:
11288 error_at (loc, "structured binding declaration cannot be "
11289 "C++98 %<auto%>");
11290 break;
11291 default:
11292 gcc_unreachable ();
11293 }
11294 if (TREE_CODE (type) != TEMPLATE_TYPE_PARM
11295 || TYPE_IDENTIFIER (type) != auto_identifier)
11296 {
11297 if (type != error_mark_node)
11298 {
11299 error_at (loc, "structured binding declaration cannot have "
11300 "type %qT", type);
11301 inform (loc,
11302 "type must be cv-qualified %<auto%> or reference to "
11303 "cv-qualified %<auto%>");
11304 }
11305 type = build_qualified_type (make_auto (), type_quals);
11306 declspecs->type = type;
11307 }
11308 inlinep = 0;
11309 typedef_p = 0;
11310 constexpr_p = 0;
11311 concept_p = 0;
11312 if (storage_class != sc_static)
11313 {
11314 storage_class = sc_none;
11315 declspecs->storage_class = sc_none;
11316 }
11317 }
11318
11319 /* Static anonymous unions are dealt with here. */
11320 if (staticp && decl_context == TYPENAME
11321 && declspecs->type
11322 && ANON_AGGR_TYPE_P (declspecs->type))
11323 decl_context = FIELD;
11324
11325 /* Warn about storage classes that are invalid for certain
11326 kinds of declarations (parameters, typenames, etc.). */
11327 if (thread_p
11328 && ((storage_class
11329 && storage_class != sc_extern
11330 && storage_class != sc_static)
11331 || typedef_p))
11332 {
11333 location_t loc
11334 = min_location (declspecs->locations[ds_thread],
11335 declspecs->locations[ds_storage_class]);
11336 error_at (loc, "multiple storage classes in declaration of %qs", name);
11337 thread_p = false;
11338 }
11339 if (decl_context != NORMAL
11340 && ((storage_class != sc_none
11341 && storage_class != sc_mutable)
11342 || thread_p))
11343 {
11344 if ((decl_context == PARM || decl_context == CATCHPARM)
11345 && (storage_class == sc_register
11346 || storage_class == sc_auto))
11347 ;
11348 else if (typedef_p)
11349 ;
11350 else if (decl_context == FIELD
11351 /* C++ allows static class elements. */
11352 && storage_class == sc_static)
11353 /* C++ also allows inlines and signed and unsigned elements,
11354 but in those cases we don't come in here. */
11355 ;
11356 else
11357 {
11358 location_t loc
11359 = min_location (declspecs->locations[ds_thread],
11360 declspecs->locations[ds_storage_class]);
11361 if (decl_context == FIELD)
11362 error_at (loc, "storage class specified for %qs", name);
11363 else if (decl_context == PARM || decl_context == CATCHPARM)
11364 error_at (loc, "storage class specified for parameter %qs", name);
11365 else
11366 error_at (loc, "storage class specified for typename");
11367 if (storage_class == sc_register
11368 || storage_class == sc_auto
11369 || storage_class == sc_extern
11370 || thread_p)
11371 storage_class = sc_none;
11372 }
11373 }
11374 else if (storage_class == sc_extern && funcdef_flag
11375 && ! toplevel_bindings_p ())
11376 error ("nested function %qs declared %<extern%>", name);
11377 else if (toplevel_bindings_p ())
11378 {
11379 if (storage_class == sc_auto)
11380 error_at (declspecs->locations[ds_storage_class],
11381 "top-level declaration of %qs specifies %<auto%>", name);
11382 }
11383 else if (thread_p
11384 && storage_class != sc_extern
11385 && storage_class != sc_static)
11386 {
11387 if (declspecs->gnu_thread_keyword_p)
11388 pedwarn (declspecs->locations[ds_thread],
11389 0, "function-scope %qs implicitly auto and "
11390 "declared %<__thread%>", name);
11391
11392 /* When thread_local is applied to a variable of block scope the
11393 storage-class-specifier static is implied if it does not appear
11394 explicitly. */
11395 storage_class = declspecs->storage_class = sc_static;
11396 staticp = 1;
11397 }
11398
11399 if (storage_class && friendp)
11400 {
11401 error_at (min_location (declspecs->locations[ds_thread],
11402 declspecs->locations[ds_storage_class]),
11403 "storage class specifiers invalid in friend function "
11404 "declarations");
11405 storage_class = sc_none;
11406 staticp = 0;
11407 }
11408
11409 if (!id_declarator)
11410 unqualified_id = NULL_TREE;
11411 else
11412 {
11413 unqualified_id = id_declarator->u.id.unqualified_name;
11414 switch (TREE_CODE (unqualified_id))
11415 {
11416 case BIT_NOT_EXPR:
11417 unqualified_id = TREE_OPERAND (unqualified_id, 0);
11418 if (TYPE_P (unqualified_id))
11419 unqualified_id = constructor_name (unqualified_id);
11420 break;
11421
11422 case IDENTIFIER_NODE:
11423 case TEMPLATE_ID_EXPR:
11424 break;
11425
11426 default:
11427 gcc_unreachable ();
11428 }
11429 }
11430
11431 if (declspecs->std_attributes)
11432 {
11433 location_t attr_loc = declspecs->locations[ds_std_attribute];
11434 if (warning_at (attr_loc, OPT_Wattributes, "attribute ignored"))
11435 inform (attr_loc, "an attribute that appertains to a type-specifier "
11436 "is ignored");
11437 }
11438
11439 /* Determine the type of the entity declared by recurring on the
11440 declarator. */
11441 for (; declarator; declarator = declarator->declarator)
11442 {
11443 const cp_declarator *inner_declarator;
11444 tree attrs;
11445
11446 if (type == error_mark_node)
11447 return error_mark_node;
11448
11449 attrs = declarator->attributes;
11450 if (attrs)
11451 {
11452 int attr_flags;
11453
11454 attr_flags = 0;
11455 if (declarator == NULL || declarator->kind == cdk_id)
11456 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
11457 if (declarator->kind == cdk_function)
11458 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
11459 if (declarator->kind == cdk_array)
11460 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
11461 returned_attrs = decl_attributes (&type,
11462 chainon (returned_attrs, attrs),
11463 attr_flags);
11464 }
11465
11466 inner_declarator = declarator->declarator;
11467
11468 /* We don't want to warn in parameter context because we don't
11469 yet know if the parse will succeed, and this might turn out
11470 to be a constructor call. */
11471 if (decl_context != PARM
11472 && decl_context != TYPENAME
11473 && !typedef_p
11474 && declarator->parenthesized != UNKNOWN_LOCATION
11475 /* If the type is class-like and the inner name used a
11476 global namespace qualifier, we need the parens.
11477 Unfortunately all we can tell is whether a qualified name
11478 was used or not. */
11479 && !(inner_declarator
11480 && inner_declarator->kind == cdk_id
11481 && inner_declarator->u.id.qualifying_scope
11482 && (MAYBE_CLASS_TYPE_P (type)
11483 || TREE_CODE (type) == ENUMERAL_TYPE)))
11484 warning_at (declarator->parenthesized, OPT_Wparentheses,
11485 "unnecessary parentheses in declaration of %qs", name);
11486 if (declarator->kind == cdk_id || declarator->kind == cdk_decomp)
11487 break;
11488
11489 switch (declarator->kind)
11490 {
11491 case cdk_array:
11492 type = create_array_type_for_decl (dname, type,
11493 declarator->u.array.bounds,
11494 declarator->id_loc);
11495 if (!valid_array_size_p (dname
11496 ? declarator->id_loc : input_location,
11497 type, dname))
11498 type = error_mark_node;
11499
11500 if (declarator->std_attributes)
11501 /* [dcl.array]/1:
11502
11503 The optional attribute-specifier-seq appertains to the
11504 array. */
11505 returned_attrs = chainon (returned_attrs,
11506 declarator->std_attributes);
11507 break;
11508
11509 case cdk_function:
11510 {
11511 tree arg_types;
11512 int funcdecl_p;
11513
11514 /* Declaring a function type. */
11515
11516 {
11517 iloc_sentinel ils (declspecs->locations[ds_type_spec]);
11518 abstract_virtuals_error (ACU_RETURN, type);
11519 }
11520
11521 /* Pick up type qualifiers which should be applied to `this'. */
11522 memfn_quals = declarator->u.function.qualifiers;
11523 /* Pick up virt-specifiers. */
11524 virt_specifiers = declarator->u.function.virt_specifiers;
11525 /* And ref-qualifier, too */
11526 rqual = declarator->u.function.ref_qualifier;
11527 /* And tx-qualifier. */
11528 tree tx_qual = declarator->u.function.tx_qualifier;
11529 /* Pick up the exception specifications. */
11530 raises = declarator->u.function.exception_specification;
11531 /* If the exception-specification is ill-formed, let's pretend
11532 there wasn't one. */
11533 if (raises == error_mark_node)
11534 raises = NULL_TREE;
11535
11536 if (reqs)
11537 error_at (location_of (reqs), "requires-clause on return type");
11538 reqs = declarator->u.function.requires_clause;
11539
11540 /* Say it's a definition only for the CALL_EXPR
11541 closest to the identifier. */
11542 funcdecl_p = inner_declarator && inner_declarator->kind == cdk_id;
11543
11544 /* Handle a late-specified return type. */
11545 tree late_return_type = declarator->u.function.late_return_type;
11546 if (funcdecl_p
11547 /* This is the case e.g. for
11548 using T = auto () -> int. */
11549 || inner_declarator == NULL)
11550 {
11551 if (tree auto_node = type_uses_auto (type))
11552 {
11553 if (!late_return_type)
11554 {
11555 if (current_class_type
11556 && LAMBDA_TYPE_P (current_class_type))
11557 /* OK for C++11 lambdas. */;
11558 else if (cxx_dialect < cxx14)
11559 {
11560 error_at (typespec_loc, "%qs function uses "
11561 "%<auto%> type specifier without "
11562 "trailing return type", name);
11563 inform (typespec_loc,
11564 "deduced return type only available "
11565 "with %<-std=c++14%> or %<-std=gnu++14%>");
11566 }
11567 else if (virtualp)
11568 {
11569 error_at (typespec_loc, "virtual function "
11570 "cannot have deduced return type");
11571 virtualp = false;
11572 }
11573 }
11574 else if (!is_auto (type) && sfk != sfk_conversion)
11575 {
11576 error_at (typespec_loc, "%qs function with trailing "
11577 "return type has %qT as its type rather "
11578 "than plain %<auto%>", name, type);
11579 return error_mark_node;
11580 }
11581 else if (is_auto (type) && AUTO_IS_DECLTYPE (type))
11582 {
11583 if (funcdecl_p)
11584 error_at (typespec_loc,
11585 "%qs function with trailing return type "
11586 "has %<decltype(auto)%> as its type "
11587 "rather than plain %<auto%>", name);
11588 else
11589 error_at (typespec_loc,
11590 "invalid use of %<decltype(auto)%>");
11591 return error_mark_node;
11592 }
11593 tree tmpl = CLASS_PLACEHOLDER_TEMPLATE (auto_node);
11594 if (!tmpl)
11595 if (tree late_auto = type_uses_auto (late_return_type))
11596 tmpl = CLASS_PLACEHOLDER_TEMPLATE (late_auto);
11597 if (tmpl && funcdecl_p)
11598 {
11599 if (!dguide_name_p (unqualified_id))
11600 {
11601 error_at (declarator->id_loc, "deduced class "
11602 "type %qD in function return type",
11603 DECL_NAME (tmpl));
11604 inform (DECL_SOURCE_LOCATION (tmpl),
11605 "%qD declared here", tmpl);
11606 return error_mark_node;
11607 }
11608 else if (!late_return_type)
11609 {
11610 error_at (declarator->id_loc, "deduction guide "
11611 "for %qT must have trailing return "
11612 "type", TREE_TYPE (tmpl));
11613 inform (DECL_SOURCE_LOCATION (tmpl),
11614 "%qD declared here", tmpl);
11615 return error_mark_node;
11616 }
11617 else if (CLASS_TYPE_P (late_return_type)
11618 && CLASSTYPE_TEMPLATE_INFO (late_return_type)
11619 && (CLASSTYPE_TI_TEMPLATE (late_return_type)
11620 == tmpl))
11621 /* OK */;
11622 else
11623 error ("trailing return type %qT of deduction guide "
11624 "is not a specialization of %qT",
11625 late_return_type, TREE_TYPE (tmpl));
11626 }
11627 }
11628 else if (late_return_type
11629 && sfk != sfk_conversion)
11630 {
11631 if (late_return_type == error_mark_node)
11632 return error_mark_node;
11633 if (cxx_dialect < cxx11)
11634 /* Not using maybe_warn_cpp0x because this should
11635 always be an error. */
11636 error_at (typespec_loc,
11637 "trailing return type only available "
11638 "with %<-std=c++11%> or %<-std=gnu++11%>");
11639 else
11640 error_at (typespec_loc, "%qs function with trailing "
11641 "return type not declared with %<auto%> "
11642 "type specifier", name);
11643 return error_mark_node;
11644 }
11645 }
11646 type = splice_late_return_type (type, late_return_type);
11647 if (type == error_mark_node)
11648 return error_mark_node;
11649
11650 if (late_return_type)
11651 {
11652 late_return_type_p = true;
11653 type_quals = cp_type_quals (type);
11654 }
11655
11656 if (type_quals != TYPE_UNQUALIFIED)
11657 {
11658 if (SCALAR_TYPE_P (type) || VOID_TYPE_P (type))
11659 warning_at (typespec_loc, OPT_Wignored_qualifiers, "type "
11660 "qualifiers ignored on function return type");
11661 /* [dcl.fct] "A volatile-qualified return type is
11662 deprecated." */
11663 if (type_quals & TYPE_QUAL_VOLATILE)
11664 warning_at (typespec_loc, OPT_Wvolatile,
11665 "%<volatile%>-qualified return type is "
11666 "deprecated");
11667
11668 /* We now know that the TYPE_QUALS don't apply to the
11669 decl, but to its return type. */
11670 type_quals = TYPE_UNQUALIFIED;
11671 }
11672
11673 /* Error about some types functions can't return. */
11674
11675 if (TREE_CODE (type) == FUNCTION_TYPE)
11676 {
11677 error_at (typespec_loc, "%qs declared as function returning "
11678 "a function", name);
11679 return error_mark_node;
11680 }
11681 if (TREE_CODE (type) == ARRAY_TYPE)
11682 {
11683 error_at (typespec_loc, "%qs declared as function returning "
11684 "an array", name);
11685 return error_mark_node;
11686 }
11687 if (constinit_p)
11688 {
11689 error_at (declspecs->locations[ds_constinit],
11690 "%<constinit%> on function return type is not "
11691 "allowed");
11692 return error_mark_node;
11693 }
11694 /* Only plain decltype(auto) is allowed. */
11695 if (tree a = type_uses_auto (type))
11696 {
11697 if (AUTO_IS_DECLTYPE (a) && a != type)
11698 {
11699 error_at (typespec_loc, "%qT as type rather than "
11700 "plain %<decltype(auto)%>", type);
11701 return error_mark_node;
11702 }
11703 }
11704
11705 if (ctype == NULL_TREE
11706 && decl_context == FIELD
11707 && funcdecl_p
11708 && friendp == 0)
11709 ctype = current_class_type;
11710
11711 if (ctype && (sfk == sfk_constructor
11712 || sfk == sfk_destructor))
11713 {
11714 /* We are within a class's scope. If our declarator name
11715 is the same as the class name, and we are defining
11716 a function, then it is a constructor/destructor, and
11717 therefore returns a void type. */
11718
11719 /* ISO C++ 12.4/2. A destructor may not be declared
11720 const or volatile. A destructor may not be static.
11721 A destructor may not be declared with ref-qualifier.
11722
11723 ISO C++ 12.1. A constructor may not be declared
11724 const or volatile. A constructor may not be
11725 virtual. A constructor may not be static.
11726 A constructor may not be declared with ref-qualifier. */
11727 if (staticp == 2)
11728 error_at (declspecs->locations[ds_storage_class],
11729 (flags == DTOR_FLAG)
11730 ? G_("destructor cannot be static member "
11731 "function")
11732 : G_("constructor cannot be static member "
11733 "function"));
11734 if (memfn_quals)
11735 {
11736 error ((flags == DTOR_FLAG)
11737 ? G_("destructors may not be cv-qualified")
11738 : G_("constructors may not be cv-qualified"));
11739 memfn_quals = TYPE_UNQUALIFIED;
11740 }
11741
11742 if (rqual)
11743 {
11744 maybe_warn_cpp0x (CPP0X_REF_QUALIFIER);
11745 error ((flags == DTOR_FLAG)
11746 ? G_("destructors may not be ref-qualified")
11747 : G_("constructors may not be ref-qualified"));
11748 rqual = REF_QUAL_NONE;
11749 }
11750
11751 if (decl_context == FIELD
11752 && !member_function_or_else (ctype,
11753 current_class_type,
11754 flags))
11755 return error_mark_node;
11756
11757 if (flags != DTOR_FLAG)
11758 {
11759 /* It's a constructor. */
11760 if (explicitp == 1)
11761 explicitp = 2;
11762 if (virtualp)
11763 {
11764 permerror (declspecs->locations[ds_virtual],
11765 "constructors cannot be declared %<virtual%>");
11766 virtualp = 0;
11767 }
11768 if (decl_context == FIELD
11769 && sfk != sfk_constructor)
11770 return error_mark_node;
11771 }
11772 if (decl_context == FIELD)
11773 staticp = 0;
11774 }
11775 else if (friendp)
11776 {
11777 if (virtualp)
11778 {
11779 /* Cannot be both friend and virtual. */
11780 gcc_rich_location richloc (declspecs->locations[ds_virtual]);
11781 richloc.add_range (declspecs->locations[ds_friend]);
11782 error_at (&richloc, "virtual functions cannot be friends");
11783 friendp = 0;
11784 }
11785 if (decl_context == NORMAL)
11786 error_at (declarator->id_loc,
11787 "friend declaration not in class definition");
11788 if (current_function_decl && funcdef_flag)
11789 {
11790 error_at (declarator->id_loc,
11791 "cannot define friend function %qs in a local "
11792 "class definition", name);
11793 friendp = 0;
11794 }
11795 /* [class.friend]/6: A function can be defined in a friend
11796 declaration if the function name is unqualified. */
11797 if (funcdef_flag && in_namespace)
11798 {
11799 if (in_namespace == global_namespace)
11800 error_at (declarator->id_loc,
11801 "friend function definition %qs cannot have "
11802 "a name qualified with %<::%>", name);
11803 else
11804 error_at (declarator->id_loc,
11805 "friend function definition %qs cannot have "
11806 "a name qualified with %<%D::%>", name,
11807 in_namespace);
11808 }
11809 }
11810 else if (ctype && sfk == sfk_conversion)
11811 {
11812 if (explicitp == 1)
11813 {
11814 maybe_warn_cpp0x (CPP0X_EXPLICIT_CONVERSION);
11815 explicitp = 2;
11816 }
11817 if (late_return_type_p)
11818 error ("a conversion function cannot have a trailing return type");
11819 }
11820 else if (sfk == sfk_deduction_guide)
11821 {
11822 if (explicitp == 1)
11823 explicitp = 2;
11824 }
11825
11826 tree pushed_scope = NULL_TREE;
11827 if (funcdecl_p
11828 && decl_context != FIELD
11829 && inner_declarator->u.id.qualifying_scope
11830 && CLASS_TYPE_P (inner_declarator->u.id.qualifying_scope))
11831 pushed_scope
11832 = push_scope (inner_declarator->u.id.qualifying_scope);
11833
11834 arg_types = grokparms (declarator->u.function.parameters, &parms);
11835
11836 if (pushed_scope)
11837 pop_scope (pushed_scope);
11838
11839 if (inner_declarator
11840 && inner_declarator->kind == cdk_id
11841 && inner_declarator->u.id.sfk == sfk_destructor
11842 && arg_types != void_list_node)
11843 {
11844 error_at (declarator->id_loc,
11845 "destructors may not have parameters");
11846 arg_types = void_list_node;
11847 parms = NULL_TREE;
11848 }
11849
11850 type = build_function_type (type, arg_types);
11851
11852 tree attrs = declarator->std_attributes;
11853 if (tx_qual)
11854 {
11855 tree att = build_tree_list (tx_qual, NULL_TREE);
11856 /* transaction_safe applies to the type, but
11857 transaction_safe_dynamic applies to the function. */
11858 if (is_attribute_p ("transaction_safe", tx_qual))
11859 attrs = chainon (attrs, att);
11860 else
11861 returned_attrs = chainon (returned_attrs, att);
11862 }
11863 if (attrs)
11864 /* [dcl.fct]/2:
11865
11866 The optional attribute-specifier-seq appertains to
11867 the function type. */
11868 decl_attributes (&type, attrs, 0);
11869
11870 if (raises)
11871 type = build_exception_variant (type, raises);
11872 }
11873 break;
11874
11875 case cdk_pointer:
11876 case cdk_reference:
11877 case cdk_ptrmem:
11878 /* Filter out pointers-to-references and references-to-references.
11879 We can get these if a TYPE_DECL is used. */
11880
11881 if (TYPE_REF_P (type))
11882 {
11883 if (declarator->kind != cdk_reference)
11884 {
11885 error ("cannot declare pointer to %q#T", type);
11886 type = TREE_TYPE (type);
11887 }
11888
11889 /* In C++0x, we allow reference to reference declarations
11890 that occur indirectly through typedefs [7.1.3/8 dcl.typedef]
11891 and template type arguments [14.3.1/4 temp.arg.type]. The
11892 check for direct reference to reference declarations, which
11893 are still forbidden, occurs below. Reasoning behind the change
11894 can be found in DR106, DR540, and the rvalue reference
11895 proposals. */
11896 else if (cxx_dialect == cxx98)
11897 {
11898 error ("cannot declare reference to %q#T", type);
11899 type = TREE_TYPE (type);
11900 }
11901 }
11902 else if (VOID_TYPE_P (type))
11903 {
11904 if (declarator->kind == cdk_reference)
11905 error ("cannot declare reference to %q#T", type);
11906 else if (declarator->kind == cdk_ptrmem)
11907 error ("cannot declare pointer to %q#T member", type);
11908 }
11909
11910 /* We now know that the TYPE_QUALS don't apply to the decl,
11911 but to the target of the pointer. */
11912 type_quals = TYPE_UNQUALIFIED;
11913
11914 /* This code used to handle METHOD_TYPE, but I don't think it's
11915 possible to get it here anymore. */
11916 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
11917 if (declarator->kind == cdk_ptrmem
11918 && TREE_CODE (type) == FUNCTION_TYPE)
11919 {
11920 memfn_quals |= type_memfn_quals (type);
11921 type = build_memfn_type (type,
11922 declarator->u.pointer.class_type,
11923 memfn_quals,
11924 rqual);
11925 if (type == error_mark_node)
11926 return error_mark_node;
11927
11928 rqual = REF_QUAL_NONE;
11929 memfn_quals = TYPE_UNQUALIFIED;
11930 }
11931
11932 if (TREE_CODE (type) == FUNCTION_TYPE
11933 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
11934 || type_memfn_rqual (type) != REF_QUAL_NONE))
11935 error (declarator->kind == cdk_reference
11936 ? G_("cannot declare reference to qualified function type %qT")
11937 : G_("cannot declare pointer to qualified function type %qT"),
11938 type);
11939
11940 /* When the pointed-to type involves components of variable size,
11941 care must be taken to ensure that the size evaluation code is
11942 emitted early enough to dominate all the possible later uses
11943 and late enough for the variables on which it depends to have
11944 been assigned.
11945
11946 This is expected to happen automatically when the pointed-to
11947 type has a name/declaration of it's own, but special attention
11948 is required if the type is anonymous.
11949
11950 We handle the NORMAL and FIELD contexts here by inserting a
11951 dummy statement that just evaluates the size at a safe point
11952 and ensures it is not deferred until e.g. within a deeper
11953 conditional context (c++/43555).
11954
11955 We expect nothing to be needed here for PARM or TYPENAME.
11956 Evaluating the size at this point for TYPENAME would
11957 actually be incorrect, as we might be in the middle of an
11958 expression with side effects on the pointed-to type size
11959 "arguments" prior to the pointer declaration point and the
11960 size evaluation could end up prior to the side effects. */
11961
11962 if (!TYPE_NAME (type)
11963 && (decl_context == NORMAL || decl_context == FIELD)
11964 && at_function_scope_p ()
11965 && variably_modified_type_p (type, NULL_TREE))
11966 {
11967 TYPE_NAME (type) = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
11968 NULL_TREE, type);
11969 add_decl_expr (TYPE_NAME (type));
11970 }
11971
11972 if (declarator->kind == cdk_reference)
11973 {
11974 /* In C++0x, the type we are creating a reference to might be
11975 a typedef which is itself a reference type. In that case,
11976 we follow the reference collapsing rules in
11977 [7.1.3/8 dcl.typedef] to create the final reference type:
11978
11979 "If a typedef TD names a type that is a reference to a type
11980 T, an attempt to create the type 'lvalue reference to cv TD'
11981 creates the type 'lvalue reference to T,' while an attempt
11982 to create the type "rvalue reference to cv TD' creates the
11983 type TD."
11984 */
11985 if (VOID_TYPE_P (type))
11986 /* We already gave an error. */;
11987 else if (TYPE_REF_P (type))
11988 {
11989 if (declarator->u.reference.rvalue_ref)
11990 /* Leave type alone. */;
11991 else
11992 type = cp_build_reference_type (TREE_TYPE (type), false);
11993 }
11994 else
11995 type = cp_build_reference_type
11996 (type, declarator->u.reference.rvalue_ref);
11997
11998 /* In C++0x, we need this check for direct reference to
11999 reference declarations, which are forbidden by
12000 [8.3.2/5 dcl.ref]. Reference to reference declarations
12001 are only allowed indirectly through typedefs and template
12002 type arguments. Example:
12003
12004 void foo(int & &); // invalid ref-to-ref decl
12005
12006 typedef int & int_ref;
12007 void foo(int_ref &); // valid ref-to-ref decl
12008 */
12009 if (inner_declarator && inner_declarator->kind == cdk_reference)
12010 error ("cannot declare reference to %q#T, which is not "
12011 "a typedef or a template type argument", type);
12012 }
12013 else if (TREE_CODE (type) == METHOD_TYPE)
12014 type = build_ptrmemfunc_type (build_pointer_type (type));
12015 else if (declarator->kind == cdk_ptrmem)
12016 {
12017 gcc_assert (TREE_CODE (declarator->u.pointer.class_type)
12018 != NAMESPACE_DECL);
12019 if (declarator->u.pointer.class_type == error_mark_node)
12020 /* We will already have complained. */
12021 type = error_mark_node;
12022 else
12023 type = build_ptrmem_type (declarator->u.pointer.class_type,
12024 type);
12025 }
12026 else
12027 type = build_pointer_type (type);
12028
12029 /* Process a list of type modifier keywords (such as
12030 const or volatile) that were given inside the `*' or `&'. */
12031
12032 if (declarator->u.pointer.qualifiers)
12033 {
12034 type
12035 = cp_build_qualified_type (type,
12036 declarator->u.pointer.qualifiers);
12037 type_quals = cp_type_quals (type);
12038 }
12039
12040 /* Apply C++11 attributes to the pointer, and not to the
12041 type pointed to. This is unlike what is done for GNU
12042 attributes above. It is to comply with [dcl.ptr]/1:
12043
12044 [the optional attribute-specifier-seq (7.6.1) appertains
12045 to the pointer and not to the object pointed to]. */
12046 if (declarator->std_attributes)
12047 decl_attributes (&type, declarator->std_attributes,
12048 0);
12049
12050 ctype = NULL_TREE;
12051 break;
12052
12053 case cdk_error:
12054 break;
12055
12056 default:
12057 gcc_unreachable ();
12058 }
12059 }
12060
12061 id_loc = declarator ? declarator->id_loc : input_location;
12062
12063 /* A `constexpr' specifier used in an object declaration declares
12064 the object as `const'. */
12065 if (constexpr_p && innermost_code != cdk_function)
12066 {
12067 /* DR1688 says that a `constexpr' specifier in combination with
12068 `volatile' is valid. */
12069
12070 if (!TYPE_REF_P (type))
12071 {
12072 type_quals |= TYPE_QUAL_CONST;
12073 type = cp_build_qualified_type (type, type_quals);
12074 }
12075 }
12076
12077 if (unqualified_id && TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR
12078 && !FUNC_OR_METHOD_TYPE_P (type)
12079 && !variable_template_p (TREE_OPERAND (unqualified_id, 0)))
12080 {
12081 error ("template-id %qD used as a declarator",
12082 unqualified_id);
12083 unqualified_id = dname;
12084 }
12085
12086 /* If TYPE is a FUNCTION_TYPE, but the function name was explicitly
12087 qualified with a class-name, turn it into a METHOD_TYPE, unless
12088 we know that the function is static. We take advantage of this
12089 opportunity to do other processing that pertains to entities
12090 explicitly declared to be class members. Note that if DECLARATOR
12091 is non-NULL, we know it is a cdk_id declarator; otherwise, we
12092 would not have exited the loop above. */
12093 if (declarator
12094 && declarator->kind == cdk_id
12095 && declarator->u.id.qualifying_scope
12096 && MAYBE_CLASS_TYPE_P (declarator->u.id.qualifying_scope))
12097 {
12098 ctype = declarator->u.id.qualifying_scope;
12099 ctype = TYPE_MAIN_VARIANT (ctype);
12100 template_count = num_template_headers_for_class (ctype);
12101
12102 if (ctype == current_class_type)
12103 {
12104 if (friendp)
12105 {
12106 permerror (declspecs->locations[ds_friend],
12107 "member functions are implicitly "
12108 "friends of their class");
12109 friendp = 0;
12110 }
12111 else
12112 permerror (id_loc, "extra qualification %<%T::%> on member %qs",
12113 ctype, name);
12114 }
12115 else if (/* If the qualifying type is already complete, then we
12116 can skip the following checks. */
12117 !COMPLETE_TYPE_P (ctype)
12118 && (/* If the function is being defined, then
12119 qualifying type must certainly be complete. */
12120 funcdef_flag
12121 /* A friend declaration of "T::f" is OK, even if
12122 "T" is a template parameter. But, if this
12123 function is not a friend, the qualifying type
12124 must be a class. */
12125 || (!friendp && !CLASS_TYPE_P (ctype))
12126 /* For a declaration, the type need not be
12127 complete, if either it is dependent (since there
12128 is no meaningful definition of complete in that
12129 case) or the qualifying class is currently being
12130 defined. */
12131 || !(dependent_type_p (ctype)
12132 || currently_open_class (ctype)))
12133 /* Check that the qualifying type is complete. */
12134 && !complete_type_or_else (ctype, NULL_TREE))
12135 return error_mark_node;
12136 else if (TREE_CODE (type) == FUNCTION_TYPE)
12137 {
12138 if (current_class_type
12139 && (!friendp || funcdef_flag || initialized))
12140 {
12141 error_at (id_loc, funcdef_flag || initialized
12142 ? G_("cannot define member function %<%T::%s%> "
12143 "within %qT")
12144 : G_("cannot declare member function %<%T::%s%> "
12145 "within %qT"),
12146 ctype, name, current_class_type);
12147 return error_mark_node;
12148 }
12149 }
12150 else if (typedef_p && current_class_type)
12151 {
12152 error_at (id_loc, "cannot declare member %<%T::%s%> within %qT",
12153 ctype, name, current_class_type);
12154 return error_mark_node;
12155 }
12156 }
12157
12158 if (ctype == NULL_TREE && decl_context == FIELD && friendp == 0)
12159 ctype = current_class_type;
12160
12161 /* Now TYPE has the actual type. */
12162
12163 if (returned_attrs)
12164 {
12165 if (attrlist)
12166 *attrlist = chainon (returned_attrs, *attrlist);
12167 else
12168 attrlist = &returned_attrs;
12169 }
12170
12171 if (declarator
12172 && declarator->kind == cdk_id
12173 && declarator->std_attributes
12174 && attrlist != NULL)
12175 {
12176 /* [dcl.meaning]/1: The optional attribute-specifier-seq following
12177 a declarator-id appertains to the entity that is declared. */
12178 if (declarator->std_attributes != error_mark_node)
12179 *attrlist = chainon (*attrlist, declarator->std_attributes);
12180 else
12181 /* We should have already diagnosed the issue (c++/78344). */
12182 gcc_assert (seen_error ());
12183 }
12184
12185 /* Handle parameter packs. */
12186 if (parameter_pack_p)
12187 {
12188 if (decl_context == PARM)
12189 /* Turn the type into a pack expansion.*/
12190 type = make_pack_expansion (type);
12191 else
12192 error ("non-parameter %qs cannot be a parameter pack", name);
12193 }
12194
12195 if ((decl_context == FIELD || decl_context == PARM)
12196 && !processing_template_decl
12197 && variably_modified_type_p (type, NULL_TREE))
12198 {
12199 if (decl_context == FIELD)
12200 error_at (id_loc,
12201 "data member may not have variably modified type %qT", type);
12202 else
12203 error_at (id_loc,
12204 "parameter may not have variably modified type %qT", type);
12205 type = error_mark_node;
12206 }
12207
12208 if (explicitp == 1 || (explicitp && friendp))
12209 {
12210 /* [dcl.fct.spec] (C++11) The explicit specifier shall be used only
12211 in the declaration of a constructor or conversion function within
12212 a class definition. */
12213 if (!current_class_type)
12214 error_at (declspecs->locations[ds_explicit],
12215 "%<explicit%> outside class declaration");
12216 else if (friendp)
12217 error_at (declspecs->locations[ds_explicit],
12218 "%<explicit%> in friend declaration");
12219 else
12220 error_at (declspecs->locations[ds_explicit],
12221 "only declarations of constructors and conversion operators "
12222 "can be %<explicit%>");
12223 explicitp = 0;
12224 }
12225
12226 if (storage_class == sc_mutable)
12227 {
12228 location_t sloc = declspecs->locations[ds_storage_class];
12229 if (decl_context != FIELD || friendp)
12230 {
12231 error_at (sloc, "non-member %qs cannot be declared %<mutable%>",
12232 name);
12233 storage_class = sc_none;
12234 }
12235 else if (decl_context == TYPENAME || typedef_p)
12236 {
12237 error_at (sloc,
12238 "non-object member %qs cannot be declared %<mutable%>",
12239 name);
12240 storage_class = sc_none;
12241 }
12242 else if (FUNC_OR_METHOD_TYPE_P (type))
12243 {
12244 error_at (sloc, "function %qs cannot be declared %<mutable%>",
12245 name);
12246 storage_class = sc_none;
12247 }
12248 else if (staticp)
12249 {
12250 error_at (sloc, "%<static%> %qs cannot be declared %<mutable%>",
12251 name);
12252 storage_class = sc_none;
12253 }
12254 else if (type_quals & TYPE_QUAL_CONST)
12255 {
12256 error_at (sloc, "%<const%> %qs cannot be declared %<mutable%>",
12257 name);
12258 storage_class = sc_none;
12259 }
12260 else if (TYPE_REF_P (type))
12261 {
12262 permerror (sloc, "reference %qs cannot be declared %<mutable%>",
12263 name);
12264 storage_class = sc_none;
12265 }
12266 }
12267
12268 /* If this is declaring a typedef name, return a TYPE_DECL. */
12269 if (typedef_p && decl_context != TYPENAME)
12270 {
12271 bool alias_p = decl_spec_seq_has_spec_p (declspecs, ds_alias);
12272 tree decl;
12273
12274 if (funcdef_flag)
12275 {
12276 if (decl_context == NORMAL)
12277 error_at (id_loc,
12278 "typedef may not be a function definition");
12279 else
12280 error_at (id_loc,
12281 "typedef may not be a member function definition");
12282 return error_mark_node;
12283 }
12284
12285 /* This declaration:
12286
12287 typedef void f(int) const;
12288
12289 declares a function type which is not a member of any
12290 particular class, but which is cv-qualified; for
12291 example "f S::*" declares a pointer to a const-qualified
12292 member function of S. We record the cv-qualification in the
12293 function type. */
12294 if ((rqual || memfn_quals) && TREE_CODE (type) == FUNCTION_TYPE)
12295 {
12296 type = apply_memfn_quals (type, memfn_quals, rqual);
12297
12298 /* We have now dealt with these qualifiers. */
12299 memfn_quals = TYPE_UNQUALIFIED;
12300 rqual = REF_QUAL_NONE;
12301 }
12302
12303 if (type_uses_auto (type))
12304 {
12305 if (alias_p)
12306 error_at (declspecs->locations[ds_type_spec],
12307 "%<auto%> not allowed in alias declaration");
12308 else
12309 error_at (declspecs->locations[ds_type_spec],
12310 "typedef declared %<auto%>");
12311 type = error_mark_node;
12312 }
12313
12314 if (reqs)
12315 error_at (location_of (reqs), "requires-clause on typedef");
12316
12317 if (id_declarator && declarator->u.id.qualifying_scope)
12318 {
12319 error_at (id_loc, "typedef name may not be a nested-name-specifier");
12320 type = error_mark_node;
12321 }
12322
12323 if (decl_context == FIELD)
12324 decl = build_lang_decl_loc (id_loc, TYPE_DECL, unqualified_id, type);
12325 else
12326 decl = build_decl (id_loc, TYPE_DECL, unqualified_id, type);
12327
12328 if (decl_context != FIELD)
12329 {
12330 if (!current_function_decl)
12331 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
12332 else if (DECL_MAYBE_IN_CHARGE_CDTOR_P (current_function_decl))
12333 /* The TYPE_DECL is "abstract" because there will be
12334 clones of this constructor/destructor, and there will
12335 be copies of this TYPE_DECL generated in those
12336 clones. The decloning optimization (for space) may
12337 revert this subsequently if it determines that
12338 the clones should share a common implementation. */
12339 DECL_ABSTRACT_P (decl) = true;
12340 }
12341 else if (current_class_type
12342 && constructor_name_p (unqualified_id, current_class_type))
12343 permerror (id_loc, "ISO C++ forbids nested type %qD with same name "
12344 "as enclosing class",
12345 unqualified_id);
12346
12347 /* If the user declares "typedef struct {...} foo" then the
12348 struct will have an anonymous name. Fill that name in now.
12349 Nothing can refer to it, so nothing needs know about the name
12350 change. */
12351 if (type != error_mark_node
12352 && unqualified_id
12353 && TYPE_NAME (type)
12354 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
12355 && TYPE_UNNAMED_P (type)
12356 && declspecs->type_definition_p
12357 && attributes_naming_typedef_ok (*attrlist)
12358 && cp_type_quals (type) == TYPE_UNQUALIFIED)
12359 name_unnamed_type (type, decl);
12360
12361 if (signed_p
12362 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
12363 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
12364
12365 bad_specifiers (decl, BSP_TYPE, virtualp,
12366 memfn_quals != TYPE_UNQUALIFIED,
12367 inlinep, friendp, raises != NULL_TREE,
12368 declspecs->locations);
12369
12370 if (alias_p)
12371 /* Acknowledge that this was written:
12372 `using analias = atype;'. */
12373 TYPE_DECL_ALIAS_P (decl) = 1;
12374
12375 return decl;
12376 }
12377
12378 /* Detect the case of an array type of unspecified size
12379 which came, as such, direct from a typedef name.
12380 We must copy the type, so that the array's domain can be
12381 individually set by the object's initializer. */
12382
12383 if (type && typedef_type
12384 && TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type)
12385 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type))
12386 type = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
12387
12388 /* Detect where we're using a typedef of function type to declare a
12389 function. PARMS will not be set, so we must create it now. */
12390
12391 if (type == typedef_type && TREE_CODE (type) == FUNCTION_TYPE)
12392 {
12393 tree decls = NULL_TREE;
12394 tree args;
12395
12396 for (args = TYPE_ARG_TYPES (type);
12397 args && args != void_list_node;
12398 args = TREE_CHAIN (args))
12399 {
12400 tree decl = cp_build_parm_decl (NULL_TREE, NULL_TREE,
12401 TREE_VALUE (args));
12402
12403 DECL_CHAIN (decl) = decls;
12404 decls = decl;
12405 }
12406
12407 parms = nreverse (decls);
12408
12409 if (decl_context != TYPENAME)
12410 {
12411 /* The qualifiers on the function type become the qualifiers on
12412 the non-static member function. */
12413 memfn_quals |= type_memfn_quals (type);
12414 rqual = type_memfn_rqual (type);
12415 type_quals = TYPE_UNQUALIFIED;
12416 }
12417 }
12418
12419 /* If this is a type name (such as, in a cast or sizeof),
12420 compute the type and return it now. */
12421
12422 if (decl_context == TYPENAME)
12423 {
12424 /* Note that here we don't care about type_quals. */
12425
12426 /* Special case: "friend class foo" looks like a TYPENAME context. */
12427 if (friendp)
12428 {
12429 if (inlinep)
12430 {
12431 error ("%<inline%> specified for friend class declaration");
12432 inlinep = 0;
12433 }
12434
12435 if (!current_aggr)
12436 {
12437 /* Don't allow friend declaration without a class-key. */
12438 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
12439 permerror (input_location, "template parameters cannot be friends");
12440 else if (TREE_CODE (type) == TYPENAME_TYPE)
12441 permerror (input_location, "friend declaration requires class-key, "
12442 "i.e. %<friend class %T::%D%>",
12443 TYPE_CONTEXT (type), TYPENAME_TYPE_FULLNAME (type));
12444 else
12445 permerror (input_location, "friend declaration requires class-key, "
12446 "i.e. %<friend %#T%>",
12447 type);
12448 }
12449
12450 /* Only try to do this stuff if we didn't already give up. */
12451 if (type != integer_type_node)
12452 {
12453 /* A friendly class? */
12454 if (current_class_type)
12455 make_friend_class (current_class_type, TYPE_MAIN_VARIANT (type),
12456 /*complain=*/true);
12457 else
12458 error ("trying to make class %qT a friend of global scope",
12459 type);
12460
12461 type = void_type_node;
12462 }
12463 }
12464 else if (memfn_quals || rqual)
12465 {
12466 if (ctype == NULL_TREE
12467 && TREE_CODE (type) == METHOD_TYPE)
12468 ctype = TYPE_METHOD_BASETYPE (type);
12469
12470 if (ctype)
12471 type = build_memfn_type (type, ctype, memfn_quals, rqual);
12472 /* Core issue #547: need to allow this in template type args.
12473 Allow it in general in C++11 for alias-declarations. */
12474 else if ((template_type_arg || cxx_dialect >= cxx11)
12475 && TREE_CODE (type) == FUNCTION_TYPE)
12476 type = apply_memfn_quals (type, memfn_quals, rqual);
12477 else
12478 error ("invalid qualifiers on non-member function type");
12479 }
12480
12481 if (reqs)
12482 error_at (location_of (reqs), "requires-clause on type-id");
12483
12484 return type;
12485 }
12486 else if (unqualified_id == NULL_TREE && decl_context != PARM
12487 && decl_context != CATCHPARM
12488 && TREE_CODE (type) != UNION_TYPE
12489 && ! bitfield
12490 && innermost_code != cdk_decomp)
12491 {
12492 error ("abstract declarator %qT used as declaration", type);
12493 return error_mark_node;
12494 }
12495
12496 if (!FUNC_OR_METHOD_TYPE_P (type))
12497 {
12498 /* Only functions may be declared using an operator-function-id. */
12499 if (dname && IDENTIFIER_ANY_OP_P (dname))
12500 {
12501 error_at (id_loc, "declaration of %qD as non-function", dname);
12502 return error_mark_node;
12503 }
12504
12505 if (reqs)
12506 error_at (location_of (reqs),
12507 "requires-clause on declaration of non-function type %qT",
12508 type);
12509 }
12510
12511 /* We don't check parameter types here because we can emit a better
12512 error message later. */
12513 if (decl_context != PARM)
12514 {
12515 type = check_var_type (unqualified_id, type, id_loc);
12516 if (type == error_mark_node)
12517 return error_mark_node;
12518 }
12519
12520 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
12521 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
12522
12523 if (decl_context == PARM || decl_context == CATCHPARM)
12524 {
12525 if (ctype || in_namespace)
12526 error ("cannot use %<::%> in parameter declaration");
12527
12528 if (type_uses_auto (type)
12529 && !(cxx_dialect >= cxx17 && template_parm_flag))
12530 {
12531 if (cxx_dialect >= cxx14)
12532 error_at (typespec_loc,
12533 "%<auto%> parameter not permitted in this context");
12534 else
12535 error_at (typespec_loc, "parameter declared %<auto%>");
12536 type = error_mark_node;
12537 }
12538
12539 /* A parameter declared as an array of T is really a pointer to T.
12540 One declared as a function is really a pointer to a function.
12541 One declared as a member is really a pointer to member. */
12542
12543 if (TREE_CODE (type) == ARRAY_TYPE)
12544 {
12545 /* Transfer const-ness of array into that of type pointed to. */
12546 type = build_pointer_type (TREE_TYPE (type));
12547 type_quals = TYPE_UNQUALIFIED;
12548 array_parameter_p = true;
12549 }
12550 else if (TREE_CODE (type) == FUNCTION_TYPE)
12551 type = build_pointer_type (type);
12552 }
12553
12554 if (ctype && TREE_CODE (type) == FUNCTION_TYPE && staticp < 2
12555 && !(unqualified_id
12556 && identifier_p (unqualified_id)
12557 && IDENTIFIER_NEWDEL_OP_P (unqualified_id)))
12558 {
12559 cp_cv_quals real_quals = memfn_quals;
12560 if (cxx_dialect < cxx14 && constexpr_p
12561 && sfk != sfk_constructor && sfk != sfk_destructor)
12562 real_quals |= TYPE_QUAL_CONST;
12563 type = build_memfn_type (type, ctype, real_quals, rqual);
12564 }
12565
12566 {
12567 tree decl = NULL_TREE;
12568
12569 if (decl_context == PARM)
12570 {
12571 decl = cp_build_parm_decl (NULL_TREE, unqualified_id, type);
12572 DECL_ARRAY_PARAMETER_P (decl) = array_parameter_p;
12573
12574 bad_specifiers (decl, BSP_PARM, virtualp,
12575 memfn_quals != TYPE_UNQUALIFIED,
12576 inlinep, friendp, raises != NULL_TREE,
12577 declspecs->locations);
12578 }
12579 else if (decl_context == FIELD)
12580 {
12581 if (!staticp && !friendp && TREE_CODE (type) != METHOD_TYPE)
12582 if (tree auto_node = type_uses_auto (type))
12583 {
12584 location_t tloc = declspecs->locations[ds_type_spec];
12585 if (CLASS_PLACEHOLDER_TEMPLATE (auto_node))
12586 error_at (tloc, "invalid use of template-name %qE without an "
12587 "argument list",
12588 CLASS_PLACEHOLDER_TEMPLATE (auto_node));
12589 else
12590 error_at (tloc, "non-static data member declared with "
12591 "placeholder %qT", auto_node);
12592 type = error_mark_node;
12593 }
12594
12595 /* The C99 flexible array extension. */
12596 if (!staticp && TREE_CODE (type) == ARRAY_TYPE
12597 && TYPE_DOMAIN (type) == NULL_TREE)
12598 {
12599 if (ctype
12600 && (TREE_CODE (ctype) == UNION_TYPE
12601 || TREE_CODE (ctype) == QUAL_UNION_TYPE))
12602 {
12603 error_at (id_loc, "flexible array member in union");
12604 type = error_mark_node;
12605 }
12606 else
12607 {
12608 /* Array is a flexible member. */
12609 if (in_system_header_at (input_location))
12610 /* Do not warn on flexible array members in system
12611 headers because glibc uses them. */;
12612 else if (name)
12613 pedwarn (id_loc, OPT_Wpedantic,
12614 "ISO C++ forbids flexible array member %qs", name);
12615 else
12616 pedwarn (input_location, OPT_Wpedantic,
12617 "ISO C++ forbids flexible array members");
12618
12619 /* Flexible array member has a null domain. */
12620 type = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
12621 }
12622 }
12623
12624 if (type == error_mark_node)
12625 {
12626 /* Happens when declaring arrays of sizes which
12627 are error_mark_node, for example. */
12628 decl = NULL_TREE;
12629 }
12630 else if (in_namespace && !friendp)
12631 {
12632 /* Something like struct S { int N::j; }; */
12633 error_at (id_loc, "invalid use of %<::%>");
12634 return error_mark_node;
12635 }
12636 else if (FUNC_OR_METHOD_TYPE_P (type) && unqualified_id)
12637 {
12638 int publicp = 0;
12639 tree function_context;
12640
12641 if (friendp == 0)
12642 {
12643 /* This should never happen in pure C++ (the check
12644 could be an assert). It could happen in
12645 Objective-C++ if someone writes invalid code that
12646 uses a function declaration for an instance
12647 variable or property (instance variables and
12648 properties are parsed as FIELD_DECLs, but they are
12649 part of an Objective-C class, not a C++ class).
12650 That code is invalid and is caught by this
12651 check. */
12652 if (!ctype)
12653 {
12654 error ("declaration of function %qD in invalid context",
12655 unqualified_id);
12656 return error_mark_node;
12657 }
12658
12659 /* ``A union may [ ... ] not [ have ] virtual functions.''
12660 ARM 9.5 */
12661 if (virtualp && TREE_CODE (ctype) == UNION_TYPE)
12662 {
12663 error_at (declspecs->locations[ds_virtual],
12664 "function %qD declared %<virtual%> inside a union",
12665 unqualified_id);
12666 return error_mark_node;
12667 }
12668
12669 if (virtualp
12670 && identifier_p (unqualified_id)
12671 && IDENTIFIER_NEWDEL_OP_P (unqualified_id))
12672 {
12673 error_at (declspecs->locations[ds_virtual],
12674 "%qD cannot be declared %<virtual%>, since it "
12675 "is always static", unqualified_id);
12676 virtualp = 0;
12677 }
12678 }
12679
12680 /* Check that the name used for a destructor makes sense. */
12681 if (sfk == sfk_destructor)
12682 {
12683 tree uqname = id_declarator->u.id.unqualified_name;
12684
12685 if (!ctype)
12686 {
12687 gcc_assert (friendp);
12688 error_at (id_loc, "expected qualified name in friend "
12689 "declaration for destructor %qD", uqname);
12690 return error_mark_node;
12691 }
12692
12693 if (!check_dtor_name (ctype, TREE_OPERAND (uqname, 0)))
12694 {
12695 error_at (id_loc, "declaration of %qD as member of %qT",
12696 uqname, ctype);
12697 return error_mark_node;
12698 }
12699 if (concept_p)
12700 {
12701 error_at (declspecs->locations[ds_concept],
12702 "a destructor cannot be %<concept%>");
12703 return error_mark_node;
12704 }
12705 if (constexpr_p)
12706 {
12707 error_at (declspecs->locations[ds_constexpr],
12708 "a destructor cannot be %<constexpr%>");
12709 return error_mark_node;
12710 }
12711 }
12712 else if (sfk == sfk_constructor && friendp && !ctype)
12713 {
12714 error ("expected qualified name in friend declaration "
12715 "for constructor %qD",
12716 id_declarator->u.id.unqualified_name);
12717 return error_mark_node;
12718 }
12719 if (sfk == sfk_constructor)
12720 if (concept_p)
12721 {
12722 error_at (declspecs->locations[ds_concept],
12723 "a constructor cannot be %<concept%>");
12724 return error_mark_node;
12725 }
12726 if (concept_p)
12727 {
12728 error_at (declspecs->locations[ds_concept],
12729 "a concept cannot be a member function");
12730 concept_p = false;
12731 }
12732
12733 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
12734 {
12735 tree tmpl = TREE_OPERAND (unqualified_id, 0);
12736 if (variable_template_p (tmpl))
12737 {
12738 error ("specialization of variable template %qD "
12739 "declared as function", tmpl);
12740 inform (DECL_SOURCE_LOCATION (tmpl),
12741 "variable template declared here");
12742 return error_mark_node;
12743 }
12744 }
12745
12746 /* Tell grokfndecl if it needs to set TREE_PUBLIC on the node. */
12747 function_context = (ctype != NULL_TREE) ?
12748 decl_function_context (TYPE_MAIN_DECL (ctype)) : NULL_TREE;
12749 publicp = (! friendp || ! staticp)
12750 && function_context == NULL_TREE;
12751
12752 decl = grokfndecl (ctype, type,
12753 TREE_CODE (unqualified_id) != TEMPLATE_ID_EXPR
12754 ? unqualified_id : dname,
12755 parms,
12756 unqualified_id,
12757 declspecs,
12758 reqs,
12759 virtualp, flags, memfn_quals, rqual, raises,
12760 friendp ? -1 : 0, friendp, publicp,
12761 inlinep | (2 * constexpr_p) | (4 * concept_p),
12762 initialized == SD_DELETED, sfk,
12763 funcdef_flag, late_return_type_p,
12764 template_count, in_namespace,
12765 attrlist, id_loc);
12766 decl = set_virt_specifiers (decl, virt_specifiers);
12767 if (decl == NULL_TREE)
12768 return error_mark_node;
12769 #if 0
12770 /* This clobbers the attrs stored in `decl' from `attrlist'. */
12771 /* The decl and setting of decl_attr is also turned off. */
12772 decl = build_decl_attribute_variant (decl, decl_attr);
12773 #endif
12774
12775 /* [class.conv.ctor]
12776
12777 A constructor declared without the function-specifier
12778 explicit that can be called with a single parameter
12779 specifies a conversion from the type of its first
12780 parameter to the type of its class. Such a constructor
12781 is called a converting constructor. */
12782 if (explicitp == 2)
12783 DECL_NONCONVERTING_P (decl) = 1;
12784
12785 if (declspecs->explicit_specifier)
12786 store_explicit_specifier (decl, declspecs->explicit_specifier);
12787 }
12788 else if (!staticp && !dependent_type_p (type)
12789 && !COMPLETE_TYPE_P (complete_type (type))
12790 && (!complete_or_array_type_p (type)
12791 || initialized == 0))
12792 {
12793 if (TREE_CODE (type) != ARRAY_TYPE
12794 || !COMPLETE_TYPE_P (TREE_TYPE (type)))
12795 {
12796 if (unqualified_id)
12797 {
12798 error_at (id_loc, "field %qD has incomplete type %qT",
12799 unqualified_id, type);
12800 cxx_incomplete_type_inform (strip_array_types (type));
12801 }
12802 else
12803 error ("name %qT has incomplete type", type);
12804
12805 type = error_mark_node;
12806 decl = NULL_TREE;
12807 }
12808 }
12809 else
12810 {
12811 if (friendp)
12812 {
12813 if (unqualified_id)
12814 error_at (id_loc,
12815 "%qE is neither function nor member function; "
12816 "cannot be declared friend", unqualified_id);
12817 else
12818 error ("unnamed field is neither function nor member "
12819 "function; cannot be declared friend");
12820 return error_mark_node;
12821 }
12822 decl = NULL_TREE;
12823 }
12824
12825 if (friendp)
12826 {
12827 /* Friends are treated specially. */
12828 if (ctype == current_class_type)
12829 ; /* We already issued a permerror. */
12830 else if (decl && DECL_NAME (decl))
12831 {
12832 if (template_class_depth (current_class_type) == 0)
12833 {
12834 decl = check_explicit_specialization
12835 (unqualified_id, decl, template_count,
12836 2 * funcdef_flag + 4);
12837 if (decl == error_mark_node)
12838 return error_mark_node;
12839 }
12840
12841 decl = do_friend (ctype, unqualified_id, decl,
12842 *attrlist, flags,
12843 funcdef_flag);
12844 return decl;
12845 }
12846 else
12847 return error_mark_node;
12848 }
12849
12850 /* Structure field. It may not be a function, except for C++. */
12851
12852 if (decl == NULL_TREE)
12853 {
12854 if (staticp)
12855 {
12856 /* C++ allows static class members. All other work
12857 for this is done by grokfield. */
12858 decl = build_lang_decl_loc (id_loc, VAR_DECL,
12859 unqualified_id, type);
12860 set_linkage_for_static_data_member (decl);
12861 if (concept_p)
12862 error_at (declspecs->locations[ds_concept],
12863 "static data member %qE declared %<concept%>",
12864 unqualified_id);
12865 else if (constexpr_p && !initialized)
12866 {
12867 error_at (DECL_SOURCE_LOCATION (decl),
12868 "%<constexpr%> static data member %qD must "
12869 "have an initializer", decl);
12870 constexpr_p = false;
12871 }
12872
12873 if (inlinep)
12874 mark_inline_variable (decl, declspecs->locations[ds_inline]);
12875
12876 if (!DECL_VAR_DECLARED_INLINE_P (decl)
12877 && !(cxx_dialect >= cxx17 && constexpr_p))
12878 /* Even if there is an in-class initialization, DECL
12879 is considered undefined until an out-of-class
12880 definition is provided, unless this is an inline
12881 variable. */
12882 DECL_EXTERNAL (decl) = 1;
12883
12884 if (thread_p)
12885 {
12886 CP_DECL_THREAD_LOCAL_P (decl) = true;
12887 if (!processing_template_decl)
12888 set_decl_tls_model (decl, decl_default_tls_model (decl));
12889 if (declspecs->gnu_thread_keyword_p)
12890 SET_DECL_GNU_TLS_P (decl);
12891 }
12892 }
12893 else
12894 {
12895 if (concept_p)
12896 error_at (declspecs->locations[ds_concept],
12897 "non-static data member %qE declared %<concept%>",
12898 unqualified_id);
12899 else if (constexpr_p)
12900 {
12901 error_at (declspecs->locations[ds_constexpr],
12902 "non-static data member %qE declared "
12903 "%<constexpr%>", unqualified_id);
12904 constexpr_p = false;
12905 }
12906 else if (constinit_p)
12907 {
12908 error_at (declspecs->locations[ds_constinit],
12909 "non-static data member %qE declared "
12910 "%<constinit%>", unqualified_id);
12911 constinit_p = false;
12912 }
12913 decl = build_decl (id_loc, FIELD_DECL, unqualified_id, type);
12914 DECL_NONADDRESSABLE_P (decl) = bitfield;
12915 if (bitfield && !unqualified_id)
12916 {
12917 TREE_NO_WARNING (decl) = 1;
12918 DECL_PADDING_P (decl) = 1;
12919 }
12920
12921 if (storage_class == sc_mutable)
12922 {
12923 DECL_MUTABLE_P (decl) = 1;
12924 storage_class = sc_none;
12925 }
12926
12927 if (initialized)
12928 {
12929 /* An attempt is being made to initialize a non-static
12930 member. This is new in C++11. */
12931 maybe_warn_cpp0x (CPP0X_NSDMI);
12932
12933 /* If this has been parsed with static storage class, but
12934 errors forced staticp to be cleared, ensure NSDMI is
12935 not present. */
12936 if (declspecs->storage_class == sc_static)
12937 DECL_INITIAL (decl) = error_mark_node;
12938 }
12939 }
12940
12941 bad_specifiers (decl, BSP_FIELD, virtualp,
12942 memfn_quals != TYPE_UNQUALIFIED,
12943 staticp ? false : inlinep, friendp,
12944 raises != NULL_TREE,
12945 declspecs->locations);
12946 }
12947 }
12948 else if (FUNC_OR_METHOD_TYPE_P (type))
12949 {
12950 tree original_name;
12951 int publicp = 0;
12952
12953 if (!unqualified_id)
12954 return error_mark_node;
12955
12956 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
12957 original_name = dname;
12958 else
12959 original_name = unqualified_id;
12960 // FIXME:gcc_assert (original_name == dname);
12961
12962 if (storage_class == sc_auto)
12963 error_at (declspecs->locations[ds_storage_class],
12964 "storage class %<auto%> invalid for function %qs", name);
12965 else if (storage_class == sc_register)
12966 error_at (declspecs->locations[ds_storage_class],
12967 "storage class %<register%> invalid for function %qs",
12968 name);
12969 else if (thread_p)
12970 {
12971 if (declspecs->gnu_thread_keyword_p)
12972 error_at (declspecs->locations[ds_thread],
12973 "storage class %<__thread%> invalid for function %qs",
12974 name);
12975 else
12976 error_at (declspecs->locations[ds_thread],
12977 "storage class %<thread_local%> invalid for "
12978 "function %qs", name);
12979 }
12980
12981 if (virt_specifiers)
12982 error ("virt-specifiers in %qs not allowed outside a class "
12983 "definition", name);
12984 /* Function declaration not at top level.
12985 Storage classes other than `extern' are not allowed
12986 and `extern' makes no difference. */
12987 if (! toplevel_bindings_p ()
12988 && (storage_class == sc_static
12989 || decl_spec_seq_has_spec_p (declspecs, ds_inline))
12990 && pedantic)
12991 {
12992 if (storage_class == sc_static)
12993 pedwarn (declspecs->locations[ds_storage_class], OPT_Wpedantic,
12994 "%<static%> specifier invalid for function %qs "
12995 "declared out of global scope", name);
12996 else
12997 pedwarn (declspecs->locations[ds_inline], OPT_Wpedantic,
12998 "%<inline%> specifier invalid for function %qs "
12999 "declared out of global scope", name);
13000 }
13001
13002 if (ctype == NULL_TREE)
13003 {
13004 if (virtualp)
13005 {
13006 error ("virtual non-class function %qs", name);
13007 virtualp = 0;
13008 }
13009 else if (sfk == sfk_constructor
13010 || sfk == sfk_destructor)
13011 {
13012 error (funcdef_flag
13013 ? G_("%qs defined in a non-class scope")
13014 : G_("%qs declared in a non-class scope"), name);
13015 sfk = sfk_none;
13016 }
13017 }
13018
13019 /* Record whether the function is public. */
13020 publicp = (ctype != NULL_TREE
13021 || storage_class != sc_static);
13022
13023 decl = grokfndecl (ctype, type, original_name, parms, unqualified_id,
13024 declspecs,
13025 reqs, virtualp, flags, memfn_quals, rqual, raises,
13026 1, friendp,
13027 publicp,
13028 inlinep | (2 * constexpr_p) | (4 * concept_p),
13029 initialized == SD_DELETED,
13030 sfk,
13031 funcdef_flag,
13032 late_return_type_p,
13033 template_count, in_namespace, attrlist,
13034 id_loc);
13035 if (decl == NULL_TREE)
13036 return error_mark_node;
13037
13038 if (explicitp == 2)
13039 DECL_NONCONVERTING_P (decl) = 1;
13040 if (staticp == 1)
13041 {
13042 int invalid_static = 0;
13043
13044 /* Don't allow a static member function in a class, and forbid
13045 declaring main to be static. */
13046 if (TREE_CODE (type) == METHOD_TYPE)
13047 {
13048 permerror (input_location, "cannot declare member function %qD to have "
13049 "static linkage", decl);
13050 invalid_static = 1;
13051 }
13052 else if (current_function_decl)
13053 {
13054 /* 7.1.1: There can be no static function declarations within a
13055 block. */
13056 error_at (declspecs->locations[ds_storage_class],
13057 "cannot declare static function inside another function");
13058 invalid_static = 1;
13059 }
13060
13061 if (invalid_static)
13062 {
13063 staticp = 0;
13064 storage_class = sc_none;
13065 }
13066 }
13067 }
13068 else
13069 {
13070 /* It's a variable. */
13071
13072 /* An uninitialized decl with `extern' is a reference. */
13073 decl = grokvardecl (type, dname, unqualified_id,
13074 declspecs,
13075 initialized,
13076 type_quals,
13077 inlinep,
13078 concept_p,
13079 template_count,
13080 ctype ? ctype : in_namespace,
13081 id_loc);
13082 if (decl == NULL_TREE)
13083 return error_mark_node;
13084
13085 bad_specifiers (decl, BSP_VAR, virtualp,
13086 memfn_quals != TYPE_UNQUALIFIED,
13087 inlinep, friendp, raises != NULL_TREE,
13088 declspecs->locations);
13089
13090 if (ctype)
13091 {
13092 DECL_CONTEXT (decl) = ctype;
13093 if (staticp == 1)
13094 {
13095 permerror (declspecs->locations[ds_storage_class],
13096 "%<static%> may not be used when defining "
13097 "(as opposed to declaring) a static data member");
13098 staticp = 0;
13099 storage_class = sc_none;
13100 }
13101 if (storage_class == sc_register && TREE_STATIC (decl))
13102 {
13103 error ("static member %qD declared %<register%>", decl);
13104 storage_class = sc_none;
13105 }
13106 if (storage_class == sc_extern && pedantic)
13107 {
13108 pedwarn (input_location, OPT_Wpedantic,
13109 "cannot explicitly declare member %q#D to have "
13110 "extern linkage", decl);
13111 storage_class = sc_none;
13112 }
13113 }
13114 else if (constexpr_p && DECL_EXTERNAL (decl))
13115 {
13116 error_at (DECL_SOURCE_LOCATION (decl),
13117 "declaration of %<constexpr%> variable %qD "
13118 "is not a definition", decl);
13119 constexpr_p = false;
13120 }
13121
13122 if (inlinep)
13123 mark_inline_variable (decl, declspecs->locations[ds_inline]);
13124 if (innermost_code == cdk_decomp)
13125 {
13126 gcc_assert (declarator && declarator->kind == cdk_decomp);
13127 DECL_SOURCE_LOCATION (decl) = id_loc;
13128 DECL_ARTIFICIAL (decl) = 1;
13129 fit_decomposition_lang_decl (decl, NULL_TREE);
13130 }
13131 }
13132
13133 if (VAR_P (decl) && !initialized)
13134 if (tree auto_node = type_uses_auto (type))
13135 if (!CLASS_PLACEHOLDER_TEMPLATE (auto_node))
13136 {
13137 location_t loc = declspecs->locations[ds_type_spec];
13138 error_at (loc, "declaration of %q#D has no initializer", decl);
13139 TREE_TYPE (decl) = error_mark_node;
13140 }
13141
13142 if (storage_class == sc_extern && initialized && !funcdef_flag)
13143 {
13144 if (toplevel_bindings_p ())
13145 {
13146 /* It's common practice (and completely valid) to have a const
13147 be initialized and declared extern. */
13148 if (!(type_quals & TYPE_QUAL_CONST))
13149 warning_at (DECL_SOURCE_LOCATION (decl), 0,
13150 "%qs initialized and declared %<extern%>", name);
13151 }
13152 else
13153 {
13154 error_at (DECL_SOURCE_LOCATION (decl),
13155 "%qs has both %<extern%> and initializer", name);
13156 return error_mark_node;
13157 }
13158 }
13159
13160 /* Record `register' declaration for warnings on &
13161 and in case doing stupid register allocation. */
13162
13163 if (storage_class == sc_register)
13164 {
13165 DECL_REGISTER (decl) = 1;
13166 /* Warn about register storage specifiers on PARM_DECLs. */
13167 if (TREE_CODE (decl) == PARM_DECL)
13168 {
13169 if (cxx_dialect >= cxx17)
13170 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
13171 "ISO C++17 does not allow %<register%> storage "
13172 "class specifier");
13173 else
13174 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wregister,
13175 "%<register%> storage class specifier used");
13176 }
13177 }
13178 else if (storage_class == sc_extern)
13179 DECL_THIS_EXTERN (decl) = 1;
13180 else if (storage_class == sc_static)
13181 DECL_THIS_STATIC (decl) = 1;
13182
13183 /* Set constexpr flag on vars (functions got it in grokfndecl). */
13184 if (constexpr_p && VAR_P (decl))
13185 DECL_DECLARED_CONSTEXPR_P (decl) = true;
13186
13187 /* Record constancy and volatility on the DECL itself . There's
13188 no need to do this when processing a template; we'll do this
13189 for the instantiated declaration based on the type of DECL. */
13190 if (!processing_template_decl)
13191 cp_apply_type_quals_to_decl (type_quals, decl);
13192
13193 return decl;
13194 }
13195 }
13196 \f
13197 /* Subroutine of start_function. Ensure that each of the parameter
13198 types (as listed in PARMS) is complete, as is required for a
13199 function definition. */
13200
13201 static void
13202 require_complete_types_for_parms (tree parms)
13203 {
13204 for (; parms; parms = DECL_CHAIN (parms))
13205 {
13206 if (dependent_type_p (TREE_TYPE (parms)))
13207 continue;
13208 if (!VOID_TYPE_P (TREE_TYPE (parms))
13209 && complete_type_or_else (TREE_TYPE (parms), parms))
13210 {
13211 relayout_decl (parms);
13212 DECL_ARG_TYPE (parms) = type_passed_as (TREE_TYPE (parms));
13213
13214 maybe_warn_parm_abi (TREE_TYPE (parms),
13215 DECL_SOURCE_LOCATION (parms));
13216 }
13217 else
13218 /* grokparms or complete_type_or_else will have already issued
13219 an error. */
13220 TREE_TYPE (parms) = error_mark_node;
13221 }
13222 }
13223
13224 /* Returns nonzero if T is a local variable. */
13225
13226 int
13227 local_variable_p (const_tree t)
13228 {
13229 if ((VAR_P (t)
13230 /* A VAR_DECL with a context that is a _TYPE is a static data
13231 member. */
13232 && !TYPE_P (CP_DECL_CONTEXT (t))
13233 /* Any other non-local variable must be at namespace scope. */
13234 && !DECL_NAMESPACE_SCOPE_P (t))
13235 || (TREE_CODE (t) == PARM_DECL))
13236 return 1;
13237
13238 return 0;
13239 }
13240
13241 /* Like local_variable_p, but suitable for use as a tree-walking
13242 function. */
13243
13244 static tree
13245 local_variable_p_walkfn (tree *tp, int *walk_subtrees,
13246 void * /*data*/)
13247 {
13248 if (local_variable_p (*tp)
13249 && (!DECL_ARTIFICIAL (*tp) || DECL_NAME (*tp) == this_identifier))
13250 return *tp;
13251 else if (TYPE_P (*tp))
13252 *walk_subtrees = 0;
13253
13254 return NULL_TREE;
13255 }
13256
13257 /* Check that ARG, which is a default-argument expression for a
13258 parameter DECL, is valid. Returns ARG, or ERROR_MARK_NODE, if
13259 something goes wrong. DECL may also be a _TYPE node, rather than a
13260 DECL, if there is no DECL available. */
13261
13262 tree
13263 check_default_argument (tree decl, tree arg, tsubst_flags_t complain)
13264 {
13265 tree var;
13266 tree decl_type;
13267
13268 if (TREE_CODE (arg) == DEFERRED_PARSE)
13269 /* We get a DEFERRED_PARSE when looking at an in-class declaration
13270 with a default argument. Ignore the argument for now; we'll
13271 deal with it after the class is complete. */
13272 return arg;
13273
13274 if (TYPE_P (decl))
13275 {
13276 decl_type = decl;
13277 decl = NULL_TREE;
13278 }
13279 else
13280 decl_type = TREE_TYPE (decl);
13281
13282 if (arg == error_mark_node
13283 || decl == error_mark_node
13284 || TREE_TYPE (arg) == error_mark_node
13285 || decl_type == error_mark_node)
13286 /* Something already went wrong. There's no need to check
13287 further. */
13288 return error_mark_node;
13289
13290 /* [dcl.fct.default]
13291
13292 A default argument expression is implicitly converted to the
13293 parameter type. */
13294 ++cp_unevaluated_operand;
13295 /* Avoid digest_init clobbering the initializer. */
13296 tree carg = BRACE_ENCLOSED_INITIALIZER_P (arg) ? unshare_expr (arg): arg;
13297 perform_implicit_conversion_flags (decl_type, carg, complain,
13298 LOOKUP_IMPLICIT);
13299 --cp_unevaluated_operand;
13300
13301 /* Avoid redundant -Wzero-as-null-pointer-constant warnings at
13302 the call sites. */
13303 if (TYPE_PTR_OR_PTRMEM_P (decl_type)
13304 && null_ptr_cst_p (arg)
13305 /* Don't lose side-effects as in PR90473. */
13306 && !TREE_SIDE_EFFECTS (arg))
13307 return nullptr_node;
13308
13309 /* [dcl.fct.default]
13310
13311 Local variables shall not be used in default argument
13312 expressions.
13313
13314 The keyword `this' shall not be used in a default argument of a
13315 member function. */
13316 var = cp_walk_tree_without_duplicates (&arg, local_variable_p_walkfn, NULL);
13317 if (var)
13318 {
13319 if (complain & tf_warning_or_error)
13320 {
13321 if (DECL_NAME (var) == this_identifier)
13322 permerror (input_location, "default argument %qE uses %qD",
13323 arg, var);
13324 else
13325 error ("default argument %qE uses local variable %qD", arg, var);
13326 }
13327 return error_mark_node;
13328 }
13329
13330 /* All is well. */
13331 return arg;
13332 }
13333
13334 /* Returns a deprecated type used within TYPE, or NULL_TREE if none. */
13335
13336 static tree
13337 type_is_deprecated (tree type)
13338 {
13339 enum tree_code code;
13340 if (TREE_DEPRECATED (type))
13341 return type;
13342 if (TYPE_NAME (type))
13343 {
13344 if (TREE_DEPRECATED (TYPE_NAME (type)))
13345 return type;
13346 else
13347 {
13348 cp_warn_deprecated_use_scopes (CP_DECL_CONTEXT (TYPE_NAME (type)));
13349 return NULL_TREE;
13350 }
13351 }
13352
13353 /* Do warn about using typedefs to a deprecated class. */
13354 if (OVERLOAD_TYPE_P (type) && type != TYPE_MAIN_VARIANT (type))
13355 return type_is_deprecated (TYPE_MAIN_VARIANT (type));
13356
13357 code = TREE_CODE (type);
13358
13359 if (code == POINTER_TYPE || code == REFERENCE_TYPE
13360 || code == OFFSET_TYPE || code == FUNCTION_TYPE
13361 || code == METHOD_TYPE || code == ARRAY_TYPE)
13362 return type_is_deprecated (TREE_TYPE (type));
13363
13364 if (TYPE_PTRMEMFUNC_P (type))
13365 return type_is_deprecated
13366 (TREE_TYPE (TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (type))));
13367
13368 return NULL_TREE;
13369 }
13370
13371 /* Decode the list of parameter types for a function type.
13372 Given the list of things declared inside the parens,
13373 return a list of types.
13374
13375 If this parameter does not end with an ellipsis, we append
13376 void_list_node.
13377
13378 *PARMS is set to the chain of PARM_DECLs created. */
13379
13380 tree
13381 grokparms (tree parmlist, tree *parms)
13382 {
13383 tree result = NULL_TREE;
13384 tree decls = NULL_TREE;
13385 tree parm;
13386 int any_error = 0;
13387
13388 for (parm = parmlist; parm != NULL_TREE; parm = TREE_CHAIN (parm))
13389 {
13390 tree type = NULL_TREE;
13391 tree init = TREE_PURPOSE (parm);
13392 tree decl = TREE_VALUE (parm);
13393
13394 if (parm == void_list_node)
13395 break;
13396
13397 if (! decl || TREE_TYPE (decl) == error_mark_node)
13398 continue;
13399
13400 type = TREE_TYPE (decl);
13401 if (VOID_TYPE_P (type))
13402 {
13403 if (same_type_p (type, void_type_node)
13404 && !init
13405 && !DECL_NAME (decl) && !result
13406 && TREE_CHAIN (parm) == void_list_node)
13407 /* DR 577: A parameter list consisting of a single
13408 unnamed parameter of non-dependent type 'void'. */
13409 break;
13410 else if (cv_qualified_p (type))
13411 error_at (DECL_SOURCE_LOCATION (decl),
13412 "invalid use of cv-qualified type %qT in "
13413 "parameter declaration", type);
13414 else
13415 error_at (DECL_SOURCE_LOCATION (decl),
13416 "invalid use of type %<void%> in parameter "
13417 "declaration");
13418 /* It's not a good idea to actually create parameters of
13419 type `void'; other parts of the compiler assume that a
13420 void type terminates the parameter list. */
13421 type = error_mark_node;
13422 TREE_TYPE (decl) = error_mark_node;
13423 }
13424
13425 if (type != error_mark_node)
13426 {
13427 if (deprecated_state != DEPRECATED_SUPPRESS)
13428 {
13429 tree deptype = type_is_deprecated (type);
13430 if (deptype)
13431 cp_warn_deprecated_use (deptype);
13432 }
13433
13434 /* [dcl.fct] "A parameter with volatile-qualified type is
13435 deprecated." */
13436 if (CP_TYPE_VOLATILE_P (type))
13437 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wvolatile,
13438 "%<volatile%>-qualified parameter is "
13439 "deprecated");
13440
13441 /* Top-level qualifiers on the parameters are
13442 ignored for function types. */
13443 type = cp_build_qualified_type (type, 0);
13444 if (TREE_CODE (type) == METHOD_TYPE)
13445 {
13446 error ("parameter %qD invalidly declared method type", decl);
13447 type = build_pointer_type (type);
13448 TREE_TYPE (decl) = type;
13449 }
13450 else if (abstract_virtuals_error (decl, type))
13451 any_error = 1; /* Seems like a good idea. */
13452 else if (cxx_dialect < cxx17 && INDIRECT_TYPE_P (type))
13453 {
13454 /* Before C++17 DR 393:
13455 [dcl.fct]/6, parameter types cannot contain pointers
13456 (references) to arrays of unknown bound. */
13457 tree t = TREE_TYPE (type);
13458 int ptr = TYPE_PTR_P (type);
13459
13460 while (1)
13461 {
13462 if (TYPE_PTR_P (t))
13463 ptr = 1;
13464 else if (TREE_CODE (t) != ARRAY_TYPE)
13465 break;
13466 else if (!TYPE_DOMAIN (t))
13467 break;
13468 t = TREE_TYPE (t);
13469 }
13470 if (TREE_CODE (t) == ARRAY_TYPE)
13471 pedwarn (DECL_SOURCE_LOCATION (decl), OPT_Wpedantic,
13472 ptr
13473 ? G_("parameter %qD includes pointer to array of "
13474 "unknown bound %qT")
13475 : G_("parameter %qD includes reference to array of "
13476 "unknown bound %qT"),
13477 decl, t);
13478 }
13479
13480 if (any_error)
13481 init = NULL_TREE;
13482 else if (init && !processing_template_decl)
13483 init = check_default_argument (decl, init, tf_warning_or_error);
13484 }
13485
13486 DECL_CHAIN (decl) = decls;
13487 decls = decl;
13488 result = tree_cons (init, type, result);
13489 }
13490 decls = nreverse (decls);
13491 result = nreverse (result);
13492 if (parm)
13493 result = chainon (result, void_list_node);
13494 *parms = decls;
13495
13496 return result;
13497 }
13498
13499 \f
13500 /* D is a constructor or overloaded `operator='.
13501
13502 Let T be the class in which D is declared. Then, this function
13503 returns:
13504
13505 -1 if D's is an ill-formed constructor or copy assignment operator
13506 whose first parameter is of type `T'.
13507 0 if D is not a copy constructor or copy assignment
13508 operator.
13509 1 if D is a copy constructor or copy assignment operator whose
13510 first parameter is a reference to non-const qualified T.
13511 2 if D is a copy constructor or copy assignment operator whose
13512 first parameter is a reference to const qualified T.
13513
13514 This function can be used as a predicate. Positive values indicate
13515 a copy constructor and nonzero values indicate a copy assignment
13516 operator. */
13517
13518 int
13519 copy_fn_p (const_tree d)
13520 {
13521 tree args;
13522 tree arg_type;
13523 int result = 1;
13524
13525 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
13526
13527 if (TREE_CODE (d) == TEMPLATE_DECL
13528 || (DECL_TEMPLATE_INFO (d)
13529 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
13530 /* Instantiations of template member functions are never copy
13531 functions. Note that member functions of templated classes are
13532 represented as template functions internally, and we must
13533 accept those as copy functions. */
13534 return 0;
13535
13536 args = FUNCTION_FIRST_USER_PARMTYPE (d);
13537 if (!args)
13538 return 0;
13539
13540 arg_type = TREE_VALUE (args);
13541 if (arg_type == error_mark_node)
13542 return 0;
13543
13544 if (TYPE_MAIN_VARIANT (arg_type) == DECL_CONTEXT (d))
13545 {
13546 /* Pass by value copy assignment operator. */
13547 result = -1;
13548 }
13549 else if (TYPE_REF_P (arg_type)
13550 && !TYPE_REF_IS_RVALUE (arg_type)
13551 && TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)) == DECL_CONTEXT (d))
13552 {
13553 if (CP_TYPE_CONST_P (TREE_TYPE (arg_type)))
13554 result = 2;
13555 }
13556 else
13557 return 0;
13558
13559 args = TREE_CHAIN (args);
13560
13561 if (args && args != void_list_node && !TREE_PURPOSE (args))
13562 /* There are more non-optional args. */
13563 return 0;
13564
13565 return result;
13566 }
13567
13568 /* D is a constructor or overloaded `operator='.
13569
13570 Let T be the class in which D is declared. Then, this function
13571 returns true when D is a move constructor or move assignment
13572 operator, false otherwise. */
13573
13574 bool
13575 move_fn_p (const_tree d)
13576 {
13577 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
13578
13579 if (cxx_dialect == cxx98)
13580 /* There are no move constructors if we are in C++98 mode. */
13581 return false;
13582
13583 if (TREE_CODE (d) == TEMPLATE_DECL
13584 || (DECL_TEMPLATE_INFO (d)
13585 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d))))
13586 /* Instantiations of template member functions are never move
13587 functions. Note that member functions of templated classes are
13588 represented as template functions internally, and we must
13589 accept those as move functions. */
13590 return 0;
13591
13592 return move_signature_fn_p (d);
13593 }
13594
13595 /* D is a constructor or overloaded `operator='.
13596
13597 Then, this function returns true when D has the same signature as a move
13598 constructor or move assignment operator (because either it is such a
13599 ctor/op= or it is a template specialization with the same signature),
13600 false otherwise. */
13601
13602 bool
13603 move_signature_fn_p (const_tree d)
13604 {
13605 tree args;
13606 tree arg_type;
13607 bool result = false;
13608
13609 args = FUNCTION_FIRST_USER_PARMTYPE (d);
13610 if (!args)
13611 return 0;
13612
13613 arg_type = TREE_VALUE (args);
13614 if (arg_type == error_mark_node)
13615 return 0;
13616
13617 if (TYPE_REF_P (arg_type)
13618 && TYPE_REF_IS_RVALUE (arg_type)
13619 && same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)),
13620 DECL_CONTEXT (d)))
13621 result = true;
13622
13623 args = TREE_CHAIN (args);
13624
13625 if (args && args != void_list_node && !TREE_PURPOSE (args))
13626 /* There are more non-optional args. */
13627 return false;
13628
13629 return result;
13630 }
13631
13632 /* Remember any special properties of member function DECL. */
13633
13634 void
13635 grok_special_member_properties (tree decl)
13636 {
13637 tree class_type;
13638
13639 if (TREE_CODE (decl) == USING_DECL
13640 || !DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
13641 return;
13642
13643 class_type = DECL_CONTEXT (decl);
13644 if (IDENTIFIER_CTOR_P (DECL_NAME (decl)))
13645 {
13646 int ctor = copy_fn_p (decl);
13647
13648 if (!DECL_ARTIFICIAL (decl))
13649 TYPE_HAS_USER_CONSTRUCTOR (class_type) = 1;
13650
13651 if (ctor > 0)
13652 {
13653 /* [class.copy]
13654
13655 A non-template constructor for class X is a copy
13656 constructor if its first parameter is of type X&, const
13657 X&, volatile X& or const volatile X&, and either there
13658 are no other parameters or else all other parameters have
13659 default arguments. */
13660 TYPE_HAS_COPY_CTOR (class_type) = 1;
13661 if (ctor > 1)
13662 TYPE_HAS_CONST_COPY_CTOR (class_type) = 1;
13663 }
13664 else if (sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (decl)))
13665 TYPE_HAS_DEFAULT_CONSTRUCTOR (class_type) = 1;
13666 else if (is_list_ctor (decl))
13667 TYPE_HAS_LIST_CTOR (class_type) = 1;
13668
13669 if (DECL_DECLARED_CONSTEXPR_P (decl)
13670 && !ctor && !move_fn_p (decl))
13671 TYPE_HAS_CONSTEXPR_CTOR (class_type) = 1;
13672 }
13673 else if (DECL_NAME (decl) == assign_op_identifier)
13674 {
13675 /* [class.copy]
13676
13677 A non-template assignment operator for class X is a copy
13678 assignment operator if its parameter is of type X, X&, const
13679 X&, volatile X& or const volatile X&. */
13680
13681 int assop = copy_fn_p (decl);
13682
13683 if (assop)
13684 {
13685 TYPE_HAS_COPY_ASSIGN (class_type) = 1;
13686 if (assop != 1)
13687 TYPE_HAS_CONST_COPY_ASSIGN (class_type) = 1;
13688 }
13689 }
13690 else if (IDENTIFIER_CONV_OP_P (DECL_NAME (decl)))
13691 TYPE_HAS_CONVERSION (class_type) = true;
13692
13693 /* Destructors are handled in check_methods. */
13694 }
13695
13696 /* Check a constructor DECL has the correct form. Complains
13697 if the class has a constructor of the form X(X). */
13698
13699 bool
13700 grok_ctor_properties (const_tree ctype, const_tree decl)
13701 {
13702 int ctor_parm = copy_fn_p (decl);
13703
13704 if (ctor_parm < 0)
13705 {
13706 /* [class.copy]
13707
13708 A declaration of a constructor for a class X is ill-formed if
13709 its first parameter is of type (optionally cv-qualified) X
13710 and either there are no other parameters or else all other
13711 parameters have default arguments.
13712
13713 We *don't* complain about member template instantiations that
13714 have this form, though; they can occur as we try to decide
13715 what constructor to use during overload resolution. Since
13716 overload resolution will never prefer such a constructor to
13717 the non-template copy constructor (which is either explicitly
13718 or implicitly defined), there's no need to worry about their
13719 existence. Theoretically, they should never even be
13720 instantiated, but that's hard to forestall. */
13721 error ("invalid constructor; you probably meant %<%T (const %T&)%>",
13722 ctype, ctype);
13723 return false;
13724 }
13725
13726 return true;
13727 }
13728
13729 /* DECL is a declaration for an overloaded or conversion operator. If
13730 COMPLAIN is true, errors are issued for invalid declarations. */
13731
13732 bool
13733 grok_op_properties (tree decl, bool complain)
13734 {
13735 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
13736 bool methodp = TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE;
13737 tree name = DECL_NAME (decl);
13738 location_t loc = DECL_SOURCE_LOCATION (decl);
13739
13740 tree class_type = DECL_CONTEXT (decl);
13741 if (class_type && !CLASS_TYPE_P (class_type))
13742 class_type = NULL_TREE;
13743
13744 tree_code operator_code;
13745 unsigned op_flags;
13746 if (IDENTIFIER_CONV_OP_P (name))
13747 {
13748 /* Conversion operators are TYPE_EXPR for the purposes of this
13749 function. */
13750 operator_code = TYPE_EXPR;
13751 op_flags = OVL_OP_FLAG_UNARY;
13752 }
13753 else
13754 {
13755 const ovl_op_info_t *ovl_op = IDENTIFIER_OVL_OP_INFO (name);
13756
13757 operator_code = ovl_op->tree_code;
13758 op_flags = ovl_op->flags;
13759 gcc_checking_assert (operator_code != ERROR_MARK);
13760 DECL_OVERLOADED_OPERATOR_CODE_RAW (decl) = ovl_op->ovl_op_code;
13761 }
13762
13763 if (op_flags & OVL_OP_FLAG_ALLOC)
13764 {
13765 /* operator new and operator delete are quite special. */
13766 if (class_type)
13767 switch (op_flags)
13768 {
13769 case OVL_OP_FLAG_ALLOC:
13770 TYPE_HAS_NEW_OPERATOR (class_type) = 1;
13771 break;
13772
13773 case OVL_OP_FLAG_ALLOC | OVL_OP_FLAG_DELETE:
13774 TYPE_GETS_DELETE (class_type) |= 1;
13775 break;
13776
13777 case OVL_OP_FLAG_ALLOC | OVL_OP_FLAG_VEC:
13778 TYPE_HAS_ARRAY_NEW_OPERATOR (class_type) = 1;
13779 break;
13780
13781 case OVL_OP_FLAG_ALLOC | OVL_OP_FLAG_DELETE | OVL_OP_FLAG_VEC:
13782 TYPE_GETS_DELETE (class_type) |= 2;
13783 break;
13784
13785 default:
13786 gcc_unreachable ();
13787 }
13788
13789 /* [basic.std.dynamic.allocation]/1:
13790
13791 A program is ill-formed if an allocation function is declared
13792 in a namespace scope other than global scope or declared
13793 static in global scope.
13794
13795 The same also holds true for deallocation functions. */
13796 if (DECL_NAMESPACE_SCOPE_P (decl))
13797 {
13798 if (CP_DECL_CONTEXT (decl) != global_namespace)
13799 {
13800 error_at (loc, "%qD may not be declared within a namespace",
13801 decl);
13802 return false;
13803 }
13804
13805 if (!TREE_PUBLIC (decl))
13806 {
13807 error_at (loc, "%qD may not be declared as static", decl);
13808 return false;
13809 }
13810 }
13811
13812 if (op_flags & OVL_OP_FLAG_DELETE)
13813 {
13814 DECL_SET_IS_OPERATOR_DELETE (decl, true);
13815 coerce_delete_type (decl, loc);
13816 }
13817 else
13818 {
13819 DECL_SET_IS_OPERATOR_NEW (decl, true);
13820 TREE_TYPE (decl) = coerce_new_type (TREE_TYPE (decl), loc);
13821 }
13822
13823 return true;
13824 }
13825
13826 /* An operator function must either be a non-static member function
13827 or have at least one parameter of a class, a reference to a class,
13828 an enumeration, or a reference to an enumeration. 13.4.0.6 */
13829 if (! methodp || DECL_STATIC_FUNCTION_P (decl))
13830 {
13831 if (operator_code == TYPE_EXPR
13832 || operator_code == CALL_EXPR
13833 || operator_code == COMPONENT_REF
13834 || operator_code == ARRAY_REF
13835 || operator_code == NOP_EXPR)
13836 {
13837 error_at (loc, "%qD must be a nonstatic member function", decl);
13838 return false;
13839 }
13840
13841 if (DECL_STATIC_FUNCTION_P (decl))
13842 {
13843 error_at (loc, "%qD must be either a non-static member "
13844 "function or a non-member function", decl);
13845 return false;
13846 }
13847
13848 for (tree arg = argtypes; ; arg = TREE_CHAIN (arg))
13849 {
13850 if (!arg || arg == void_list_node)
13851 {
13852 if (complain)
13853 error_at(loc, "%qD must have an argument of class or "
13854 "enumerated type", decl);
13855 return false;
13856 }
13857
13858 tree type = non_reference (TREE_VALUE (arg));
13859 if (type == error_mark_node)
13860 return false;
13861
13862 /* MAYBE_CLASS_TYPE_P, rather than CLASS_TYPE_P, is used
13863 because these checks are performed even on template
13864 functions. */
13865 if (MAYBE_CLASS_TYPE_P (type)
13866 || TREE_CODE (type) == ENUMERAL_TYPE)
13867 break;
13868 }
13869 }
13870
13871 if (operator_code == CALL_EXPR)
13872 /* There are no further restrictions on the arguments to an overloaded
13873 "operator ()". */
13874 return true;
13875
13876 if (operator_code == COND_EXPR)
13877 {
13878 /* 13.4.0.3 */
13879 error_at (loc, "ISO C++ prohibits overloading %<operator ?:%>");
13880 return false;
13881 }
13882
13883 /* Count the number of arguments and check for ellipsis. */
13884 int arity = 0;
13885 for (tree arg = argtypes; arg != void_list_node; arg = TREE_CHAIN (arg))
13886 {
13887 if (!arg)
13888 {
13889 /* Variadic. */
13890 error_at (loc, "%qD must not have variable number of arguments",
13891 decl);
13892 return false;
13893 }
13894 ++arity;
13895 }
13896
13897 /* Verify correct number of arguments. */
13898 switch (op_flags)
13899 {
13900 case OVL_OP_FLAG_AMBIARY:
13901 if (arity == 1)
13902 {
13903 /* We have a unary instance of an ambi-ary op. Remap to the
13904 unary one. */
13905 unsigned alt = ovl_op_alternate[ovl_op_mapping [operator_code]];
13906 const ovl_op_info_t *ovl_op = &ovl_op_info[false][alt];
13907 gcc_checking_assert (ovl_op->flags == OVL_OP_FLAG_UNARY);
13908 operator_code = ovl_op->tree_code;
13909 DECL_OVERLOADED_OPERATOR_CODE_RAW (decl) = ovl_op->ovl_op_code;
13910 }
13911 else if (arity != 2)
13912 {
13913 /* This was an ambiguous operator but is invalid. */
13914 error_at (loc,
13915 methodp
13916 ? G_("%qD must have either zero or one argument")
13917 : G_("%qD must have either one or two arguments"), decl);
13918 return false;
13919 }
13920 else if ((operator_code == POSTINCREMENT_EXPR
13921 || operator_code == POSTDECREMENT_EXPR)
13922 && ! processing_template_decl
13923 /* x++ and x--'s second argument must be an int. */
13924 && ! same_type_p (TREE_VALUE (TREE_CHAIN (argtypes)),
13925 integer_type_node))
13926 {
13927 error_at (loc,
13928 methodp
13929 ? G_("postfix %qD must have %<int%> as its argument")
13930 : G_("postfix %qD must have %<int%> as its second argument"),
13931 decl);
13932 return false;
13933 }
13934 break;
13935
13936 case OVL_OP_FLAG_UNARY:
13937 if (arity != 1)
13938 {
13939 error_at (loc,
13940 methodp
13941 ? G_("%qD must have no arguments")
13942 : G_("%qD must have exactly one argument"), decl);
13943 return false;
13944 }
13945 break;
13946
13947 case OVL_OP_FLAG_BINARY:
13948 if (arity != 2)
13949 {
13950 error_at (loc,
13951 methodp
13952 ? G_("%qD must have exactly one argument")
13953 : G_("%qD must have exactly two arguments"), decl);
13954 return false;
13955 }
13956 break;
13957
13958 default:
13959 gcc_unreachable ();
13960 }
13961
13962 /* There can be no default arguments. */
13963 for (tree arg = argtypes; arg != void_list_node; arg = TREE_CHAIN (arg))
13964 if (TREE_PURPOSE (arg))
13965 {
13966 TREE_PURPOSE (arg) = NULL_TREE;
13967 error_at (loc, "%qD cannot have default arguments", decl);
13968 return false;
13969 }
13970
13971 /* At this point the declaration is well-formed. It may not be
13972 sensible though. */
13973
13974 /* Check member function warnings only on the in-class declaration.
13975 There's no point warning on an out-of-class definition. */
13976 if (class_type && class_type != current_class_type)
13977 return true;
13978
13979 /* Warn about conversion operators that will never be used. */
13980 if (IDENTIFIER_CONV_OP_P (name)
13981 && ! DECL_TEMPLATE_INFO (decl)
13982 && warn_class_conversion)
13983 {
13984 tree t = TREE_TYPE (name);
13985 int ref = TYPE_REF_P (t);
13986
13987 if (ref)
13988 t = TYPE_MAIN_VARIANT (TREE_TYPE (t));
13989
13990 if (VOID_TYPE_P (t))
13991 warning_at (loc, OPT_Wclass_conversion, "converting %qT to %<void%> "
13992 "will never use a type conversion operator", class_type);
13993 else if (class_type)
13994 {
13995 if (same_type_ignoring_top_level_qualifiers_p (t, class_type))
13996 warning_at (loc, OPT_Wclass_conversion,
13997 ref
13998 ? G_("converting %qT to a reference to the same type "
13999 "will never use a type conversion operator")
14000 : G_("converting %qT to the same type "
14001 "will never use a type conversion operator"),
14002 class_type);
14003 /* Don't force t to be complete here. */
14004 else if (MAYBE_CLASS_TYPE_P (t)
14005 && COMPLETE_TYPE_P (t)
14006 && DERIVED_FROM_P (t, class_type))
14007 warning_at (loc, OPT_Wclass_conversion,
14008 ref
14009 ? G_("converting %qT to a reference to a base class "
14010 "%qT will never use a type conversion operator")
14011 : G_("converting %qT to a base class %qT "
14012 "will never use a type conversion operator"),
14013 class_type, t);
14014 }
14015 }
14016
14017 if (!warn_ecpp)
14018 return true;
14019
14020 /* Effective C++ rules below. */
14021
14022 /* More Effective C++ rule 7. */
14023 if (operator_code == TRUTH_ANDIF_EXPR
14024 || operator_code == TRUTH_ORIF_EXPR
14025 || operator_code == COMPOUND_EXPR)
14026 warning_at (loc, OPT_Weffc__,
14027 "user-defined %qD always evaluates both arguments", decl);
14028
14029 /* More Effective C++ rule 6. */
14030 if (operator_code == POSTINCREMENT_EXPR
14031 || operator_code == POSTDECREMENT_EXPR
14032 || operator_code == PREINCREMENT_EXPR
14033 || operator_code == PREDECREMENT_EXPR)
14034 {
14035 tree arg = TREE_VALUE (argtypes);
14036 tree ret = TREE_TYPE (TREE_TYPE (decl));
14037 if (methodp || TYPE_REF_P (arg))
14038 arg = TREE_TYPE (arg);
14039 arg = TYPE_MAIN_VARIANT (arg);
14040
14041 if (operator_code == PREINCREMENT_EXPR
14042 || operator_code == PREDECREMENT_EXPR)
14043 {
14044 if (!TYPE_REF_P (ret)
14045 || !same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (ret)), arg))
14046 warning_at (loc, OPT_Weffc__, "prefix %qD should return %qT", decl,
14047 build_reference_type (arg));
14048 }
14049 else
14050 {
14051 if (!same_type_p (TYPE_MAIN_VARIANT (ret), arg))
14052 warning_at (loc, OPT_Weffc__,
14053 "postfix %qD should return %qT", decl, arg);
14054 }
14055 }
14056
14057 /* Effective C++ rule 23. */
14058 if (!DECL_ASSIGNMENT_OPERATOR_P (decl)
14059 && (operator_code == PLUS_EXPR
14060 || operator_code == MINUS_EXPR
14061 || operator_code == TRUNC_DIV_EXPR
14062 || operator_code == MULT_EXPR
14063 || operator_code == TRUNC_MOD_EXPR)
14064 && TYPE_REF_P (TREE_TYPE (TREE_TYPE (decl))))
14065 warning_at (loc, OPT_Weffc__, "%qD should return by value", decl);
14066
14067 return true;
14068 }
14069 \f
14070 /* Return a string giving the keyword associate with CODE. */
14071
14072 static const char *
14073 tag_name (enum tag_types code)
14074 {
14075 switch (code)
14076 {
14077 case record_type:
14078 return "struct";
14079 case class_type:
14080 return "class";
14081 case union_type:
14082 return "union";
14083 case enum_type:
14084 return "enum";
14085 case typename_type:
14086 return "typename";
14087 default:
14088 gcc_unreachable ();
14089 }
14090 }
14091
14092 /* Name lookup in an elaborated-type-specifier (after the keyword
14093 indicated by TAG_CODE) has found the TYPE_DECL DECL. If the
14094 elaborated-type-specifier is invalid, issue a diagnostic and return
14095 error_mark_node; otherwise, return the *_TYPE to which it referred.
14096 If ALLOW_TEMPLATE_P is true, TYPE may be a class template. */
14097
14098 tree
14099 check_elaborated_type_specifier (enum tag_types tag_code,
14100 tree decl,
14101 bool allow_template_p)
14102 {
14103 tree type;
14104
14105 /* In the case of:
14106
14107 struct S { struct S *p; };
14108
14109 name lookup will find the TYPE_DECL for the implicit "S::S"
14110 typedef. Adjust for that here. */
14111 if (DECL_SELF_REFERENCE_P (decl))
14112 decl = TYPE_NAME (TREE_TYPE (decl));
14113
14114 type = TREE_TYPE (decl);
14115
14116 /* Check TEMPLATE_TYPE_PARM first because DECL_IMPLICIT_TYPEDEF_P
14117 is false for this case as well. */
14118 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
14119 {
14120 error ("using template type parameter %qT after %qs",
14121 type, tag_name (tag_code));
14122 return error_mark_node;
14123 }
14124 /* Accept template template parameters. */
14125 else if (allow_template_p
14126 && (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM
14127 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM))
14128 ;
14129 /* [dcl.type.elab]
14130
14131 If the identifier resolves to a typedef-name or the
14132 simple-template-id resolves to an alias template
14133 specialization, the elaborated-type-specifier is ill-formed.
14134
14135 In other words, the only legitimate declaration to use in the
14136 elaborated type specifier is the implicit typedef created when
14137 the type is declared. */
14138 else if (!DECL_IMPLICIT_TYPEDEF_P (decl)
14139 && !DECL_SELF_REFERENCE_P (decl)
14140 && tag_code != typename_type)
14141 {
14142 if (alias_template_specialization_p (type))
14143 error ("using alias template specialization %qT after %qs",
14144 type, tag_name (tag_code));
14145 else
14146 error ("using typedef-name %qD after %qs", decl, tag_name (tag_code));
14147 inform (DECL_SOURCE_LOCATION (decl),
14148 "%qD has a previous declaration here", decl);
14149 return error_mark_node;
14150 }
14151 else if (TREE_CODE (type) != RECORD_TYPE
14152 && TREE_CODE (type) != UNION_TYPE
14153 && tag_code != enum_type
14154 && tag_code != typename_type)
14155 {
14156 error ("%qT referred to as %qs", type, tag_name (tag_code));
14157 inform (location_of (type), "%qT has a previous declaration here", type);
14158 return error_mark_node;
14159 }
14160 else if (TREE_CODE (type) != ENUMERAL_TYPE
14161 && tag_code == enum_type)
14162 {
14163 error ("%qT referred to as enum", type);
14164 inform (location_of (type), "%qT has a previous declaration here", type);
14165 return error_mark_node;
14166 }
14167 else if (!allow_template_p
14168 && TREE_CODE (type) == RECORD_TYPE
14169 && CLASSTYPE_IS_TEMPLATE (type))
14170 {
14171 /* If a class template appears as elaborated type specifier
14172 without a template header such as:
14173
14174 template <class T> class C {};
14175 void f(class C); // No template header here
14176
14177 then the required template argument is missing. */
14178 error ("template argument required for %<%s %T%>",
14179 tag_name (tag_code),
14180 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type)));
14181 return error_mark_node;
14182 }
14183
14184 return type;
14185 }
14186
14187 /* Lookup NAME in elaborate type specifier in scope according to
14188 SCOPE and issue diagnostics if necessary.
14189 Return *_TYPE node upon success, NULL_TREE when the NAME is not
14190 found, and ERROR_MARK_NODE for type error. */
14191
14192 static tree
14193 lookup_and_check_tag (enum tag_types tag_code, tree name,
14194 tag_scope scope, bool template_header_p)
14195 {
14196 tree t;
14197 tree decl;
14198 if (scope == ts_global)
14199 {
14200 /* First try ordinary name lookup, ignoring hidden class name
14201 injected via friend declaration. */
14202 decl = lookup_name_prefer_type (name, 2);
14203 decl = strip_using_decl (decl);
14204 /* If that fails, the name will be placed in the smallest
14205 non-class, non-function-prototype scope according to 3.3.1/5.
14206 We may already have a hidden name declared as friend in this
14207 scope. So lookup again but not ignoring hidden names.
14208 If we find one, that name will be made visible rather than
14209 creating a new tag. */
14210 if (!decl)
14211 decl = lookup_type_scope (name, ts_within_enclosing_non_class);
14212 }
14213 else
14214 decl = lookup_type_scope (name, scope);
14215
14216 if (decl
14217 && (DECL_CLASS_TEMPLATE_P (decl)
14218 /* If scope is ts_current we're defining a class, so ignore a
14219 template template parameter. */
14220 || (scope != ts_current
14221 && DECL_TEMPLATE_TEMPLATE_PARM_P (decl))))
14222 decl = DECL_TEMPLATE_RESULT (decl);
14223
14224 if (decl && TREE_CODE (decl) == TYPE_DECL)
14225 {
14226 /* Look for invalid nested type:
14227 class C {
14228 class C {};
14229 }; */
14230 if (scope == ts_current && DECL_SELF_REFERENCE_P (decl))
14231 {
14232 error ("%qD has the same name as the class in which it is "
14233 "declared",
14234 decl);
14235 return error_mark_node;
14236 }
14237
14238 /* Two cases we need to consider when deciding if a class
14239 template is allowed as an elaborated type specifier:
14240 1. It is a self reference to its own class.
14241 2. It comes with a template header.
14242
14243 For example:
14244
14245 template <class T> class C {
14246 class C *c1; // DECL_SELF_REFERENCE_P is true
14247 class D;
14248 };
14249 template <class U> class C; // template_header_p is true
14250 template <class T> class C<T>::D {
14251 class C *c2; // DECL_SELF_REFERENCE_P is true
14252 }; */
14253
14254 t = check_elaborated_type_specifier (tag_code,
14255 decl,
14256 template_header_p
14257 | DECL_SELF_REFERENCE_P (decl));
14258 if (template_header_p && t && CLASS_TYPE_P (t)
14259 && (!CLASSTYPE_TEMPLATE_INFO (t)
14260 || (!PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t)))))
14261 {
14262 error ("%qT is not a template", t);
14263 inform (location_of (t), "previous declaration here");
14264 if (TYPE_CLASS_SCOPE_P (t)
14265 && CLASSTYPE_TEMPLATE_INFO (TYPE_CONTEXT (t)))
14266 inform (input_location,
14267 "perhaps you want to explicitly add %<%T::%>",
14268 TYPE_CONTEXT (t));
14269 t = error_mark_node;
14270 }
14271
14272 return t;
14273 }
14274 else if (decl && TREE_CODE (decl) == TREE_LIST)
14275 {
14276 error ("reference to %qD is ambiguous", name);
14277 print_candidates (decl);
14278 return error_mark_node;
14279 }
14280 else
14281 return NULL_TREE;
14282 }
14283
14284 /* Get the struct, enum or union (TAG_CODE says which) with tag NAME.
14285 Define the tag as a forward-reference if it is not defined.
14286
14287 If a declaration is given, process it here, and report an error if
14288 multiple declarations are not identical.
14289
14290 SCOPE is TS_CURRENT when this is also a definition. Only look in
14291 the current frame for the name (since C++ allows new names in any
14292 scope.) It is TS_WITHIN_ENCLOSING_NON_CLASS if this is a friend
14293 declaration. Only look beginning from the current scope outward up
14294 till the nearest non-class scope. Otherwise it is TS_GLOBAL.
14295
14296 TEMPLATE_HEADER_P is true when this declaration is preceded by
14297 a set of template parameters. */
14298
14299 static tree
14300 xref_tag_1 (enum tag_types tag_code, tree name,
14301 tag_scope scope, bool template_header_p)
14302 {
14303 enum tree_code code;
14304 tree context = NULL_TREE;
14305
14306 gcc_assert (identifier_p (name));
14307
14308 switch (tag_code)
14309 {
14310 case record_type:
14311 case class_type:
14312 code = RECORD_TYPE;
14313 break;
14314 case union_type:
14315 code = UNION_TYPE;
14316 break;
14317 case enum_type:
14318 code = ENUMERAL_TYPE;
14319 break;
14320 default:
14321 gcc_unreachable ();
14322 }
14323
14324 /* In case of anonymous name, xref_tag is only called to
14325 make type node and push name. Name lookup is not required. */
14326 tree t = NULL_TREE;
14327 if (scope != ts_lambda && !IDENTIFIER_ANON_P (name))
14328 t = lookup_and_check_tag (tag_code, name, scope, template_header_p);
14329
14330 if (t == error_mark_node)
14331 return error_mark_node;
14332
14333 if (scope != ts_current && t && current_class_type
14334 && template_class_depth (current_class_type)
14335 && template_header_p)
14336 {
14337 if (TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM)
14338 return t;
14339
14340 /* Since SCOPE is not TS_CURRENT, we are not looking at a
14341 definition of this tag. Since, in addition, we are currently
14342 processing a (member) template declaration of a template
14343 class, we must be very careful; consider:
14344
14345 template <class X> struct S1
14346
14347 template <class U> struct S2
14348 {
14349 template <class V> friend struct S1;
14350 };
14351
14352 Here, the S2::S1 declaration should not be confused with the
14353 outer declaration. In particular, the inner version should
14354 have a template parameter of level 2, not level 1.
14355
14356 On the other hand, when presented with:
14357
14358 template <class T> struct S1
14359 {
14360 template <class U> struct S2 {};
14361 template <class U> friend struct S2;
14362 };
14363
14364 the friend must find S1::S2 eventually. We accomplish this
14365 by making sure that the new type we create to represent this
14366 declaration has the right TYPE_CONTEXT. */
14367 context = TYPE_CONTEXT (t);
14368 t = NULL_TREE;
14369 }
14370
14371 if (! t)
14372 {
14373 /* If no such tag is yet defined, create a forward-reference node
14374 and record it as the "definition".
14375 When a real declaration of this type is found,
14376 the forward-reference will be altered into a real type. */
14377 if (code == ENUMERAL_TYPE)
14378 {
14379 error ("use of enum %q#D without previous declaration", name);
14380 return error_mark_node;
14381 }
14382 else
14383 {
14384 t = make_class_type (code);
14385 TYPE_CONTEXT (t) = context;
14386 if (scope == ts_lambda)
14387 {
14388 /* Mark it as a lambda type. */
14389 CLASSTYPE_LAMBDA_EXPR (t) = error_mark_node;
14390 /* And push it into current scope. */
14391 scope = ts_current;
14392 }
14393 t = pushtag (name, t, scope);
14394 }
14395 }
14396 else
14397 {
14398 if (template_header_p && MAYBE_CLASS_TYPE_P (t))
14399 {
14400 /* Check that we aren't trying to overload a class with different
14401 constraints. */
14402 tree constr = NULL_TREE;
14403 if (current_template_parms)
14404 {
14405 tree reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
14406 constr = build_constraints (reqs, NULL_TREE);
14407 }
14408 if (!redeclare_class_template (t, current_template_parms, constr))
14409 return error_mark_node;
14410 }
14411 else if (!processing_template_decl
14412 && CLASS_TYPE_P (t)
14413 && CLASSTYPE_IS_TEMPLATE (t))
14414 {
14415 error ("redeclaration of %qT as a non-template", t);
14416 inform (location_of (t), "previous declaration %qD", t);
14417 return error_mark_node;
14418 }
14419
14420 if (scope != ts_within_enclosing_non_class && TYPE_HIDDEN_P (t))
14421 {
14422 /* This is no longer an invisible friend. Make it
14423 visible. */
14424 tree decl = TYPE_NAME (t);
14425
14426 DECL_ANTICIPATED (decl) = false;
14427 DECL_FRIEND_P (decl) = false;
14428
14429 if (TYPE_TEMPLATE_INFO (t))
14430 {
14431 tree tmpl = TYPE_TI_TEMPLATE (t);
14432 DECL_ANTICIPATED (tmpl) = false;
14433 DECL_FRIEND_P (tmpl) = false;
14434 }
14435 }
14436 }
14437
14438 return t;
14439 }
14440
14441 /* Wrapper for xref_tag_1. */
14442
14443 tree
14444 xref_tag (enum tag_types tag_code, tree name,
14445 tag_scope scope, bool template_header_p)
14446 {
14447 tree ret;
14448 bool subtime;
14449 subtime = timevar_cond_start (TV_NAME_LOOKUP);
14450 ret = xref_tag_1 (tag_code, name, scope, template_header_p);
14451 timevar_cond_stop (TV_NAME_LOOKUP, subtime);
14452 return ret;
14453 }
14454
14455
14456 tree
14457 xref_tag_from_type (tree old, tree id, tag_scope scope)
14458 {
14459 enum tag_types tag_kind;
14460
14461 if (TREE_CODE (old) == RECORD_TYPE)
14462 tag_kind = (CLASSTYPE_DECLARED_CLASS (old) ? class_type : record_type);
14463 else
14464 tag_kind = union_type;
14465
14466 if (id == NULL_TREE)
14467 id = TYPE_IDENTIFIER (old);
14468
14469 return xref_tag (tag_kind, id, scope, false);
14470 }
14471
14472 /* Create the binfo hierarchy for REF with (possibly NULL) base list
14473 BASE_LIST. For each element on BASE_LIST the TREE_PURPOSE is an
14474 access_* node, and the TREE_VALUE is the type of the base-class.
14475 Non-NULL TREE_TYPE indicates virtual inheritance. */
14476
14477 void
14478 xref_basetypes (tree ref, tree base_list)
14479 {
14480 tree *basep;
14481 tree binfo, base_binfo;
14482 unsigned max_vbases = 0; /* Maximum direct & indirect virtual bases. */
14483 unsigned max_bases = 0; /* Maximum direct bases. */
14484 unsigned max_dvbases = 0; /* Maximum direct virtual bases. */
14485 int i;
14486 tree default_access;
14487 tree igo_prev; /* Track Inheritance Graph Order. */
14488
14489 if (ref == error_mark_node)
14490 return;
14491
14492 /* The base of a derived class is private by default, all others are
14493 public. */
14494 default_access = (TREE_CODE (ref) == RECORD_TYPE
14495 && CLASSTYPE_DECLARED_CLASS (ref)
14496 ? access_private_node : access_public_node);
14497
14498 /* First, make sure that any templates in base-classes are
14499 instantiated. This ensures that if we call ourselves recursively
14500 we do not get confused about which classes are marked and which
14501 are not. */
14502 basep = &base_list;
14503 while (*basep)
14504 {
14505 tree basetype = TREE_VALUE (*basep);
14506
14507 /* The dependent_type_p call below should really be dependent_scope_p
14508 so that we give a hard error about using an incomplete type as a
14509 base, but we allow it with a pedwarn for backward
14510 compatibility. */
14511 if (processing_template_decl
14512 && CLASS_TYPE_P (basetype) && TYPE_BEING_DEFINED (basetype))
14513 cxx_incomplete_type_diagnostic (NULL_TREE, basetype, DK_PEDWARN);
14514 if (!dependent_type_p (basetype)
14515 && !complete_type_or_else (basetype, NULL))
14516 /* An incomplete type. Remove it from the list. */
14517 *basep = TREE_CHAIN (*basep);
14518 else
14519 {
14520 max_bases++;
14521 if (TREE_TYPE (*basep))
14522 max_dvbases++;
14523 if (CLASS_TYPE_P (basetype))
14524 max_vbases += vec_safe_length (CLASSTYPE_VBASECLASSES (basetype));
14525 basep = &TREE_CHAIN (*basep);
14526 }
14527 }
14528 max_vbases += max_dvbases;
14529
14530 TYPE_MARKED_P (ref) = 1;
14531
14532 /* The binfo slot should be empty, unless this is an (ill-formed)
14533 redefinition. */
14534 gcc_assert (!TYPE_BINFO (ref) || TYPE_SIZE (ref));
14535
14536 gcc_assert (TYPE_MAIN_VARIANT (ref) == ref);
14537
14538 binfo = make_tree_binfo (max_bases);
14539
14540 TYPE_BINFO (ref) = binfo;
14541 BINFO_OFFSET (binfo) = size_zero_node;
14542 BINFO_TYPE (binfo) = ref;
14543
14544 /* Apply base-class info set up to the variants of this type. */
14545 fixup_type_variants (ref);
14546
14547 if (max_bases)
14548 {
14549 vec_alloc (BINFO_BASE_ACCESSES (binfo), max_bases);
14550 /* A C++98 POD cannot have base classes. */
14551 CLASSTYPE_NON_LAYOUT_POD_P (ref) = true;
14552
14553 if (TREE_CODE (ref) == UNION_TYPE)
14554 {
14555 error ("derived union %qT invalid", ref);
14556 return;
14557 }
14558 }
14559
14560 if (max_bases > 1)
14561 warning (OPT_Wmultiple_inheritance,
14562 "%qT defined with multiple direct bases", ref);
14563
14564 if (max_vbases)
14565 {
14566 /* An aggregate can't have virtual base classes. */
14567 CLASSTYPE_NON_AGGREGATE (ref) = true;
14568
14569 vec_alloc (CLASSTYPE_VBASECLASSES (ref), max_vbases);
14570
14571 if (max_dvbases)
14572 warning (OPT_Wvirtual_inheritance,
14573 "%qT defined with direct virtual base", ref);
14574 }
14575
14576 for (igo_prev = binfo; base_list; base_list = TREE_CHAIN (base_list))
14577 {
14578 tree access = TREE_PURPOSE (base_list);
14579 int via_virtual = TREE_TYPE (base_list) != NULL_TREE;
14580 tree basetype = TREE_VALUE (base_list);
14581
14582 if (access == access_default_node)
14583 access = default_access;
14584
14585 /* Before C++17, an aggregate cannot have base classes. In C++17, an
14586 aggregate can't have virtual, private, or protected base classes. */
14587 if (cxx_dialect < cxx17
14588 || access != access_public_node
14589 || via_virtual)
14590 CLASSTYPE_NON_AGGREGATE (ref) = true;
14591
14592 if (PACK_EXPANSION_P (basetype))
14593 basetype = PACK_EXPANSION_PATTERN (basetype);
14594 if (TREE_CODE (basetype) == TYPE_DECL)
14595 basetype = TREE_TYPE (basetype);
14596 if (!MAYBE_CLASS_TYPE_P (basetype) || TREE_CODE (basetype) == UNION_TYPE)
14597 {
14598 error ("base type %qT fails to be a struct or class type",
14599 basetype);
14600 goto dropped_base;
14601 }
14602
14603 base_binfo = NULL_TREE;
14604 if (CLASS_TYPE_P (basetype) && !dependent_scope_p (basetype))
14605 {
14606 base_binfo = TYPE_BINFO (basetype);
14607 /* The original basetype could have been a typedef'd type. */
14608 basetype = BINFO_TYPE (base_binfo);
14609
14610 /* Inherit flags from the base. */
14611 TYPE_HAS_NEW_OPERATOR (ref)
14612 |= TYPE_HAS_NEW_OPERATOR (basetype);
14613 TYPE_HAS_ARRAY_NEW_OPERATOR (ref)
14614 |= TYPE_HAS_ARRAY_NEW_OPERATOR (basetype);
14615 TYPE_GETS_DELETE (ref) |= TYPE_GETS_DELETE (basetype);
14616 TYPE_HAS_CONVERSION (ref) |= TYPE_HAS_CONVERSION (basetype);
14617 CLASSTYPE_DIAMOND_SHAPED_P (ref)
14618 |= CLASSTYPE_DIAMOND_SHAPED_P (basetype);
14619 CLASSTYPE_REPEATED_BASE_P (ref)
14620 |= CLASSTYPE_REPEATED_BASE_P (basetype);
14621 }
14622
14623 /* We must do this test after we've seen through a typedef
14624 type. */
14625 if (TYPE_MARKED_P (basetype))
14626 {
14627 if (basetype == ref)
14628 error ("recursive type %qT undefined", basetype);
14629 else
14630 error ("duplicate base type %qT invalid", basetype);
14631 goto dropped_base;
14632 }
14633
14634 if (PACK_EXPANSION_P (TREE_VALUE (base_list)))
14635 /* Regenerate the pack expansion for the bases. */
14636 basetype = make_pack_expansion (basetype);
14637
14638 TYPE_MARKED_P (basetype) = 1;
14639
14640 base_binfo = copy_binfo (base_binfo, basetype, ref,
14641 &igo_prev, via_virtual);
14642 if (!BINFO_INHERITANCE_CHAIN (base_binfo))
14643 BINFO_INHERITANCE_CHAIN (base_binfo) = binfo;
14644
14645 BINFO_BASE_APPEND (binfo, base_binfo);
14646 BINFO_BASE_ACCESS_APPEND (binfo, access);
14647 continue;
14648
14649 dropped_base:
14650 /* Update max_vbases to reflect the reality that we are dropping
14651 this base: if it reaches zero we want to undo the vec_alloc
14652 above to avoid inconsistencies during error-recovery: eg, in
14653 build_special_member_call, CLASSTYPE_VBASECLASSES non null
14654 and vtt null (c++/27952). */
14655 if (via_virtual)
14656 max_vbases--;
14657 if (CLASS_TYPE_P (basetype))
14658 max_vbases
14659 -= vec_safe_length (CLASSTYPE_VBASECLASSES (basetype));
14660 }
14661
14662 if (CLASSTYPE_VBASECLASSES (ref)
14663 && max_vbases == 0)
14664 vec_free (CLASSTYPE_VBASECLASSES (ref));
14665
14666 if (vec_safe_length (CLASSTYPE_VBASECLASSES (ref)) < max_vbases)
14667 /* If we didn't get max_vbases vbases, we must have shared at
14668 least one of them, and are therefore diamond shaped. */
14669 CLASSTYPE_DIAMOND_SHAPED_P (ref) = 1;
14670
14671 /* Unmark all the types. */
14672 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
14673 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
14674 TYPE_MARKED_P (ref) = 0;
14675
14676 /* Now see if we have a repeated base type. */
14677 if (!CLASSTYPE_REPEATED_BASE_P (ref))
14678 {
14679 for (base_binfo = binfo; base_binfo;
14680 base_binfo = TREE_CHAIN (base_binfo))
14681 {
14682 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
14683 {
14684 CLASSTYPE_REPEATED_BASE_P (ref) = 1;
14685 break;
14686 }
14687 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 1;
14688 }
14689 for (base_binfo = binfo; base_binfo;
14690 base_binfo = TREE_CHAIN (base_binfo))
14691 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
14692 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
14693 else
14694 break;
14695 }
14696 }
14697
14698 \f
14699 /* Copies the enum-related properties from type SRC to type DST.
14700 Used with the underlying type of an enum and the enum itself. */
14701 static void
14702 copy_type_enum (tree dst, tree src)
14703 {
14704 tree t;
14705 for (t = dst; t; t = TYPE_NEXT_VARIANT (t))
14706 {
14707 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (src);
14708 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (src);
14709 TYPE_SIZE (t) = TYPE_SIZE (src);
14710 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (src);
14711 SET_TYPE_MODE (dst, TYPE_MODE (src));
14712 TYPE_PRECISION (t) = TYPE_PRECISION (src);
14713 unsigned valign = TYPE_ALIGN (src);
14714 if (TYPE_USER_ALIGN (t))
14715 valign = MAX (valign, TYPE_ALIGN (t));
14716 else
14717 TYPE_USER_ALIGN (t) = TYPE_USER_ALIGN (src);
14718 SET_TYPE_ALIGN (t, valign);
14719 TYPE_UNSIGNED (t) = TYPE_UNSIGNED (src);
14720 }
14721 }
14722
14723 /* Begin compiling the definition of an enumeration type.
14724 NAME is its name,
14725
14726 if ENUMTYPE is not NULL_TREE then the type has alredy been found.
14727
14728 UNDERLYING_TYPE is the type that will be used as the storage for
14729 the enumeration type. This should be NULL_TREE if no storage type
14730 was specified.
14731
14732 ATTRIBUTES are any attributes specified after the enum-key.
14733
14734 SCOPED_ENUM_P is true if this is a scoped enumeration type.
14735
14736 if IS_NEW is not NULL, gets TRUE iff a new type is created.
14737
14738 Returns the type object, as yet incomplete.
14739 Also records info about it so that build_enumerator
14740 may be used to declare the individual values as they are read. */
14741
14742 tree
14743 start_enum (tree name, tree enumtype, tree underlying_type,
14744 tree attributes, bool scoped_enum_p, bool *is_new)
14745 {
14746 tree prevtype = NULL_TREE;
14747 gcc_assert (identifier_p (name));
14748
14749 if (is_new)
14750 *is_new = false;
14751 /* [C++0x dcl.enum]p5:
14752
14753 If not explicitly specified, the underlying type of a scoped
14754 enumeration type is int. */
14755 if (!underlying_type && scoped_enum_p)
14756 underlying_type = integer_type_node;
14757
14758 if (underlying_type)
14759 underlying_type = cv_unqualified (underlying_type);
14760
14761 /* If this is the real definition for a previous forward reference,
14762 fill in the contents in the same object that used to be the
14763 forward reference. */
14764 if (!enumtype)
14765 enumtype = lookup_and_check_tag (enum_type, name,
14766 /*tag_scope=*/ts_current,
14767 /*template_header_p=*/false);
14768
14769 /* In case of a template_decl, the only check that should be deferred
14770 to instantiation time is the comparison of underlying types. */
14771 if (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE)
14772 {
14773 if (scoped_enum_p != SCOPED_ENUM_P (enumtype))
14774 {
14775 error_at (input_location, "scoped/unscoped mismatch "
14776 "in enum %q#T", enumtype);
14777 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
14778 "previous definition here");
14779 enumtype = error_mark_node;
14780 }
14781 else if (ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) != !! underlying_type)
14782 {
14783 error_at (input_location, "underlying type mismatch "
14784 "in enum %q#T", enumtype);
14785 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
14786 "previous definition here");
14787 enumtype = error_mark_node;
14788 }
14789 else if (underlying_type && ENUM_UNDERLYING_TYPE (enumtype)
14790 && !same_type_p (underlying_type,
14791 ENUM_UNDERLYING_TYPE (enumtype)))
14792 {
14793 error_at (input_location, "different underlying type "
14794 "in enum %q#T", enumtype);
14795 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
14796 "previous definition here");
14797 underlying_type = NULL_TREE;
14798 }
14799 }
14800
14801 if (!enumtype || TREE_CODE (enumtype) != ENUMERAL_TYPE
14802 || processing_template_decl)
14803 {
14804 /* In case of error, make a dummy enum to allow parsing to
14805 continue. */
14806 if (enumtype == error_mark_node)
14807 {
14808 name = make_anon_name ();
14809 enumtype = NULL_TREE;
14810 }
14811
14812 /* enumtype may be an ENUMERAL_TYPE if this is a redefinition
14813 of an opaque enum, or an opaque enum of an already defined
14814 enumeration (C++11).
14815 In any other case, it'll be NULL_TREE. */
14816 if (!enumtype)
14817 {
14818 if (is_new)
14819 *is_new = true;
14820 }
14821 prevtype = enumtype;
14822
14823 /* Do not push the decl more than once. */
14824 if (!enumtype
14825 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
14826 {
14827 enumtype = cxx_make_type (ENUMERAL_TYPE);
14828 enumtype = pushtag (name, enumtype, /*tag_scope=*/ts_current);
14829
14830 /* std::byte aliases anything. */
14831 if (enumtype != error_mark_node
14832 && TYPE_CONTEXT (enumtype) == std_node
14833 && !strcmp ("byte", TYPE_NAME_STRING (enumtype)))
14834 TYPE_ALIAS_SET (enumtype) = 0;
14835 }
14836 else
14837 enumtype = xref_tag (enum_type, name, /*tag_scope=*/ts_current,
14838 false);
14839
14840 if (enumtype == error_mark_node)
14841 return error_mark_node;
14842
14843 /* The enum is considered opaque until the opening '{' of the
14844 enumerator list. */
14845 SET_OPAQUE_ENUM_P (enumtype, true);
14846 ENUM_FIXED_UNDERLYING_TYPE_P (enumtype) = !! underlying_type;
14847 }
14848
14849 SET_SCOPED_ENUM_P (enumtype, scoped_enum_p);
14850
14851 cplus_decl_attributes (&enumtype, attributes, (int)ATTR_FLAG_TYPE_IN_PLACE);
14852
14853 if (underlying_type)
14854 {
14855 if (ENUM_UNDERLYING_TYPE (enumtype))
14856 /* We already checked that it matches, don't change it to a different
14857 typedef variant. */;
14858 else if (CP_INTEGRAL_TYPE_P (underlying_type))
14859 {
14860 copy_type_enum (enumtype, underlying_type);
14861 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
14862 }
14863 else if (dependent_type_p (underlying_type))
14864 ENUM_UNDERLYING_TYPE (enumtype) = underlying_type;
14865 else
14866 error ("underlying type %qT of %qT must be an integral type",
14867 underlying_type, enumtype);
14868 }
14869
14870 /* If into a template class, the returned enum is always the first
14871 declaration (opaque or not) seen. This way all the references to
14872 this type will be to the same declaration. The following ones are used
14873 only to check for definition errors. */
14874 if (prevtype && processing_template_decl)
14875 return prevtype;
14876 else
14877 return enumtype;
14878 }
14879
14880 /* After processing and defining all the values of an enumeration type,
14881 install their decls in the enumeration type.
14882 ENUMTYPE is the type object. */
14883
14884 void
14885 finish_enum_value_list (tree enumtype)
14886 {
14887 tree values;
14888 tree underlying_type;
14889 tree decl;
14890 tree value;
14891 tree minnode, maxnode;
14892 tree t;
14893
14894 bool fixed_underlying_type_p
14895 = ENUM_UNDERLYING_TYPE (enumtype) != NULL_TREE;
14896
14897 /* We built up the VALUES in reverse order. */
14898 TYPE_VALUES (enumtype) = nreverse (TYPE_VALUES (enumtype));
14899
14900 /* For an enum defined in a template, just set the type of the values;
14901 all further processing is postponed until the template is
14902 instantiated. We need to set the type so that tsubst of a CONST_DECL
14903 works. */
14904 if (processing_template_decl)
14905 {
14906 for (values = TYPE_VALUES (enumtype);
14907 values;
14908 values = TREE_CHAIN (values))
14909 TREE_TYPE (TREE_VALUE (values)) = enumtype;
14910 return;
14911 }
14912
14913 /* Determine the minimum and maximum values of the enumerators. */
14914 if (TYPE_VALUES (enumtype))
14915 {
14916 minnode = maxnode = NULL_TREE;
14917
14918 for (values = TYPE_VALUES (enumtype);
14919 values;
14920 values = TREE_CHAIN (values))
14921 {
14922 decl = TREE_VALUE (values);
14923
14924 /* [dcl.enum]: Following the closing brace of an enum-specifier,
14925 each enumerator has the type of its enumeration. Prior to the
14926 closing brace, the type of each enumerator is the type of its
14927 initializing value. */
14928 TREE_TYPE (decl) = enumtype;
14929
14930 /* Update the minimum and maximum values, if appropriate. */
14931 value = DECL_INITIAL (decl);
14932 if (value == error_mark_node)
14933 value = integer_zero_node;
14934 /* Figure out what the minimum and maximum values of the
14935 enumerators are. */
14936 if (!minnode)
14937 minnode = maxnode = value;
14938 else if (tree_int_cst_lt (maxnode, value))
14939 maxnode = value;
14940 else if (tree_int_cst_lt (value, minnode))
14941 minnode = value;
14942 }
14943 }
14944 else
14945 /* [dcl.enum]
14946
14947 If the enumerator-list is empty, the underlying type is as if
14948 the enumeration had a single enumerator with value 0. */
14949 minnode = maxnode = integer_zero_node;
14950
14951 if (!fixed_underlying_type_p)
14952 {
14953 /* Compute the number of bits require to represent all values of the
14954 enumeration. We must do this before the type of MINNODE and
14955 MAXNODE are transformed, since tree_int_cst_min_precision relies
14956 on the TREE_TYPE of the value it is passed. */
14957 signop sgn = tree_int_cst_sgn (minnode) >= 0 ? UNSIGNED : SIGNED;
14958 int lowprec = tree_int_cst_min_precision (minnode, sgn);
14959 int highprec = tree_int_cst_min_precision (maxnode, sgn);
14960 int precision = MAX (lowprec, highprec);
14961 unsigned int itk;
14962 bool use_short_enum;
14963
14964 /* Determine the underlying type of the enumeration.
14965
14966 [dcl.enum]
14967
14968 The underlying type of an enumeration is an integral type that
14969 can represent all the enumerator values defined in the
14970 enumeration. It is implementation-defined which integral type is
14971 used as the underlying type for an enumeration except that the
14972 underlying type shall not be larger than int unless the value of
14973 an enumerator cannot fit in an int or unsigned int.
14974
14975 We use "int" or an "unsigned int" as the underlying type, even if
14976 a smaller integral type would work, unless the user has
14977 explicitly requested that we use the smallest possible type. The
14978 user can request that for all enumerations with a command line
14979 flag, or for just one enumeration with an attribute. */
14980
14981 use_short_enum = flag_short_enums
14982 || lookup_attribute ("packed", TYPE_ATTRIBUTES (enumtype));
14983
14984 /* If the precision of the type was specified with an attribute and it
14985 was too small, give an error. Otherwise, use it. */
14986 if (TYPE_PRECISION (enumtype))
14987 {
14988 if (precision > TYPE_PRECISION (enumtype))
14989 error ("specified mode too small for enumerated values");
14990 else
14991 {
14992 use_short_enum = true;
14993 precision = TYPE_PRECISION (enumtype);
14994 }
14995 }
14996
14997 for (itk = (use_short_enum ? itk_char : itk_int);
14998 itk != itk_none;
14999 itk++)
15000 {
15001 underlying_type = integer_types[itk];
15002 if (underlying_type != NULL_TREE
15003 && TYPE_PRECISION (underlying_type) >= precision
15004 && TYPE_SIGN (underlying_type) == sgn)
15005 break;
15006 }
15007 if (itk == itk_none)
15008 {
15009 /* DR 377
15010
15011 IF no integral type can represent all the enumerator values, the
15012 enumeration is ill-formed. */
15013 error ("no integral type can represent all of the enumerator values "
15014 "for %qT", enumtype);
15015 precision = TYPE_PRECISION (long_long_integer_type_node);
15016 underlying_type = integer_types[itk_unsigned_long_long];
15017 }
15018
15019 /* [dcl.enum]
15020
15021 The value of sizeof() applied to an enumeration type, an object
15022 of an enumeration type, or an enumerator, is the value of sizeof()
15023 applied to the underlying type. */
15024 copy_type_enum (enumtype, underlying_type);
15025
15026 /* Compute the minimum and maximum values for the type.
15027
15028 [dcl.enum]
15029
15030 For an enumeration where emin is the smallest enumerator and emax
15031 is the largest, the values of the enumeration are the values of the
15032 underlying type in the range bmin to bmax, where bmin and bmax are,
15033 respectively, the smallest and largest values of the smallest bit-
15034 field that can store emin and emax. */
15035
15036 /* The middle-end currently assumes that types with TYPE_PRECISION
15037 narrower than their underlying type are suitably zero or sign
15038 extended to fill their mode. Similarly, it assumes that the front
15039 end assures that a value of a particular type must be within
15040 TYPE_MIN_VALUE and TYPE_MAX_VALUE.
15041
15042 We used to set these fields based on bmin and bmax, but that led
15043 to invalid assumptions like optimizing away bounds checking. So
15044 now we just set the TYPE_PRECISION, TYPE_MIN_VALUE, and
15045 TYPE_MAX_VALUE to the values for the mode above and only restrict
15046 the ENUM_UNDERLYING_TYPE for the benefit of diagnostics. */
15047 ENUM_UNDERLYING_TYPE (enumtype)
15048 = build_distinct_type_copy (underlying_type);
15049 TYPE_PRECISION (ENUM_UNDERLYING_TYPE (enumtype)) = precision;
15050 set_min_and_max_values_for_integral_type
15051 (ENUM_UNDERLYING_TYPE (enumtype), precision, sgn);
15052
15053 /* If -fstrict-enums, still constrain TYPE_MIN/MAX_VALUE. */
15054 if (flag_strict_enums)
15055 set_min_and_max_values_for_integral_type (enumtype, precision, sgn);
15056 }
15057 else
15058 underlying_type = ENUM_UNDERLYING_TYPE (enumtype);
15059
15060 /* Convert each of the enumerators to the type of the underlying
15061 type of the enumeration. */
15062 for (values = TYPE_VALUES (enumtype); values; values = TREE_CHAIN (values))
15063 {
15064 decl = TREE_VALUE (values);
15065 iloc_sentinel ils (DECL_SOURCE_LOCATION (decl));
15066 if (fixed_underlying_type_p)
15067 /* If the enumeration type has a fixed underlying type, we
15068 already checked all of the enumerator values. */
15069 value = DECL_INITIAL (decl);
15070 else
15071 value = perform_implicit_conversion (underlying_type,
15072 DECL_INITIAL (decl),
15073 tf_warning_or_error);
15074 /* Do not clobber shared ints. */
15075 if (value != error_mark_node)
15076 {
15077 value = copy_node (value);
15078
15079 TREE_TYPE (value) = enumtype;
15080 }
15081 DECL_INITIAL (decl) = value;
15082 }
15083
15084 /* Fix up all variant types of this enum type. */
15085 for (t = TYPE_MAIN_VARIANT (enumtype); t; t = TYPE_NEXT_VARIANT (t))
15086 TYPE_VALUES (t) = TYPE_VALUES (enumtype);
15087
15088 if (at_class_scope_p ()
15089 && COMPLETE_TYPE_P (current_class_type)
15090 && UNSCOPED_ENUM_P (enumtype))
15091 {
15092 insert_late_enum_def_bindings (current_class_type, enumtype);
15093 /* TYPE_FIELDS needs fixup. */
15094 fixup_type_variants (current_class_type);
15095 }
15096
15097 /* Finish debugging output for this type. */
15098 rest_of_type_compilation (enumtype, namespace_bindings_p ());
15099
15100 /* Each enumerator now has the type of its enumeration. Clear the cache
15101 so that this change in types doesn't confuse us later on. */
15102 clear_cv_and_fold_caches ();
15103 }
15104
15105 /* Finishes the enum type. This is called only the first time an
15106 enumeration is seen, be it opaque or odinary.
15107 ENUMTYPE is the type object. */
15108
15109 void
15110 finish_enum (tree enumtype)
15111 {
15112 if (processing_template_decl)
15113 {
15114 if (at_function_scope_p ())
15115 add_stmt (build_min (TAG_DEFN, enumtype));
15116 return;
15117 }
15118
15119 /* If this is a forward declaration, there should not be any variants,
15120 though we can get a variant in the middle of an enum-specifier with
15121 wacky code like 'enum E { e = sizeof(const E*) };' */
15122 gcc_assert (enumtype == TYPE_MAIN_VARIANT (enumtype)
15123 && (TYPE_VALUES (enumtype)
15124 || !TYPE_NEXT_VARIANT (enumtype)));
15125 }
15126
15127 /* Build and install a CONST_DECL for an enumeration constant of the
15128 enumeration type ENUMTYPE whose NAME and VALUE (if any) are provided.
15129 Apply ATTRIBUTES if available. LOC is the location of NAME.
15130 Assignment of sequential values by default is handled here. */
15131
15132 void
15133 build_enumerator (tree name, tree value, tree enumtype, tree attributes,
15134 location_t loc)
15135 {
15136 tree decl;
15137 tree context;
15138 tree type;
15139
15140 /* scalar_constant_value will pull out this expression, so make sure
15141 it's folded as appropriate. */
15142 if (processing_template_decl)
15143 value = fold_non_dependent_expr (value);
15144
15145 /* If the VALUE was erroneous, pretend it wasn't there; that will
15146 result in the enum being assigned the next value in sequence. */
15147 if (value == error_mark_node)
15148 value = NULL_TREE;
15149
15150 /* Remove no-op casts from the value. */
15151 if (value)
15152 STRIP_TYPE_NOPS (value);
15153
15154 if (! processing_template_decl)
15155 {
15156 /* Validate and default VALUE. */
15157 if (value != NULL_TREE)
15158 {
15159 if (!ENUM_UNDERLYING_TYPE (enumtype))
15160 {
15161 tree tmp_value = build_expr_type_conversion (WANT_INT | WANT_ENUM,
15162 value, true);
15163 if (tmp_value)
15164 value = tmp_value;
15165 }
15166 else if (! INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P
15167 (TREE_TYPE (value)))
15168 value = perform_implicit_conversion_flags
15169 (ENUM_UNDERLYING_TYPE (enumtype), value, tf_warning_or_error,
15170 LOOKUP_IMPLICIT | LOOKUP_NO_NARROWING);
15171
15172 if (value == error_mark_node)
15173 value = NULL_TREE;
15174
15175 if (value != NULL_TREE)
15176 {
15177 if (! INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P
15178 (TREE_TYPE (value)))
15179 {
15180 error_at (cp_expr_loc_or_input_loc (value),
15181 "enumerator value for %qD must have integral or "
15182 "unscoped enumeration type", name);
15183 value = NULL_TREE;
15184 }
15185 else
15186 {
15187 value = cxx_constant_value (value);
15188
15189 if (TREE_CODE (value) != INTEGER_CST)
15190 {
15191 error ("enumerator value for %qD is not an integer "
15192 "constant", name);
15193 value = NULL_TREE;
15194 }
15195 }
15196 }
15197 }
15198
15199 /* Default based on previous value. */
15200 if (value == NULL_TREE)
15201 {
15202 if (TYPE_VALUES (enumtype))
15203 {
15204 tree prev_value;
15205
15206 /* C++03 7.2/4: If no initializer is specified for the first
15207 enumerator, the type is an unspecified integral
15208 type. Otherwise the type is the same as the type of the
15209 initializing value of the preceding enumerator unless the
15210 incremented value is not representable in that type, in
15211 which case the type is an unspecified integral type
15212 sufficient to contain the incremented value. */
15213 prev_value = DECL_INITIAL (TREE_VALUE (TYPE_VALUES (enumtype)));
15214 if (error_operand_p (prev_value))
15215 value = error_mark_node;
15216 else
15217 {
15218 wi::overflow_type overflowed;
15219 tree type = TREE_TYPE (prev_value);
15220 signop sgn = TYPE_SIGN (type);
15221 widest_int wi = wi::add (wi::to_widest (prev_value), 1, sgn,
15222 &overflowed);
15223 if (!overflowed)
15224 {
15225 bool pos = !wi::neg_p (wi, sgn);
15226 if (!wi::fits_to_tree_p (wi, type))
15227 {
15228 unsigned int itk;
15229 for (itk = itk_int; itk != itk_none; itk++)
15230 {
15231 type = integer_types[itk];
15232 if (type != NULL_TREE
15233 && (pos || !TYPE_UNSIGNED (type))
15234 && wi::fits_to_tree_p (wi, type))
15235 break;
15236 }
15237 if (type && cxx_dialect < cxx11
15238 && itk > itk_unsigned_long)
15239 pedwarn (input_location, OPT_Wlong_long,
15240 pos ? G_("\
15241 incremented enumerator value is too large for %<unsigned long%>") : G_("\
15242 incremented enumerator value is too large for %<long%>"));
15243 }
15244 if (type == NULL_TREE)
15245 overflowed = wi::OVF_UNKNOWN;
15246 else
15247 value = wide_int_to_tree (type, wi);
15248 }
15249
15250 if (overflowed)
15251 {
15252 error ("overflow in enumeration values at %qD", name);
15253 value = error_mark_node;
15254 }
15255 }
15256 }
15257 else
15258 value = integer_zero_node;
15259 }
15260
15261 /* Remove no-op casts from the value. */
15262 STRIP_TYPE_NOPS (value);
15263
15264 /* If the underlying type of the enum is fixed, check whether
15265 the enumerator values fits in the underlying type. If it
15266 does not fit, the program is ill-formed [C++0x dcl.enum]. */
15267 if (ENUM_UNDERLYING_TYPE (enumtype)
15268 && value
15269 && TREE_CODE (value) == INTEGER_CST)
15270 {
15271 if (!int_fits_type_p (value, ENUM_UNDERLYING_TYPE (enumtype)))
15272 error ("enumerator value %qE is outside the range of underlying "
15273 "type %qT", value, ENUM_UNDERLYING_TYPE (enumtype));
15274
15275 /* Convert the value to the appropriate type. */
15276 value = fold_convert (ENUM_UNDERLYING_TYPE (enumtype), value);
15277 }
15278 }
15279
15280 /* C++ associates enums with global, function, or class declarations. */
15281 context = current_scope ();
15282
15283 /* Build the actual enumeration constant. Note that the enumeration
15284 constants have the underlying type of the enum (if it is fixed)
15285 or the type of their initializer (if the underlying type of the
15286 enum is not fixed):
15287
15288 [ C++0x dcl.enum ]
15289
15290 If the underlying type is fixed, the type of each enumerator
15291 prior to the closing brace is the underlying type; if the
15292 initializing value of an enumerator cannot be represented by
15293 the underlying type, the program is ill-formed. If the
15294 underlying type is not fixed, the type of each enumerator is
15295 the type of its initializing value.
15296
15297 If the underlying type is not fixed, it will be computed by
15298 finish_enum and we will reset the type of this enumerator. Of
15299 course, if we're processing a template, there may be no value. */
15300 type = value ? TREE_TYPE (value) : NULL_TREE;
15301
15302 decl = build_decl (loc, CONST_DECL, name, type);
15303
15304 DECL_CONTEXT (decl) = enumtype;
15305 TREE_CONSTANT (decl) = 1;
15306 TREE_READONLY (decl) = 1;
15307 DECL_INITIAL (decl) = value;
15308
15309 if (attributes)
15310 cplus_decl_attributes (&decl, attributes, 0);
15311
15312 if (context && context == current_class_type && !SCOPED_ENUM_P (enumtype))
15313 {
15314 /* In something like `struct S { enum E { i = 7 }; };' we put `i'
15315 on the TYPE_FIELDS list for `S'. (That's so that you can say
15316 things like `S::i' later.) */
15317
15318 /* The enumerator may be getting declared outside of its enclosing
15319 class, like so:
15320
15321 class S { public: enum E : int; }; enum S::E : int { i = 7; };
15322
15323 For which case we need to make sure that the access of `S::i'
15324 matches the access of `S::E'. */
15325 tree saved_cas = current_access_specifier;
15326 if (TREE_PRIVATE (TYPE_NAME (enumtype)))
15327 current_access_specifier = access_private_node;
15328 else if (TREE_PROTECTED (TYPE_NAME (enumtype)))
15329 current_access_specifier = access_protected_node;
15330 else
15331 current_access_specifier = access_public_node;
15332
15333 finish_member_declaration (decl);
15334
15335 current_access_specifier = saved_cas;
15336 }
15337 else
15338 pushdecl (decl);
15339
15340 /* Add this enumeration constant to the list for this type. */
15341 TYPE_VALUES (enumtype) = tree_cons (name, decl, TYPE_VALUES (enumtype));
15342 }
15343
15344 /* Look for an enumerator with the given NAME within the enumeration
15345 type ENUMTYPE. This routine is used primarily for qualified name
15346 lookup into an enumerator in C++0x, e.g.,
15347
15348 enum class Color { Red, Green, Blue };
15349
15350 Color color = Color::Red;
15351
15352 Returns the value corresponding to the enumerator, or
15353 NULL_TREE if no such enumerator was found. */
15354 tree
15355 lookup_enumerator (tree enumtype, tree name)
15356 {
15357 tree e;
15358 gcc_assert (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE);
15359
15360 e = purpose_member (name, TYPE_VALUES (enumtype));
15361 return e? TREE_VALUE (e) : NULL_TREE;
15362 }
15363
15364 \f
15365 /* We're defining DECL. Make sure that its type is OK. */
15366
15367 static void
15368 check_function_type (tree decl, tree current_function_parms)
15369 {
15370 tree fntype = TREE_TYPE (decl);
15371 tree return_type = complete_type (TREE_TYPE (fntype));
15372
15373 /* In a function definition, arg types must be complete. */
15374 require_complete_types_for_parms (current_function_parms);
15375
15376 if (dependent_type_p (return_type)
15377 || type_uses_auto (return_type))
15378 return;
15379 if (!COMPLETE_OR_VOID_TYPE_P (return_type))
15380 {
15381 tree args = TYPE_ARG_TYPES (fntype);
15382
15383 error ("return type %q#T is incomplete", return_type);
15384
15385 /* Make it return void instead. */
15386 if (TREE_CODE (fntype) == METHOD_TYPE)
15387 fntype = build_method_type_directly (TREE_TYPE (TREE_VALUE (args)),
15388 void_type_node,
15389 TREE_CHAIN (args));
15390 else
15391 fntype = build_function_type (void_type_node, args);
15392 fntype = (cp_build_type_attribute_variant
15393 (fntype, TYPE_ATTRIBUTES (TREE_TYPE (decl))));
15394 fntype = cxx_copy_lang_qualifiers (fntype, TREE_TYPE (decl));
15395 TREE_TYPE (decl) = fntype;
15396 }
15397 else
15398 {
15399 abstract_virtuals_error (decl, TREE_TYPE (fntype));
15400 maybe_warn_parm_abi (TREE_TYPE (fntype),
15401 DECL_SOURCE_LOCATION (decl));
15402 }
15403 }
15404
15405 /* True iff FN is an implicitly-defined default constructor. */
15406
15407 static bool
15408 implicit_default_ctor_p (tree fn)
15409 {
15410 return (DECL_CONSTRUCTOR_P (fn)
15411 && !user_provided_p (fn)
15412 && sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (fn)));
15413 }
15414
15415 /* Clobber the contents of *this to let the back end know that the object
15416 storage is dead when we enter the constructor or leave the destructor. */
15417
15418 static tree
15419 build_clobber_this ()
15420 {
15421 /* Clobbering an empty base is pointless, and harmful if its one byte
15422 TYPE_SIZE overlays real data. */
15423 if (is_empty_class (current_class_type))
15424 return void_node;
15425
15426 /* If we have virtual bases, clobber the whole object, but only if we're in
15427 charge. If we don't have virtual bases, clobber the as-base type so we
15428 don't mess with tail padding. */
15429 bool vbases = CLASSTYPE_VBASECLASSES (current_class_type);
15430
15431 tree ctype = current_class_type;
15432 if (!vbases)
15433 ctype = CLASSTYPE_AS_BASE (ctype);
15434
15435 tree clobber = build_clobber (ctype);
15436
15437 tree thisref = current_class_ref;
15438 if (ctype != current_class_type)
15439 {
15440 thisref = build_nop (build_reference_type (ctype), current_class_ptr);
15441 thisref = convert_from_reference (thisref);
15442 }
15443
15444 tree exprstmt = build2 (MODIFY_EXPR, void_type_node, thisref, clobber);
15445 if (vbases)
15446 exprstmt = build_if_in_charge (exprstmt);
15447
15448 return exprstmt;
15449 }
15450
15451 /* Create the FUNCTION_DECL for a function definition.
15452 DECLSPECS and DECLARATOR are the parts of the declaration;
15453 they describe the function's name and the type it returns,
15454 but twisted together in a fashion that parallels the syntax of C.
15455
15456 FLAGS is a bitwise or of SF_PRE_PARSED (indicating that the
15457 DECLARATOR is really the DECL for the function we are about to
15458 process and that DECLSPECS should be ignored), SF_INCLASS_INLINE
15459 indicating that the function is an inline defined in-class.
15460
15461 This function creates a binding context for the function body
15462 as well as setting up the FUNCTION_DECL in current_function_decl.
15463
15464 For C++, we must first check whether that datum makes any sense.
15465 For example, "class A local_a(1,2);" means that variable local_a
15466 is an aggregate of type A, which should have a constructor
15467 applied to it with the argument list [1, 2].
15468
15469 On entry, DECL_INITIAL (decl1) should be NULL_TREE or error_mark_node,
15470 or may be a BLOCK if the function has been defined previously
15471 in this translation unit. On exit, DECL_INITIAL (decl1) will be
15472 error_mark_node if the function has never been defined, or
15473 a BLOCK if the function has been defined somewhere. */
15474
15475 bool
15476 start_preparsed_function (tree decl1, tree attrs, int flags)
15477 {
15478 tree ctype = NULL_TREE;
15479 tree fntype;
15480 tree restype;
15481 int doing_friend = 0;
15482 cp_binding_level *bl;
15483 tree current_function_parms;
15484 struct c_fileinfo *finfo
15485 = get_fileinfo (LOCATION_FILE (DECL_SOURCE_LOCATION (decl1)));
15486 bool honor_interface;
15487
15488 /* Sanity check. */
15489 gcc_assert (VOID_TYPE_P (TREE_VALUE (void_list_node)));
15490 gcc_assert (TREE_CHAIN (void_list_node) == NULL_TREE);
15491
15492 fntype = TREE_TYPE (decl1);
15493 if (TREE_CODE (fntype) == METHOD_TYPE)
15494 ctype = TYPE_METHOD_BASETYPE (fntype);
15495
15496 /* ISO C++ 11.4/5. A friend function defined in a class is in
15497 the (lexical) scope of the class in which it is defined. */
15498 if (!ctype && DECL_FRIEND_P (decl1))
15499 {
15500 ctype = DECL_FRIEND_CONTEXT (decl1);
15501
15502 /* CTYPE could be null here if we're dealing with a template;
15503 for example, `inline friend float foo()' inside a template
15504 will have no CTYPE set. */
15505 if (ctype && TREE_CODE (ctype) != RECORD_TYPE)
15506 ctype = NULL_TREE;
15507 else
15508 doing_friend = 1;
15509 }
15510
15511 if (DECL_DECLARED_INLINE_P (decl1)
15512 && lookup_attribute ("noinline", attrs))
15513 warning_at (DECL_SOURCE_LOCATION (decl1), 0,
15514 "inline function %qD given attribute %qs", decl1, "noinline");
15515
15516 /* Handle gnu_inline attribute. */
15517 if (GNU_INLINE_P (decl1))
15518 {
15519 DECL_EXTERNAL (decl1) = 1;
15520 DECL_NOT_REALLY_EXTERN (decl1) = 0;
15521 DECL_INTERFACE_KNOWN (decl1) = 1;
15522 DECL_DISREGARD_INLINE_LIMITS (decl1) = 1;
15523 }
15524
15525 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl1))
15526 /* This is a constructor, we must ensure that any default args
15527 introduced by this definition are propagated to the clones
15528 now. The clones are used directly in overload resolution. */
15529 adjust_clone_args (decl1);
15530
15531 /* Sometimes we don't notice that a function is a static member, and
15532 build a METHOD_TYPE for it. Fix that up now. */
15533 gcc_assert (!(ctype != NULL_TREE && DECL_STATIC_FUNCTION_P (decl1)
15534 && TREE_CODE (TREE_TYPE (decl1)) == METHOD_TYPE));
15535
15536 /* Set up current_class_type, and enter the scope of the class, if
15537 appropriate. */
15538 if (ctype)
15539 push_nested_class (ctype);
15540 else if (DECL_STATIC_FUNCTION_P (decl1))
15541 push_nested_class (DECL_CONTEXT (decl1));
15542
15543 /* Now that we have entered the scope of the class, we must restore
15544 the bindings for any template parameters surrounding DECL1, if it
15545 is an inline member template. (Order is important; consider the
15546 case where a template parameter has the same name as a field of
15547 the class.) It is not until after this point that
15548 PROCESSING_TEMPLATE_DECL is guaranteed to be set up correctly. */
15549 if (flags & SF_INCLASS_INLINE)
15550 maybe_begin_member_template_processing (decl1);
15551
15552 /* Effective C++ rule 15. */
15553 if (warn_ecpp
15554 && DECL_ASSIGNMENT_OPERATOR_P (decl1)
15555 && DECL_OVERLOADED_OPERATOR_IS (decl1, NOP_EXPR)
15556 && VOID_TYPE_P (TREE_TYPE (fntype)))
15557 warning (OPT_Weffc__,
15558 "%<operator=%> should return a reference to %<*this%>");
15559
15560 /* Make the init_value nonzero so pushdecl knows this is not tentative.
15561 error_mark_node is replaced below (in poplevel) with the BLOCK. */
15562 if (!DECL_INITIAL (decl1))
15563 DECL_INITIAL (decl1) = error_mark_node;
15564
15565 /* This function exists in static storage.
15566 (This does not mean `static' in the C sense!) */
15567 TREE_STATIC (decl1) = 1;
15568
15569 /* We must call push_template_decl after current_class_type is set
15570 up. (If we are processing inline definitions after exiting a
15571 class scope, current_class_type will be NULL_TREE until set above
15572 by push_nested_class.) */
15573 if (processing_template_decl)
15574 {
15575 tree newdecl1 = push_template_decl (decl1);
15576 if (newdecl1 == error_mark_node)
15577 {
15578 if (ctype || DECL_STATIC_FUNCTION_P (decl1))
15579 pop_nested_class ();
15580 return false;
15581 }
15582 decl1 = newdecl1;
15583 }
15584
15585 /* Make sure the parameter and return types are reasonable. When
15586 you declare a function, these types can be incomplete, but they
15587 must be complete when you define the function. */
15588 check_function_type (decl1, DECL_ARGUMENTS (decl1));
15589
15590 /* Build the return declaration for the function. */
15591 restype = TREE_TYPE (fntype);
15592
15593 if (DECL_RESULT (decl1) == NULL_TREE)
15594 {
15595 tree resdecl;
15596
15597 resdecl = build_decl (input_location, RESULT_DECL, 0, restype);
15598 DECL_ARTIFICIAL (resdecl) = 1;
15599 DECL_IGNORED_P (resdecl) = 1;
15600 DECL_RESULT (decl1) = resdecl;
15601
15602 cp_apply_type_quals_to_decl (cp_type_quals (restype), resdecl);
15603 }
15604
15605 /* Record the decl so that the function name is defined.
15606 If we already have a decl for this name, and it is a FUNCTION_DECL,
15607 use the old decl. */
15608 if (!processing_template_decl && !(flags & SF_PRE_PARSED))
15609 {
15610 /* A specialization is not used to guide overload resolution. */
15611 if (!DECL_FUNCTION_MEMBER_P (decl1)
15612 && !(DECL_USE_TEMPLATE (decl1) &&
15613 PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl1))))
15614 {
15615 tree olddecl = pushdecl (decl1);
15616
15617 if (olddecl == error_mark_node)
15618 /* If something went wrong when registering the declaration,
15619 use DECL1; we have to have a FUNCTION_DECL to use when
15620 parsing the body of the function. */
15621 ;
15622 else
15623 {
15624 /* Otherwise, OLDDECL is either a previous declaration
15625 of the same function or DECL1 itself. */
15626
15627 if (warn_missing_declarations
15628 && olddecl == decl1
15629 && !DECL_MAIN_P (decl1)
15630 && TREE_PUBLIC (decl1)
15631 && !DECL_DECLARED_INLINE_P (decl1))
15632 {
15633 tree context;
15634
15635 /* Check whether DECL1 is in an anonymous
15636 namespace. */
15637 for (context = DECL_CONTEXT (decl1);
15638 context;
15639 context = DECL_CONTEXT (context))
15640 {
15641 if (TREE_CODE (context) == NAMESPACE_DECL
15642 && DECL_NAME (context) == NULL_TREE)
15643 break;
15644 }
15645
15646 if (context == NULL)
15647 warning_at (DECL_SOURCE_LOCATION (decl1),
15648 OPT_Wmissing_declarations,
15649 "no previous declaration for %qD", decl1);
15650 }
15651
15652 decl1 = olddecl;
15653 }
15654 }
15655 else
15656 {
15657 /* We need to set the DECL_CONTEXT. */
15658 if (!DECL_CONTEXT (decl1) && DECL_TEMPLATE_INFO (decl1))
15659 DECL_CONTEXT (decl1) = DECL_CONTEXT (DECL_TI_TEMPLATE (decl1));
15660 }
15661 fntype = TREE_TYPE (decl1);
15662 restype = TREE_TYPE (fntype);
15663
15664 /* If #pragma weak applies, mark the decl appropriately now.
15665 The pragma only applies to global functions. Because
15666 determining whether or not the #pragma applies involves
15667 computing the mangled name for the declaration, we cannot
15668 apply the pragma until after we have merged this declaration
15669 with any previous declarations; if the original declaration
15670 has a linkage specification, that specification applies to
15671 the definition as well, and may affect the mangled name. */
15672 if (DECL_FILE_SCOPE_P (decl1))
15673 maybe_apply_pragma_weak (decl1);
15674 }
15675
15676 /* We are now in the scope of the function being defined. */
15677 current_function_decl = decl1;
15678
15679 /* Save the parm names or decls from this function's declarator
15680 where store_parm_decls will find them. */
15681 current_function_parms = DECL_ARGUMENTS (decl1);
15682
15683 /* Let the user know we're compiling this function. */
15684 announce_function (decl1);
15685
15686 gcc_assert (DECL_INITIAL (decl1));
15687
15688 /* This function may already have been parsed, in which case just
15689 return; our caller will skip over the body without parsing. */
15690 if (DECL_INITIAL (decl1) != error_mark_node)
15691 return true;
15692
15693 /* Initialize RTL machinery. We cannot do this until
15694 CURRENT_FUNCTION_DECL and DECL_RESULT are set up. We do this
15695 even when processing a template; this is how we get
15696 CFUN set up, and our per-function variables initialized.
15697 FIXME factor out the non-RTL stuff. */
15698 bl = current_binding_level;
15699 allocate_struct_function (decl1, processing_template_decl);
15700
15701 /* Initialize the language data structures. Whenever we start
15702 a new function, we destroy temporaries in the usual way. */
15703 cfun->language = ggc_cleared_alloc<language_function> ();
15704 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
15705 current_binding_level = bl;
15706
15707 /* If we are (erroneously) defining a function that we have already
15708 defined before, wipe out what we knew before. */
15709 gcc_checking_assert (!DECL_PENDING_INLINE_P (decl1));
15710 FNDECL_USED_AUTO (decl1) = false;
15711 DECL_SAVED_AUTO_RETURN_TYPE (decl1) = NULL;
15712
15713 if (!processing_template_decl && type_uses_auto (restype))
15714 {
15715 FNDECL_USED_AUTO (decl1) = true;
15716 DECL_SAVED_AUTO_RETURN_TYPE (decl1) = restype;
15717 }
15718
15719 /* Start the statement-tree, start the tree now. */
15720 DECL_SAVED_TREE (decl1) = push_stmt_list ();
15721
15722 if (ctype && !doing_friend && !DECL_STATIC_FUNCTION_P (decl1))
15723 {
15724 /* We know that this was set up by `grokclassfn'. We do not
15725 wait until `store_parm_decls', since evil parse errors may
15726 never get us to that point. Here we keep the consistency
15727 between `current_class_type' and `current_class_ptr'. */
15728 tree t = DECL_ARGUMENTS (decl1);
15729
15730 gcc_assert (t != NULL_TREE && TREE_CODE (t) == PARM_DECL);
15731 gcc_assert (TYPE_PTR_P (TREE_TYPE (t)));
15732
15733 cp_function_chain->x_current_class_ref
15734 = cp_build_fold_indirect_ref (t);
15735 /* Set this second to avoid shortcut in cp_build_indirect_ref. */
15736 cp_function_chain->x_current_class_ptr = t;
15737
15738 /* Constructors and destructors need to know whether they're "in
15739 charge" of initializing virtual base classes. */
15740 t = DECL_CHAIN (t);
15741 if (DECL_HAS_IN_CHARGE_PARM_P (decl1))
15742 {
15743 current_in_charge_parm = t;
15744 t = DECL_CHAIN (t);
15745 }
15746 if (DECL_HAS_VTT_PARM_P (decl1))
15747 {
15748 gcc_assert (DECL_NAME (t) == vtt_parm_identifier);
15749 current_vtt_parm = t;
15750 }
15751 }
15752
15753 honor_interface = (!DECL_TEMPLATE_INSTANTIATION (decl1)
15754 /* Implicitly-defined methods (like the
15755 destructor for a class in which no destructor
15756 is explicitly declared) must not be defined
15757 until their definition is needed. So, we
15758 ignore interface specifications for
15759 compiler-generated functions. */
15760 && !DECL_ARTIFICIAL (decl1));
15761
15762 if (processing_template_decl)
15763 /* Don't mess with interface flags. */;
15764 else if (DECL_INTERFACE_KNOWN (decl1))
15765 {
15766 tree ctx = decl_function_context (decl1);
15767
15768 if (DECL_NOT_REALLY_EXTERN (decl1))
15769 DECL_EXTERNAL (decl1) = 0;
15770
15771 if (ctx != NULL_TREE && vague_linkage_p (ctx))
15772 /* This is a function in a local class in an extern inline
15773 or template function. */
15774 comdat_linkage (decl1);
15775 }
15776 /* If this function belongs to an interface, it is public.
15777 If it belongs to someone else's interface, it is also external.
15778 This only affects inlines and template instantiations. */
15779 else if (!finfo->interface_unknown && honor_interface)
15780 {
15781 if (DECL_DECLARED_INLINE_P (decl1)
15782 || DECL_TEMPLATE_INSTANTIATION (decl1))
15783 {
15784 DECL_EXTERNAL (decl1)
15785 = (finfo->interface_only
15786 || (DECL_DECLARED_INLINE_P (decl1)
15787 && ! flag_implement_inlines
15788 && !DECL_VINDEX (decl1)));
15789
15790 /* For WIN32 we also want to put these in linkonce sections. */
15791 maybe_make_one_only (decl1);
15792 }
15793 else
15794 DECL_EXTERNAL (decl1) = 0;
15795 DECL_INTERFACE_KNOWN (decl1) = 1;
15796 /* If this function is in an interface implemented in this file,
15797 make sure that the back end knows to emit this function
15798 here. */
15799 if (!DECL_EXTERNAL (decl1))
15800 mark_needed (decl1);
15801 }
15802 else if (finfo->interface_unknown && finfo->interface_only
15803 && honor_interface)
15804 {
15805 /* If MULTIPLE_SYMBOL_SPACES is defined and we saw a #pragma
15806 interface, we will have both finfo->interface_unknown and
15807 finfo->interface_only set. In that case, we don't want to
15808 use the normal heuristics because someone will supply a
15809 #pragma implementation elsewhere, and deducing it here would
15810 produce a conflict. */
15811 comdat_linkage (decl1);
15812 DECL_EXTERNAL (decl1) = 0;
15813 DECL_INTERFACE_KNOWN (decl1) = 1;
15814 DECL_DEFER_OUTPUT (decl1) = 1;
15815 }
15816 else
15817 {
15818 /* This is a definition, not a reference.
15819 So clear DECL_EXTERNAL, unless this is a GNU extern inline. */
15820 if (!GNU_INLINE_P (decl1))
15821 DECL_EXTERNAL (decl1) = 0;
15822
15823 if ((DECL_DECLARED_INLINE_P (decl1)
15824 || DECL_TEMPLATE_INSTANTIATION (decl1))
15825 && ! DECL_INTERFACE_KNOWN (decl1))
15826 DECL_DEFER_OUTPUT (decl1) = 1;
15827 else
15828 DECL_INTERFACE_KNOWN (decl1) = 1;
15829 }
15830
15831 /* Determine the ELF visibility attribute for the function. We must not
15832 do this before calling "pushdecl", as we must allow "duplicate_decls"
15833 to merge any attributes appropriately. We also need to wait until
15834 linkage is set. */
15835 if (!DECL_CLONED_FUNCTION_P (decl1))
15836 determine_visibility (decl1);
15837
15838 if (!processing_template_decl)
15839 maybe_instantiate_noexcept (decl1);
15840
15841 begin_scope (sk_function_parms, decl1);
15842
15843 ++function_depth;
15844
15845 if (DECL_DESTRUCTOR_P (decl1)
15846 || (DECL_CONSTRUCTOR_P (decl1)
15847 && targetm.cxx.cdtor_returns_this ()))
15848 {
15849 cdtor_label = create_artificial_label (input_location);
15850 LABEL_DECL_CDTOR (cdtor_label) = true;
15851 }
15852
15853 start_fname_decls ();
15854
15855 store_parm_decls (current_function_parms);
15856
15857 push_operator_bindings ();
15858
15859 if (!processing_template_decl
15860 && (flag_lifetime_dse > 1)
15861 && DECL_CONSTRUCTOR_P (decl1)
15862 && !DECL_CLONED_FUNCTION_P (decl1)
15863 /* Clobbering an empty base is harmful if it overlays real data. */
15864 && !is_empty_class (current_class_type)
15865 /* We can't clobber safely for an implicitly-defined default constructor
15866 because part of the initialization might happen before we enter the
15867 constructor, via AGGR_INIT_ZERO_FIRST (c++/68006). */
15868 && !implicit_default_ctor_p (decl1))
15869 finish_expr_stmt (build_clobber_this ());
15870
15871 if (!processing_template_decl
15872 && DECL_CONSTRUCTOR_P (decl1)
15873 && sanitize_flags_p (SANITIZE_VPTR)
15874 && !DECL_CLONED_FUNCTION_P (decl1)
15875 && !implicit_default_ctor_p (decl1))
15876 cp_ubsan_maybe_initialize_vtbl_ptrs (current_class_ptr);
15877
15878 start_lambda_scope (decl1);
15879
15880 return true;
15881 }
15882
15883
15884 /* Like start_preparsed_function, except that instead of a
15885 FUNCTION_DECL, this function takes DECLSPECS and DECLARATOR.
15886
15887 Returns true on success. If the DECLARATOR is not suitable
15888 for a function, we return false, which tells the parser to
15889 skip the entire function. */
15890
15891 bool
15892 start_function (cp_decl_specifier_seq *declspecs,
15893 const cp_declarator *declarator,
15894 tree attrs)
15895 {
15896 tree decl1;
15897
15898 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1, &attrs);
15899 invoke_plugin_callbacks (PLUGIN_START_PARSE_FUNCTION, decl1);
15900 if (decl1 == error_mark_node)
15901 return false;
15902
15903 if (DECL_MAIN_P (decl1))
15904 /* main must return int. grokfndecl should have corrected it
15905 (and issued a diagnostic) if the user got it wrong. */
15906 gcc_assert (same_type_p (TREE_TYPE (TREE_TYPE (decl1)),
15907 integer_type_node));
15908
15909 return start_preparsed_function (decl1, attrs, /*flags=*/SF_DEFAULT);
15910 }
15911 \f
15912 /* Returns true iff an EH_SPEC_BLOCK should be created in the body of
15913 FN. */
15914
15915 static bool
15916 use_eh_spec_block (tree fn)
15917 {
15918 return (flag_exceptions && flag_enforce_eh_specs
15919 && !processing_template_decl
15920 && !type_throw_all_p (TREE_TYPE (fn))
15921 /* We insert the EH_SPEC_BLOCK only in the original
15922 function; then, it is copied automatically to the
15923 clones. */
15924 && !DECL_CLONED_FUNCTION_P (fn)
15925 /* Implicitly-generated constructors and destructors have
15926 exception specifications. However, those specifications
15927 are the union of the possible exceptions specified by the
15928 constructors/destructors for bases and members, so no
15929 unallowed exception will ever reach this function. By
15930 not creating the EH_SPEC_BLOCK we save a little memory,
15931 and we avoid spurious warnings about unreachable
15932 code. */
15933 && !DECL_DEFAULTED_FN (fn));
15934 }
15935
15936 /* Helper function to push ARGS into the current lexical scope. DECL
15937 is the function declaration. NONPARMS is used to handle enum
15938 constants. */
15939
15940 void
15941 do_push_parm_decls (tree decl, tree args, tree *nonparms)
15942 {
15943 /* If we're doing semantic analysis, then we'll call pushdecl
15944 for each of these. We must do them in reverse order so that
15945 they end in the correct forward order. */
15946 args = nreverse (args);
15947
15948 tree next;
15949 for (tree parm = args; parm; parm = next)
15950 {
15951 next = DECL_CHAIN (parm);
15952 if (TREE_CODE (parm) == PARM_DECL)
15953 pushdecl (parm);
15954 else if (nonparms)
15955 {
15956 /* If we find an enum constant or a type tag, put it aside for
15957 the moment. */
15958 TREE_CHAIN (parm) = NULL_TREE;
15959 *nonparms = chainon (*nonparms, parm);
15960 }
15961 }
15962
15963 /* Get the decls in their original chain order and record in the
15964 function. This is all and only the PARM_DECLs that were
15965 pushed into scope by the loop above. */
15966 DECL_ARGUMENTS (decl) = get_local_decls ();
15967 }
15968
15969 /* Store the parameter declarations into the current function declaration.
15970 This is called after parsing the parameter declarations, before
15971 digesting the body of the function.
15972
15973 Also install to binding contour return value identifier, if any. */
15974
15975 static void
15976 store_parm_decls (tree current_function_parms)
15977 {
15978 tree fndecl = current_function_decl;
15979
15980 /* This is a chain of any other decls that came in among the parm
15981 declarations. If a parm is declared with enum {foo, bar} x;
15982 then CONST_DECLs for foo and bar are put here. */
15983 tree nonparms = NULL_TREE;
15984
15985 if (current_function_parms)
15986 {
15987 /* This case is when the function was defined with an ANSI prototype.
15988 The parms already have decls, so we need not do anything here
15989 except record them as in effect
15990 and complain if any redundant old-style parm decls were written. */
15991
15992 tree specparms = current_function_parms;
15993
15994 /* Must clear this because it might contain TYPE_DECLs declared
15995 at class level. */
15996 current_binding_level->names = NULL;
15997
15998 do_push_parm_decls (fndecl, specparms, &nonparms);
15999 }
16000 else
16001 DECL_ARGUMENTS (fndecl) = NULL_TREE;
16002
16003 /* Now store the final chain of decls for the arguments
16004 as the decl-chain of the current lexical scope.
16005 Put the enumerators in as well, at the front so that
16006 DECL_ARGUMENTS is not modified. */
16007 current_binding_level->names = chainon (nonparms, DECL_ARGUMENTS (fndecl));
16008
16009 if (use_eh_spec_block (current_function_decl))
16010 current_eh_spec_block = begin_eh_spec_block ();
16011 }
16012
16013 \f
16014 /* Set the return value of the constructor (if present). */
16015
16016 static void
16017 finish_constructor_body (void)
16018 {
16019 tree val;
16020 tree exprstmt;
16021
16022 if (targetm.cxx.cdtor_returns_this ())
16023 {
16024 /* Any return from a constructor will end up here. */
16025 add_stmt (build_stmt (input_location, LABEL_EXPR, cdtor_label));
16026
16027 val = DECL_ARGUMENTS (current_function_decl);
16028 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
16029 DECL_RESULT (current_function_decl), val);
16030 /* Return the address of the object. */
16031 exprstmt = build_stmt (input_location, RETURN_EXPR, val);
16032 add_stmt (exprstmt);
16033 }
16034 }
16035
16036 /* Do all the processing for the beginning of a destructor; set up the
16037 vtable pointers and cleanups for bases and members. */
16038
16039 static void
16040 begin_destructor_body (void)
16041 {
16042 tree compound_stmt;
16043
16044 /* If the CURRENT_CLASS_TYPE is incomplete, we will have already
16045 issued an error message. We still want to try to process the
16046 body of the function, but initialize_vtbl_ptrs will crash if
16047 TYPE_BINFO is NULL. */
16048 if (COMPLETE_TYPE_P (current_class_type))
16049 {
16050 compound_stmt = begin_compound_stmt (0);
16051 /* Make all virtual function table pointers in non-virtual base
16052 classes point to CURRENT_CLASS_TYPE's virtual function
16053 tables. */
16054 initialize_vtbl_ptrs (current_class_ptr);
16055 finish_compound_stmt (compound_stmt);
16056
16057 if (flag_lifetime_dse
16058 /* Clobbering an empty base is harmful if it overlays real data. */
16059 && !is_empty_class (current_class_type))
16060 {
16061 if (sanitize_flags_p (SANITIZE_VPTR)
16062 && (flag_sanitize_recover & SANITIZE_VPTR) == 0
16063 && TYPE_CONTAINS_VPTR_P (current_class_type))
16064 {
16065 tree binfo = TYPE_BINFO (current_class_type);
16066 tree ref
16067 = cp_build_fold_indirect_ref (current_class_ptr);
16068
16069 tree vtbl_ptr = build_vfield_ref (ref, TREE_TYPE (binfo));
16070 tree vtbl = build_zero_cst (TREE_TYPE (vtbl_ptr));
16071 tree stmt = cp_build_modify_expr (input_location, vtbl_ptr,
16072 NOP_EXPR, vtbl,
16073 tf_warning_or_error);
16074 /* If the vptr is shared with some virtual nearly empty base,
16075 don't clear it if not in charge, the dtor of the virtual
16076 nearly empty base will do that later. */
16077 if (CLASSTYPE_VBASECLASSES (current_class_type)
16078 && CLASSTYPE_PRIMARY_BINFO (current_class_type)
16079 && BINFO_VIRTUAL_P
16080 (CLASSTYPE_PRIMARY_BINFO (current_class_type)))
16081 {
16082 stmt = convert_to_void (stmt, ICV_STATEMENT,
16083 tf_warning_or_error);
16084 stmt = build_if_in_charge (stmt);
16085 }
16086 finish_decl_cleanup (NULL_TREE, stmt);
16087 }
16088 else
16089 finish_decl_cleanup (NULL_TREE, build_clobber_this ());
16090 }
16091
16092 /* And insert cleanups for our bases and members so that they
16093 will be properly destroyed if we throw. */
16094 push_base_cleanups ();
16095 }
16096 }
16097
16098 /* At the end of every destructor we generate code to delete the object if
16099 necessary. Do that now. */
16100
16101 static void
16102 finish_destructor_body (void)
16103 {
16104 tree exprstmt;
16105
16106 /* Any return from a destructor will end up here; that way all base
16107 and member cleanups will be run when the function returns. */
16108 add_stmt (build_stmt (input_location, LABEL_EXPR, cdtor_label));
16109
16110 if (targetm.cxx.cdtor_returns_this ())
16111 {
16112 tree val;
16113
16114 val = DECL_ARGUMENTS (current_function_decl);
16115 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
16116 DECL_RESULT (current_function_decl), val);
16117 /* Return the address of the object. */
16118 exprstmt = build_stmt (input_location, RETURN_EXPR, val);
16119 add_stmt (exprstmt);
16120 }
16121 }
16122
16123 /* Do the necessary processing for the beginning of a function body, which
16124 in this case includes member-initializers, but not the catch clauses of
16125 a function-try-block. Currently, this means opening a binding level
16126 for the member-initializers (in a ctor), member cleanups (in a dtor),
16127 and capture proxies (in a lambda operator()). */
16128
16129 tree
16130 begin_function_body (void)
16131 {
16132 tree stmt;
16133
16134 if (! FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
16135 return NULL_TREE;
16136
16137 if (processing_template_decl)
16138 /* Do nothing now. */;
16139 else
16140 /* Always keep the BLOCK node associated with the outermost pair of
16141 curly braces of a function. These are needed for correct
16142 operation of dwarfout.c. */
16143 keep_next_level (true);
16144
16145 stmt = begin_compound_stmt (BCS_FN_BODY);
16146
16147 if (processing_template_decl)
16148 /* Do nothing now. */;
16149 else if (DECL_DESTRUCTOR_P (current_function_decl))
16150 begin_destructor_body ();
16151
16152 return stmt;
16153 }
16154
16155 /* Do the processing for the end of a function body. Currently, this means
16156 closing out the cleanups for fully-constructed bases and members, and in
16157 the case of the destructor, deleting the object if desired. Again, this
16158 is only meaningful for [cd]tors, since they are the only functions where
16159 there is a significant distinction between the main body and any
16160 function catch clauses. Handling, say, main() return semantics here
16161 would be wrong, as flowing off the end of a function catch clause for
16162 main() would also need to return 0. */
16163
16164 void
16165 finish_function_body (tree compstmt)
16166 {
16167 if (compstmt == NULL_TREE)
16168 return;
16169
16170 /* Close the block. */
16171 finish_compound_stmt (compstmt);
16172
16173 if (processing_template_decl)
16174 /* Do nothing now. */;
16175 else if (DECL_CONSTRUCTOR_P (current_function_decl))
16176 finish_constructor_body ();
16177 else if (DECL_DESTRUCTOR_P (current_function_decl))
16178 finish_destructor_body ();
16179 }
16180
16181 /* Given a function, returns the BLOCK corresponding to the outermost level
16182 of curly braces, skipping the artificial block created for constructor
16183 initializers. */
16184
16185 tree
16186 outer_curly_brace_block (tree fndecl)
16187 {
16188 tree block = DECL_INITIAL (fndecl);
16189 if (BLOCK_OUTER_CURLY_BRACE_P (block))
16190 return block;
16191 block = BLOCK_SUBBLOCKS (block);
16192 if (BLOCK_OUTER_CURLY_BRACE_P (block))
16193 return block;
16194 block = BLOCK_SUBBLOCKS (block);
16195 gcc_assert (BLOCK_OUTER_CURLY_BRACE_P (block));
16196 return block;
16197 }
16198
16199 /* If FNDECL is a class's key method, add the class to the list of
16200 keyed classes that should be emitted. */
16201
16202 static void
16203 record_key_method_defined (tree fndecl)
16204 {
16205 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fndecl)
16206 && DECL_VIRTUAL_P (fndecl)
16207 && !processing_template_decl)
16208 {
16209 tree fnclass = DECL_CONTEXT (fndecl);
16210 if (fndecl == CLASSTYPE_KEY_METHOD (fnclass))
16211 vec_safe_push (keyed_classes, fnclass);
16212 }
16213 }
16214
16215 /* Subroutine of finish_function.
16216 Save the body of constexpr functions for possible
16217 future compile time evaluation. */
16218
16219 static void
16220 maybe_save_function_definition (tree fun)
16221 {
16222 if (!processing_template_decl
16223 && DECL_DECLARED_CONSTEXPR_P (fun)
16224 && !cp_function_chain->invalid_constexpr
16225 && !DECL_CLONED_FUNCTION_P (fun))
16226 register_constexpr_fundef (fun, DECL_SAVED_TREE (fun));
16227 }
16228
16229 /* Attempt to add a fix-it hint to RICHLOC suggesting the insertion
16230 of "return *this;" immediately before its location, using FNDECL's
16231 first statement (if any) to give the indentation, if appropriate. */
16232
16233 static void
16234 add_return_star_this_fixit (gcc_rich_location *richloc, tree fndecl)
16235 {
16236 location_t indent = UNKNOWN_LOCATION;
16237 tree stmts = expr_first (DECL_SAVED_TREE (fndecl));
16238 if (stmts)
16239 indent = EXPR_LOCATION (stmts);
16240 richloc->add_fixit_insert_formatted ("return *this;",
16241 richloc->get_loc (),
16242 indent);
16243 }
16244
16245 /* Finish up a function declaration and compile that function
16246 all the way to assembler language output. The free the storage
16247 for the function definition. INLINE_P is TRUE if we just
16248 finished processing the body of an in-class inline function
16249 definition. (This processing will have taken place after the
16250 class definition is complete.) */
16251
16252 tree
16253 finish_function (bool inline_p)
16254 {
16255 tree fndecl = current_function_decl;
16256 tree fntype, ctype = NULL_TREE;
16257
16258 /* When we get some parse errors, we can end up without a
16259 current_function_decl, so cope. */
16260 if (fndecl == NULL_TREE)
16261 return error_mark_node;
16262
16263 finish_lambda_scope ();
16264
16265 if (c_dialect_objc ())
16266 objc_finish_function ();
16267
16268 record_key_method_defined (fndecl);
16269
16270 fntype = TREE_TYPE (fndecl);
16271
16272 /* TREE_READONLY (fndecl) = 1;
16273 This caused &foo to be of type ptr-to-const-function
16274 which then got a warning when stored in a ptr-to-function variable. */
16275
16276 gcc_assert (building_stmt_list_p ());
16277 /* The current function is being defined, so its DECL_INITIAL should
16278 be set, and unless there's a multiple definition, it should be
16279 error_mark_node. */
16280 gcc_assert (DECL_INITIAL (fndecl) == error_mark_node);
16281
16282 /* For a cloned function, we've already got all the code we need;
16283 there's no need to add any extra bits. */
16284 if (!DECL_CLONED_FUNCTION_P (fndecl))
16285 {
16286 /* Make it so that `main' always returns 0 by default. */
16287 if (DECL_MAIN_P (current_function_decl))
16288 finish_return_stmt (integer_zero_node);
16289
16290 if (use_eh_spec_block (current_function_decl))
16291 finish_eh_spec_block (TYPE_RAISES_EXCEPTIONS
16292 (TREE_TYPE (current_function_decl)),
16293 current_eh_spec_block);
16294 }
16295
16296 /* If we're saving up tree structure, tie off the function now. */
16297 DECL_SAVED_TREE (fndecl) = pop_stmt_list (DECL_SAVED_TREE (fndecl));
16298
16299 finish_fname_decls ();
16300
16301 /* If this function can't throw any exceptions, remember that. */
16302 if (!processing_template_decl
16303 && !cp_function_chain->can_throw
16304 && !flag_non_call_exceptions
16305 && !decl_replaceable_p (fndecl))
16306 TREE_NOTHROW (fndecl) = 1;
16307
16308 /* This must come after expand_function_end because cleanups might
16309 have declarations (from inline functions) that need to go into
16310 this function's blocks. */
16311
16312 /* If the current binding level isn't the outermost binding level
16313 for this function, either there is a bug, or we have experienced
16314 syntax errors and the statement tree is malformed. */
16315 if (current_binding_level->kind != sk_function_parms)
16316 {
16317 /* Make sure we have already experienced errors. */
16318 gcc_assert (errorcount);
16319
16320 /* Throw away the broken statement tree and extra binding
16321 levels. */
16322 DECL_SAVED_TREE (fndecl) = alloc_stmt_list ();
16323
16324 while (current_binding_level->kind != sk_function_parms)
16325 {
16326 if (current_binding_level->kind == sk_class)
16327 pop_nested_class ();
16328 else
16329 poplevel (0, 0, 0);
16330 }
16331 }
16332 poplevel (1, 0, 1);
16333
16334 /* Statements should always be full-expressions at the outermost set
16335 of curly braces for a function. */
16336 gcc_assert (stmts_are_full_exprs_p ());
16337
16338 /* If there are no return statements in a function with auto return type,
16339 the return type is void. But if the declared type is something like
16340 auto*, this is an error. */
16341 if (!processing_template_decl && FNDECL_USED_AUTO (fndecl)
16342 && TREE_TYPE (fntype) == DECL_SAVED_AUTO_RETURN_TYPE (fndecl))
16343 {
16344 if (is_auto (DECL_SAVED_AUTO_RETURN_TYPE (fndecl)))
16345 {
16346 apply_deduced_return_type (fndecl, void_type_node);
16347 fntype = TREE_TYPE (fndecl);
16348 }
16349 else if (!current_function_returns_value
16350 && !current_function_returns_null)
16351 {
16352 error ("no return statements in function returning %qT",
16353 DECL_SAVED_AUTO_RETURN_TYPE (fndecl));
16354 inform (input_location, "only plain %<auto%> return type can be "
16355 "deduced to %<void%>");
16356 }
16357 }
16358
16359 // If this is a concept, check that the definition is reasonable.
16360 if (DECL_DECLARED_CONCEPT_P (fndecl))
16361 check_function_concept (fndecl);
16362
16363 /* Lambda closure members are implicitly constexpr if possible. */
16364 if (cxx_dialect >= cxx17
16365 && LAMBDA_TYPE_P (CP_DECL_CONTEXT (fndecl)))
16366 DECL_DECLARED_CONSTEXPR_P (fndecl)
16367 = ((processing_template_decl
16368 || is_valid_constexpr_fn (fndecl, /*complain*/false))
16369 && potential_constant_expression (DECL_SAVED_TREE (fndecl)));
16370
16371 /* Save constexpr function body before it gets munged by
16372 the NRV transformation. */
16373 maybe_save_function_definition (fndecl);
16374
16375 /* Invoke the pre-genericize plugin before we start munging things. */
16376 if (!processing_template_decl)
16377 invoke_plugin_callbacks (PLUGIN_PRE_GENERICIZE, fndecl);
16378
16379 /* Perform delayed folding before NRV transformation. */
16380 if (!processing_template_decl)
16381 cp_fold_function (fndecl);
16382
16383 /* Set up the named return value optimization, if we can. Candidate
16384 variables are selected in check_return_expr. */
16385 if (current_function_return_value)
16386 {
16387 tree r = current_function_return_value;
16388 tree outer;
16389
16390 if (r != error_mark_node
16391 /* This is only worth doing for fns that return in memory--and
16392 simpler, since we don't have to worry about promoted modes. */
16393 && aggregate_value_p (TREE_TYPE (TREE_TYPE (fndecl)), fndecl)
16394 /* Only allow this for variables declared in the outer scope of
16395 the function so we know that their lifetime always ends with a
16396 return; see g++.dg/opt/nrv6.C. We could be more flexible if
16397 we were to do this optimization in tree-ssa. */
16398 && (outer = outer_curly_brace_block (fndecl))
16399 && chain_member (r, BLOCK_VARS (outer)))
16400 finalize_nrv (&DECL_SAVED_TREE (fndecl), r, DECL_RESULT (fndecl));
16401
16402 current_function_return_value = NULL_TREE;
16403 }
16404
16405 /* Remember that we were in class scope. */
16406 if (current_class_name)
16407 ctype = current_class_type;
16408
16409 /* Must mark the RESULT_DECL as being in this function. */
16410 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
16411
16412 /* Set the BLOCK_SUPERCONTEXT of the outermost function scope to point
16413 to the FUNCTION_DECL node itself. */
16414 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
16415
16416 /* Complain if there's just no return statement. */
16417 if (warn_return_type
16418 && !VOID_TYPE_P (TREE_TYPE (fntype))
16419 && !dependent_type_p (TREE_TYPE (fntype))
16420 && !current_function_returns_value && !current_function_returns_null
16421 /* Don't complain if we abort or throw. */
16422 && !current_function_returns_abnormally
16423 /* Don't complain if there's an infinite loop. */
16424 && !current_function_infinite_loop
16425 /* Don't complain if we are declared noreturn. */
16426 && !TREE_THIS_VOLATILE (fndecl)
16427 && !DECL_NAME (DECL_RESULT (fndecl))
16428 && !TREE_NO_WARNING (fndecl)
16429 /* Structor return values (if any) are set by the compiler. */
16430 && !DECL_CONSTRUCTOR_P (fndecl)
16431 && !DECL_DESTRUCTOR_P (fndecl)
16432 && targetm.warn_func_return (fndecl))
16433 {
16434 gcc_rich_location richloc (input_location);
16435 /* Potentially add a "return *this;" fix-it hint for
16436 assignment operators. */
16437 if (IDENTIFIER_ASSIGN_OP_P (DECL_NAME (fndecl)))
16438 {
16439 tree valtype = TREE_TYPE (DECL_RESULT (fndecl));
16440 if (TREE_CODE (valtype) == REFERENCE_TYPE
16441 && current_class_ref
16442 && same_type_ignoring_top_level_qualifiers_p
16443 (TREE_TYPE (valtype), TREE_TYPE (current_class_ref))
16444 && global_dc->option_enabled (OPT_Wreturn_type,
16445 global_dc->lang_mask,
16446 global_dc->option_state))
16447 add_return_star_this_fixit (&richloc, fndecl);
16448 }
16449 if (warning_at (&richloc, OPT_Wreturn_type,
16450 "no return statement in function returning non-void"))
16451 TREE_NO_WARNING (fndecl) = 1;
16452 }
16453
16454 /* Store the end of the function, so that we get good line number
16455 info for the epilogue. */
16456 cfun->function_end_locus = input_location;
16457
16458 /* Complain about parameters that are only set, but never otherwise used. */
16459 if (warn_unused_but_set_parameter
16460 && !processing_template_decl
16461 && errorcount == unused_but_set_errorcount
16462 && !DECL_CLONED_FUNCTION_P (fndecl))
16463 {
16464 tree decl;
16465
16466 for (decl = DECL_ARGUMENTS (fndecl);
16467 decl;
16468 decl = DECL_CHAIN (decl))
16469 if (TREE_USED (decl)
16470 && TREE_CODE (decl) == PARM_DECL
16471 && !DECL_READ_P (decl)
16472 && DECL_NAME (decl)
16473 && !DECL_ARTIFICIAL (decl)
16474 && !TREE_NO_WARNING (decl)
16475 && !DECL_IN_SYSTEM_HEADER (decl)
16476 && TREE_TYPE (decl) != error_mark_node
16477 && !TYPE_REF_P (TREE_TYPE (decl))
16478 && (!CLASS_TYPE_P (TREE_TYPE (decl))
16479 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (decl))))
16480 warning_at (DECL_SOURCE_LOCATION (decl),
16481 OPT_Wunused_but_set_parameter,
16482 "parameter %qD set but not used", decl);
16483 unused_but_set_errorcount = errorcount;
16484 }
16485
16486 /* Complain about locally defined typedefs that are not used in this
16487 function. */
16488 maybe_warn_unused_local_typedefs ();
16489
16490 /* Possibly warn about unused parameters. */
16491 if (warn_unused_parameter
16492 && !processing_template_decl
16493 && !DECL_CLONED_FUNCTION_P (fndecl))
16494 do_warn_unused_parameter (fndecl);
16495
16496 /* Genericize before inlining. */
16497 if (!processing_template_decl)
16498 cp_genericize (fndecl);
16499
16500 /* We're leaving the context of this function, so zap cfun. It's still in
16501 DECL_STRUCT_FUNCTION, and we'll restore it in tree_rest_of_compilation. */
16502 set_cfun (NULL);
16503 current_function_decl = NULL;
16504
16505 /* If this is an in-class inline definition, we may have to pop the
16506 bindings for the template parameters that we added in
16507 maybe_begin_member_template_processing when start_function was
16508 called. */
16509 if (inline_p)
16510 maybe_end_member_template_processing ();
16511
16512 /* Leave the scope of the class. */
16513 if (ctype)
16514 pop_nested_class ();
16515
16516 --function_depth;
16517
16518 /* Clean up. */
16519 current_function_decl = NULL_TREE;
16520
16521 invoke_plugin_callbacks (PLUGIN_FINISH_PARSE_FUNCTION, fndecl);
16522 return fndecl;
16523 }
16524 \f
16525 /* Create the FUNCTION_DECL for a function definition.
16526 DECLSPECS and DECLARATOR are the parts of the declaration;
16527 they describe the return type and the name of the function,
16528 but twisted together in a fashion that parallels the syntax of C.
16529
16530 This function creates a binding context for the function body
16531 as well as setting up the FUNCTION_DECL in current_function_decl.
16532
16533 Returns a FUNCTION_DECL on success.
16534
16535 If the DECLARATOR is not suitable for a function (it defines a datum
16536 instead), we return 0, which tells yyparse to report a parse error.
16537
16538 May return void_type_node indicating that this method is actually
16539 a friend. See grokfield for more details.
16540
16541 Came here with a `.pushlevel' .
16542
16543 DO NOT MAKE ANY CHANGES TO THIS CODE WITHOUT MAKING CORRESPONDING
16544 CHANGES TO CODE IN `grokfield'. */
16545
16546 tree
16547 grokmethod (cp_decl_specifier_seq *declspecs,
16548 const cp_declarator *declarator, tree attrlist)
16549 {
16550 tree fndecl = grokdeclarator (declarator, declspecs, MEMFUNCDEF, 0,
16551 &attrlist);
16552
16553 if (fndecl == error_mark_node)
16554 return error_mark_node;
16555
16556 if (attrlist)
16557 cplus_decl_attributes (&fndecl, attrlist, 0);
16558
16559 /* Pass friends other than inline friend functions back. */
16560 if (fndecl == void_type_node)
16561 return fndecl;
16562
16563 if (DECL_IN_AGGR_P (fndecl))
16564 {
16565 if (DECL_CLASS_SCOPE_P (fndecl))
16566 error ("%qD is already defined in class %qT", fndecl,
16567 DECL_CONTEXT (fndecl));
16568 return error_mark_node;
16569 }
16570
16571 check_template_shadow (fndecl);
16572
16573 if (TREE_PUBLIC (fndecl))
16574 DECL_COMDAT (fndecl) = 1;
16575 DECL_DECLARED_INLINE_P (fndecl) = 1;
16576 DECL_NO_INLINE_WARNING_P (fndecl) = 1;
16577
16578 /* We process method specializations in finish_struct_1. */
16579 if (processing_template_decl && !DECL_TEMPLATE_SPECIALIZATION (fndecl))
16580 {
16581 fndecl = push_template_decl (fndecl);
16582 if (fndecl == error_mark_node)
16583 return fndecl;
16584 }
16585
16586 if (! DECL_FRIEND_P (fndecl))
16587 {
16588 if (DECL_CHAIN (fndecl))
16589 {
16590 fndecl = copy_node (fndecl);
16591 TREE_CHAIN (fndecl) = NULL_TREE;
16592 }
16593 }
16594
16595 cp_finish_decl (fndecl, NULL_TREE, false, NULL_TREE, 0);
16596
16597 DECL_IN_AGGR_P (fndecl) = 1;
16598 return fndecl;
16599 }
16600 \f
16601
16602 /* VAR is a VAR_DECL. If its type is incomplete, remember VAR so that
16603 we can lay it out later, when and if its type becomes complete.
16604
16605 Also handle constexpr variables where the initializer involves
16606 an unlowered PTRMEM_CST because the class isn't complete yet. */
16607
16608 void
16609 maybe_register_incomplete_var (tree var)
16610 {
16611 gcc_assert (VAR_P (var));
16612
16613 /* Keep track of variables with incomplete types. */
16614 if (!processing_template_decl && TREE_TYPE (var) != error_mark_node
16615 && DECL_EXTERNAL (var))
16616 {
16617 tree inner_type = TREE_TYPE (var);
16618
16619 while (TREE_CODE (inner_type) == ARRAY_TYPE)
16620 inner_type = TREE_TYPE (inner_type);
16621 inner_type = TYPE_MAIN_VARIANT (inner_type);
16622
16623 if ((!COMPLETE_TYPE_P (inner_type) && CLASS_TYPE_P (inner_type))
16624 /* RTTI TD entries are created while defining the type_info. */
16625 || (TYPE_LANG_SPECIFIC (inner_type)
16626 && TYPE_BEING_DEFINED (inner_type)))
16627 {
16628 incomplete_var iv = {var, inner_type};
16629 vec_safe_push (incomplete_vars, iv);
16630 }
16631 else if (!(DECL_LANG_SPECIFIC (var) && DECL_TEMPLATE_INFO (var))
16632 && decl_constant_var_p (var)
16633 && (TYPE_PTRMEM_P (inner_type) || CLASS_TYPE_P (inner_type)))
16634 {
16635 /* When the outermost open class is complete we can resolve any
16636 pointers-to-members. */
16637 tree context = outermost_open_class ();
16638 incomplete_var iv = {var, context};
16639 vec_safe_push (incomplete_vars, iv);
16640 }
16641 }
16642 }
16643
16644 /* Called when a class type (given by TYPE) is defined. If there are
16645 any existing VAR_DECLs whose type has been completed by this
16646 declaration, update them now. */
16647
16648 void
16649 complete_vars (tree type)
16650 {
16651 unsigned ix;
16652 incomplete_var *iv;
16653
16654 for (ix = 0; vec_safe_iterate (incomplete_vars, ix, &iv); )
16655 {
16656 if (same_type_p (type, iv->incomplete_type))
16657 {
16658 tree var = iv->decl;
16659 tree type = TREE_TYPE (var);
16660
16661 if (type != error_mark_node
16662 && (TYPE_MAIN_VARIANT (strip_array_types (type))
16663 == iv->incomplete_type))
16664 {
16665 /* Complete the type of the variable. The VAR_DECL itself
16666 will be laid out in expand_expr. */
16667 complete_type (type);
16668 cp_apply_type_quals_to_decl (cp_type_quals (type), var);
16669 }
16670
16671 /* Remove this entry from the list. */
16672 incomplete_vars->unordered_remove (ix);
16673 }
16674 else
16675 ix++;
16676 }
16677
16678 /* Check for pending declarations which may have abstract type. */
16679 complete_type_check_abstract (type);
16680 }
16681
16682 /* If DECL is of a type which needs a cleanup, build and return an
16683 expression to perform that cleanup here. Return NULL_TREE if no
16684 cleanup need be done. DECL can also be a _REF when called from
16685 split_nonconstant_init_1. */
16686
16687 tree
16688 cxx_maybe_build_cleanup (tree decl, tsubst_flags_t complain)
16689 {
16690 tree type;
16691 tree attr;
16692 tree cleanup;
16693
16694 /* Assume no cleanup is required. */
16695 cleanup = NULL_TREE;
16696
16697 if (error_operand_p (decl))
16698 return cleanup;
16699
16700 /* Handle "__attribute__((cleanup))". We run the cleanup function
16701 before the destructor since the destructor is what actually
16702 terminates the lifetime of the object. */
16703 if (DECL_P (decl))
16704 attr = lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl));
16705 else
16706 attr = NULL_TREE;
16707 if (attr)
16708 {
16709 tree id;
16710 tree fn;
16711 tree arg;
16712
16713 /* Get the name specified by the user for the cleanup function. */
16714 id = TREE_VALUE (TREE_VALUE (attr));
16715 /* Look up the name to find the cleanup function to call. It is
16716 important to use lookup_name here because that is what is
16717 used in c-common.c:handle_cleanup_attribute when performing
16718 initial checks on the attribute. Note that those checks
16719 include ensuring that the function found is not an overloaded
16720 function, or an object with an overloaded call operator,
16721 etc.; we can rely on the fact that the function found is an
16722 ordinary FUNCTION_DECL. */
16723 fn = lookup_name (id);
16724 arg = build_address (decl);
16725 if (!mark_used (decl, complain) && !(complain & tf_error))
16726 return error_mark_node;
16727 cleanup = cp_build_function_call_nary (fn, complain, arg, NULL_TREE);
16728 if (cleanup == error_mark_node)
16729 return error_mark_node;
16730 }
16731 /* Handle ordinary C++ destructors. */
16732 type = TREE_TYPE (decl);
16733 if (type_build_dtor_call (type))
16734 {
16735 int flags = LOOKUP_NORMAL|LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR;
16736 tree addr;
16737 tree call;
16738
16739 if (TREE_CODE (type) == ARRAY_TYPE)
16740 addr = decl;
16741 else
16742 addr = build_address (decl);
16743
16744 call = build_delete (TREE_TYPE (addr), addr,
16745 sfk_complete_destructor, flags, 0, complain);
16746 if (call == error_mark_node)
16747 cleanup = error_mark_node;
16748 else if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
16749 /* Discard the call. */;
16750 else if (cleanup)
16751 cleanup = cp_build_compound_expr (cleanup, call, complain);
16752 else
16753 cleanup = call;
16754 }
16755
16756 /* build_delete sets the location of the destructor call to the
16757 current location, even though the destructor is going to be
16758 called later, at the end of the current scope. This can lead to
16759 a "jumpy" behavior for users of debuggers when they step around
16760 the end of the block. So let's unset the location of the
16761 destructor call instead. */
16762 protected_set_expr_location (cleanup, UNKNOWN_LOCATION);
16763
16764 if (cleanup
16765 && DECL_P (decl)
16766 && !lookup_attribute ("warn_unused", TYPE_ATTRIBUTES (TREE_TYPE (decl)))
16767 /* Treat objects with destructors as used; the destructor may do
16768 something substantive. */
16769 && !mark_used (decl, complain) && !(complain & tf_error))
16770 return error_mark_node;
16771
16772 return cleanup;
16773 }
16774
16775 \f
16776 /* Return the FUNCTION_TYPE that corresponds to MEMFNTYPE, which can be a
16777 FUNCTION_DECL, METHOD_TYPE, FUNCTION_TYPE, pointer or reference to
16778 METHOD_TYPE or FUNCTION_TYPE, or pointer to member function. */
16779
16780 tree
16781 static_fn_type (tree memfntype)
16782 {
16783 tree fntype;
16784 tree args;
16785
16786 if (TYPE_PTRMEMFUNC_P (memfntype))
16787 memfntype = TYPE_PTRMEMFUNC_FN_TYPE (memfntype);
16788 if (INDIRECT_TYPE_P (memfntype)
16789 || TREE_CODE (memfntype) == FUNCTION_DECL)
16790 memfntype = TREE_TYPE (memfntype);
16791 if (TREE_CODE (memfntype) == FUNCTION_TYPE)
16792 return memfntype;
16793 gcc_assert (TREE_CODE (memfntype) == METHOD_TYPE);
16794 args = TYPE_ARG_TYPES (memfntype);
16795 fntype = build_function_type (TREE_TYPE (memfntype), TREE_CHAIN (args));
16796 fntype = apply_memfn_quals (fntype, type_memfn_quals (memfntype));
16797 fntype = (cp_build_type_attribute_variant
16798 (fntype, TYPE_ATTRIBUTES (memfntype)));
16799 fntype = cxx_copy_lang_qualifiers (fntype, memfntype);
16800 return fntype;
16801 }
16802
16803 /* DECL was originally constructed as a non-static member function,
16804 but turned out to be static. Update it accordingly. */
16805
16806 void
16807 revert_static_member_fn (tree decl)
16808 {
16809 tree stype = static_fn_type (decl);
16810 cp_cv_quals quals = type_memfn_quals (stype);
16811 cp_ref_qualifier rqual = type_memfn_rqual (stype);
16812
16813 if (quals != TYPE_UNQUALIFIED || rqual != REF_QUAL_NONE)
16814 stype = apply_memfn_quals (stype, TYPE_UNQUALIFIED, REF_QUAL_NONE);
16815
16816 TREE_TYPE (decl) = stype;
16817
16818 if (DECL_ARGUMENTS (decl))
16819 DECL_ARGUMENTS (decl) = DECL_CHAIN (DECL_ARGUMENTS (decl));
16820 DECL_STATIC_FUNCTION_P (decl) = 1;
16821 }
16822
16823 /* Return which tree structure is used by T, or TS_CP_GENERIC if T is
16824 one of the language-independent trees. */
16825
16826 enum cp_tree_node_structure_enum
16827 cp_tree_node_structure (union lang_tree_node * t)
16828 {
16829 switch (TREE_CODE (&t->generic))
16830 {
16831 case ARGUMENT_PACK_SELECT: return TS_CP_ARGUMENT_PACK_SELECT;
16832 case BASELINK: return TS_CP_BASELINK;
16833 case CONSTRAINT_INFO: return TS_CP_CONSTRAINT_INFO;
16834 case DEFERRED_NOEXCEPT: return TS_CP_DEFERRED_NOEXCEPT;
16835 case DEFERRED_PARSE: return TS_CP_DEFERRED_PARSE;
16836 case IDENTIFIER_NODE: return TS_CP_IDENTIFIER;
16837 case LAMBDA_EXPR: return TS_CP_LAMBDA_EXPR;
16838 case OVERLOAD: return TS_CP_OVERLOAD;
16839 case PTRMEM_CST: return TS_CP_PTRMEM;
16840 case STATIC_ASSERT: return TS_CP_STATIC_ASSERT;
16841 case TEMPLATE_DECL: return TS_CP_TEMPLATE_DECL;
16842 case TEMPLATE_INFO: return TS_CP_TEMPLATE_INFO;
16843 case TEMPLATE_PARM_INDEX: return TS_CP_TPI;
16844 case TRAIT_EXPR: return TS_CP_TRAIT_EXPR;
16845 case USERDEF_LITERAL: return TS_CP_USERDEF_LITERAL;
16846 default: return TS_CP_GENERIC;
16847 }
16848 }
16849
16850 /* Build the void_list_node (void_type_node having been created). */
16851 tree
16852 build_void_list_node (void)
16853 {
16854 tree t = build_tree_list (NULL_TREE, void_type_node);
16855 return t;
16856 }
16857
16858 bool
16859 cp_missing_noreturn_ok_p (tree decl)
16860 {
16861 /* A missing noreturn is ok for the `main' function. */
16862 return DECL_MAIN_P (decl);
16863 }
16864
16865 /* Return the decl used to identify the COMDAT group into which DECL should
16866 be placed. */
16867
16868 tree
16869 cxx_comdat_group (tree decl)
16870 {
16871 /* Virtual tables, construction virtual tables, and virtual table
16872 tables all go in a single COMDAT group, named after the primary
16873 virtual table. */
16874 if (VAR_P (decl) && DECL_VTABLE_OR_VTT_P (decl))
16875 decl = CLASSTYPE_VTABLES (DECL_CONTEXT (decl));
16876 /* For all other DECLs, the COMDAT group is the mangled name of the
16877 declaration itself. */
16878 else
16879 {
16880 while (DECL_THUNK_P (decl))
16881 {
16882 /* If TARGET_USE_LOCAL_THUNK_ALIAS_P, use_thunk puts the thunk
16883 into the same section as the target function. In that case
16884 we must return target's name. */
16885 tree target = THUNK_TARGET (decl);
16886 if (TARGET_USE_LOCAL_THUNK_ALIAS_P (target)
16887 && DECL_SECTION_NAME (target) != NULL
16888 && DECL_ONE_ONLY (target))
16889 decl = target;
16890 else
16891 break;
16892 }
16893 }
16894
16895 return decl;
16896 }
16897
16898 /* Returns the return type for FN as written by the user, which may include
16899 a placeholder for a deduced return type. */
16900
16901 tree
16902 fndecl_declared_return_type (tree fn)
16903 {
16904 fn = STRIP_TEMPLATE (fn);
16905 if (FNDECL_USED_AUTO (fn))
16906 return DECL_SAVED_AUTO_RETURN_TYPE (fn);
16907
16908 return TREE_TYPE (TREE_TYPE (fn));
16909 }
16910
16911 /* Returns true iff DECL is a variable or function declared with an auto type
16912 that has not yet been deduced to a real type. */
16913
16914 bool
16915 undeduced_auto_decl (tree decl)
16916 {
16917 if (cxx_dialect < cxx11)
16918 return false;
16919 STRIP_ANY_LOCATION_WRAPPER (decl);
16920 return ((VAR_OR_FUNCTION_DECL_P (decl)
16921 || TREE_CODE (decl) == TEMPLATE_DECL)
16922 && type_uses_auto (TREE_TYPE (decl)));
16923 }
16924
16925 /* Complain if DECL has an undeduced return type. */
16926
16927 bool
16928 require_deduced_type (tree decl, tsubst_flags_t complain)
16929 {
16930 if (undeduced_auto_decl (decl))
16931 {
16932 if (complain & tf_error)
16933 error ("use of %qD before deduction of %<auto%>", decl);
16934 return false;
16935 }
16936 return true;
16937 }
16938
16939 /* Create a representation of the explicit-specifier with
16940 constant-expression of EXPR. COMPLAIN is as for tsubst. */
16941
16942 tree
16943 build_explicit_specifier (tree expr, tsubst_flags_t complain)
16944 {
16945 if (instantiation_dependent_expression_p (expr))
16946 /* Wait for instantiation, tsubst_function_decl will handle it. */
16947 return expr;
16948
16949 expr = instantiate_non_dependent_expr_sfinae (expr, complain);
16950 /* Don't let convert_like_real create more template codes. */
16951 processing_template_decl_sentinel s;
16952 expr = build_converted_constant_bool_expr (expr, complain);
16953 expr = cxx_constant_value (expr);
16954 return expr;
16955 }
16956
16957 #include "gt-cp-decl.h"